
Good Reads
Here is our collection of our researched articles on different topics that would be good for you as you navigate the whole new internet world
-
.com domain price hike
Introduction: In the dynamic realm of the internet, change is the only constant. We’re dedicated to ensuring that our customers receive the highest quality services at the best value possible. That’s why we’re reaching out to share an important update: beginning September 1, 2023, there will be a price adjustment for our .COM domain offerings,…
-
Using Telegram As AirDrop On Linux
Apple has made a beautiful walled garden around its devices. These devices can easily share files, links and clipboards Therefore for linux users who would like to use such a feature on their devises such awith what is called airdrop. This is not so with Linux distros. This post shows how to use Telegram messaging…
-
8 Free Open Source Software used at Data Axis Node on Personal Computers.
8 Free Open Source Software used at Data Axis Node on Personal Computers. In a world where software licenses can be expensive and restrictive, free open source software (FOSS) has emerged as a viable alternative for individuals and businesses alike. FOSS not only provides users with the freedom to use, copy, study, and modify the…
-
Linux how to change password
Linux how to change password To change a user’s password in Linux, you can use the passwd command. Here’s how: Note that if you are not logged in as the user whose password you want to change, you will need to use the sudo command to run the passwd command with administrative privileges. For example,…
-
Linux how to delete a directory
Linux how to delete a directory To delete a directory in Linux, you can use the rm command with the -r (recursive) option. Here’s how: Replace “directory-name” with the name of the directory you want to delete. This will delete the directory and all of its contents, so be careful when using this command. Note…
-
Linux change hostname
Linux change hostname To change the hostname in Linux, you can use the hostnamectl command. Here’s how: This will display the current hostname, as well as other system information. Replace “new-hostname” with the new hostname you want to set. Note that the new hostname must be a valid hostname, consisting of letters, digits, and hyphens.…
-
Arch Linux install application
Arch Linux install application To install an application in Arch Linux, you can use the Pacman package manager through the command line. Here’s how: This will update the package database and upgrade any installed packages to their latest versions. Replace “application-name” with the name of the application you want to install. This will search the…
-
Ubuntu install application
Ubuntu install application There are several ways to install an application in Ubuntu, but the most common methods are using the Ubuntu Software Center, the command line, or downloading and installing a package directly. a. Open the Ubuntu Software Center from the Activities menu. b. Search for the application you want to install. c. Click…
-
Linux delete directory
Linux delete directory To delete a directory in Linux, you can use the rm command with the -r option, which stands for “recursive”. This option tells the rm command to delete the directory and all of its contents, including any subdirectories. Here’s the basic syntax for deleting a directory: For example, if you wanted to…