- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- not login
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2002 06:23 AM
04-12-2002 06:23 AM
not login
When executing the following commands by root, it becomes impossible for no user to have login and was now.
Please help someone.
Execution sentence
chmod 777 -r /usr
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2002 06:26 AM
04-12-2002 06:26 AM
Re: not login
Not good permissions or owner.
The permission should like root:root dr-xr-xr-x for /usr.
Check this.
Frank.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2002 06:27 AM
04-12-2002 06:27 AM
Re: not login
Sandip
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2002 06:28 AM
04-12-2002 06:28 AM
Re: not login
drwxr-xr-x 22 root root 1024 Jan 11 2001 usr1
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2002 06:29 AM
04-12-2002 06:29 AM
Re: not login
-r is not right
chmod -R 777 /usr
-R is to do a recursive change on all files in /usr
john
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2002 06:32 AM
04-12-2002 06:32 AM
Re: not login
Some points:
1) The /usr has system specific commands and tools in it. If you change the permission of /usr to 777, it is NOT a good step. You will have problems in future ( anybody can remove any files from that !)
2) If you are using 777, then you don't need to use '-r'. You have to specify either symbolic_mode_list(rwx) or numeric_mode_list(777).
3) The right permission of /usr should be:
dr-xr-xr-x bin bin /usr
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2002 06:47 AM
04-12-2002 06:47 AM
Re: not login
under /usr/bin there is a file called login file please change the owner of this file to as root and bin and also the permissions to
-r-s-r-xr-x ie
chmod 4555 /usr/bin/login ,
and you should be good to go , but dont change permissions like that .
Manoj Srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2002 06:57 AM
04-12-2002 06:57 AM
Re: not login
Time to restore vg00 from your Ignote/UX backup tape.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2002 06:59 AM
04-12-2002 06:59 AM
Re: not login
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2002 07:03 AM
04-12-2002 07:03 AM
Re: not login
hope you have not done the chmod 777 I waas in too much of a hurry and didn't think before I suggested what was wrong with the command you was issuing rather than what you was trying to achieve.
my apologies if I have made your troubles worse.
John.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2002 07:17 AM
04-12-2002 07:17 AM
Re: not login
cat /etc/fstab. It should be mentioned over there. Before doing anything take the backup of the system as soon as it comes up.
To mount all directories
vgchange -a y
mount -a
Sandip