Mount remote file systems over ssh with three steps:

  1. install sshfs
witr@witr-pc:~$ sudo apt-get install sshfs
  1. create directory where you willi mount your remote file sustem
witr@witr-pc:~$ sudo mkdir /mnt/witrRemote
  1. finally, mount the remote file system
witr@witr-pc:~$ sudo sshfs witr@serv.witr.net:myRemoteFolder/ /mnt/witrRemote/

Assumes myRemoteFolder is on witr serve home directory. See warning bellow.

warn : ~ is expanded by the shell. Paths are relative on sshfs. that means : “sshfs witr@serv.witr.net:~/myRemoteFolder …” will fail with No such file or directory error.