Extend Ubuntu LVM

Commands: df -h fdisk -l partprobe Extend the logical volume using the new free space on the disk Extend the file system to the new space on the logical volume

Installing Plex on Linux (Ubuntu 20.04)

Install Commands: sudo apt install curl sudo apt install nano curl http://downloads.plex.tv/plex-keys/Pl… | sudo apt-key add – echo deb https://downloads.plex.tv/repo/deb public main | sudo tee /etc/apt/sources.list.d/plexmediaserver.list deb https://downloads.plex.tv/repo/dev public main sudo apt install apt-transport-https sudo apt update sudo apt install plexmediaserver sudo systemctl status plexmediaserver sudo nano /etc/ufw/applications.d/plexmediaserver Copy into plexmediaserver ufw file [Plexmediaserver] title=Plex … Read more

Auto mount a Linux partition on boot

Step 1: Get the Name, UUID and File System Type Open your terminal, run the following command to see the name of your drive, its UUID(Universal Unique Identifier) and file system type. sudo blkid In the output of this command, the first column is the name of your drives. The second column is the label … Read more