Solaris / OpenSolarisThis forum is for the discussion of Solaris and OpenSolaris.
General Sun, SunOS and Sparc related questions also go here.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
OK! I was having major permissions problems with my software. I went into root and gave permissions to users as much as possible but to no avail. Accidently, I did chmod 555 on usr folder. Now I can only login as root and solaris will not let me log in as anything else.
I add users in the solaris management console.
Please helpppp!!!
M
under default,when you add a new user to your system,the user's home directory will not be created.
so you can't login as the user! you must make a home directory for the user and chown,then vi /etc/passwd
file .now ,it should be ok!
I just have a try
I rename my home directory /export/home/anuode to /export/home/anuode.old .
then logout and login
I can't login normally,and only start a failsafe session
why?
Perhaps the initiator is not able to login to JDS as normal user. It is not so uncommon to encounter such problems, if files like .ICEauthority are owned by root user, and if there are insufficient privileges for normal users to access those files.
Simply changing the ownership, or making all the files {in the home directory of the user} accessible to normal user(s) may resolve the issue.
----
>> I add users in the solaris management console.
Did you change the ownership of the home directory of the user?
It is not that hard to create a new user from command line, really. The following example shows the simple steps to create a new user called "madamson":
1. mkdir -p /export/home/madamson (Create the home directory for the user, before creating the user)
2. useradd -s /bin/csh -d /export/home/madamson madamson (default shell will be Csh. Do a "man useradd" for the other options)
3. chown -R madamson /export/home/madamson (Let the user own his home directory)
4. passwd madamson (Change the password)
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.