Connect to FTP/SFTP in Dolphin or transfer Nautilus Bookmarks

Solution 1:

On the left hand side of the Dolphin window, click Network. There will be a item for adding a network location like ftp or scp. Dolphin is a great file manager...

Solution 2:

If you just want a quick connection, you can click the navigation breadcrumbs on above the file list (or Ctrl+L) and type directly:

sftp://{username[:password]}@{domain}/{path}

Solution 3:

SFTP in Dolphin is implemented as fish

fish://{username[:password]}@{domain:port}/{path}

Solution 4:

If you want to connect using a key file.

  1. create a config file in path ~/.ssh/config
  2. config file may look like this

    Host <any-host-name-of-your-choice>
         HostName <provided host name, must be the address>
         User <username to login>
         Port <if you have a port, else remove this line>
         IdentityFile ~/.ssh/<valid key path>.key

  3. Save the file, in Dolphin Address bar type sftp://<any-host-name-of-your-choice>

  4. this will connect to server using dolphin and private key file.