How to set up FreeBSD 12 VNET jail with ZFS

Here are the general steps to set up a VNET jail on FreeBSD 12 using ZFS: Create a ZFS dataset for the jail: zfs create -o mountpoint=/jails zpool/jails/jailname Create the jail with VNET enabled: jail -c name=jailname host.hostname=jailname vnet vnet.interface=igb0 Install the base system in the jail: jail -m path=/jails/jailname name=jailname /usr/sbin/jail -i Configure the … Read more

How to configure Intel Wifi on Debian Linux when you get firmware: failed to load iwlwifi-8265-36.ucode error

To fix the “firmware: failed to load iwlwifi-8265-36.ucode” error when configuring Intel WiFi on Debian Linux, you will need to install the firmware-iwlwifi package. Try running the following command as root: apt-get update && apt-get install firmware-iwlwifi Then reboot the system. Alternatively, you can download the package from the official Debian package repository and install … Read more

How to find NetworkManager version on Linux

networkmanager –version and nmcli -v are command line instructions that can be entered into the terminal on a Linux system. They are used to display the version number of NetworkManager that is currently installed on the system. NetworkManager is a service that manages network connections on Linux and Unix-like systems. When you enter the command … Read more

Linux Filesystem Error: Transaction failed when using LXD

This error message typically indicates that there was an issue with a filesystem operation performed by the Linux container manager LXD. The specific cause of the error can vary, but some common reasons include: Insufficient storage space on the host machine Permission issues with the container’s filesystem File system corruption Network connectivity issues To troubleshoot … Read more

How to reset WordPress password using MySQL CLI

You can reset a WordPress password using the MySQL command-line interface (CLI) by following these steps: Log in to the MySQL CLI as the root user: mysql -u root -p You will be prompted to enter the root password. Select the WordPress database: use databasename; Replace “databasename” with the actual name of your WordPress database. … Read more