Category: Raspberry Pi

Install Plex Server

######################################## # Step 1. Ensure everything is up-to-date sudo apt-get update sudo apt-get upgrade ######################################## # Step 2. Ensure the HTTPS transport service is available sudo apt-get install apt-transport-https Note:…

Enable Remote SSH

See: https://www.raspberrypi.org/documentation/remote-access/ssh/ Raspberry Pi Via GUI: Launch Raspberry Pi Configuration from the Preferences menu Navigate to the Interfaces tab Select Enabled next to SSH Click OK Via Config: Enter sudo…

Install PIA

Open Terminal 1. Check for Updates sudo apt-get update 2. Upgrade any installed software sudo apt-get upgrade -y 3. Install OpenVPN sudo apt-get install openvpn -y 4. Download the Unzip…

Add Drive Formats

# Check which Drive Formats are Installed: dpkg --get-selections | grep -E 'ntfs|hfs|exfat|dos' # Add Windows NTFS read/write support sudo apt-get install ntfs-3g # Add macOS HFS+ read/write support sudo…

Install FFMPEG

# FFMpeg Installation... What about AC3 or AVC (H264) # 1. Ensure no pending updates sudo apt-get update sudo apt-get upgrade # sudo sh -c 'echo "deb http://www.deb-multimedia.org jessie main…