This will show you how to set up a VPN Kill Switch so all traffic will come from that server. For this server, I am using CentOS, but you can easily use Ubuntu server if you are more familiar with that. Install packages sudo apt install openvpn ufw -y*Note: use...
LVM (Logical Volume Management) – Combine Physical Drives and more!
LVM is a very cool volume management tool. It can be used for a variety of tasks and this guide explains all the things LVM can do. I also do an example video of combining physical hard drives using LVM. Acronyms you must know!PV - Physical VolumeVG - Volume GroupLV...
How to Learn Linux
This article gives you the resources on how to learn Linux. If I am missing a resource, be sure and comment so I can add it. Arch Linux Wiki Debian Wiki Ubuntu Wiki OpenSUSE Wiki Fedora Wiki CTT Discord Fedora's Discord Linux4Noobs Linux Questions Forums Ubuntu Forums Arch Linux Forums...
Custom Kernel in Linux
This Guide walks your through how to install a custom kernel on Linux. I will go over performing this in a Debian-based system and an Arch-based system. Please note that the arch based system requires you to build the kernel yourself and will take much longer. Custom kernels in Linux...
Linux File System | Directory Structure
This article details the Linux File System and it's directory structure. Linux File System - Root / -This is the root directory which should contain only the directories needed at the top level of the file structure/bin - This is where the executable files are located. These files are available...
The Ultimate SSH Guide
This is an SSH guide to help you set up, configure, connect, and transfer files using SSH. Setup SSH Install SSH on your system Debian-Based sudo apt install openssh-server -y CentOS/Fedora sudo yum -y install openssh-server Arch sudo pacman -S openssh Run SSH server on startup sudo systemctl start ssh...