Ubuntu Intall

Install Ubuntu 18.04.1 LTS on VM @ Hyper-V

# Install OpenSSH apt-get install openssh-server # Check status of ssh daemon systemctl status ssh.service # Configure (See "Network.SSH.sh") vim /etc/ssh/sshd_config

Other Useful ...

sudo apt-get update  # Update pkg list from repo
sudo apt install -f  # fix broken dependencies

# Install a downloaded .deb pkg
sudo apt install -y $_DEB_PKG_PATH 
# or 
sudo dpkg -i $_DEB_PKG_PATH
sudo apt install -f  # --fix-broken (dependencies)
# ... to further config/fix ...
sudo dpkg-reconfigure $_DEB_PKG_NAME  # path sans '.deb' 

# Freeze filesystem (make read-only) @ next boot (only) 
apt-get install overlayroot
echo 'overlayroot="tmpfs"' >> '/etc/overlayroot.conf'
reboot
# Persist
overlayroot-chroot

Kodi

# Kodi install
sudo apt-get install -y software-properties-common
sudo add-apt-repository ppa:team-xbmc/ppa
sudo apt-get install -y kodi