Drive use shell: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=== Generic Linux Commands === Find out what directories are taking up space quickly. <pre> cd ~ sudo du -x -d1 -h . </pre> Category:Linux") |
mNo edit summary |
||
Line 7: | Line 7: | ||
</pre> | </pre> | ||
Find out what process is keeping deleted files open | |||
<pre> | |||
lsof -s | grep deleted | sort -k 8 | |||
</pre> | |||
Latest revision as of 15:11, 15 June 2023
Generic Linux Commands
Find out what directories are taking up space quickly.
cd ~ sudo du -x -d1 -h .
Find out what process is keeping deleted files open
lsof -s | grep deleted | sort -k 8