### - Ubuntu server install xfce desktop - ####### apt -y install xubuntu-desktop task-xfce-desktop ### SSH generate new key sudo /usr/bin/ssh-keygen -A ### Set calendar %a, %b %e - %l:%M %p ### Thunar - Open as Root/Administrator pkexec thunar %f ### Install Mainline kernel updater PPA sudo add-apt-repository ppa:cappelikan/ppa sudo apt install mainline ### Install Webmin and GPG keys curl -o setup-repos.sh https://raw.githubusercontent.com/webmin/webmin/master/setup-repos.sh sh setup-repos.sh apt-get install --install-recommends webmin ### Run updates sudo apt update && sudo apt upgrade -y -- or -- sudo apt-get update && sudo apt-get upgrade ### Can't browser samba shares? sudo apt install gvfs-backends gvfs-bin ### Install Firefox web browser from nightly deb ### https://blog.nightly.mozilla.org/2023/10/30/introducing-mozillas-firefox-nightly-deb-packages-for-debian-based-linux-distributions/ ### Install Thorium browser + repository ### sudo rm -fv /etc/apt/sources.list.d/thorium.list && \ sudo wget --no-hsts -P /etc/apt/sources.list.d/ \ http://dl.thorium.rocks/debian/dists/stable/thorium.list && \ sudo apt update sudo apt install thorium-browser ### Install Apache webserver sudo apt install apache2 ### Start Apache at boot systemctl enable apache2 -or- update-rc.d apache2 enable ### Install xRDP sudo apt install xrdp ### Give permissions for sudo as admin nano /etc/polkit-1/localauthority/50-local.d/admin-sudo.pkla [Authorize admin for sudo group] Identity=unix-group:sudo Action=* ResultAny=yes ### --OR-- for Nemo/Cinnamon on Debian nano /etc/polkit-1/localauthority/50-local.d/cinnamon-nemo.pkla [Authorize nemo for remote sessions] Identity=unix-user:* Action=org.nemo.root ResultAny=yes ### --ALSO-- for Gnome/Nautilus on Ubuntu nano /etc/polkit-1/localauthority/50-local.d/10-remote-admin-allow.pkla [Allow Remote Admin] Identity=unix-group:sudo Action=* ResultAny=yes ResultInactive=yes ResultActive=yes ########--------- Gerbera use latest "git" build --------######## curl -fsSL https://gerbera.jfrog.io/artifactory/api/gpg/key/public | sudo apt-key add - sudo apt-add-repository https://gerbera.jfrog.io/artifactory/debian-git ########--------- Start Gerbera at boot --------######## systemctl enable gerbera ########--------- Install Remmina RDP Client --------######## sudo apt-add-repository ppa:remmina-ppa-team/remmina-next sudo apt update sudo apt install remmina remmina-plugin-rdp remmina-plugin-secret ########--------- Change desktop enviornment script Ubuntu --------######## sudo update-alternatives --config x-session-manager ########--------- MakeMVK Beta / Edge Install --------######## sudo snap install makemkv --edge T-lp4bZXFohCJOKraCftH2Z@oExMkXXEcuqsd8wNs3qjNSYf2Y1BQqIkJpxOCbBo@KTV ##### ---- install 'dbus-x11' ----##### sudo apt-get install dbus-x11 ######## --- DPKG-REPACK Install --- ######## ### --- Install dpkg-repack package: sudo apt-get install dpkg-repack Example usage:- dpkg-repack gparted replace gparted with your package_name http://manpages.ubuntu.com/dpkg-repack.1 ################ Install libraries for compiling MakeMKV sudo apt-get install build-essential pkg-config libc6-dev libssl-dev libexpat1-dev libavcodec-dev libgl1-mesa-dev qtbase5-dev zlib1g-dev ################ ### MakeMKV from source: https://www.linuxcapable.com/install-makemkv-on-debian/ ############### sudo apt-get install build-essential libexpat1-dev libxmu-dev cmake cmake-curses-gui qt5-default -y ############### ### Restart polkit - When using systemd, restarting polkit is as easy as: sudo systemctl restart polkitd.service ############## Option 1: Enable all Ubuntu Repositories. Utilizing this option will allow for a wider base of software and dependencies to pull from. Then, once this is updated, we can try to reinstall the software. root@host:~# add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) main universe restricted multiverse" root@host:~# apt-get update ########## Clear all bash commands history ############## cat /dev/null > ~/.bash_history && history -c && exit ########### - Ubuntu Server slow boot issue - ########## Job systemd-networkd-wait-online.service start running nano /etc/netplan/99-network.yaml network: ethernets: enp1s0: dhcp4: true optional: true enp2s0: dhcp4: true optional: true version: 2