RECOMMENDED ARTICLES
MOUNT a REMOTE DIRECTORY using SSHFS
We need sshfs and fuse-utils packages first:
#aptitude install sshfs fuse-utils
mount the remote directory:
Remote computer IP address: 192.168.0.1
I am the user myuser
remote directory path: /home/myuser/remote_dir
local directory path: ~/local_dir
ssh remote machine port: 12345
$sshfs myuser@192.168.0.1:/home/myuser/remote_dir local_dir -p 12345
unmount the remote directory:
$fusermount -u local_dir