In this article i am going to show you how to connect SSH, SFTP and FTP servers using Nautilus in ubuntu 13.04. Please follow the procedure given below. Open Nautilus Location Bar (open your home folder) and goto the “File” menu then select “Enter Location” option.
For SSH, use:
1 2 3 | ssh://username@ssh.server.com |
For FTP, use:
1 2 3 | ftp://username@ftp.server.com |
For SFTP, use:
1 2 3 | sftp://username@sftp.server.com |
Note: Replace username and server address with your username and server address. I you want to specify your password manually, change the above like:
For SSH, use:
1 2 3 | ssh://username:password@ssh.server.com |
For FTP, use:
1 2 3 | ftp://username:password@ftp.server.com |
For SFTP, use:
1 2 3 | sftp://username:password@sftp.server.com |
First time, It may ask you to verify the identity of the server. Click on “Log in Anyway” to continue.
You will be prompted for a password if needed. Enter your passwordand hit “Connect” button.
That’s it. you are connected to the remote server.