Month: April 2018

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 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…

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…