Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.

...

Once you decide to set the unix group to prj00012 for a file, the used quota for the unix group prj00012 includes this file size.

ok
Codeblock
titleGroup control
Modify unix group for a file
blogin4> chgrp prj00012 somefile.txt
blogin4> ls -la somefile.txt
-rw-------  1 myaccount prj00012 237271040 Jul  3  2020 somefile.txt


Codeblock
titleModify unix group for a directory
blogin4> chgrp --recursive prj00012 somedirectory
blogin4> ls -lad somedirectory
-rw-------  1 myaccount prj00012 237271040 Jul  3  2020 somefile.txt



you find quota informations additionally for all groups. Each of your files belongs to your account or to one of your unix groups.

...