Difference between pages "Package:Sshfs-fuse" and "Hostname"

From Funtoo
(Difference between pages)
Jump to navigation Jump to search
(initial commit)
 
 
Line 1: Line 1:
{{Ebuild
w.i.p
|Summary=Fuse-filesystem utilizing the sftp service
==Introduction==
|CatPkg=sys-fs/sshfs-fuse
A hostname is a unique name created to identify a machine on a network. In computer networking, a hostname is a label that is assigned to a device connected to a computer network and that is used to identify the device in various forms of electronic communication such as the World Wide Web, e-mail or Usenet. Hostnames may be simple names consisting of a single word or phrase, or they may be structured.
|Maintainer=
==Configuration==
|Homepage=http://fuse.sourceforge.net/sshfs.html
In Funtoo Linux <code>/etc/conf.d/hostname</code> is the master configuration file for setting a hostname. In OpenRC framework <code>/etc/conf.d/foo</code> is the configuration file for a corresponding Init script <code>/etc/init.d/foo</code>.  With the case of hostname, default value in <code>/etc/conf.d/hostname</code> is set to ''localhost'', means when system boots and OpenRC's <code>/etc/init.d/hostname</code> script started a hostname getting only ''localhost'' name.  How it looks?  In your shell promt this will look in following way, an example for root:
}}
<console>
== Server ==
localhost ~ # ##i## Hello :)
Simply run sshd with sftp enabledThese are the default settings under funtoo so there is not much to do.
</console>
 
Let's play a bit with a configuration. Open <code>/etc/conf.d/hostname</code> with your favorite editor and set a hostname of your choice. Below, I will use a real examples of my working test box.
<console>###i## rc-service sshd start</console>
<console>
 
localhost ~ # ##i## nano /etc/conf.d/hostname
== Client ==
</console>
=== Install ===
Let's set it to hostname="oleg-stable.host.funtoo.org". Save the file and restart  a hostname service:
==== Kernel ====
<console>
{{kernelop|title=File systems enable FUSE|desc=
localhost ~ # ##i## service hostname restart
File systems  --->
</console>
    <M> FUSE (Filesystem in Userspace) support
Now, let's examine our changes, after a restarting a hostname
}}
<console>
 
oleg-stable ~ # ##i## Hello :)
==== Emerge ====
</console>
<console>###i## emerge sshfs-fuse</console>
Notice, that we seeing a shortened hostname here, and not a FQDN (Fully Qualified Domain Name). Don't be frustrated , this is  how  default bash promt PS1 set. To get nice promts, please, consult http://www.ibm.com/developerworks/library/l-tip-prompt/ <-- this one should be on Funtoo wiki :)
 
=== Use ===
==== as root ====
create a mountpoint:
<console>###i## mkdir /mnt/remote</console>
 
<console>###i## sshfs myuser@ipaddress:/home/myuser/media /mnt/remote</console>
 
To unmount:
<console>###i## fusermount -u /mnt/remote</console>
 
==== as a user ====
sshfs requires sshfs ran as a user if a user is to access the content.
create a mountpoint:
<console>###i## mkdir /mnt/remote</console>
change mount point to be under the user
<console>###i## chown user:user /mnt/remote
 
<console>$##i## sshfs myuser@ipaddress:/home/myuser/media /mnt/remote</console>
 
To unmount:
<console>###i## fusermount -u /mnt/remote</console>
{{EbuildFooter}}

Revision as of 17:39, February 18, 2015

w.i.p

Introduction

A hostname is a unique name created to identify a machine on a network. In computer networking, a hostname is a label that is assigned to a device connected to a computer network and that is used to identify the device in various forms of electronic communication such as the World Wide Web, e-mail or Usenet. Hostnames may be simple names consisting of a single word or phrase, or they may be structured.

Configuration

In Funtoo Linux /etc/conf.d/hostname is the master configuration file for setting a hostname. In OpenRC framework /etc/conf.d/foo is the configuration file for a corresponding Init script /etc/init.d/foo. With the case of hostname, default value in /etc/conf.d/hostname is set to localhost, means when system boots and OpenRC's /etc/init.d/hostname script started a hostname getting only localhost name. How it looks? In your shell promt this will look in following way, an example for root:

localhost ~ #  Hello :)

Let's play a bit with a configuration. Open /etc/conf.d/hostname with your favorite editor and set a hostname of your choice. Below, I will use a real examples of my working test box.

localhost ~ #  nano /etc/conf.d/hostname

Let's set it to hostname="oleg-stable.host.funtoo.org". Save the file and restart a hostname service:

localhost ~ #  service hostname restart

Now, let's examine our changes, after a restarting a hostname

oleg-stable ~ #  Hello :)

Notice, that we seeing a shortened hostname here, and not a FQDN (Fully Qualified Domain Name). Don't be frustrated , this is how default bash promt PS1 set. To get nice promts, please, consult http://www.ibm.com/developerworks/library/l-tip-prompt/ <-- this one should be on Funtoo wiki :)