...
Codeblock |
---|
title | 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 |
---|
title | Modify unix group for a directory |
---|
|
blogin4> chgrp --recursive prj00012 somedirectory |
...
For each file on disk you can figure out to which unix group it is attached to.
Codeblock |
---|
|
blogin4>
blogin4> ls -la
-rw------- 1 myaccount myaccount 237271040 Jul 3 2020 somefile.txt
lad somedirectory
drwx------ 1 myaccount prj00012 4096 Jul 3 2020 somedirectory
|
You can modify the unix group of a file or a directory tree.
Codeblock |
---|
|
blogin4> groups
myaccount prj00012
blogin4> chgrp prj00012 somefile.txt
blogin4> chgrp --recursive prj00012 somedirectory
blogin4> ls -la somefile.txt
-rw------- 1 myaccount prj00012 237271040 Jul 3 2020 somefile.txt |
HOME quota exceeded
You have the following solutions if your HOME quota is exceeded.
...