Ask a Question related to AIX, Design and Development.

  1. #1

    Default Group definitions

    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 Guest

  2. Similar Questions and Discussions

    1. May 29 Sydney Developers Group study group
      On Monday 29th May, we'll be studying Actionscript 3. Please read the articles prior to the meeting (see <a target=_blank...
    2. Site Definitions did not tranfer
      I installed DW MX along side DW 4 but the site definitions did not transfer automatically as Macromedia promised on my Windows 2000 machine. Is there...
    3. Site Definitions
      Is there a way of copying the site definitions from Dreaweaver 4 to Dreamweaver MX I have both running on my computer
    4. how to backup site definitions?
      hello, is there any way of backing up my site definitions? half of them disapeared a few months ago with all my ftp details etc, and i'm worried...
    5. Pre-Compiler Definitions Changing?
      I have a web project which references some assemblies from other projects I have worked on in different solutions, and am running into some quirky...
  3. #2

    Default Re: Group definitions

    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?" [url]http://www.aglami.com/tpfaq.html[/url]
    "Meanings are another story." [url]http://www.ifas.org/wa/glossolalia.html[/url]
    Nicholas Dronen Guest

  4. #3

    Default Re: Group definitions

    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 Guest

  5. #4

    Default Re: Group definitions

    "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
    Steve Nottingham Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139