Knowledge Base:Freeing disk space

From Gentoo Wiki
Jump to:navigation Jump to:search

Although disk space is relatively cheap as of writing this article, it may not be so easy or even possible to expand storage on mobile, embedded or other devices, so freeing useless disk space is often important.

This article introduces tools that help to remove unnecessary system files and optimize the filesystem in order to free disk space.

Analysis

System files

Package manager

Over time large (or a large number of) unnecessary files accumulate in certain directories on the system. This generally occurs from system upgrades. The following table provides description of file paths to consider for cleanup.;

Path Explanation
/var/tmp/portage/ If the installation of a package with a big source tree (kernel sources) is interrupted, the sources are not deleted automatically.
/var/cache/distfiles/ Source code archives and distribution files for older versions of programs are not automatically removed when a new version is emerged.
/var/cache/binpkgs/ As with distribution files, binary packages are not automatically removed.

Gentoo includes the eclean utility as part of the app-portage/gentoolkit package to help clean up no longer relevant packages and distfiles.

Note
More information and usage can be found on eclean page in this wiki.

Kernel sources

Path Explanation
/lib/modules/${old_kernel} The module files installed after kernel compilation are not tracked by the package manager an thus are not deleted after being unmerged.
/usr/src/linux-${old_kernel} As with module files, kernel object files are not removed by the package manager.

Kernel source files distributed through the packages manager will be automatically cleaned up after the kernel sources package has been unmerged or depcleaned. Kernel sources that have been installed (emerged) and compiled create object (.o) files and binaries that Gentoo's package manager does not clean up because these files have been created post-package install.

There is a utility available called eclean-kernel to help find and clean up compiled kernels:

root #emerge --ask app-admin/eclean-kernel

User files

Cache directories

Over time a large number of unnecessary files accumulate in certain directories as various applications are used:

Path Description
~/.cache/ Cache folder used by browsers (and a few other applications).
~/.thumbnails/ Folder to keep generated thumbnails.

Personal files

Several graphical tools exist that help to visualize occupied space on the filesystem tree which may help to identify directories and files that take up too much space:

Utility Package Desktop environment
filelight kde-apps/filelight KDE Plasma
kdirstat kde-misc/kdirstat KDE Plasma
qdirstat sys-apps/qdirstat Qt
baobab sys-apps/baobab GNOME
xdiskusage x11-misc/xdiskusage Plain X
ncdu

ncdu-bin

sys-fs/ncdu

sys-fs/ncdu-bin

Ncurses (terminal)

Select an appropriate utility from the table above and install it. Once installed use the utility to locate large or unneeded personal files and directories.

Filesystem reserved blocks percentage

On the ext* family of filesystems, 5% of all blocks are reserved for the privileged user and group by default when created. This provides a safety measure in the case of very low disk space, so privileged processes won't run out of disk space. However, on filesystems with hundreds of gigabytes, 5% is a lot more than would be typically needed in such a situation (on a 300 GB filesystem, that would be about 15 GB). Such reserved space would be even less useful on filesystems serving only as storage, e.g. /home/.

Filesystem fragmentation

Although most filesystems use strategies to prevent file fragmentation, some files get fragmented over time. A fragmented file may occupy more blocks than would be needed if the file was stored in a contiguous way. Also, as free space becomes fragmented, the possibility of files becoming fragmented increases.

Resolution

Removing system maintenance related files

The process or cleaning up these directories can be automated to a certain extent using these tools:

Warning
Although these tools are very intelligent and careful when removing files, always inspect the list of files to be removed. Using these tools in a cron job is not recommended.
Utility Package Description
eclean app-portage/gentoolkit Removes files in DISTDIR and PKGDIR intelligently, preserving files needed for rebuilding or repairing the system.
eclean-kernel app-admin/eclean-kernel Removes unused kernels and their files, preserving the most recent kernels. (Active development happens on version 2. Unmask =app-admin/eclean-kernel-1.99.4 for this, but beware of bugs and run it in pretend mode first.)

User files

Cache directories

Remove files from ~/.cache directories as needed to free space. This will most likely remove some of the customization in local applications such as file and web browsers, office applications, etc. Be aware of these changes before proceeding.

Personal files

Move or remove any large or unneeded files to free disk space. Moving files to external drives or network storage locations can be helpful if the files need to be preserved.

Reducing the reserved blocks percentage

The reserved blocks percentage on a ext* filesystem can be reduced using the tune2fs tool from the sys-fs/e2fsprogs package.

This would reduce the percentage of reserved blocks on the filesystem to 1% on the partition represented by the block device /dev/sdXY:

root #tune2fs -m 1 /dev/sdXY

Defragmenting the filesystem

This approach usually doesn't save much disk space, but might prevent further file fragmentation which would use up more disk space in the long run.

Several tools exist, some are filesystem specific (which usually provide better performance), some not:

Utility Package Comment
shake sys-fs/shake Defragments any filesystem in userspace by rewriting files to force contiguous storage.
e4defrag sys-fs/e2fsprogs Made for the ext4 filesystem.
reiserfs-defrag sys-fs/reiserfs-defrag Make for ReiserFS filesystems.

See also

External resources