Author Archives: Ahmed Tawfik

Unknown's avatar

About Ahmed Tawfik

Cybersecurity Professional, Systems Engineer, OSS & Linux Geek

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

Fix icon and text size for hidpi displays on login screen in KDE on Ubuntu 19.04

Just create/edit the file /etc/sddm.conf and add the following: [X11] EnableHiDPI=true ServerArguments=-nolisten tcp -dpi 192 Reboot, and you’re good to go, Enjoy! Sources: https://www.reddit.com/r/kde/comments/amybg5/login_screen_on_hidpi_4k_screen/

Posted in Linux | Tagged , , | 2 Comments

Get your Desktop Icons BACK on Ubuntu 19.04 with Nemo

Gnome disabled OOTB support for managing Desktop icons, and is now handled via a gnome shell extension that is missing many features and not quite usable. The best solution I found so far was to install nemo (file manager on … Continue reading

Posted in Linux, Ubuntu | Tagged , , , , | 4 Comments

Reset your Ubuntu Desktop to its default settings

dconf reset -f / Sources: https://www.omgubuntu.co.uk/2017/10/how-to-reset-ubuntu-desktop-to-default

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