Skip to main content
2 of 7
the name of the unlinked local directory was different than the one used in the commands before

Install sshfs:

sudo apt-get install sshfs

Create an empty dir

mkdir /home/user/testdir

"link" or "mount" the two directories

sshfs [email protected]:/remote/dir /home/user/test

"unlink" the dirs

fusermount -u /home/user/testdir

For more see here, linuxjournal.com

Ruban Savvy
  • 9k
  • 8
  • 31
  • 44