Tag Archives: copy

Copy with rsync over ssh

From remote server to local one: rsync -avzhe ssh remote_user@REMOTE_IP:/remote_folder_or_file /local_destination_folder_or_file From local server to remote one: rsync -avzhe ssh local_folder_or_file remote_user@REMOTE_IP:/remote_destination_folder_or_file That’s it, Enjoy! Sources: Rsync (Remote Sync): 10 Practical Examples of Rsync Command in Linux

Posted in Linux | Tagged , , | Leave a comment

A nice way to show progress when copying files

The cp command is not really good with that, there are some ways to do it, but unnecessarily complicated. The best option is to use rsync instead: rsync –progress source destination It will show you something like this: 3885367296 0% … Continue reading

Posted in Linux, Uncategorized | Tagged , , | Leave a comment

Solution to Virtualbox Shared Folders “request not supported” error when accessing/copying files on Windows Guests

Just disable the “Offline Files” Open Windows Explorer -> Tools -> Folder Options -> Offline Files Remove the tick from “Enable Offline Files” There you go! Source: http://forums.virtualbox.org/viewtopic.php?f=2&t=27062&p=188821#p188821

Posted in VirtualBox | Tagged , , , , , , , , , | Leave a comment