this post was submitted on 22 Jul 2024
33 points (90.2% liked)

linux4noobs

1269 readers
1 users here now

linux4noobs


Noob Friendly, Expert Enabling

Whether you're a seasoned pro or the noobiest of noobs, you've found the right place for Linux support and information. With a dedication to supporting free and open source software, this community aims to ensure Linux fits your needs and works for you. From troubleshooting to tutorials, practical tips, news and more, all aspects of Linux are warmly welcomed. Join a community of like-minded enthusiasts and professionals driving Linux's ongoing evolution.


Seeking Support?

Community Rules

founded 1 year ago
MODERATORS
 
top 35 comments
sorted by: hot top controversial new old
[–] [email protected] 14 points 1 month ago (1 children)

Maybe you have a swap file that happens to be 16GB ?

[–] [email protected] 5 points 1 month ago* (last edited 1 month ago) (1 children)

I only allowed 4G for swap, maybe arch enabled zram and it used 8GB by default and I actually don't need to create a swap partition?

[–] [email protected] 10 points 1 month ago

Arch doesn't really do anything you don't tell it to do during installation.
That's the entire point. After installing Arch, you know what your system does, cause you configured it.

[–] [email protected] 13 points 1 month ago* (last edited 1 month ago) (4 children)

You can try using # du -h -d 1 / to locate the largest directory under /. Once you've located the largest directory, replace / with that directory. Repeat that until you find the culprit (if there is a single large directory).

EDIT (2024-07-22T19:34Z): As suggested by @[email protected], you can also use a program like Filelight, which provides a visual and more comprehensive breakdown of the sizes of directories.

[–] [email protected] 15 points 1 month ago (3 children)

You can use Filelight which is much simpler and more visual.

[–] [email protected] 13 points 1 month ago (1 children)

But it doesn't make you feel like hackerman

[–] [email protected] 5 points 1 month ago

goddamn does it ever feel good to feel like a hackerman

[–] [email protected] 2 points 1 month ago
[–] NostraDavid 2 points 1 month ago (1 children)

ncdu for the terminal. Also enables you to delete folders/files.

[–] oscar 1 points 1 month ago

gdu is another alternative. It is sometimes faster than ncdu for me.

[–] [email protected] 2 points 1 month ago (1 children)

Df does that too, or did you mean du?

[–] [email protected] 4 points 1 month ago* (last edited 1 month ago) (1 children)

Whoops! You are correct — I have updated the original comment. I'm not sure why I wrote df instead of du. This is a good example of why one should always be wary of blindly copying commands 😜 It begins to teeter on being potentially disastrous if I had instead wrote dd.

[–] [email protected] 3 points 1 month ago

Luckily the syntax wouldn't have worked if it was dd

[–] [email protected] 2 points 1 month ago (1 children)

You're a life saver I finally found the culprit

[–] [email protected] 5 points 1 month ago (1 children)

Do tell! We need a follow up :)

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

It's "Steam" inside .local eat up 6GB even though I have not open it yet and tmp files (almost 5GB) that is not clear itself after installing the OS

[–] 0xDREADBEEF 1 points 1 month ago* (last edited 1 month ago) (1 children)

A fresh Arch install included Steam? Or was this not a fresh install?

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

I install it during pacstrap

[–] 0xDREADBEEF 2 points 1 month ago

Ah, I see. Just be aware that any additional file size when you get to the stage you can install KDE is pretty much considered the "bloat" part of installs, meaning you only make arch as bloated as you want after that. I like filelight in KDE https://apps.kde.org/filelight/

[–] [email protected] 1 points 1 month ago* (last edited 1 month ago) (1 children)

Or you could use baobab to do the same thing if you want an answer within 10 minutes.

[–] [email protected] 2 points 1 month ago

Or dust if you want it fastest with a pretty graph

[–] [email protected] 9 points 1 month ago (1 children)

It might have something to do with the dolphin you're keeping in there.

[–] [email protected] 3 points 1 month ago (1 children)
[–] [email protected] 10 points 1 month ago (1 children)
[–] [email protected] 5 points 1 month ago

But they’re faster than lightning.

[–] [email protected] 6 points 1 month ago* (last edited 1 month ago)

Try the following command to list all installed packages sorted by size [source]:

LC_ALL=C.UTF-8 pacman -Qi | awk '/^Name/{name=$3} /^Installed Size/{print $4$5, name}' | LC_ALL=C.UTF-8 sort -h

There may be some unexpectedly large packages installed.

[–] [email protected] 5 points 1 month ago

Keep in mind that a part of the filesystem will be reserved on creation. Here if I create a completely empty ext4 filesystem with:

truncate -s 230G /tmp/img
mkfs.ext4 /tmp/img
mount /tmp/img /mnt

Dolphin reports "213.8 GiB free of 225.3 GiB (5% used)"

screenshot

[–] [email protected] 5 points 1 month ago

Freash on a leak

[–] Fijxu 4 points 1 month ago
[–] [email protected] 4 points 1 month ago (1 children)

Try running pacman -Scc to get rid of the pacman cache.

Also: How did you install KDE?

[–] [email protected] 4 points 1 month ago* (last edited 1 month ago)

I used "sudo pacman -S plasma sddm"

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

sounds ok for me if you install the full KDE Plasma + all applications package group and add some basic software like LibreOffice

[–] [email protected] 3 points 1 month ago (2 children)

I used minimal plasma (pacman -S plasma)

[–] [email protected] 11 points 1 month ago

plasma-desktop is the minimal one.

[–] LinearArray 1 points 1 month ago

use plasma-desktop, that's the actual minimal one.