Page 1 of 2 12 LastLast
Results 1 to 10 of 17

Thread: 'No space left on device'

  1. #1
    Join Date
    Feb 2011
    Beans
    26

    'No space left on device'

    Code:
    james@ubuntu:~$ uname -a
    Linux ubuntu 3.2.0-54-generic #82-Ubuntu SMP Tue Sep 10 20:09:12 UTC 2013 i686 i686 i386 GNU/Linux
    james@ubuntu:~$ lsb_release -a
    No LSB modules are available.
    Distributor ID:    Ubuntu
    Description:    Ubuntu 12.04.3 LTS
    Release:    12.04
    Codename:    precise
    The software updater attempted to install some linux headers, but failed due to unmet dependencies. To fix the problem I tried apt-get as follows:
    Code:
    james@ubuntu:~$ sudo apt-get -f install
    [sudo] password for james: 
    Reading package lists... Done
    Building dependency tree       
    Reading state information... Done
    Correcting dependencies... Done
    The following extra packages will be installed:
      linux-headers-3.2.0-54 linux-headers-3.2.0-54-generic-pae
    The following NEW packages will be installed
      linux-headers-3.2.0-54 linux-headers-3.2.0-54-generic-pae
    0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
    4 not fully installed or removed.
    Need to get 0 B/12.7 MB of archives.
    After this operation, 67.6 MB of additional disk space will be used.
    Do you want to continue [Y/n]? Y
    (Reading database ... 1027830 files and directories currently installed.)
    Unpacking linux-headers-3.2.0-54 (from .../linux-headers-3.2.0-54_3.2.0-54.82_all.deb) ...
    dpkg: error processing /var/cache/apt/archives/linux-headers-3.2.0-54_3.2.0-54.82_all.deb (--unpack):
     error creating directory `./usr/src/linux-headers-3.2.0-54/Documentation': No space left on device
    No apport report written because MaxReports has already been reached
                                                                        dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
    Unpacking linux-headers-3.2.0-54-generic-pae (from .../linux-headers-3.2.0-54-generic-pae_3.2.0-54.82_i386.deb) ...
    dpkg: error processing /var/cache/apt/archives/linux-headers-3.2.0-54-generic-pae_3.2.0-54.82_i386.deb (--unpack):
     error creating directory `./usr/src/linux-headers-3.2.0-54-generic-pae/include/config/ecrypt': No space left on device
    No apport report written because MaxReports has already been reached
                                                                        dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
    Errors were encountered while processing:
     /var/cache/apt/archives/linux-headers-3.2.0-54_3.2.0-54.82_all.deb
     /var/cache/apt/archives/linux-headers-3.2.0-54-generic-pae_3.2.0-54.82_i386.deb
    E: Sub-process /usr/bin/dpkg returned an error code (1)
    and this too failed. It is really strange that apt-get reports "No space left on device" when we have a free space of 130GB available. It is not now possible to use apt-get for any purpose, as it will immediately find the unmet dependencies and stops. The software updater also has shut down for the same reason. There are two questions:
    1. Is the problem caused by some corruption of my software/data in my computer, or is it some problem with the latest system updates?
    2. How can I climb out of this cul-de-sac?

    Many thanks

  2. #2
    Join Date
    Jul 2010
    Location
    ozarks, Arkansas, USA
    Beans
    14,199
    Distro
    Xubuntu 22.04 Jammy Jellyfish

    Re: Software Updater tried and failed to install security updates

    zurga; Hi !

    The general thing we see here with those conditions is your /boot directory is full (old kernels).
    The following command is useful for finding out which directories are using all your space...
    Code:
    du -h --max-depth=1 | sort -hr
    and going directly to the suspected heart of the situation:
    Code:
    dpkg -l | grep linux-image 
    ls -la /boot
    If it does turn out to be a full /boot directory. it is "generally" not that difficult to clean up.

    Think the above answers both your questions.

    a tale in the telling
    THE current(cy) in Documentation:
    https://help.ubuntu.com/community/PopularPages

    Happy ubuntu'n !

  3. #3
    Join Date
    Feb 2011
    Beans
    26

    Re: Software Updater tried and failed to install security updates

    Bashing-om Thank you for responding to my questions.
    From your comment I infer that the error report "No space left on device" does not refer to the space left on the main drive (more than 120 GB), but to space specifically allocated to the boot kernel or some such: is that correct?
    Acting on the assumption that /boot is too full I did:
    Code:
    $ du -h /boot
    16K    /boot/grub/locale
    4.3M    /boot/grub
    576M    /boot
    Also, listing the files in /boot, I find many old versions of the following types of files:
    Code:
    abi-*-generic
    config-*-generic
    initrd.img-*-generic
    System.map-*-generic
    vmlinuz-*-generic
    I assume that it is safe to remove these except the latest few by ordinary commands such as 'mv' which would create a temporary backup. If so, then hopefully the saved space in /boot will enable 'apt-get' to become operational again. Then I will be able to purge old kernel files of which there are many.
    Thanks for your help.

  4. #4
    Join Date
    Jul 2010
    Location
    ozarks, Arkansas, USA
    Beans
    14,199
    Distro
    Xubuntu 22.04 Jammy Jellyfish

    Re: Software Updater tried and failed to install security updates

    zurga;
    Your understanding of the space usage is correct.
    In this instance from your advisements, I do not see the /boot directory as a problem.

    what results from :
    Code:
    df -i
    too see what the inode situation is. As out of inodes will produce the same errors.
    As to removing old kernels.
    To install any thing installed use the package manager ! .. Else dependencies and config files resolvement will drive you insane. Manually removing files related to the kernel is a chore !

    The GUI method is via "synaptic" package manager; or,
    from the command line a procedure I prefer:
    Code:
    uname -r ##identify the kernel you are presently booting DO NOT remove this one ! Keep one other for a back up.
    dpkg -l | grep linux-image- ##identify all installed kernel images
    dpkg -l | grep linux-headers- ##identify all kernel header files
    sudo apt-get --purge remove linux-image-3.2.0-31-generic ##for example
    sudo apt-get --purge remove linux-headers-3.2.0-31-generic ##for example
    Run the "dpkg" commands once more and I expect you will see files marked as "rc" -(R)emoved but (C)onfig files remain.

    While there is no built in way to remove all of your configuration information from your removed packages you can remove all configuration data from every removed package with the following command.
    Code:
    dpkg -l | grep '^rc' | awk '{print $2}' | xargs dpkg
    Now if you prefer the GUI method instead, I will provide guidance for it also.

    we wont know 'till we know
    THE current(cy) in Documentation:
    https://help.ubuntu.com/community/PopularPages

    Happy ubuntu'n !

  5. #5
    Join Date
    Feb 2011
    Beans
    26

    Re: Software Updater tried and failed to install security updates

    Bashing-om

    Following is list of inodes as you suggested. They are only 1% used, so they do not seem to be the problem - except /dev/loop0:
    Code:
    $ df -ih
    Filesystem     Inodes IUsed IFree IUse% Mounted on
    /dev/loop0       1.1M  1.1M   317  100% /
    udev             208K   545  207K    1% /dev
    tmpfs            211K   462  211K    1% /run
    none             211K     3  211K    1% /run/lock
    none             211K     8  211K    1% /run/shm
    /dev/sda5        123M   28K  123M    1% /host
    /dev/sda3         86M  178K   86M    1% /home/zurga/mnt/c-disk
    And also just for the record:
    Code:
    $ df -h
    Filesystem      Size  Used Avail Use% Mounted on
    /dev/loop0       17G   12G  3.7G  76% /
    udev            1.5G  4.0K  1.5G   1% /dev
    tmpfs           579M  868K  579M   1% /run
    none            5.0M     0  5.0M   0% /run/lock
    none            1.5G  160K  1.5G   1% /run/shm
    /dev/sda5       147G   24G  123G  17% /host
    /dev/sda3       143G   57G   86G  40% /home/zurga/mnt/c-disk
    For the purpose of this discussion /dev/sda3 should be entirely disregarded as an external device.

    I am fully aware of the risk entailed in the manual modification of installed files, due to possible violation of dependencies, and would not ordinarily contemplate such action. However the problem in this case is that apt-get is not operational and cannot be used. As for prference between using gui or command line, I far prefer the latter as only it will give me a documented and verifiable method for performing a task. As a matter of curiousity, I would like to know what criteria determine whether too much space is occupied by old kernels in the /boot.

    Thanks again for your help.

  6. #6
    Join Date
    Jul 2010
    Location
    ozarks, Arkansas, USA
    Beans
    14,199
    Distro
    Xubuntu 22.04 Jammy Jellyfish

    Re: Software Updater tried and failed to install security updates

    zurga; Hi !

    I still fail to see where the problem lies, in spite of my expectations.
    We need to examine the "/usr" directory as per the error message:
    error creating directory `./usr/src/linux-headers-3.2.0-54/Documentation': No space left on device
    As to apt-get, I anticipate it only has a problem installing any additional kernels and related installs, That should not effect it's ability to remove software from the system.

    Headroom: Well as a general rule 85% capacity is generally considered max, the larger the partition the greater one may raise that percentage. As what you see is not really what you have in use... house keeping - disk file allocation info - and such, as well as "root's space" as dedicated space a normal user has no access to.

    --------
    Now I could be totally wrong .. but I would think purging kernels as related in the /boot directory that action would also remove the files residing in "/usr/src" directory.

    Worth a shot and see what results.

    just try'n to help
    THE current(cy) in Documentation:
    https://help.ubuntu.com/community/PopularPages

    Happy ubuntu'n !

  7. #7
    Join Date
    Feb 2011
    Beans
    26

    Re: Software Updater tried and failed to install security updates

    Hi Bashing-om

    The oldest kernel version I have is 2.6.38-11. The one that is currently active, and suffers from unmet dependencies is 3.2.0-54. If I try to remove the oldest version:
    Code:
    $ sudo apt-get --purge remove linux-image-2.6.38-11-generic
    Reading package lists... Done
    Building dependency tree       
    Reading state information... Done
    You might want to run 'apt-get -f install' to correct these:
    The following packages have unmet dependencies.
     linux-headers-3.2.0-54-generic : Depends: linux-headers-3.2.0-54 but it is not going to be installed
     linux-headers-generic-pae : Depends: linux-headers-3.2.0-54-generic-pae but it is not going to be installed
    E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
    you will see that it trips over the unmet dependencies, and suggests to use 'apt-get -f install'. And if I try to 'install' then I get the 'No space left on device'

    Following indicates the state of /usr showing 100% inode usage:
    Code:
    $ df -h /usr
    Filesystem      Size  Used Avail Use% Mounted on
    /dev/loop0       17G   12G  3.7G  76% /
    $ df -ih /usr
    Filesystem     Inodes IUsed IFree IUse% Mounted on
    /dev/loop0       1.1M  1.1M   281  100% /
    What would happen if I remove the two packages that are broken, which also happen to be in the current kernel? That is if I succeed to remove them either directly by apt-get or through the Synaptic gui, will the system end up in no-mans-land, or will it end up in the previous generation of kernel which was in good working order?

    Thanks.

  8. #8
    Join Date
    Jul 2010
    Location
    ozarks, Arkansas, USA
    Beans
    14,199
    Distro
    Xubuntu 22.04 Jammy Jellyfish

    Re: Software Updater tried and failed to install security updates

    zurga; Well good. The problem is identified !


    Can you boot an older kernel with no problem booting ? Preferably a kernel directly under the problem kernel version.
    and:
    Show me the output of :
    Code:
    dpkg -l | grep linux-image-
    dpkg -l | grep linux-headers-
    and I will craft us a "dpkg" code and see if dpkg can get us out of this hole. As I have said we do not want to go the manual method to hunt up all those files to remove !
    Apt-get is a front end for the base of the package manager "dpkg" . We can use "dpkg" directly and sometime to greater effect.

    THE current(cy) in Documentation:
    https://help.ubuntu.com/community/PopularPages

    Happy ubuntu'n !

  9. #9
    Join Date
    Feb 2011
    Beans
    26

    Re: 'No space left on device'

    Hi Bashing
    So what is the problem? As you suggested I booted on the previous kernel version 3.2.0-53 and listed the following as you suggested:
    Code:
    $ uname -r
    3.2.0-53-generic
    
    $ dpkg -l | grep linux-image-
    ii  linux-image-2.6.38-11-generic          2.6.38-11.50                               Linux kernel image for version 2.6.38 on x86/x86_64
    rc  linux-image-2.6.38-8-generic           2.6.38-8.42                                Linux kernel image for version 2.6.38 on x86/x86_64
    rc  linux-image-3.0.0-12-generic           3.0.0-12.20                                Linux kernel image for version 3.0.0 on x86/x86_64
    rc  linux-image-3.0.0-13-generic           3.0.0-13.22                                Linux kernel image for version 3.0.0 on x86/x86_64
    rc  linux-image-3.0.0-14-generic           3.0.0-14.23                                Linux kernel image for version 3.0.0 on x86/x86_64
    rc  linux-image-3.0.0-15-generic           3.0.0-15.26                                Linux kernel image for version 3.0.0 on x86/x86_64
    rc  linux-image-3.0.0-16-generic           3.0.0-16.29                                Linux kernel image for version 3.0.0 on x86/x86_64
    rc  linux-image-3.0.0-17-generic           3.0.0-17.30                                Linux kernel image for version 3.0.0 on x86/x86_64
    rc  linux-image-3.0.0-19-generic           3.0.0-19.33                                Linux kernel image for version 3.0.0 on x86/x86_64
    rc  linux-image-3.0.0-20-generic           3.0.0-20.34                                Linux kernel image for version 3.0.0 on x86/x86_64
    ii  linux-image-3.2.0-24-generic           3.2.0-24.39                                Linux kernel image for version 3.2.0 on 64 bit x86 SMP
    ii  linux-image-3.2.0-25-generic           3.2.0-25.40                                Linux kernel image for version 3.2.0 on 32 bit x86 SMP
    ii  linux-image-3.2.0-26-generic           3.2.0-26.41                                Linux kernel image for version 3.2.0 on 32 bit x86 SMP
    ii  linux-image-3.2.0-27-generic           3.2.0-27.43                                Linux kernel image for version 3.2.0 on 32 bit x86 SMP
    ii  linux-image-3.2.0-29-generic           3.2.0-29.46                                Linux kernel image for version 3.2.0 on 32 bit x86 SMP
    ii  linux-image-3.2.0-30-generic           3.2.0-30.48                                Linux kernel image for version 3.2.0 on 32 bit x86 SMP
    ii  linux-image-3.2.0-31-generic           3.2.0-31.50                                Linux kernel image for version 3.2.0 on 32 bit x86 SMP
    ii  linux-image-3.2.0-32-generic           3.2.0-32.51                                Linux kernel image for version 3.2.0 on 32 bit x86 SMP
    ii  linux-image-3.2.0-33-generic           3.2.0-33.52                                Linux kernel image for version 3.2.0 on 32 bit x86 SMP
    ii  linux-image-3.2.0-34-generic           3.2.0-34.53                                Linux kernel image for version 3.2.0 on 32 bit x86 SMP
    ii  linux-image-3.2.0-35-generic           3.2.0-35.55                                Linux kernel image for version 3.2.0 on 32 bit x86 SMP
    ii  linux-image-3.2.0-36-generic           3.2.0-36.57                                Linux kernel image for version 3.2.0 on 32 bit x86 SMP
    ii  linux-image-3.2.0-37-generic           3.2.0-37.58                                Linux kernel image for version 3.2.0 on 32 bit x86 SMP
    ii  linux-image-3.2.0-38-generic           3.2.0-38.61                                Linux kernel image for version 3.2.0 on 32 bit x86 SMP
    ii  linux-image-3.2.0-39-generic           3.2.0-39.62                                Linux kernel image for version 3.2.0 on 32 bit x86 SMP
    ii  linux-image-3.2.0-40-generic           3.2.0-40.64                                Linux kernel image for version 3.2.0 on 32 bit x86 SMP
    ii  linux-image-3.2.0-41-generic           3.2.0-41.66                                Linux kernel image for version 3.2.0 on 32 bit x86 SMP
    ii  linux-image-3.2.0-43-generic           3.2.0-43.68                                Linux kernel image for version 3.2.0 on 32 bit x86 SMP
    ii  linux-image-3.2.0-44-generic           3.2.0-44.69                                Linux kernel image for version 3.2.0 on 32 bit x86 SMP
    ii  linux-image-3.2.0-45-generic           3.2.0-45.70                                Linux kernel image for version 3.2.0 on 32 bit x86 SMP
    ii  linux-image-3.2.0-48-generic           3.2.0-48.74                                Linux kernel image for version 3.2.0 on 32 bit x86 SMP
    ii  linux-image-3.2.0-49-generic           3.2.0-49.75                                Linux kernel image for version 3.2.0 on 32 bit x86 SMP
    ii  linux-image-3.2.0-51-generic           3.2.0-51.77                                Linux kernel image for version 3.2.0 on 32 bit x86 SMP
    ii  linux-image-3.2.0-52-generic           3.2.0-52.78                                Linux kernel image for version 3.2.0 on 32 bit x86 SMP
    ii  linux-image-3.2.0-53-generic           3.2.0-53.81                                Linux kernel image for version 3.2.0 on 32 bit x86 SMP
    ii  linux-image-3.2.0-54-generic           3.2.0-54.82                                Linux kernel image for version 3.2.0 on 32 bit x86 SMP
    ii  linux-image-generic                    3.2.0.54.64                                Generic Linux kernel image
    
    $ dpkg -l | grep linux-headers
    ii  linux-headers-3.2.0-25                 3.2.0-25.40                                Header files related to Linux kernel version 3.2.0
    ii  linux-headers-3.2.0-25-generic         3.2.0-25.40                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-25-generic-pae     3.2.0-25.40                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-26                 3.2.0-26.41                                Header files related to Linux kernel version 3.2.0
    ii  linux-headers-3.2.0-26-generic         3.2.0-26.41                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-26-generic-pae     3.2.0-26.41                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-27                 3.2.0-27.43                                Header files related to Linux kernel version 3.2.0
    ii  linux-headers-3.2.0-27-generic         3.2.0-27.43                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-27-generic-pae     3.2.0-27.43                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-29                 3.2.0-29.46                                Header files related to Linux kernel version 3.2.0
    ii  linux-headers-3.2.0-29-generic         3.2.0-29.46                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-29-generic-pae     3.2.0-29.46                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-30                 3.2.0-30.48                                Header files related to Linux kernel version 3.2.0
    ii  linux-headers-3.2.0-30-generic         3.2.0-30.48                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-30-generic-pae     3.2.0-30.48                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-31                 3.2.0-31.50                                Header files related to Linux kernel version 3.2.0
    ii  linux-headers-3.2.0-31-generic         3.2.0-31.50                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-31-generic-pae     3.2.0-31.50                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-32                 3.2.0-32.51                                Header files related to Linux kernel version 3.2.0
    ii  linux-headers-3.2.0-32-generic         3.2.0-32.51                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-32-generic-pae     3.2.0-32.51                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-33                 3.2.0-33.52                                Header files related to Linux kernel version 3.2.0
    ii  linux-headers-3.2.0-33-generic         3.2.0-33.52                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-33-generic-pae     3.2.0-33.52                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-34                 3.2.0-34.53                                Header files related to Linux kernel version 3.2.0
    ii  linux-headers-3.2.0-34-generic         3.2.0-34.53                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-34-generic-pae     3.2.0-34.53                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-35                 3.2.0-35.55                                Header files related to Linux kernel version 3.2.0
    ii  linux-headers-3.2.0-35-generic         3.2.0-35.55                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-35-generic-pae     3.2.0-35.55                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-36                 3.2.0-36.57                                Header files related to Linux kernel version 3.2.0
    ii  linux-headers-3.2.0-36-generic         3.2.0-36.57                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-36-generic-pae     3.2.0-36.57                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-37                 3.2.0-37.58                                Header files related to Linux kernel version 3.2.0
    ii  linux-headers-3.2.0-37-generic         3.2.0-37.58                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-37-generic-pae     3.2.0-37.58                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-38                 3.2.0-38.61                                Header files related to Linux kernel version 3.2.0
    ii  linux-headers-3.2.0-38-generic         3.2.0-38.61                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-38-generic-pae     3.2.0-38.61                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-39                 3.2.0-39.62                                Header files related to Linux kernel version 3.2.0
    ii  linux-headers-3.2.0-39-generic         3.2.0-39.62                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-39-generic-pae     3.2.0-39.62                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-40                 3.2.0-40.64                                Header files related to Linux kernel version 3.2.0
    ii  linux-headers-3.2.0-40-generic         3.2.0-40.64                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-40-generic-pae     3.2.0-40.64                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-41                 3.2.0-41.66                                Header files related to Linux kernel version 3.2.0
    ii  linux-headers-3.2.0-41-generic         3.2.0-41.66                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-41-generic-pae     3.2.0-41.66                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-43                 3.2.0-43.68                                Header files related to Linux kernel version 3.2.0
    ii  linux-headers-3.2.0-43-generic         3.2.0-43.68                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-43-generic-pae     3.2.0-43.68                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-44                 3.2.0-44.69                                Header files related to Linux kernel version 3.2.0
    ii  linux-headers-3.2.0-44-generic         3.2.0-44.69                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-44-generic-pae     3.2.0-44.69                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-45                 3.2.0-45.70                                Header files related to Linux kernel version 3.2.0
    ii  linux-headers-3.2.0-45-generic         3.2.0-45.70                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-45-generic-pae     3.2.0-45.70                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-48                 3.2.0-48.74                                Header files related to Linux kernel version 3.2.0
    ii  linux-headers-3.2.0-48-generic         3.2.0-48.74                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-48-generic-pae     3.2.0-48.74                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-49                 3.2.0-49.75                                Header files related to Linux kernel version 3.2.0
    ii  linux-headers-3.2.0-49-generic         3.2.0-49.75                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-49-generic-pae     3.2.0-49.75                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-51                 3.2.0-51.77                                Header files related to Linux kernel version 3.2.0
    ii  linux-headers-3.2.0-51-generic         3.2.0-51.77                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-51-generic-pae     3.2.0-51.77                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-52                 3.2.0-52.78                                Header files related to Linux kernel version 3.2.0
    ii  linux-headers-3.2.0-52-generic         3.2.0-52.78                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-52-generic-pae     3.2.0-52.78                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-53                 3.2.0-53.81                                Header files related to Linux kernel version 3.2.0
    ii  linux-headers-3.2.0-53-generic         3.2.0-53.81                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    ii  linux-headers-3.2.0-53-generic-pae     3.2.0-53.81                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    iU  linux-headers-3.2.0-54-generic         3.2.0-54.82                                Linux kernel headers for version 3.2.0 on 32 bit x86 SMP
    iU  linux-headers-generic                  3.2.0.54.64                                Generic Linux kernel headers
    iU  linux-headers-generic-pae              3.2.0.54.64                                Generic Linux kernel headers
    Awaiting your response with abated breath! Thanks.

  10. #10
    Join Date
    Jul 2010
    Location
    ozarks, Arkansas, USA
    Beans
    14,199
    Distro
    Xubuntu 22.04 Jammy Jellyfish

    Re: 'No space left on device'

    zurga; Sorry for the delay in getting back at ya .. system problems happen to the best of us - my grub could not find my hard drives when I rebooted !

    To you, lets try; making sure you are booting the 3.2.0-53 kernel :
    Copy and paste ::
    Code:
    sudo dpkg -P linux-image-3.2.0-{24,25,26,27,29,30,31,32,33,34,35,36,37,39,40,41,43,44,45,48,49,54}-generic
    sudo dpkg -P linux-headers-3.2.0-{24,25,26,27,29,30,31,32,33,34,35,36,37,39,40,41,43,44,45,48,49,54}-generic
    And look again and see what there is now to clean up:
    Code:
    dpkg -l | grep linux-image-
    dpkg -l | grep linux-headers-
    As to what is going on, I assume from the references to repeated "/dev/loop0" and it being related to the directory "/usr" .. that this is a wubi install .. and as such the virtual disk is full ! Please verify my thought.

    Give this a try .. and
    my fingers are crossed
    THE current(cy) in Documentation:
    https://help.ubuntu.com/community/PopularPages

    Happy ubuntu'n !

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •