I have an Ubuntu LTS 16.04.02 with an 4.4.x Kernel from March. When I try to update the system it claims to be uptodate. This is not true. So why do not get the updates?
root@p1sr1:~# uname -a
Linux p1sr1 4.4.0-66-generic #87-Ubuntu SMP Fri Mar 3 15:27:09 UTC 2017 i686 i686 i686 GNU/Linux
root@p1sr1:~# lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 16.04.2 LTS
Release: 16.04
Codename: xenial
root@p1sr1:~# sudo apt-get update
OK:1 http://archive.canonical.com/ubuntu xenial InRelease
OK:2 http://ppa.launchpad.net/x2go/stable/ubuntu xenial InRelease
OK:3 http://de.archive.ubuntu.com/ubuntu xenial InRelease
Paketlisten werden gelesen... Fertig
root@p1sr1:~# sudo apt-get upgrade
Paketlisten werden gelesen... Fertig
Abhängigkeitsbaum wird aufgebaut.
Statusinformationen werden eingelesen.... Fertig
Paketaktualisierung (Upgrade) wird berechnet... Fertig
0 aktualisiert, 0 neu installiert, 0 zu entfernen und 0 nicht aktualisiert.**
Edit: after some further information via the comments, it seems that the source.list seems to be not ok on my system. Does anyone have a default sourcelist for LTS 16.04.2, I like to compare with my system.
Edit II After getting the correct source.lists I could now update to Kernel 4.10 but I am still on LTS 16.04.2 !! I tried to do an dist-upgrade but this comes back with 0 packages to update... So I am in a much better state now but the initial question: How can I upgrade from LTS 16.04.2 to LTS 16.04.3 is still on my desk. Any hint is highly well come!
apt-get update
list is pretty short. Have you altered your/etc/apt/sources.list
file? – Melebius Sep 11 '17 at 07:17grep -r --include='*.list' '^\s*deb' /etc/apt/sources.list*
? For restoring defaults if you want that, see https://askubuntu.com/q/124017/367990 – Byte Commander Sep 11 '17 at 07:52xenial-{security,updates}
repositories. – muru Sep 11 '17 at 09:37dist-upgrade
and not just anupgrade
.upgrade
may be a bit conservative. As the documentation for this command says, "New versions of currently installed packages that cannot be upgraded without changing the install status of another package will be left at their current version." This comment is in addition to your missing repositories -- you need to fix that, too. – Ray Sep 11 '17 at 09:53upgrade
nor thedist-upgrade
action is needed to install and use an officially backported kernel (thoughsudo apt update
or similar will have to be run after fixingsources.list
and before installing the new packages). HWE kernels are provided by differently named packages, which are installed with theinstall
action rather than upgraded to. As Bruni says, to enable a HWE kernel on 16.04, see LTS Enablement Stacks → Ubuntu 16.04 LTS - Xenial Xerus. – Eliah Kagan Sep 11 '17 at 20:48dist-upgrade
since I was wondering if conflict is preventing the packages from going up a version. If you're frustrated, you can try installingaptitude
. I actually use that instead ofapt-get
. Then do asudo aptitude update; sudo aptitude full-upgrade
. See if that works? (There shouldn't be a difference, actually.) – Ray Sep 12 '17 at 10:44sources.list
, you can try the graphical interface that's described here: https://help.ubuntu.com/community/Repositories/Ubuntu to get a "new" sources.list. – Ray Sep 12 '17 at 10:47