script
-
Check how much is used up by a specific user
You can use below command to check how much space is consumed by a specific user (‘testuser’ in this case). $ cd / $ find . -user testuser -type f -exec du -k {} ; | awk ‘{ s = s + $1 } END { print “Total used: “, s }’ Total used: 5322333… Continue reading
About Me
A software engineer who loves any technologies that makes life easier. That’s why I love Linux and Mac at the same time.
Recent Posts
- How to find the actual memory usage by each process
- How to check memory usage in Linux – part 1.2 – Per-process level memory usage check
- How to check memory usage in Linux – part 1.1 – System level memory usage check
- How to check memory usage in Linux – part 1. User space
- How to track SLAB usage using slub_debug=U