- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- The root ( / ) filesystem 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
06-23-2002 05:15 PM
06-23-2002 05:15 PM
The root / filesystem is full ie 100%. Is there any way we can bring it down and what is the reason it ios getting full ?
Thanks in advance.
Nisar
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2002 05:36 PM
06-23-2002 05:36 PM
Re: The root ( / ) filesystem is full
These are the first things I would look for, to fix this problem.
core files
files in /dev that shouldn't be there, like tar archives
files in /etc that are very large
e.g.
find / -xdev -size 100000c -print
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2002 05:43 PM
06-23-2002 05:43 PM
Re: The root ( / ) filesystem is full
There are a few initial steps to take -
Search for "core" files and remove them. If the creation dates are recent, try "file core" to see if you get any useful information.
Search for log files in the filesystem. There should not be logging taking place there, but...
And check for files being "temporarily" stored there by misguided individuals. It's even possible that someone has messed up and tried to install something there.
Jon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2002 05:49 PM
06-23-2002 05:49 PM
Re: The root ( / ) filesystem is full
Tell me one thing is your /var a separate filesystem or is in the root itself. If it is in the root filesystem only then you can clear logs from the /var directory. Then you can remove the core files that may be there.
you can use the find command to search for large files. also check the /tmp directory for any temporary files that were created during any s/w installation. i think that would help.
Ninad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2002 07:53 PM
06-23-2002 07:53 PM
SolutionUsually the cause is that someone made a typo and did /dev/rmt/om, or maybe /dev/rmt/Om, that is they used the letter o instead of a zero in the device file in a tar command and filled up your root.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2002 10:02 PM
06-23-2002 10:02 PM
Re: The root ( / ) filesystem is full
Excelent !!
It was just om.
Now it is OK.
Thanks a lot
Nisar