Show Verbose Progress when Copying Files in Ubuntu Server via CLI

In short, I had some big files inside folders I needed to copy from one directory to another and wanted to know what the progress. This immediately took me to this article and I’m simply sharing the command here. rsync –info=progress2 -auvz /path_to_source_directory/ /somewhere/destination_directory/ This will display the progress with some information like write speed. Really helpful. …

Getting Started with an Arduino Nano in Ubuntu 22.04 LTS

Hey everyone, today we’re going through the initial setup of an Arduino Nano that I had received as a gift from a friend. This is a simple tutorial where we’ll be loading up a script (built into the software) in Ubuntu in order to make an LED light fade in and out. I’m basically writing …