Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The idea of this discussion is to collect helpful cluster commands. Here are a few I used/learned during our landuse folder space "crisis" :
rm -rf <FOLDER>
cp file.txt <NEW FOLDER>
cp -R <FOLDER> <NEW FOLDER>
mv file.txt <NEW FOLDER>
mv <FOLDER> <NEW FOLDER>
6) Space available and used in a folder:
mmlsquota -j <FOLDER> --block-size T projects
7) Space occupied in a directory by file and subfolder:
du -h
du -h -d 1 | sort -rh
(add >> du.txt to save results in a .txt file)Beta Was this translation helpful? Give feedback.
All reactions