Showing 1 Result(s)

How to mount remote directory using SSH ?

How to mount remote directory using SSH and make it available it as local directory. Install the module sshfs: [php]sudo apt-get install sshfs[/php] Load it to kernel [php]sudo modprobe fuse[/php] Set permissions [php] sudo adduser $USER fuse sudo chown root:fuse /dev/fuse sudo chmod +x /dev/fusermount [/php] Now create a directory to mount the remote folder …