How to Transfer Files with Scp Tool on Linux

The other day I needed to copy files from my local machine to my Raspberry Pi with DietPi without desktop installed. My only method of accessing the Raspberry Pi was via ssh. I wanted to transfer files in the simplest way on terminal. I searched how to make this work and found the scp tool. In this article i’ll show you how to transfer files and folders using scp command-line tool....

September 8, 2023 · 3 min · 631 words · CodeGenos

How to Fix Touchpad Tap to Click Problem via Xorg Config on Ubuntu

Problem Touchpad tap-to-click was not working when i first installed Ubuntu linux. I will show you how to fix this problem. Check input devices One way to check which devices are managed by libinput is the xorg logfile. To view the devices, run the follwing command: grep -e "Using input driver 'libinput'" /var/log/xorg.conf.d/Xorg.0.log [ 181.523] (II) Using input driver 'libinput' for 'Video Bus' [ 181.604] (II) Using input driver 'libinput' for 'Integrated Camera: Integrated C' [ 181....

August 11, 2023 · 2 min · 410 words · CodeGenos

Firefox Executable File not Found in $PATH for Flatpak on Linux

Intro When an application is installed via apt package management tool, you can start running the application when you type the application name in terminal, for example firefox. But when you install the application with Flatpak utility you must run the Flatpak application using this command: flatpak run org.mozilla.firefox Problem But when i want to authenticate my command-line sessions with GitHub using Github CLI Tool command gh auth login with HTTPS protocol and Login with a web browser options, i get this error:...

August 8, 2023 · 4 min · 736 words · CodeGenos