Posts: 10,816
Name: Steven Bradley
Location: Boulder, Colorado
|
The permissions you found are exactly the windows equivalent of chmod. The chmod command you're supposed to enter most likely contains 3 numbers like 644 or 777 or 755 or something like that. The first number is for the owner, the second is for the group, and the third is for users. Each number is a decimal representing the binary sum for the read, write, and execute permission. read=4, write=2, execute=1
So if the number is 7 for the owner then it means you need to have all three ticks present for the owner. (4 + 2 + 1 = 7)
If the number is 5 for the group you need to have the ticks for read and execute present for the group. (4 + 1 =5 )
If your chmod command has things like rwx then they stand for read, write, execute and will also be in the order of owner, group, users, but I'm guessing the command you were given is of the 3 digit variety.
Hope that helps. I'm glad you found a way to make the changes. And we were all new to this once.
Last edited by vangogh; 12-31-2005 at 12:10 PM..
|