Update/Upgrade not available

xvegax

Well-Known Member
Aug 12, 2019
38
0
46
44
Hi guys,

I wanted to update my Proxmox host.

root@r.:~# uname -a
Linux r. 5.0.21-3-pve #1 SMP PVE 5.0.21-7 (Mon, 30 Sep 2019 09:11:02 +0200) x86_64 GNU/Linux

root@r.:~# cat /etc/*release
PRETTY_NAME="Debian GNU/Linux 10 (buster)"
NAME="Debian GNU/Linux"
VERSION_ID="10"
VERSION="10 (buster)"
VERSION_CODENAME=buster
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"

Unfortunately, apt update && apt upgrade && apt dist-upgrade tells me, everything has the newest state.

Is there something wrong with my sources?

root@r.:~# cat /etc/apt/sources.list
deb http://ftp.de.debian.org/debian buster main contrib

deb http://ftp.de.debian.org/debian buster-updates main contrib

# security updates
deb http://security.debian.org buster/updates main contrib

#deb http://download.proxmox.com/debian buster pve-no-subscription

# PVE pve-no-subscription repository provided by proxmox.com,
# NOT recommended for production use

deb http://download.proxmox.com/debian/pve buster pve-no-subscription

# security updates
deb http://security.debian.org/debian-security buster/updates main contrib

I read through the repository documentation, aber could not find anything wrong in my sources so far.

Thank you, mates.
 
Hi, your sources seem to differ from mine ( do keep in mind that i installed debian 1st and then moved to ProxMox) but for comparing :

cat sources.list
Code:
#

# deb cdrom:[Debian GNU/Linux 10.0.0 _Buster_ - Official Multi-architecture amd64/i386 NETINST #1 20190706-12:34]/ buster contrib main non-free

#deb cdrom:[Debian GNU/Linux 10.0.0 _Buster_ - Official Multi-architecture amd64/i386 NETINST #1 20190706-12:34]/ buster contrib main non-free

deb http://deb.debian.org/debian/ buster main non-free contrib
deb-src http://deb.debian.org/debian/ buster main non-free contrib

deb http://security.debian.org/debian-security buster/updates main contrib non-free
deb-src http://security.debian.org/debian-security buster/updates main contrib non-free

# buster-updates, previously known as 'volatile'
deb http://deb.debian.org/debian/ buster-updates main contrib non-free
deb-src http://deb.debian.org/debian/ buster-updates main contrib non-free

cat /etc/apt/sources.list.d/pve-install-repo.list
Code:
deb http://download.proxmox.com/debian/pve buster pve-no-subscription
 
  • Like
Reactions: xvegax
Unfortunately, apt update && apt upgrade && apt dist-upgrade tells me, everything has the newest state.

Well, it probably is already upgraded then?

To check your current PVE version use pveversion -v, running 'uname' just tells you which kernel is booted (the kernel cannot be upgraded without a reboot, even if a newer one has been installed by apt)
 
  • Like
Reactions: xvegax
Oh, sorry, I was so focused on the kernel version, that I did not think about the necessary reboot.

Thank you, guys.