Ubuntu Intall
Install Ubuntu 18.04.1 LTS on VM @ Hyper-V
- Create VM per "Quick Create ..."
- Connects per
XRDP
- Auto-Shared Drives (per
XRDP
Session only)- @ Connect (
XRDP
) > Local Resources > More > (select drives to share)
Back @ Main menu > Save Settings (check-box) - Shared Drives are mounted @
~/shared-drives
- @ Connect (
# 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
- Kodi fails @ Armbian (Vagrant box @ VirtualBox VM on Ubuntu
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 install
sudo apt-get install -y software-properties-common
sudo add-apt-repository ppa:team-xbmc/ppa
sudo apt-get install -y kodi