script to check for a directory in /home for all users


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting script to check for a directory in /home for all users
# 8  
Old 12-30-2010
Quote:
Originally Posted by frans
I'm not totally certain but this should jail the user too :
Code:
cd ~user
ln -fs /media/share/ newdir

This done, if you cd newdir you will be in /media/share/ and after if you cd .. you will be in user's home, not in /media/.
Depending on how the user is jailed in his home directory...
The problem with symlinks is that they can't be followed if the user is restricted to their home directory in proftp and in samba if wide links are disabled

Quote:
Originally Posted by methyl
Thank you for making the question clear. Sorry if I was a bit abrupt earlier.



Like frans I am having difficulty understanding item 3 in a unix context.

The Linux "mount" command is used to mount a filesystem on a mountpoint.
A mountpoint is an empty directory which acts as a pointer to the filesystem.
We would normally mount the filesystem on system startup using parameters in one line of "fstab". I can't see a reason to make this dynamic.

As frans correctly deduced, the conventional approach in unix is to use a soft link (see "man ln") to point a directory under a user's home directory to a directory in a filesystem which is under a different mountpoint from the user's home directory.
I am unclear whether there is to be one common directory for all users or multiple individual directories.


If we are using soft links, items 1 and 2 only need to be done once for existing accounts and then as required when a new account is created.


(I had not seen posts #5 and #6 before eventually posting).
I was aware of this but am not able to put it so eloquently, I am very much open to suggestion if you have a better method of allowing access to a separate directory without using symlinks and preventing the user wandering around the filesystem.

Basically, I have a directory mounted by fstab as /media/share and I would like this to be available to all users as a directory in their /home dir as /home/USERNAME/newdir. Currently I have a line in the fstab for each user that looks something like /media/share/ /home/barrydocks/newdir auto defaults,bind 0 0 I just thought that there would be a more efficient way of doing it so that I didn't have to edit fstab each time a user is added?

Last edited by barrydocks; 12-30-2010 at 06:33 PM..
# 9  
Old 12-30-2010
Okay. Time to back off.

Imho. the concept is flawed and does not scale satisfactorily.
We don't know your maximum number of user accounts but I believe that you will potentially create a situation whereby the sheer number of entries in fstab will break the kernel. Also "fsck" after any form of crash will be a nightmare.

Personally (assuming that the aforementioned use of soft links is not allowed) I'd create the private directory under /home and be done with it. If there isn't enough disc space I'd create the home directory under /media/share.
A home directory does not have to be under /home and a jailed account should not be able to find out where they are in the master directory tree. As far as they are concerned their home directory is root.

There will no doubt be experts on this forum who have had good experiences with automounting selected directories from a shared filesystem using Ubuntu Linux on a large scale.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Permissions on a directory in /home for all users

Hi, I have created a shared directory on /home, where all users on a certain group have read, write and execute permissions. I did this using chmod -R g+rwx /home/shared/ The problem is, when a particular user creates a directory within /home/shared, other users are not able to write to... (8 Replies)
Discussion started by: lost.identity
8 Replies

2. Shell Programming and Scripting

Get Home Directory for Users in Login Hook Script

I'm writing a script to use as a LoginHook for my Mac users. As part of this script, I need to write to a location in their home directory, but I can't seem to access the path - at this point in the login process, $HOME is empty and ~ gives the path to root's home. Unfortunately, I can't just do... (1 Reply)
Discussion started by: blondepianist
1 Replies

3. Red Hat

SSH lock users to the Home Directory

Hi friends, I must to give ssh connection to own customer. So I want to lock ssh user on own home directory. It is not necessery to reach other folders. I know that ftp user can lock on own folder but I don't know how to lock ssh user. I am waitting your kindly helps :D ---------- Post... (10 Replies)
Discussion started by: getrue
10 Replies

4. UNIX for Advanced & Expert Users

about the access permission of users home directory

RHEL5.0 As we know, when root create a new user, a new home directory will be created : /home/user I want to know what determine the access permission of /home/user . Thanks! (1 Reply)
Discussion started by: cqlouis
1 Replies

5. Solaris

Common Home directory for different users??

Hi Guys, I have a problem with configuring a server. this is a solaris 10 with sparc platform. I have setup so that the server is Authenticating through NIS but I dont want the server to Mount the Home directories. The users need to logged in through the CDE/display. I have over 200 users... (2 Replies)
Discussion started by: Luky
2 Replies

6. Solaris

find home directory paths for all users

How to find al the user's home directories? (2 Replies)
Discussion started by: a2156z
2 Replies

7. UNIX for Dummies Questions & Answers

lost /home/directory for users

I'm using HPUX 11i. The other day a user logon to the workstation and was not able to find the /home/directory (tom is the directory) I login myself and it is the same thing. The home directory is on the server, so I was thinking of using sam to map it again. does anyone know how to do it... (5 Replies)
Discussion started by: blizzgamer
5 Replies

8. UNIX for Dummies Questions & Answers

Home Directory Jail for Users

Hi, I am looking for a shell script (or any other way), that puts a user in a home directory jail. So for example, I have a user named richard and I don't want him wandering outside /usr/users/richard. I don't want him to cd to anywhere including cd .. Somebody said you can do that with... (3 Replies)
Discussion started by: mz043
3 Replies

9. UNIX for Dummies Questions & Answers

Profiles for users without home directory

Hi I want to know which profile will be called when a user without home directory is created. When I created a user without home directory(by setting in /etc/default/useradd), the user is able to login directly into the main "/" folder but with only read permissions. Thanks naina (3 Replies)
Discussion started by: naina
3 Replies

10. UNIX for Dummies Questions & Answers

Restrict users to ther home directory

Hello! I want users in a certain group to be restricted to their home directory. So that they have full access to all files and folders in their home directory but the cant go to any directory above. Does anyone know how to do this? Anders (1 Reply)
Discussion started by: alfabetman
1 Replies
Login or Register to Ask a Question