Linux
Bonding, also called port trunking or link aggregation means combining several network interfaces (NICs) to a single link, providing either high-availability, load-balancing, maximum throughput, or a combination of these. In this example you will first need to disable Network Manager if you are currently using it. sudo systemctl stop NetworkManager.service sudo systemctl disable NetworkManager.service Installation
Disable: sudo systemctl stop NetworkManager.service sudo systemctl disable NetworkManager.service Enable: sudo systemctl stop NetworkManager.service sudo systemctl enable NetworkManager.service
Make certain that you understand the security implications of using auto login on an encrypted drive. Part 1: Encrypt the secondary drive. In the Unity dash type “disks” and hit enter. Below “Devices” click on the hard drive you want to encrypt. Below “Volumes” click on the cog/more actions button. Click “Format Volume”. For type,
There a several ways to create a file with random data. Here are two options: head -c 100k /dev/urandom > test.txt dd if=/dev/urandom of=test2.txt bs=1k count=100 The key is creating the data from /dev/urandom or /dev/random By: Timothy Conrad
If you start receiving errors that you have undefined macros like : configure.ac:6: error: possibly undefined macro: AM_INIT_AUTOMAKE after running the command autoconf, you most likely need to run autoconf –install This command will take care of install the missing packages to create a working configure file. By: S Gimenez
Older Posts››
‹‹Newer Posts