How to copy files across computers using SSH and MAC OS X Terminal

MacosUnixFileTerminalCopying

Macos Problem Overview


I'm trying to copy my .profile, .rvm and .ssh folders/files to a new computer and keep getting a "not a regular file" response. I know how to use the cp and ssh commands but I'm not sure how to use them in order to transfer files from one computer to another.

Any help would be great, thanks!

Macos Solutions


Solution 1 - Macos

You can do this with the scp command, which uses the ssh protocol to copy files across machines. It extends the syntax of cp to allow references to other systems:

scp username1@hostname1:/path/to/file username2@hostname2:/path/to/other/file

Copy something from this machine to some other machine:

scp /path/to/local/file username@hostname:/path/to/remote/file

Copy something from another machine to this machine:

scp username@hostname:/path/to/remote/file /path/to/local/file

Copy with a port number specified:

scp -P 1234 username@hostname:/path/to/remote/file /path/to/local/file

Solution 2 - Macos

First zip or gzip the folders:
Use the following command:

> zip -r NameYouWantForZipFile.zip foldertozip/

or

>tar -pvczf BackUpDirectory.tar.gz /path/to/directory

for gzip compression use SCP:

> scp [email protected]:~/serverpath/public_html ~/Desktop

Solution 3 - Macos

You may also want to look at rsync if you're doing a lot of files.

If you're going to making a lot of changes and want to keep your directories and files in sync, you may want to use a version control system like Subversion or Git. See http://xoa.petdance.com/How_to:_Keep_your_home_directory_in_Subversion

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionalvincrespoView Question on Stackoverflow
Solution 1 - MacosEtherView Answer on Stackoverflow
Solution 2 - MacosSamView Answer on Stackoverflow
Solution 3 - MacosAndy LesterView Answer on Stackoverflow