Day: January 12, 2021

Linux: Creating Volume Shortcuts

Run xfce4-keyboard-settings > select the 'Application Shortcuts' tab > Add > input one of the…

Linux: ‘Initramfs Unpacking Failed’ Error Upon Booting

Error: initramfs unpacking failed: Decoding failed Resolution: sudo sed -i 's/COMPRESS=lz4/COMPRESS=gzip/g' /etc/initramfs-tools/initramfs.confsudo update-initramfs -u# reboot…

How to Add Printers on Linux Mint 20

Overview: The Common Unix Printing System (CUPS) is an open source printing system developed by…

Linux Mint 20.04 Workstation Setup

Common Workstation Utilities: # Screenshot sudo apt install flameshot # RDP Client sudo apt install…

Linux: How to Add a Line into Crontab from Command Line

The easy method: newline=@reboot /usr/bin/numlockx(crontab -l && echo "$newLine") | crontab - Alternative (longer version)…