unable to set user home dir


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers unable to set user home dir
# 8  
Old 04-27-2009
Others may wish to comment further.
I believe that directory permissions 600 would need to be 700 for login to work.
Is group 444 "other" ?

Have you tried running "pwck" (password file checker) ?
# 9  
Old 04-27-2009
Changing to 700 worked. Thanks.

One other thing I noticed though is that if I login through telnet or SSH with this new user, I cannot change directory or list whats in the directory: restrictions imposed by the restricted shell I guess. BUT, if I login in through an FTP client, I am able to change directory and navigate upwards. Why is this? Does the shell govern this?

thanks

Last edited by some_one; 04-27-2009 at 03:40 PM..
# 10  
Old 04-28-2009
Anyone?
# 11  
Old 04-28-2009
Code:
ant:/home/vbe $ rsh
ant:/home/vbe $ cd ..
rsh: cd: The operation is not allowed in a restricted shell.

Happy?

Another thing, look an the man pages on perms... You remove execute on a directory means it becomes impossible to traverse and so of no use...( I have some crasy users doing that sort of stuff to protect directories from others... the fun is sometimes they change the ownership...)
# 12  
Old 04-28-2009
Actually, I dont think I made myself clear... sorry. I don't want this user to be able to navigate out of their home directory - whether they are logged in using FTP, telnet, SSH, etc...

For some reason, they can navigate when using an FTP client though. This I don't want and I dont understand why this is possible. Commands from an FTP client are the same as from that of telnet or SSH; only on a different port, correct?

Thanks
# 13  
Old 04-29-2009
PHP

Quote:
Originally Posted by DukeNuke2
another question, how do you create the new user? please post the command and the output from shell when executing the command... this might be usefull.

I don't mess with users to much so I created the following script, keep in mind it creates a zfs filesystem for each new user so you may want to edit to suit your needs, hope this helps someone.

#!/bin/ksh

case $1 in

'useradd')

print "User Name? \c"
read user
print "User ID? \c"
read User_ID

zfs create tank/$user
zfs set mountpoint=legacy tank/$user
mkdir /export/$user
cp /etc/vfstab /etc/vfstab.bak
print "tank/$user - /export/$user zfs - yes -" >> /etc/vfstab
mount /export/$user

useradd -g 1000 -u "$User_ID" -d /export/"$user" -s /bin/ksh $user
passwd -fd $user
;;
esac
# 14  
Old 04-29-2009
make some changes to this row:

useradd -g 1000 -u "$User_ID" -d /export/"$user" -s /bin/ksh $user

to

useradd -g 1000 -u "$User_ID" -d /export/"$user" -m -s /bin/ksh $user
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Switching from root to normal user takes me to user's home dir

Whenever i switch from root to another user, by doing su - user, it takes me to home directory of user. This is very annoying as i want to be in same dir to run different commands as root sometimes and sometimes as normal user. How to fix this? (1 Reply)
Discussion started by: syncmaster
1 Replies

2. HP-UX

[Solved] Unable to change/create home dir for particular user

Hi all I wanted to change the home dir for a user, but when using smh : SMH->Accounts for Users and Groups->Local Users->Modify User ---------------------------------------------------------------------------------------------------------------------------------------------- * Required... (8 Replies)
Discussion started by: fretagi
8 Replies

3. Solaris

remove a user without removing its home dir

HI all, I have wrongly given a wrong home directory to a user. This dir is very critical for my production environment(Can;t afford to lose it for a single minute) Now i want to delete that user, Whenever i try to delete user it tries to delete its home dir. Commnd i use: userdel ... (9 Replies)
Discussion started by: varunksharma87
9 Replies

4. HP-UX

Unable to Set Prompt to current working DIR

HPUX does not recognise \h,\w,\u to display the hostname,working directory and username respectively. So how do i set the PS1 variable to display my current working Directory as my prompt? I also tried PS1=$PWD, But it keeps showing the same directory path as prompt which PWD was holding at... (3 Replies)
Discussion started by: Amit Kulkarni
3 Replies

5. Solaris

how to change /export/home/user dir to /home /user in solaris

Hi all i am using solaris 10, i am creating user with useradd -d/home/user -m -s /bin/sh user user is created with in the following path /export/home/user (auto mount) i need the user to be created like this (/home as default home directory ) useradd -d /home/user -m -s /bin/sh... (2 Replies)
Discussion started by: kalyankalyan
2 Replies

6. AIX

Not able to mount user home dir from with automount

Hello there Have anyone configured an AIX 5L machine as NIS client? with homedirectories automounted form an NFS share? The NIS server is running Solaris. I am able to configure the AIX machine as client and user is able to login but I have configured the client to use the automountd... (0 Replies)
Discussion started by: balaji_prk
0 Replies

7. UNIX for Dummies Questions & Answers

Restrict user access to their home dir

Hi! i'm using FreeBSD 6.2 and hosting my pc to frens in particular of sensitive information being saved to the PC, i would like to know is it possible for me to restrict user access to their /home dir. only? and also, i wanted to restrict them listing files under /etc thanks all! (10 Replies)
Discussion started by: rdns
10 Replies

8. Solaris

need to restrict user to his home dir

Hello, i need to create a user who's access is restricted only to his home directory and below, i restricted his pty access by adding 'no-pty' to the options of the ssh key in authorized_keys file. However, sftp access still allows this user access to all my file system thanks (5 Replies)
Discussion started by: lidram
5 Replies

9. UNIX for Dummies Questions & Answers

listing home dir of anothe user

Hi I am trying to display the home directory of another user. I dont have the permissions to change into their directory and wonder is it possible to display their directory eg I cant change directory to john but I am trying to display something like /home/John. If anyone can help I would... (3 Replies)
Discussion started by: mmg2711
3 Replies

10. UNIX for Dummies Questions & Answers

Modify user home dir

I created a new user and assigned a certain home dir to tis user. I've noticed that this home dir (/export/home/test) is already assigned to other users. I really want to create a dedicated home dir for the new user. Can anyone tell me how I can modify this user with a new homedir? Thx for... (4 Replies)
Discussion started by: kris_devis
4 Replies
Login or Register to Ask a Question