- 4 Ways to Transfer Files Between Remote and Local Systems Over SSH
- Method 1: Use scp command to copy files over SSH
- Copy files from the remote machine to your local machine
- Copy files from your local machine to the remote machine
- You can copy directories too
- Method 2: Use rsync to copy files and directories over SSH
- Copy files from the remote machine to your local machine
- Copy files from your local machine to the remote machine
- How about copying directories with rsync?
- Method 3: Using SSHFS to access files from remote system over SSH
- Method 4: Use a GUI-based SFTP client for transferring files between remote systems
- Which method do you prefer?
- Копирование файлов через SSH
- Копирование файлов по SSH на Linux
- Как скопировать файл по SSH с локальной машины на удалённый сервер
- Как скопировать файлы с удалённого сервера на локальный компьютер
- Как скопировать файл по SSH с одного удалённого сервера на другой
- Как скачать папку со всеми файлами и подпапками
- Как подключиться к серверу по нестандартному порту
- Как передать и скачать файлы по SSH на Windows
- How to copy files over ssh [closed]
- 1 Answer 1
4 Ways to Transfer Files Between Remote and Local Systems Over SSH
From legacy scp to modern rsync. From the unconventional sshfs to the GUI convenience of FileZilla. Learn different ways for copying files over SSH.
Sooner or later, you’ll find yourself in a situation where you have to upload the file to the remote server over SSH or copy a file from it.
There are various ways you can transfer files over SSH. I am going to discuss the following methods here:
- scp: Legacy command which is being deprecated
- rsync: Popular command for file synchronization
- sshfs: Mounting remote directory over SSH
- sftp clients: GUI tool for accessing file over SFTP
For a successful file transfer over SSH, you need to
- have SSH access between the two machines
- know the username and password on the remote machine
- know the IP address or hostname (on the same subnet) of the remote machine
With that aside, let’s see the methods for copying files between remote systems via SSH.
Method 1: Use scp command to copy files over SSH
I have read that scp is going to be deprecated. Still, it is my favorite tool for transferring files between systems over SSH. Why? Because its syntax is similar to the cp command.
Let’s see how to use the scp command.
Copy files from the remote machine to your local machine
Here’s the scenario. You want to copy files from the remote Linux system to the currently logged in system.
Here’s a generic syntax that copies the file from the home directory of the user on the remote system to the current directory of your locally logged in system.
scp [email protected]_address:/home/username/filename .
Do you see the similarity with the cp command? It’s almost the same except that you have to specify username and ip address with colon (:).
Now, let me show you a real-world example of this command.
In the example above, I copied the file remote.txt from the /home/abhishek/my_file directory on the remote system to the current directory of the local machine.
This should give you a hint that you should know the exact location of the file on the remote system. The tab completion does not work on remote systems.
Copy files from your local machine to the remote machine
The scenario is slightly changed here. In this one, you are sending a local file to the remote system over SSH using scp.
This is a generic syntax which will copy the filename to the home directory of username on the remote system.
In the above example, I copied local.txt file from the current directory to the home directory of the user abhishek on the remote system.
Then I logged into the remote system to show that the file has actually been copied.
You can copy directories too
Remember I told you I like scp because of its similarity with the cp command?
Like cp command, you can also use scp to copy directory over SSH. The syntax is similar to the cp command too. You just have to use the -r option.
scp -r source_dir [email protected]_address:/home/username/target_dir
You can do a lot more with it. Read some more examples of scp command in this tutorial:
Method 2: Use rsync to copy files and directories over SSH
Since scp is being deprecated, rsync is the next best tool for copying files between remote system over SSH. Actually, it is better than scp in many terms.
The command syntax is the same as scp. Older versions of rsync had to use rsync -e ssh but that’s not the case anymore.
Copy files from the remote machine to your local machine
Let’s say you want to copy a file from the home directory of the user on the remote system to the current directory of your locally logged in system.
rsync [email protected]_address:/home/username/filename .
Let’s take the same example you saw with scp. I am copying the file remote.txt from the /home/abhishek/my_file directory on the remote system to the current directory of the local machine.
Copy files from your local machine to the remote machine
Here is a generic syntax which will copy the file to the home directory of username on the remote system.
Time to see the real world example. I am copying local.txt file from the current directory to the home directory of the user abhishek on the remote system.
How about copying directories with rsync?
It’s the same. Just use -r option with rsync to copy entire directory over SSH between remote systems.
rsync -r source_dir [email protected]_address:/home/username/target_dir
Take a look at this example. I copy the entire my_file directory from the remote system to the local system.
rsync is a versatile tool. It is essentially a tool for ‘recursively syncing’ the contents between two directories and quite popular for making automated backups.
Method 3: Using SSHFS to access files from remote system over SSH
There is also SSHFS (SSH Filesystem) that can be used to access remote files and directories. However, this is not very convenient just for copying files.
In this method, you mount the remote directory on your local system. Once mounted, you can copy files between the mounted directory and the local system.
You may need to install sshfs on your local system first using your distribution’s package manager.
On Debian and Ubuntu, you may use the following command:
Once you have sshfs installed on your system, you can use it to mount the remote directory. It would be better to create a dedicated directory for the mount point.
Now mount the desired directory on the remote machine in this fashion:
sshfs [email protected]_address:path_to_dir mount_dir
Once it is mounted, you can copy files into this directory or from this directory as if it is on your local machine itself.
Remember that you have mounted this file. Once your work is done, you should also unmount it:
Here’s an example where I mounted the my_file directory from the remote system to the remote_dir directory on the local system. I copied the remote.txt file to the local system and then unmounted the directory.
Method 4: Use a GUI-based SFTP client for transferring files between remote systems
As the last resort, you can use an FTP client for transferring files between remote and local systems.
FileZilla is one of the most popular cross-platform FTP client. You can easily install on your local system.
Once installed, go to File->Site Manager and add the remote system details like IP address, SSH port number, username and password.
Once you connect, you can see a split window view that shows the local filesystem on the left and the remote filesystem on the right.
To transfer the file, drag and drop files from left to right or right to left. A progress bar appears at the bottom.
Which method do you prefer?
Alright! I showed various command line and GUI methods that can be used for copying files over SSH.
Now it is up to you to decide which method to use here. Do comment your preferred method for transferring files over SSH.
Копирование файлов через SSH
В статье мы расскажем, как копировать файлы в Windows и Linux-системах, и покажем основные команды, с помощью которых происходит передача файлов по SSH.
Для копирования файлов по SSH в Linux-системах и Windows используют разные инструменты:
- scp (Secure CoPy) — утилита для безопасного копирования данных между Linux-системами по протоколу SSH. Она входит в состав OpenSSH, поэтому для работы с утилитой не нужно устанавливать дополнительное ПО;
- pscp.exe — утилита для загрузки файлов по SSH в ОС Windows. Она обладает теми же возможностями, что и scp. Утилита входит в состав программы Putty — SSH-клиента для Windows. Скачать программу можно по ссылке.
Если файл, который вы хотите скопировать, уже существует на целевом хосте, при копировании он будет перезаписан.
Копирование файлов по SSH на Linux
Для Linux копирование файлов по SSH происходит с использованием команды scp. С её помощью можно копировать файлы:
- с локального компьютера на удалённый сервер,
- с удалённого сервера на локальный компьютер,
- с одного удалённого сервера на другой.
scp [опция] [источник] [получатель]
Как скопировать файл по SSH с локальной машины на удалённый сервер
Как загрузить файл на сервер по SSH? Для этого используйте команду вида:
scp [путь к файлу] [имя пользователя]@[имя сервера/ip-адрес]:[путь к файлу]
scp /home/test.txt root@123.123.123.123:/directory
Файл test.txt будет скопирован на хост 123.123.123.123 в директорию «/directory».
Как скопировать файлы с удалённого сервера на локальный компьютер
При подключённом SSH скачать файл на локальный компьютер с удалённого сервера можно с помощью команды:
scp [имя пользователя]@[имя сервера/ip-адрес]:[путь к файлу] [путь к файлу]
scp root@123.123.123.123:/home/test.txt /directory
Файл test.txt будет загружен с сервера 123.123.123.123 на локальный компьютер в папку «/directory».
Как скопировать файл по SSH с одного удалённого сервера на другой
Подключитесь по SSH к серверу, на котором расположен файл. Затем выполните команду:
scp [путь к файлу] [имя пользователя]@[имя сервера/ip-адрес]:[путь к файлу]
scp /home/test.txt root@123.123.123.123:/directory
Файл test.txt будет скопирован на хост 123.123.123.123 в директорию «/directory».
Как скачать папку со всеми файлами и подпапками
Если вы хотите скачать папку со всеми файлами и подпапками, используйте ключ -r:
scp -r [источник] [получатель]
Как подключиться к серверу по нестандартному порту
Бывает, что для подключения по SSH нужно указать нестандартный порт. Без указания порта команда подключается к серверу по стандартному 22 порту. Чтобы указать нестандартный порт, введите команду с ключом -P:
scp -P [источник] [получатель]
scp -P 12345 /home/test.txt root@123.123.123.123:/directory
Эта команда подключается по порту 12345 к серверу 123.123.123.123 и копирует на него файл «test.txt» с локального компьютера в директорию «/directory».
Как передать и скачать файлы по SSH на Windows
Скопировать файл по SSH на сервер можно командой:
pscp [путь к файлу] [имя пользователя]@[имя сервера/ip-адрес]:[путь к файлу]
Скачать файл по SSH с сервера командой:
pscp [имя пользователя]@[имя сервера/ip-адрес]:[путь к файлу] [путь к файлу]
Увидеть список папок и файлов на сервере можно через pscp.exe. Для этого введите:
pscp -ls [имя пользователя]@[имя сервера/ip-адрес]:[путь]
Если в пути или в названии файла есть пробелы, используйте кавычки:
pscp “C:\files or docs\file name” root@123.123.123.123:/home
How to copy files over ssh [closed]
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
How do I copy a file using ssh from my test server to my production server, how do I do this for a single file and how do I do this for multiple files?
1 Answer 1
From Window to Linux
Download https://cygwin.com/ this will give you a proper terminal which will then allow you to run the linux commands as listed below in the From Linux to Linux section.
From Linux to Linux
The essential command is this
The command
scp [ssh login to remote server]:[filepath] [local filepath]
To copy a single file example
scp user@your.server.example.com:/path/to/foo/[filename] /home/user/Desktop/[filename]
To copy a directory example
scp -r user@your.server.example.com:/path/to/foo /home/user/Desktop/
To use full power of scp you need to go through next steps:
Then, for example if you’ll have this ~/.ssh/config:
Host test User testuser HostName test-site.com Port 22022 Host prod User produser HostName production-site.com Port 22022
you’ll save yourself from password entry and simplify scp syntax like this:
scp -r prod:/path/foo /home/user/Desktop # copy to local scp -r prod:/path/foo test:/tmp # copy from remote prod to remote test
More over, you will be able to use remote path-completion:
scp test:/var/log/ # press tab twice Display all 151 possibilities? (y or n)