Use “Connect to Server” to connect via SFTP to access a folder in a remote server
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
How do I connect to my remote sftp account using ubuntu's "Connect to Server" option? When I have the "Connect to Server" dialog box on my screen, the "Service type" only shows:
FTP (with login)
Public FTP
Those are the only FTP options I can see in the dropdown. No SFTP option?
ssh remote-access lan sftp
add a comment |
How do I connect to my remote sftp account using ubuntu's "Connect to Server" option? When I have the "Connect to Server" dialog box on my screen, the "Service type" only shows:
FTP (with login)
Public FTP
Those are the only FTP options I can see in the dropdown. No SFTP option?
ssh remote-access lan sftp
See the bottom part of this answer: How to share files using a wireless network?
– user68186
Sep 25 '13 at 12:41
Here are provided more ideas: Filezilla or WinSCP alternative for Ubuntu.
– pa4080
Jan 15 '18 at 13:18
add a comment |
How do I connect to my remote sftp account using ubuntu's "Connect to Server" option? When I have the "Connect to Server" dialog box on my screen, the "Service type" only shows:
FTP (with login)
Public FTP
Those are the only FTP options I can see in the dropdown. No SFTP option?
ssh remote-access lan sftp
How do I connect to my remote sftp account using ubuntu's "Connect to Server" option? When I have the "Connect to Server" dialog box on my screen, the "Service type" only shows:
FTP (with login)
Public FTP
Those are the only FTP options I can see in the dropdown. No SFTP option?
ssh remote-access lan sftp
ssh remote-access lan sftp
edited Mar 30 at 8:13
kmario23
4421316
4421316
asked Sep 25 '13 at 12:12
oshirowanenoshirowanen
850185992
850185992
See the bottom part of this answer: How to share files using a wireless network?
– user68186
Sep 25 '13 at 12:41
Here are provided more ideas: Filezilla or WinSCP alternative for Ubuntu.
– pa4080
Jan 15 '18 at 13:18
add a comment |
See the bottom part of this answer: How to share files using a wireless network?
– user68186
Sep 25 '13 at 12:41
Here are provided more ideas: Filezilla or WinSCP alternative for Ubuntu.
– pa4080
Jan 15 '18 at 13:18
See the bottom part of this answer: How to share files using a wireless network?
– user68186
Sep 25 '13 at 12:41
See the bottom part of this answer: How to share files using a wireless network?
– user68186
Sep 25 '13 at 12:41
Here are provided more ideas: Filezilla or WinSCP alternative for Ubuntu.
– pa4080
Jan 15 '18 at 13:18
Here are provided more ideas: Filezilla or WinSCP alternative for Ubuntu.
– pa4080
Jan 15 '18 at 13:18
add a comment |
4 Answers
4
active
oldest
votes
The easiest way to connect to an SFTP server with Ubuntu is with the sftp://
scheme of the file managers with GVFS support (Nautilus, Nemo, Thunar) or KIO support (Dolphin, Konqueror):
Open a file manager window.
Show or focus the address bar e. g. with Ctrl+L.
(If this doesn't work your file manager may have an equivalent, alternative menu entry called “Go to…” or “Connect to…”. Some window manager require you to press Alt to show the menu bar.)
Enter the server address into the address bar:
sftp://example.org[:port]/
You can even supply username, password, and a path in the address:
sftp://[user[:password]@]example.org[:port]/[path/to/directory/]
If you don't and the SFTP account requires a password, a password dialogue will pop up.
You can do this for FTPS too btw (ftps://example.com
). Interestingly, even though this works, the "connect to server" dialog does not offer FTPS as an option. And im wondering if that is what the OP is actually asking about (since people often confuse SFTP as FTPS).
– dhaupin
Oct 28 '16 at 18:53
add a comment |
Do you see an SSH option in the dropdown? That is effectively the SFTP option, you should see it listed as such on the left pane once it connects.
Or you can skip the File → Connect to Server… sequence altogether and instead do Go → Location (or Ctrl+L) and then typing sftp://user@host/initial/dir
in the address bar.
add a comment |
Ubuntu doesn't have ssh installed by default, so you have to install ssh on Ubuntu in order to connect to a remote SFTP account.
sudo apt install ssh
add a comment |
As others have pointed out, it's pretty darn easy:
- Open any folder in your local system.
- press Ctrl + L , which will select the text in the address bar
clear that text and enter the following command in the address bar
sftp://username@contact.server.de
That should get you through. However, you might have to enter the passphrase if you have protected your SSH key with one.
Note: small letter L works, there's no need to use a capital letter.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f349873%2fuse-connect-to-server-to-connect-via-sftp-to-access-a-folder-in-a-remote-serve%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
The easiest way to connect to an SFTP server with Ubuntu is with the sftp://
scheme of the file managers with GVFS support (Nautilus, Nemo, Thunar) or KIO support (Dolphin, Konqueror):
Open a file manager window.
Show or focus the address bar e. g. with Ctrl+L.
(If this doesn't work your file manager may have an equivalent, alternative menu entry called “Go to…” or “Connect to…”. Some window manager require you to press Alt to show the menu bar.)
Enter the server address into the address bar:
sftp://example.org[:port]/
You can even supply username, password, and a path in the address:
sftp://[user[:password]@]example.org[:port]/[path/to/directory/]
If you don't and the SFTP account requires a password, a password dialogue will pop up.
You can do this for FTPS too btw (ftps://example.com
). Interestingly, even though this works, the "connect to server" dialog does not offer FTPS as an option. And im wondering if that is what the OP is actually asking about (since people often confuse SFTP as FTPS).
– dhaupin
Oct 28 '16 at 18:53
add a comment |
The easiest way to connect to an SFTP server with Ubuntu is with the sftp://
scheme of the file managers with GVFS support (Nautilus, Nemo, Thunar) or KIO support (Dolphin, Konqueror):
Open a file manager window.
Show or focus the address bar e. g. with Ctrl+L.
(If this doesn't work your file manager may have an equivalent, alternative menu entry called “Go to…” or “Connect to…”. Some window manager require you to press Alt to show the menu bar.)
Enter the server address into the address bar:
sftp://example.org[:port]/
You can even supply username, password, and a path in the address:
sftp://[user[:password]@]example.org[:port]/[path/to/directory/]
If you don't and the SFTP account requires a password, a password dialogue will pop up.
You can do this for FTPS too btw (ftps://example.com
). Interestingly, even though this works, the "connect to server" dialog does not offer FTPS as an option. And im wondering if that is what the OP is actually asking about (since people often confuse SFTP as FTPS).
– dhaupin
Oct 28 '16 at 18:53
add a comment |
The easiest way to connect to an SFTP server with Ubuntu is with the sftp://
scheme of the file managers with GVFS support (Nautilus, Nemo, Thunar) or KIO support (Dolphin, Konqueror):
Open a file manager window.
Show or focus the address bar e. g. with Ctrl+L.
(If this doesn't work your file manager may have an equivalent, alternative menu entry called “Go to…” or “Connect to…”. Some window manager require you to press Alt to show the menu bar.)
Enter the server address into the address bar:
sftp://example.org[:port]/
You can even supply username, password, and a path in the address:
sftp://[user[:password]@]example.org[:port]/[path/to/directory/]
If you don't and the SFTP account requires a password, a password dialogue will pop up.
The easiest way to connect to an SFTP server with Ubuntu is with the sftp://
scheme of the file managers with GVFS support (Nautilus, Nemo, Thunar) or KIO support (Dolphin, Konqueror):
Open a file manager window.
Show or focus the address bar e. g. with Ctrl+L.
(If this doesn't work your file manager may have an equivalent, alternative menu entry called “Go to…” or “Connect to…”. Some window manager require you to press Alt to show the menu bar.)
Enter the server address into the address bar:
sftp://example.org[:port]/
You can even supply username, password, and a path in the address:
sftp://[user[:password]@]example.org[:port]/[path/to/directory/]
If you don't and the SFTP account requires a password, a password dialogue will pop up.
edited Jan 15 '18 at 13:06
answered Sep 25 '13 at 12:28
David FoersterDavid Foerster
28.7k1367113
28.7k1367113
You can do this for FTPS too btw (ftps://example.com
). Interestingly, even though this works, the "connect to server" dialog does not offer FTPS as an option. And im wondering if that is what the OP is actually asking about (since people often confuse SFTP as FTPS).
– dhaupin
Oct 28 '16 at 18:53
add a comment |
You can do this for FTPS too btw (ftps://example.com
). Interestingly, even though this works, the "connect to server" dialog does not offer FTPS as an option. And im wondering if that is what the OP is actually asking about (since people often confuse SFTP as FTPS).
– dhaupin
Oct 28 '16 at 18:53
You can do this for FTPS too btw (
ftps://example.com
). Interestingly, even though this works, the "connect to server" dialog does not offer FTPS as an option. And im wondering if that is what the OP is actually asking about (since people often confuse SFTP as FTPS).– dhaupin
Oct 28 '16 at 18:53
You can do this for FTPS too btw (
ftps://example.com
). Interestingly, even though this works, the "connect to server" dialog does not offer FTPS as an option. And im wondering if that is what the OP is actually asking about (since people often confuse SFTP as FTPS).– dhaupin
Oct 28 '16 at 18:53
add a comment |
Do you see an SSH option in the dropdown? That is effectively the SFTP option, you should see it listed as such on the left pane once it connects.
Or you can skip the File → Connect to Server… sequence altogether and instead do Go → Location (or Ctrl+L) and then typing sftp://user@host/initial/dir
in the address bar.
add a comment |
Do you see an SSH option in the dropdown? That is effectively the SFTP option, you should see it listed as such on the left pane once it connects.
Or you can skip the File → Connect to Server… sequence altogether and instead do Go → Location (or Ctrl+L) and then typing sftp://user@host/initial/dir
in the address bar.
add a comment |
Do you see an SSH option in the dropdown? That is effectively the SFTP option, you should see it listed as such on the left pane once it connects.
Or you can skip the File → Connect to Server… sequence altogether and instead do Go → Location (or Ctrl+L) and then typing sftp://user@host/initial/dir
in the address bar.
Do you see an SSH option in the dropdown? That is effectively the SFTP option, you should see it listed as such on the left pane once it connects.
Or you can skip the File → Connect to Server… sequence altogether and instead do Go → Location (or Ctrl+L) and then typing sftp://user@host/initial/dir
in the address bar.
edited Nov 18 '16 at 15:52
David Foerster
28.7k1367113
28.7k1367113
answered Sep 25 '13 at 12:31
steeldriversteeldriver
71k11115187
71k11115187
add a comment |
add a comment |
Ubuntu doesn't have ssh installed by default, so you have to install ssh on Ubuntu in order to connect to a remote SFTP account.
sudo apt install ssh
add a comment |
Ubuntu doesn't have ssh installed by default, so you have to install ssh on Ubuntu in order to connect to a remote SFTP account.
sudo apt install ssh
add a comment |
Ubuntu doesn't have ssh installed by default, so you have to install ssh on Ubuntu in order to connect to a remote SFTP account.
sudo apt install ssh
Ubuntu doesn't have ssh installed by default, so you have to install ssh on Ubuntu in order to connect to a remote SFTP account.
sudo apt install ssh
edited Feb 1 at 14:55
karel
61.1k13132155
61.1k13132155
answered Feb 1 at 13:58
Ing. Josef KlotznerIng. Josef Klotzner
113
113
add a comment |
add a comment |
As others have pointed out, it's pretty darn easy:
- Open any folder in your local system.
- press Ctrl + L , which will select the text in the address bar
clear that text and enter the following command in the address bar
sftp://username@contact.server.de
That should get you through. However, you might have to enter the passphrase if you have protected your SSH key with one.
Note: small letter L works, there's no need to use a capital letter.
add a comment |
As others have pointed out, it's pretty darn easy:
- Open any folder in your local system.
- press Ctrl + L , which will select the text in the address bar
clear that text and enter the following command in the address bar
sftp://username@contact.server.de
That should get you through. However, you might have to enter the passphrase if you have protected your SSH key with one.
Note: small letter L works, there's no need to use a capital letter.
add a comment |
As others have pointed out, it's pretty darn easy:
- Open any folder in your local system.
- press Ctrl + L , which will select the text in the address bar
clear that text and enter the following command in the address bar
sftp://username@contact.server.de
That should get you through. However, you might have to enter the passphrase if you have protected your SSH key with one.
Note: small letter L works, there's no need to use a capital letter.
As others have pointed out, it's pretty darn easy:
- Open any folder in your local system.
- press Ctrl + L , which will select the text in the address bar
clear that text and enter the following command in the address bar
sftp://username@contact.server.de
That should get you through. However, you might have to enter the passphrase if you have protected your SSH key with one.
Note: small letter L works, there's no need to use a capital letter.
answered Mar 30 at 0:40
kmario23kmario23
4421316
4421316
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f349873%2fuse-connect-to-server-to-connect-via-sftp-to-access-a-folder-in-a-remote-serve%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
See the bottom part of this answer: How to share files using a wireless network?
– user68186
Sep 25 '13 at 12:41
Here are provided more ideas: Filezilla or WinSCP alternative for Ubuntu.
– pa4080
Jan 15 '18 at 13:18