- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- HPUX file system error
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-06-2006 01:41 AM
04-06-2006 01:41 AM
Could anyone help me with following issue:
I have a access server which runs on hpux 11.0 os. This access server is accessed remotely via ISDN link. After access this access server remotely, I am trying to telnet to a node which is also hpux machine, the connection is successful but a big bang error showing /home: write failed, file system is full" gets displayed. Even when I tried to run basic hpux commands, the same error gets displayed.
Can anyone help me, what actually this error means. I am new to system admin area and basic knowledge about hpux. What is the impact of this error.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2006 01:44 AM
04-06-2006 01:44 AM
Re: HPUX file system error
As the error message says, your Filesystem is running out of space. Check with
# bdf
You need to cleanup unwanted files, dirs, patches, etc..
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2006 01:46 AM
04-06-2006 01:46 AM
Re: HPUX file system error
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2006 02:42 AM
04-06-2006 02:42 AM
Re: HPUX file system error
as already indicated the file system is full.
You probably got the message on every command you tried because you had command history switched on.
This means every command you type is trying to be logged into $HOME/.sh_history, but no room was available.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2006 03:53 AM
04-06-2006 03:53 AM
Re: HPUX file system error
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2006 08:06 PM
04-06-2006 08:06 PM
SolutionOften, I have found, developers etc use their home directory to store their programs and scripts and run them from there. If they fail and core dump, they can leave quite large core files in their home directories. You might try a find and search for core files:-
find /home -name core -print
You could try to find which directory has the most space used by it using du:-
cd /home
du -sk *
Just a couple of thoughts.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2006 08:41 PM
04-06-2006 08:41 PM
Re: HPUX file system error
I could clean up the filesytem with all your valuable tips. system is working fine.