Using my PC I just used Tunnelier, it took care of all the dirty work for me. Now that I have got a MacBook Pro (for design purposes) I am at a loss of how to send my files to the Linux server.
Any help would be appreciated.
|
feedback
|
This question came from our site for professional and enthusiast programmers.
|
Where:
The great thing about rsync is that it only copies what it needs to. So if you run the command a second time, it should copy nothing at all (unless one of the files has changed on either end in the meantime). This is also useful if your transfer gets interrupted somehow. The output of the command above will give you some information on by how much it has sped up your file transfer. | |||||||
feedback
|
useful options: -r for recursive copy -P portnumber if you want to use a port other than 22 (standard ssh) | |||
|
feedback
|
|
Open Terminal ( press Command key + Space, type "Terminal", press Enter ) In the Terminal type:
It will ask for the user's (your) password and will copy "your_files" to the user's home directory (~). In case you need to copy it to another directory on the Linux server:
Make sure "user" has write permissions to "path_to_another_directory" | |||
|
feedback
|
|
Here is the man page (instructions manual) for using SCP http://linux.die.net/man/1/scp Make sure you have your ssh keys set up in your home directory (~/.ssh) with the correct permissions (chmod 600) Then you can type scp PATH_TO_FILE username@server:PATH_TO_DESTINATION Example: scp abc.txt myuser@linuxserver:~/ will copy the abc.txt file and copy it to the home directory on the linux server. If everything is working properly, you should see a progress bar and it will let you know when it is complete. | |||
|
feedback
|
|
There are lots of ways. Just to name a few:
If you are more GUI-inclined: If you like paying: | |||
|
feedback
|