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.
directory permissions
Name: jackal Date: March 24, 2001 at 12:18:55 Pacific
Comment:
how can I limit a user to his home directory when he telnet's in ?
Name: Mik Date: March 26, 2001 at 00:52:01 Pacific
Reply:
Set very strict directory permissions. You can set UGO (User Group Other) permissions on each directory. Use the command "chmod" to set permissions. Set all the directories you do not want to be accessed by that user to not be readable to Other. Make sure that the user is not part of a group which has access to other directories which you do not want him to access. Don't forget to make sure his home directory is owned by him otherwise you will lock him out of his own directory. Use the command "chown" to change an owner of a directory.
Summary: Is there a way in Linux to allow users access to a file in a directory, but not allow them to list the files in a directory? I guess the ls command should either show them nothing or say permission de...
Summary: I'm trying to install programs into the usr/ and usr/local/ directories, and both aren't letting any program be installed there, due to the fact that the directory is not enabled to 'write'. I'm logg...
Summary: check your httpd.conf for directory permissions. you might find something like Order allow,deny Allow From localhost Deny From All change that to grant access to your LAN ...