This is a discussion on Group definitions within the AIX Operating System forums, part of the Unix Operating Systems category; --> I need to find the details of each group found in AIX systems. This include file ownership, task that ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| I need to find the details of each group found in AIX systems. This include file ownership, task that could be done, list of commands able to execute, etc. I was unable to find a detailed list, all I get is just some short description. Eg, System Group - For most configuration and standard hardware/software maintenance Staff Group - Default group assigned to all new users. I need more info that this... pls help... thanx |
| |||
| Vincent <vincent@azuretech.com.my> wrote: V> I need to find the details of each group found in AIX systems. This V> include file ownership, task that could be done, list of commands able V> to execute, etc. I was unable to find a detailed list, all I get is V> just some short description. Eg, V> System Group - For most configuration and standard hardware/software V> maintenance V> Staff Group - Default group assigned to all new users. Do you know how to write shell scripts? Regards, Nicholas -- "Why shouldn't I top-post?" http://www.aglami.com/tpfaq.html "Meanings are another story." http://www.ifas.org/wa/glossolalia.html |
| |||
| Vincent wrote: > I need to find the details of each group found in AIX systems. This > include file ownership, task that could be done, list of commands able > to execute, etc. I was unable to find a detailed list, all I get is > just some short description. Eg, > System Group - For most configuration and standard hardware/software > maintenance > Staff Group - Default group assigned to all new users. > > I need more info that this... pls help... thanx You'll need 'grep', 'find', 'awk', 'echo', 'cut' and perhaps 'sed' and some knowledge about shell variables and loops and passing parameter to functions. Attention: running 'find' can produce really(!!!) lots of I/O, so think about what you're looking for before. Redirect stdout to a logfile. Even a 10+ years old RS6K will produce output faster than you can read it. The way you asked hints me to recommend you making a mksysb BEFORE running a self-written script as 'root'. --- Uli |
| ||||
| "Ulrich--nO--(dot)-sPAM--Link" <"Ulrich--nO--(dot)-sPAM--Link"@Epost.de> wrote in message news:<bkee0e$rms$02$1@news.t-online.com>... > Vincent wrote: > > > I need to find the details of each group found in AIX systems. This > > include file ownership, task that could be done, list of commands able > > to execute, etc. I was unable to find a detailed list, all I get is > > just some short description. Eg, > > System Group - For most configuration and standard hardware/software > > maintenance > > Staff Group - Default group assigned to all new users. > > > > I need more info that this... pls help... thanx > > > You'll need 'grep', 'find', 'awk', 'echo', 'cut' and perhaps 'sed' and > some knowledge about shell variables and loops and passing parameter to > functions. > > Attention: running 'find' can produce really(!!!) lots of I/O, so think > about what you're looking for before. > > Redirect stdout to a logfile. Even a 10+ years old RS6K will produce > output faster than you can read it. > > The way you asked hints me to recommend you making a mksysb BEFORE > running a self-written script as 'root'. > > > --- > Uli I also suggest you familiarise yourself with AIX/Unix and ask why you really need to find out this information. Steve |