32

I am really liking the power of Dolphin and all the KDE tools that go along with using it. What can I do to connect over FTP/SFTP with Dolphin?

TRiG
  • 2,006
Goddard
  • 4,860

7 Answers7

31

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...

Mordoc
  • 2,074
25

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}
jaxxed
  • 251
19

SFTP in Dolphin is implemented as fish

fish://{username[:password]}@{domain:port}/{path}
nerdtron
  • 199
5
  1. On the left hand side of the Dolphin main window, is a network link
  2. Click on the network link
  3. There will be a symbol for adding a network folder, double click it and a pop up window will happen.
  4. Select ftp option from the list and another new window will pop up.
  5. You are now at the Net Work Information place. Type a name for your network folder.
  6. Next enter your user name.
  7. Then enter the server name. (Enter the server I.P address instead)
  8. Press the save and connect option.
  9. A pop up will appear for password

On the left hand side of the Dolphin main window, is a network link enter image description here

Click on the network link
Then on add network folder. enter image description here
Select ftp option from the list and another new window will pop up.
If secure SSL encryption is activated on your server, can use the secure shell option to login instead. enter image description here

Use I.P address, not site address, use the number. enter image description here

enter image description here

abc
  • 116
3

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.

Prabah
  • 131
2

Here is how I have done it that after a lot of searching. Go to Dolphin, right click to add entry, and then type fish://<ip> like we do in Nautilus.

screenshot of Dolphin connecting via SFTP using the fish:// protocol

You can read about the fish:// protocol here: Files transferred over shell protocol

1

I am not sure how exactly Dolphin works, seems like its using KIO under the hood so:

sudo apt install kio-extras

Added sftp for me.

Pablo Bianchi
  • 17,371