When I run the command to install the package solr-jetty, I am told
You don't have enough free space in /var/cache/apt/archives/Here's the result of the df -H command:
I have installed Ubuntu with VirtualBox on my Mac.
How can I fix this problem?
17 Answers
sudo apt-get autocleanThis will delete all packages not currently installed. If that doesn't free up enough space, then use sudo apt-get clean. This clears out all .debs downloaded and/or installed.
But it looks like your hard disk is out of space. Seriously out of space. 61Mb is not enough for a good working system. I found 2 alternatives that can circumvent space-related problems though both might be hard to pull off when using a virtual machine. A more permanent solution would be to increase the size of your virtual machine (and I would also advise using the method that allows the machine to dynamically increase in size; VirtualBox has such a setting).
Alternative if you have a partition or external storage.
With this method you re-route the location where .debs are stored:
sudo mv -i /var/cache/apt /media/{dir_of_mounted_disc}
sudo ln -s /media/{dir_of_mounted_disc}/apt /var/cache/aptRun the upgrade and install. After you are done you can switch back to normal with:
sudo apt-get clean
sudo unlink /var/cache/apt
sudo mv /media/{dir_of_mounted_disc}/apt /var/cacheOf course {dir_of_mounted_disc} needs to be changed to the name of your mounted disc.
Another alternative
This way you create a RAM disc:
sudo mkdir /media/{directory}
sudo mount -t tmpfs tmpfs /media/{directory}
sudo ln -s /media/{directory}/apt /var/cache/aptClean up as with the 1st alternative.
Warning this requires a large amount of RAM so may not be useable when using a virtual system.
5These commands will remove extra packages that are no longer required .
Open terminal (Ctrl-Alt-T) and type
sudo apt-get autoclean
sudo apt-get autoremove Whenever you install a program, the packages (.deb files) get stored in /var/cache/apt/archives, which obviously take up space (a lot of space if there are many packages installed).
To get rid of them, use:
sudo apt-get cleanIncase you're wondering what is the difference between clean and autoclean, here is what the man page says:
clean: clean clears out the local repository of retrieved package files. It removes everything but the lock file from /var/cache/apt/archives/ and /var/cache/apt/archives/partial/. APT is used as a dselect(1) method, clean is run Those who do not use dselect will likely want to run apt-get clean time to time to free up disk space.
autoclean: Like clean, autoclean clears out the local repository of package files. The difference is that it only removes package files can no longer be downloaded, and are largely useless. This a cache to be maintained over a long period without it out of control. The configuration option Clean-Installed will prevent installed packages from erased if it is set to off.
0The issue re: 'You don't have enough free spacve in /var/cache/apt/archives/' may be related to this bug: Particularly if /var/cache/apt is on a tmpfs which gets erased every boot. Is it possible that you've sym-linked /var/cache/ to /tmp/cache/ or something similar in order to save space?
If this is the case the instructions to solve/work-arround it are on the bug report above.
1this error message showed up on a raspberry pi zero-w with fresh install of Raspbian 10 Buster:
You don't have enough free space in /var/cache/apt/archives/.The other answers here are valid, but this fresh image had no significant previous packages for removal, so removing them didn't help.
solution (1): use raspi-config --> Advanced --> Expand Filesystem
this will expand the root filesystem to use the entire sd card.
solution (2): or from the command line:
raspi-config --expand-rootfs This is more of a workaround/helpful tip.
This was happening on my virtual machine because I had allocated too much space to swap (close to 40%). I quickly resized it using gparted and was able to reclaim some more space for the root partition.
Now I can update the long neglected VM which required about 3GB of updates.
1I hit this error and fixed this by removing none docker. you can remove none docker by one of these lines:
docker rmi $(docker images -f "dangling=true" -q) -f
docker rm $(docker ps -a -q)
docker image rm $(docker image ls -f 'dangling=true' -q) 2