Connect to FTP/SFTP in Dolphin or transfer Nautilus Bookmarks
Sophia Terry
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?
6 Answers
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...
2If 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} 3 SFTP in Dolphin is implemented as fish
fish://{username[:password]}@{domain:port}/{path} 4 If you want to connect using a key file.
- create a config file in path ~/.ssh/config
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>.keySave the file, in Dolphin Address bar type sftp://<any-host-name-of-your-choice>
this will connect to server using dolphin and private key file.
- On the left hand side of the Dolphin main window, is a network link
- Click on the network link
- There will be a symbol for adding a network folder, double click it and a pop up window will happen.
- Select ftp option from the list and another new window will pop up.
- You are now at the Net Work Information place. Type a name for your network folder.
- Next enter your user name.
- Then enter the server name.
- Press the save and connect option.
- A pop up will appear and will hang, will play pretend its working for infinity
- Could never get it to work.
I am not sure how exactly Dolphin works, seems like its using KIO under the hood so:
sudo apt install kio-extrasAdded sftp for me.
0