[K12OSN] home directory permissions

"Terrell Prudé Jr." microman at cmosnetworks.com
Thu Jul 10 13:59:00 UTC 2008


Ernie Hudson wrote:
>
> Does anyone have an easy way to change the permissions on the home
> directories so that only the owner has access to it. We have some very
> bright students and they have found out that they can copy work from
> someone else and have more free time. I am using the 5EL and have
> single sign on using likewise open from my windows server using active
> directory. I know I can change them one at a time using “chmod 700
> filename”. I am not adept at writing scripts and hoping someone can help.
>
>  
>
Do get the basics of shell-scripting down.  I'd recommend heading over
to http://www.tldp.org and reading the Advanced BASH Scripting Guide. 
That's how I learned how to do it.  Extremely handy skill and very
necessary, just as important as writing .BAT or .REG files on Windows.

Now to your specific question.  That's pretty easy to do.  All you
really have to do is change the top level directory permissions under
/home, i. e. no recursion needed.  I'd do it like this, in a basic FOR loop:

#!/bin/bash
cd /home
for dir in *
do
  chmod 700 $dir
done

If you want to recurse down and change everything in everyone's homedir
to permissions 700, just add the "-R" switch after "chmod".

--TP
_______________________________
Do you GNU <http://www.gnu.org>?
Microsoft Free since 2003 <http://www.cmosnetworks.com>--the ultimate
antivirus protection!

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://listman.redhat.com/archives/k12osn/attachments/20080710/09a8c74f/attachment.htm>


More information about the K12OSN mailing list