Setup Ubuntu Server
Here’s a step-by-step guide to setting up an Ubuntu server with Apache, MariaDB, mail server, and DNS: 1. Update and Upgrade System bash CopyEdit sudo apt update && sudo apt…
Here’s a step-by-step guide to setting up an Ubuntu server with Apache, MariaDB, mail server, and DNS: 1. Update and Upgrade System bash CopyEdit sudo apt update && sudo apt…
journalctl is a command-line utility for querying and displaying logs from systemd-journald. Here are some essential commands: Basic Usage View all logs: sh CopyEdit journalctl Follow live logs (like tail…
To remove MySQL from XAMPP on Arch Linux, follow these steps: 1. Stop MySQL Service bash CopyEdit sudo /opt/lampp/lampp stopmysql 2. Remove MySQL Binaries and Data bash CopyEdit sudo rm…
To resize a partition using fdisk, follow these steps: Unmount the partition (if mounted): bash CopyEdit sudo umount /dev/sdXn Replace X with the drive letter and n with the partition…
You can provide pacman with a list of packages to install by separating them with spaces. For a long list, you can use a file or a command substitution. Here…
To make XAMPP use the system-installed MariaDB on EndeavourOS instead of its built-in MySQL, follow these steps: Step 1: Stop XAMPP’s MySQL Service bash CopyEdit sudo /opt/lampp/lampp stop Step 2:…
To resize a virtual hard disk issue the following command: qemu-img resize /path/to/disk.qcow2 +SIZE qemu-img resize disk.qcow2 +20G If gparted in not installed issue the following command. sudo zypper install…
To make a USB device accessible to the host when using Quickemu (version 4.9.7-1), follow these steps: Identify the USB Device: Run the following command to list your USB devices:…
To install Cosmic DE on Arch Linux using the AUR, follow these steps: 1. Enable AUR Support (if not already) Make sure you have an AUR helper like yay or…