Install RemotePi Scripts
The following is helpful if you purchased the RemotePi addon board for your raspberry pi that provides IR Remote control and a Power button. Instructions for RemotePi install on Raspberry…
Install SSH on Windows
# PowerShell Remoting via SSH https://docs.microsoft.com/en-us/powershell/scripting/core-powershell/ssh-remoting-in-powershell-core?view=powershell-6 # Install Latest PowerShell Core (it has SSH Connection) from here - Stable MSI in table: https://github.com/PowerShell/PowerShell/ #Install Win32 OpenSSH See HERE: https://github.com/PowerShell/Win32-OpenSSH/wiki/Install-Win32-OpenSSH #…
Install Cron for Kodi
sudo apt-get update sudo apt-get install cron # list the current cron jobs: crontab -l # edit cron jobs crontab -e # content examples... # Every 2 minutes */2 *…
Linux Command Cheat Sheet
# Check for Package Updates sudo apt-get update sudo apt-get upgrade # Switch to Root # Note: Switch back out of root: exit sudo -i # Note: Switch to root…
Trigger PowerShell from Kodi with Notification
I wanted to be able to trigger a PowerShell script with an argument from the Kodi menu… eg. TriggerScript.ps1 -namedArg 1st – Create a python script (eg. triggerscript.py) in the…
Install VNC Server on OSMC
sudo apt-get update sudo apt-get upgrade sudo apt-get install libvncserver-dev sudo apt-get install rbp-userland-dev-osmc sudo apt-get install gcc wget https://github.com/hanzelpeter/dispmanx_vnc/archive/master.zip unzip master.zip -d /home/osmc/ rm master.zip nano ./dispmanx_vnc-master/main.c Modify: "#define…
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:…
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…
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…
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…