Mount a remote folder by sshfs

I have several computers at home, all behind a router. Sometimes, I need to access files between computers and so far I have always used ssh either in the terminal or by gftp.

However, I wanted to be able to mount certain folder remotely in a seamless way, as if it was on the computer I was currently using. This can easily be done by sshfs. It is not part of Slackware, but can be found at SBo: sshfs-fuse.

Once installed, I took a look at the corresponding section from the Arch Linux wiki. Let’s say I want to mount my photos folder. This can be done by:

sshfs username@IPADDRESS:/remote/photos /local/photos -options

or

sshfs username@HOSTNAME:/remote/photos /local/photos -options

Options that the wiki gives as an example are:

  • -p 9876 | the port number
  • -C | use compression
  • -o allow_other | allow non-rooted users have read/write access

To unmount, use the following command:

fusermount -u /local/photos

Works well!


One Comment on “Mount a remote folder by sshfs”

  1. […] been using sshfs to mount a remote folder between computers in my home networks. Sometimes I switch from WiFi to wired connection or the […]


Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s