Ubuntu Linux: Install Doom3 Game

To install Doom 3 on Ubuntu Linux, follow these steps: Install the libsdl1.2debian package, which provides compatibility libraries for older games like Doom 3: sudo apt-get install libsdl1.2debian Download the Doom 3 installer from the official website or insert the Doom 3 game disc into your computer’s DVD drive. Open a terminal and navigate to … Read more

FreeBSD Update All Installed Ports / Applications

To update all installed ports/applications on FreeBSD, you can use the portsnap and portmaster utilities. Follow these steps: Update your ports tree by running the following command as the superuser: # portsnap fetch update This command downloads the latest version of the ports tree to your system. Install portmaster if it is not already installed: … Read more

Linux / UNIX List User Dot-Files

User dot-files are hidden files in a user’s home directory that start with a dot (e.g. .bashrc, .profile). To list these files for a particular user in Linux/Unix, you can use the following command: ls -a /home/username/.* Replace username with the actual username for the user whose dot-files you want to list. Alternatively, you can … Read more

RedHat / Centos Disable IPv6 Networking

To disable IPv6 networking on RedHat/CentOS, you need to modify the network configuration file. Here are the steps: Open the /etc/sysctl.conf file with a text editor: sudo vi /etc/sysctl.conf Add the following lines at the end of the file: net.ipv6.conf.all.disable_ipv6 = 1 net.ipv6.conf.default.disable_ipv6 = 1 Save and close the file. To apply the changes, run … Read more

CentOS / RHEL IPv6 ip6tables Firewall Configuration

To configure the ip6tables firewall in CentOS/RHEL to allow IPv6 traffic, you can follow these steps: Check the current ip6tables rules by running the following command: sudo ip6tables -L -n This will display the current rules in the ip6tables firewall. Allow inbound and outbound traffic on the loopback interface by running the following commands: sudo … Read more