Month: November 2022

Adding a hard drive in Linux

November 12, 2022 Linux

When a new drive is added in Linux, it will not automatically appear and be usable. It will need to be partitioned and formatted for proper use first.…

Creating a self signed certificate

November 12, 2022 Linux

You may need to run a secure web server at some time which will require an SSL certificate. Even if you choose to have a commercial certificate, you…

Crontab – How it is used

November 12, 2022 Linux

Crontab is a great utility to automate scripts and processes on your Linux/Unix/Mac machine. Regular users and root each have access to this utility. To check the cron…

MariaDB/MySQL – Recover root password

November 12, 2022 Linux

Here are commands you need to type for each step (login as the root user): Step 1.  Stop MariaDB service. # systemctl stop mariadb Step 2.  Start MariaDB server w/o…

Tar commands

November 12, 2022 Linux

To create an archive using tar, use a command like this, which bundles all the files in the current directory that end with .txt into the alltxt.tar file:…