How Do I Monitor and Manage My Disk Space on Arch Linux?

0
534
Asked By CuriousCactus72 On

Hey everyone! I'm new to Linux, just migrated from Windows about a week ago and I've been installing a ton of packages. Currently, I'm using Arch and while I can see total disk usage in Dolphin, I'm looking for a way to see which specific folders are eating up my disk space. Is there a command or program in Linux similar to Windows' FolderSize that can help me with this?

3 Answers

Answered By TechyTurtle42 On

If you're using KDE/Plasma, check out `filelight`. It's a great visual tool for seeing disk space usage. Just run it and it’ll show you which folders are taking up the most space!

Answered By CloudyComp182 On

You can also use the command line. Try `du -csh /` to see total sizes. If you want to check your home directory specifically, use `du -csh $HOME`. It's simple and effective!

BashfulBard99 -

That command is super useful! I've been using `du` for a while now and it's helped me manage my files better.

Answered By DiskDiver33 On

There's also `ncdu`, which you can run with `sudo ncdu -x /`. It's a terminal-based tool that’s pretty handy for navigating disk usage interactively. You might find it cleaner than `du`!

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.