I upgraded to Xenial from Wily yesterday and while I did not babysit the upgrade to have noticed anything untoward, I have been able to successfully restart and continue using my laptop after the upgrade until I clicked "yes" to a vmware prompt for an upgrade. That's where I ran into issues. VMWARE said that it can't find the C libraries needed to recompile my kernel so I found that strange. Did some poking around only to find that I've got a weird kernel issue. Here's part of the results from the CLI:
As you can see, the package manager says I have kernel headers 4.4.0.21.22 installed yet 'uname -r' and 'uname -a' gives me 4.2.0-34. More so, when I search to see what's installed, I get:
Any ideas how to fix it outside of a clean install after backing up?
emm@lapace:~$ sudo apt-get install linux-headers-generic
Reading package lists... Done
Building dependency tree
Reading state information... Done
linux-headers-generic is already the newest version (4.4.0.21.22).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
emm@lapace:~$ uname -r
4.2.0-34-generic
Reading package lists... Done
Building dependency tree
Reading state information... Done
linux-headers-generic is already the newest version (4.4.0.21.22).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
emm@lapace:~$ uname -r
4.2.0-34-generic
emm@lapace:~$ dpkg --get-selections | grep linux-headers
linux-headers-4.4.0-21 install
linux-headers-4.4.0-21-generic install
linux-headers-generic install
linux-headers-4.4.0-21 install
linux-headers-4.4.0-21-generic install
linux-headers-generic install
Comment