- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- HELP! file system is full
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
08-19-2004 01:55 AM
08-19-2004 01:55 AM
HELP! file system is full
/usr: write failed, file system is full.
Our unix admin is on vacation, and I am hoping that someone can walk me through what needs to be done to fix this.
Thank you!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2004 02:19 AM
08-19-2004 02:19 AM
Re: HELP! file system is full
It is good to see the contents of /usr as
ll /usr
If you have space in other file system try to move directories to there and make a link out.
Before moving them, it is good to see your ll /usr ,bdf reports.
+Muthu+
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2004 02:20 AM
08-19-2004 02:20 AM
Re: HELP! file system is full
Do these commands to see what file is the biggest file;
# cd /usr
# du . -x -ka | sort -nr | more
From the list generated you will see what file is the biggest offender.
Do take care when deleting files - make sure what you delete is OK.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2004 02:29 AM
08-19-2004 02:29 AM
Re: HELP! file system is full
Is it ok to delete these files and if so, how do I do it?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2004 03:06 AM
08-19-2004 03:06 AM
Re: HELP! file system is full
/usr/spool and /usr/spool/mqueue are directories and should therefore not be deleted. You can delete the files inside the mqueue dir using the "rm"
But be careful - deleting is always a tricky thing :-)
HTH
Franky
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2004 03:06 AM
08-19-2004 03:06 AM
Re: HELP! file system is full
Why is mail not going out? Once this question is answered I'll bet that the space issue will go away
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2004 03:17 AM
08-19-2004 03:17 AM
Re: HELP! file system is full
Has anything changed recently? DNS? The mail relay host? Is there a process (or processes) that is sending loads of mail that the system cannot keep up with the volume? These are questions that need to be answered.
Essentially, you can delete the files in the mqueue directory if you know that nobody will miss their email, don't care to have the email, etc. This will reclaim space. But this will not answer the question, why is mail not working?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2004 04:24 AM
08-19-2004 04:24 AM
Re: HELP! file system is full
on weekends usually as the result of a type-o during saves done from the command-line or
somebody booted single user and did a restore without mounting the necessary file systems so everything went into the mount point directory. For example, our tape drive was /dev/rmt/0mn but the operator entered /dev/rmt/omn and the system wrote the save to a file named omn in the /dev/rmt directory instead of to the 4mm tape.
Try this to get a list of big files and then checkout the files themselves to see what is necessary and what is not.
As user 'root'
cd /
find / -size +5000000 -print > big-stuff
Your big-stuff file (directly under /) will have a list of any file over 5Mb. Modify size of files you are looking for as necessary.
If your system was booted Single User and got stuff put in the mount point directories, that is a whole other problem and more delicate.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2004 05:08 PM
08-19-2004 05:08 PM
Re: HELP! file system is full
regards
SK