this post was submitted on 27 Oct 2023
20 points (88.5% liked)

Linux

47342 readers
1617 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
 

After installing pacman packages (last one was 'ungoogled-chromium') my root partition of 20GB is completly full. Now I can't update new packages.

My partition structure is: root (20GB) /home (470GB) swap (10GB)

How can I delete the garbage that is piling up in my root, and how to prevent it from happening again.

you are viewing a single comment's thread
view the rest of the comments
[–] Roshakk@lemmy.world 13 points 10 months ago (1 children)

You can start to delete pachage caches, and see how much you gain... If not done often you can have a pile of old stuff. Check out the paccache arch wiki page for more info!

[–] c0mpost@lemmy.eco.br 7 points 10 months ago (1 children)

This. You might have to clear up some space before installing pacman-contrib though.

paccache -rk1 once in a while and you're good, maybe even create a hook

[–] Tw1@lemmy.roembol.nl 5 points 10 months ago (1 children)

Thanks! This realy helped me out. Saved 1GB on my root.

When I install things with pacman, is it storing files in the root partition? If so, can I specify installations to install inside the home partition?

Pacman installs binaries in the root partition because they are installed system-wide. I don't think that pacman can install binaries for a single user (inside the home partition).

One way of achieving that would be compiling or downloading the binaries manually as a normal user and putting the .desktop file in .local/share/applications. The program would then be only accessible for a single user though.