The package linux-headers-3.2.0-68-generic-pae needs to be reinstalled, but I can't find an archive for it.

Asked by Dave Mac

Hi

When I try to update I have been getting errors saying that I need to reinstall linux-headers-3.2.0-67-generic-pae and when i try to reinstall it I get the following eroor:

david@Devac:~$ sudo apt-get install linux-headers-3.2.0-67-generic-pae
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: The package linux-headers-3.2.0-68-generic-pae needs to be reinstalled, but I can't find an archive for it.
When i try to reinstall.

Can anyone please help

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu Edit question
Assignee:
No assignee Edit question
Solved by:
Dave Mac
Solved:
Last query:
Last reply:
Revision history for this message
michael (yellupcm-gmail) said :
#1
Revision history for this message
Dave Mac (dsmuchie) said :
#2

Yes but am new at using Ubuntu. I downloaded the file how do I install it? Is there a terminal command I need to type as double clicking isn't working. (Sorry, newbie at this)

Revision history for this message
Manfred Hampl (m-hampl) said :
#4

Try the terminal command

sudo dpkg --install linux-image-3.2.0-68-generic-pae_3.2.0-68.102_i386.deb

Please copy/paste the output of the following terminal commands into this question document (to verify whether there is something else broken in your installation):

uname -a
lsb_release -crid
sudo dpkg --audit
df -h
df -i

Revision history for this message
Manfred Hampl (m-hampl) said :
#5

Oops, there seems to be a mixup between linux-image and linux-headers

You have to download and install linux-headers-3.2.0-68-generic-pae

Open a terminal (e.g. by simultaneously pressing ctrl-alt-t) and issue the following commands

wget -c http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-3.2.0-68-generic-pae_3.2.0-68.102_i386.deb
sudo dpkg --install linux-headers-3.2.0-68-generic-pae_3.2.0-68.102_i386.deb

Then copy/paste the remaining commands as written in my previous comment.

Revision history for this message
Dave Mac (dsmuchie) said :
#6

david@Devac:~$ uname -a
Linux Devac 3.2.0-68-generic-pae #102-Ubuntu SMP Tue Aug 12 22:23:54 UTC 2014 i686 i686 i386 GNU/Linux
david@Devac:~$ lsb_release -crid
Distributor ID: Ubuntu
Description: Ubuntu 12.04.5 LTS
Release: 12.04
Codename: precise
david@Devac:~$ sudo dpkg --audit
The following packages have been unpacked but not yet configured.
They must be configured using dpkg --configure or the configure
menu option in dselect for them to work:
 linux-generic-pae Complete Generic Linux kernel

david@Devac:~$ df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda1 92G 26G 62G 30% /
udev 236M 4.0K 236M 1% /dev
tmpfs 49M 816K 48M 2% /run
none 5.0M 0 5.0M 0% /run/lock
none 244M 80K 243M 1% /run/shm
david@Devac:~$ df -i
Filesystem Inodes IUsed IFree IUse% Mounted on
/dev/sda1 6078464 662862 5415602 11% /
udev 60395 479 59916 1% /dev
tmpfs 62222 393 61829 1% /run
none 62222 3 62219 1% /run/lock
none 62222 5 62217 1% /run/shm
david@Devac:~$

Revision history for this message
Dave Mac (dsmuchie) said :
#7

I upgraded and did apt-get install -f and it seems solved.

Thanks