Slow Down Ethernet
# Switch Ethernet back to 100 MB... # Install ethtool sudo apt-get install ethtool # Check Ethernet Speed: sudo ethtool eth0 # Set Ethernet to 100 (manually) sudo ethtool -s…
Create Custom LIRC Configuration File
First, list all available button names using the following: irrecord -l Available names are as follows: KEY_0 KEY_102ND KEY_10CHANNELSDOWN KEY_10CHANNELSUP KEY_1 KEY_2 KEY_3 KEY_4 KEY_5 KEY_6 KEY_7 KEY_8 KEY_9 KEY_A…
Turn OffLEDs
The following is helpful if you purchased the RemotePi addon board for your raspberry pi that provides IR Remote control and a Power button… If so, you may wish to…
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 #…
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…
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…
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 *…
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…