Monthly Archives: October 2019

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: https://www.tecmint.com/rsync-local-remote-file-synchronization-commands/

Posted in Linux | Tagged , , | Leave a comment

Build Synergy in Ubuntu 19.04

Synergy software, which shares your keyboard and mouse to multiple computers through the network, is no longer available in the Ubuntu 19.04 repos, so the only remaining option is to build it from source: sudo apt install qtcreator qtbase5-dev cmake … Continue reading

Posted in Linux, Ubuntu | Tagged , | 2 Comments