General Updates
Update One-liner
To Update without further confirmation:
sudo apt update -y && sudo apt upgrade -ysudo apt update -y && sudo apt upgrade -yRemove the -y flag to manually confirm actions
Fix Update Problems
Removes bad cached packages and re-download
sudo rm -f /var/cache/apt/archives/linux-headers-6.8.0-94_*.deb
sudo apt clean
sudo apt update
sudo apt --fix-broken installsudo rm -f /var/cache/apt/archives/linux-headers-6.8.0-94_*.deb
sudo apt clean
sudo apt update
sudo apt --fix-broken installIf this has run successfully you can trigger updates, I had best success with removing obsolete packages beforehand
sudo apt autoremove --purge
sudo apt update -y && sudo apt upgrade -ysudo apt autoremove --purge
sudo apt update -y && sudo apt upgrade -yProxmos Agent Install
sudo apt update
sudo apt install -y qemu-guest-agent
sudo systemctl enable --now qemu-guest-agent
sudo systemctl status qemu-guest-agent --no-pagersudo apt update
sudo apt install -y qemu-guest-agent
sudo systemctl enable --now qemu-guest-agent
sudo systemctl status qemu-guest-agent --no-pager

