Use “Connect to Server” to connect to SFTP The Next CEO of Stack OverflowHow to share...
What is the purpose of the Evocation wizard's Potent Cantrip feature?
Can I equip Skullclamp on a creature I am sacrificing?
How fast would a person need to move to trick the eye?
Is it possible to search for a directory/file combination?
What happened in Rome, when the western empire "fell"?
Should I tutor a student who I know has cheated on their homework?
Why am I allowed to create multiple unique pointers from a single object?
How do we know the LHC results are robust?
MessageLevel in QGIS3
Is there a way to save my career from absolute disaster?
Do I need to enable Dev Hub in my PROD Org?
Why does the UK parliament need a vote on the political declaration?
If the heap is initialized for security, then why is the stack uninitialized?
Is it professional to write unrelated content in an almost-empty email?
Return the Closest Prime Number
Why do we use the plural of movies in this phrase "We went to the movies last night."?
Is "for causing autism in X" grammatical?
Are there any unintended negative consequences to allowing PCs to gain multiple levels at once in a short milestone-XP game?
If/When UK leaves the EU, can a future goverment conduct a referendum to join the EU?
Rotate a column
What flight has the highest ratio of time difference to flight time?
Are there any limitations on attacking while grappling?
Is HostGator storing my password in plaintext?
Can we say or write : "No, it'sn't"?
Use “Connect to Server” to connect to SFTP
The Next CEO of Stack OverflowHow to share files through the local network?Filezilla or WinSCP alternative for UbuntuAdd an SSH option to an sftp URL in nautilusFile Manager won't connect to sFTP ServerSFTP for 2 different accounts in Ubuntu Server 14.10Ubuntu Server 14.04 LTS includes unknown SFTP serverConnection closed when trying to connect to sftp server. Match group issue?Connect To Lubuntu Server Via SFTP From Webvsftpd used for FTP but not user for SFTPCan you use SFTP with VSFTPDCreate SFTP User to connect and chroot it to only one subfolder ( using public , private key authentication instead of passwordUbuntu Server 16 SFTP + downloading latest randomly named file
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?
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?
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?
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?
sftp
sftp
asked Sep 25 '13 at 12:12
oshirowanenoshirowanen
845185992
845185992
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-to-sftp%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.6k1367113
28.6k1367113
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.6k1367113
28.6k1367113
answered Sep 25 '13 at 12:31
steeldriversteeldriver
70.5k11114187
70.5k11114187
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
60.6k13132155
60.6k13132155
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 17 mins ago
kmario23kmario23
4301316
4301316
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-to-sftp%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