Versionen im Vergleich

Schlüssel

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

...

Each user account is a member in a number of unix groups. You can check the list of unix groups with the command groups.

Codeblock
titleUnix groups
blogin4> groups myaccount
myaccount prj00012

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.

Codeblock
titleModify 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




Modify unix group for a directory

blogin4> chgrp --recursive prj00012 somedirectory
blogin4> ls -lad somedirectory
drwx------  1 myaccount  prj00012      4096 Jul  3  2020 somedirectory





For each file on disk you can figure out to which unix group it is attached to.

...