chkconfig: - 60 20 ; what does means?

Ask a Question related to Linux Setup, Configuration & Administration, Design and Development.

  1. #1

    Default chkconfig: - 60 20 ; what does means?

    I found following script line in /etc/rc.d/init.d/nfs

    chkconfig: - 60 20

    someone tell me what does above line means?
    I think start priority 60 and stop priority 20, but as I know nice value's
    range goes from -20 (highest priority) to 19 (lowest).


    thank you a lot.
    have a day.



    somez72 Guest

  2. Similar Questions and Discussions

    1. SWC,SWF Means
      What is the abbrevation of .SWC , .SWF formats. please any one give me reply
    2. what does (gray#) means
      hi there, from a client we received some grayscale images (just black and white scannings I think), that when opened in Photoshop 7 inside the...
    3. if (!0) means what?
      Recently I made this mistake: if (!0){ echo "I am true"; } else { echo "I am false"; } It always evaluated to "true". What does (!0)...
    4. Can you tell me what this coding means?
      One of our employees received an email (spam) that contained some code that didn't make sense to us. In the source code you will see the words...
    5. What means Protected WithEvents ?
      The keyword 'protected' is an access modifier. You can get started understanding what is going on by opening your MSDN Library, look for the term...
  3. #2

    Default Re: chkconfig: - 60 20 ; what does means?

    somez72 wrote:
    >
    > I found following script line in /etc/rc.d/init.d/nfs
    >
    > chkconfig: - 60 20
    >
    > someone tell me what does above line means?
    YES, 'man chkconfig' will do it.

    --Frank Elsner
    Frank Elsner Guest

  4. #3

    Default Re: chkconfig: - 60 20 ; what does means?


    "somez72" <somez72@chollian.net> wrote in message
    news:bf38le$2c8$1@news1.kornet.net...
    | I found following script line in /etc/rc.d/init.d/nfs
    |
    | chkconfig: - 60 20
    |
    | someone tell me what does above line means?
    | I think start priority 60 and stop priority 20, but as I know nice value's
    | range goes from -20 (highest priority) to 19 (lowest).
    |
    |
    | thank you a lot.
    | have a day.
    |
    |
    |

    It does not correspond to "nice" values. It corresponds to the service
    start and kill "priority" or rather the order number during startup and
    shutdown sequences.

    as mentioned. "man chkconfig"

    ken k


    Ken Kauffman 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