this post was submitted on 27 Nov 2025
13 points (100.0% liked)
No Stupid Questions
3455 readers
35 users here now
There is no such thing as a Stupid Question!
Don't be embarrassed of your curiosity; everyone has questions that they may feel uncomfortable asking certain people, so this place gives you a nice area not to be judged about asking it. Everyone here is willing to help.
- ex. How do I change oil
- ex. How to tie shoes
- ex. Can you cry underwater?
Reminder that the rules for lemmy.ca still apply!
Thanks for reading all of this, even if you didn't read all of this, and your eye started somewhere else, have a watermelon slice ๐.
founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
ip a
du -dh
Beer and 'Du...Du hast...?'
Wat do they do?
I'm not at a Linux machine at the moment, but
ip ais probably short for "ip addr", which shows the local machine's IP address with iproute2 (historically, one would have used OP'sifconfig).I dunno -d off the top of my head, but
du -hshows, using "human readable units"like "M" for megabyte, etc, the size of all the files below each directory starting at the current one. It pairs well with
sort -h, which can sort those unitsdu -h | sort -his a nice way to get an overview of what is eating up your disk space.I managed to find this about
ipand its various switches: https://www.man7.org/linux/man-pages/man8/ip.8.html