Tutorial by Examples

You can mount remote directory through ssh by using sshfs. Sshfs does not come as a default on Ubuntu, so you need to install it first by using sudo apt-get install sshfs. You can then mount the remote directory to your local machine like this sshfs [email protected]:/remotedir /localdir Not...
One way to move files between servers is by using the scp command. Secure copy command utilizes ssh to transfer data. The simples example for copying a file from local to remote server is scp /localdir/localfile [email protected]:/remotedir/remotefile Similarily, to copy file from a remote t...

Page 1 of 1