gollum1971 wrote: The result of ls follow
drwxr-xr-x 31 aiden aiden 4096 2007-07-25 12:53 aiden
drw-rw-rw- 56 frog frog 4096 2007-07-25 01:39 frog
The "execute" permission on a directory means "being able to change into it". So by taking away that bit you blocked access to the directory. Read and write permissions on a directory are not enough ... you also need to be able to "execute" it = change into it.
gollum1971 wrote: when I try to change the permissiond using chmod 755, it yells me that permission is denied.
Did you use
sudo ?? Doesn't look like it.
- Code: Select all
sudo chmod 755 /home/frog
gollum1971 wrote: I don't really know what I'm doing with chmod 755 but I did find the permissions "-R u+w" on the internet
Different notations. The manual is your friend:
- Code: Select all
man chmod
And a few words of wisdom:*NEVER* *EVER* execute recursive commands (parameter:
-R !!) unless you
*precisely* know what you are doing, OK? You want to play safe? Fine, then follow our instructions and forget about reading stuff on the Internet which you don't seem to understand at the moment. Better come back here and ask us, OK?
Furthermore, the parameter there you suggested "
u+w" doesn't help in your case ... it only gives the user the "write" permission which in your case
frog already has .... it's the "execute" permission that's missing, that would be either a
u+rwx to use that notation (but
*not* recursive
-R !!) or the command we suggested above:
- Code: Select all
sudo chmod 755 /home/frog
Again, the manual is your friend ....
- Code: Select all
man chmod
man chown