this post was submitted on 03 Dec 2023
427 points (96.9% liked)

Linux

45582 readers
598 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

Alt TextA screenshot of a file manager preview window for my ~/.cache folder, which takes up 164.3 GiB and has 246,049 files and 15,126 folders. The folder was first created about 1.75 years ago with my system

you are viewing a single comment's thread
view the rest of the comments
[–] dog_ 16 points 7 months ago (5 children)

Question, could you have cron/crontab do it monthly or something? Do it monthly meaning delete everything in ~/.cache every month or so?

[–] [email protected] 4 points 7 months ago

Don't. You don't need to clean it unless cache of some buggy program grows uncontrollable.

[–] Zangoose 3 points 7 months ago (1 children)

I just found this today, I don't really know anything about cron jobs but this will probably incentive me to learn lol

[–] SuperIce 10 points 7 months ago (2 children)

Did you happen to see which subdirectory was using up this much space? I don't think I've ever seen .cache go above 10GB, so this may be a bug in a piece of software you use.

[–] [email protected] 3 points 7 months ago (1 children)

Running ncdu on it would've been cool to see.

[–] Zangoose 5 points 7 months ago* (last edited 7 months ago) (2 children)

Looks like yay is storing every previous binary for AUR bin packages (also excuse the unreadable terminal theme, it doesn't play very well with a lot of TUI apps unless they support custom theming)

[–] neonred 2 points 7 months ago* (last edited 7 months ago)

Wow, I've never seen something like this.

Is it" allowed"? I mean, there are quotas for user homes.

[–] [email protected] 2 points 7 months ago* (last edited 7 months ago) (1 children)

You should run yay -Sc from time to time. This cleans a) your pacman cache (which is normally done by executing pacman -Sc) b) your AUR build cache, which is what's taking up 160GB. But this one seems rather unusual, I use paru (which also has the command paru -Sc), so I can't really tell if this is normal with yay.

The command also asks you for every directory if you want to delete it or not, so it's completely save to run that command.

[–] Zangoose 2 points 7 months ago (1 children)

Something I noticed was that it was mostly the binary packages that were taking up so much space, it may be because of how yay stores the programs (does it use git?), the ones that were compiled from source code usually took up the least amount of space, while the binary programs were the ones taking up tens of gigabytes

[–] [email protected] 1 points 7 months ago

Indeed, yay utilizes the AUR, which essentially serves as a Git repository for each package. These repositories typically include a PKGBUILD file and a .SRCINFO file, along with possible additional files like patches, desktop, or service files.

For example, take a look at IntelliJ Ultimate: [https://aur.archlinux.org/cgit/aur.git/tree/?h=intellij-idea-ultimate-edition]. It contains the .SRCINFO and PKGBUILD, as well as a .desktop file. These files themselves do not occupy much space.

The PKGBUILD specifies the sources for dependencies. For instance:

source=("https://download.jetbrains.com/idea/ideaIU-$pkgver.tar.gz"
        "jetbrains-idea.desktop")

The PKGBUILD is essentially a Bash script with predefined functions and variables. You can learn more about it here: [https://wiki.archlinux.org/title/PKGBUILD].

This script primarily downloads and extracts the tar file. In this specific case, it only relocates the files to their intended installation locations, like moving the desktop file to /usr/share/applications.

With such packages, there's a possibility of wasting significant space since the tar file is downloaded and possibly retained in the cache.

However, other packages, especially those compiled from source, usually involve Git clones. These clones bring the Git repository into a subdirectory of the already cloned AUR package Git repo. Some might also have source tarballs. These types of packages generally do not consume much space in the cache, as they are often just text files, like C source code or Python scripts. These packages frequently rely on external libraries and packages, which are not included in this package’s cache.

While binary packages often bundle all necessary libraries and other components in their source tarballs.

The AUR cache is mostly beneficial if you're rebuilding the same version or can reuse components from a previous version. For example, a package might depend on a large, static file that doesn’t change often.

In Paru, I've enabled the "CleanAfter" option to prevent my cache from overflowing. Given my relatively fast internet speed, redownloading large files isn't a major concern for me.

[–] Zangoose 1 points 7 months ago

Haven't deleted it yet actually, looks like most of it is from yay

[–] [email protected] 3 points 7 months ago

You could have a cronjob run something like find /home/user/.cache -type f -atime +30 -delete, which would find files that haven't been accessed in the last 30 days and delete them. Make sure your home partition is not mounted with the noatime option though.

[–] [email protected] 1 points 7 months ago

Just mount it into your RAM