mount remote file systems over ssh (sshfs)
1. install sshfs
witr@witr-pc:~$ sudo apt-get install sshfs
2. create directory where you willi mount your remote file sustem
witr@witr-pc:~$ sudo mkdir /mnt/witrRemote
3. 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.