- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Cannot chdir to /var/news
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
02-17-2006 02:00 AM
02-17-2006 02:00 AM
Cannot chdir to /var/news
What above subject means after i login into my hp-ux 11.11 (hp 9000 rp3410)
Brgds,
Sero
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2006 02:08 AM
02-17-2006 02:08 AM
Re: Cannot chdir to /var/news
The error simply means that you don't have a '/var/news' directory or that you do but you don't have the permission to 'cd' into it.
Examine your login profile(s) to see where the action is being attempted.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2006 02:37 AM
02-17-2006 02:37 AM
Re: Cannot chdir to /var/news
It means one of two things: either the directory does not exist, or you do not have the requisite permissions.
Once you are logged in, change to the /var directory. Once there, do a listing (ll) to see if the news subdirectory exists. If it does not, then create one. If it does, but you cannot access it, talk to your sysadmin to get the owner, group, or permissions changed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2006 09:49 AM
02-17-2006 09:49 AM
Re: Cannot chdir to /var/news
But i thougth which process controls this message? What is the way to shut it down?
Brgds,
Sero
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2006 10:29 AM
02-17-2006 10:29 AM
Re: Cannot chdir to /var/news
If you look at '/etc/profile' you will see:
if [ -f /usr/bin/news ]
then news -n
fi
From your problem description, this is your culprit. Again, the '/var/news' directory should be present and readable by all.
Alternatively, you could comment-out the above code.
Regards!
...JRF...