Closed Thread
Results 1 to 3 of 3

Thread: Hmm..chmod 744

  1. #1
    Senior Member Christy has disabled reputation
    Join Date
    Oct 2000
    Posts
    166
    How do you chmod 744? Like, I know chmod 755 is rwxr-xr-x
    I'm new to this stuff

  2. #2
    FWS Addict atlas has a spectacular aura aboutatlas has a spectacular aura about atlas's Avatar
    Join Date
    Nov 2000
    Posts
    501
    Originally posted by Christy
    How do you chmod 744? Like, I know chmod 755 is rwxr-xr-x
    I'm new to this stuff
    744 is:
    rwxr--r--

    owner: read, write, execute
    group: read
    all: read

    Just using 'chmod 744 <file>' in a shell interface will change the permissions properly for you.

    mjk@atlascgi.com

  3. #3
    Member Jerry is an unknown quantity at this point
    Join Date
    Nov 2000
    Location
    CA, USA
    Posts
    72
    just remeber it like this..

    r = 4
    w = 2
    x = 1

    say you want 666

    r + w = 6
    r + w = 6
    r + w = 6

    644

    r + w = 6
    r = 4
    r = 4

    etc..

Closed Thread

Bookmarks

Posting Permissions

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