Configure Ubuntu Pi-hole for Cloudflare DNS over HTTPS

To configure Pi-hole on Ubuntu to use Cloudflare’s DNS over HTTPS (DoH) service, you’ll need to follow these steps: Install Pi-hole on your Ubuntu system following the official installation guide. Once Pi-hole is installed and running, log in to the web interface and navigate to the “Settings” page. Scroll down to the “DNS” section, and … Read more

How do I force delete a directory in Linux?

To force delete a directory in Linux, you can use the “rm” command with the “-r” (recursive) and “-f” (force) options. For example, to force delete a directory named “mydir”, you would use the following command: rm -rf mydir Please note that this command will delete the directory and all its contents without prompting for … Read more

How to check Unix version using command line

You can check the Unix version using the command line by running the following command: uname -a This command will display the system’s name, version, and other information about the operating system. Alternatively, you can use the command: lsb_release -a It will show you the release version, codename and other details of the OS.