How to install LXD container hypervisor on Ubuntu 16.04 LTS

To install LXD container hypervisor on Ubuntu 16.04 LTS, follow these steps: Add the LXD PPA (Personal Package Archive) to your system: sudo add-apt-repository ppa:ubuntu-lxc/lxd-stable Update the package list: sudo apt update Install the LXD package: sudo apt install lxd Initialize LXD: sudo lxd init During the initialization process, you will be prompted to configure … Read more

How to check if port is in use on Linux or Unix

To check if a port is in use on a Linux or Unix machine, you can use the following command: lsof -i :port_number Replace port_number with the desired port number. The command will list all the processes using the specified port number. If no process is using the port, the command will return no results.

How to pair Pi-hole with an OpenVPN to block ads and increase privacy on Ubuntu / Debian Linux

To pair Pi-hole with OpenVPN on Ubuntu or Debian Linux, you need to follow these steps: Install OpenVPN: Install OpenVPN on your Ubuntu or Debian Linux system by running the following command: sudo apt-get update && sudo apt-get install openvpn Download OpenVPN configuration files: Download the OpenVPN configuration files from your VPN provider. These files … Read more