Vagrantfile for installing Nginx unit in a Vagrant VM

Nginx unit is a lightweight Universal Web app server that can run static files, PHP, Python, Ruby, Go, NodeJS, Java and Perl. It is fantastic, and you should learn to use it, is all I can say. Requirements before running this Vagrant file: Notes: The Vagrant box used is Debian 11, feel free to use …

Read more

Remove Virtualbox installed via deb packages – Debian 11

If you download a .deb package and successfully install an app using sudo dpkg -i thedebpackage.deb, you can uninstall it. It is not as straightforward as using apt. Here is how to uninstall a Debian app installed via a downloaded deb package. Step 1: Find the name of the package as installed on your system: …

Read more

Completely uninstall MariaDB – Debian 11

Note that the following steps will completely purge your MariaDB, configs and all other setup. In the command below, note that purge has 2 hyphens in front of it. sudo apt-get –purge remove “mysql*” # Note that purge has 2 hyphens in front of it. sudo rm -rf /etc/mysql sudo rm -rf /var/lib/mysql # You …

Read more