Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
File Permission
Name: gardenair Date: April 27, 2005 at 18:43:17 Pacific OS: win98 CPU/Ram: 900
Comment:
I want to change the user permissions i.e
$ touch myfile $ls -l myfile
-rw-r--r--
$chmod u=+x myfile
here i also want to give the execute prmission to the user but the list command shows (Read & Write also removed why ?) $ls -l ----r--r--
yes the other way is to use the number(Octal) i.e $chmod 700 myfile
$ls -l myfile
-rwx------
by using 744 with chmod it can show me desire desire result. plz guide me that how can i adjuct it by using Owner,Group & Others
example chmod u=+r,+w,+x so that i can view the the user have rwx permission.
Summary: I want to change to file permission of all files in a directory, and all the files in the subdirectories of that directory. So anything in the directory is writable to all. How would i do this? ...
Summary: I set up a box to be a server and now I'm creating all the files I need for the website. I'm using remote access to go in do the designing. My problem right now is that everytime I make a file using r...