- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- / file system is 98% ful
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
11-08-2007 06:22 AM
11-08-2007 06:22 AM
/ file system is 98% ful
I'm workng on very critcal 24X7 HPUX production environmet and got this error
Filesystem / is 96percent full. The threshold is 95percent.
Other root file systems are ok . only / need to be bring down . usually I just go to /etc/lvmconf file and removed all .old files . This time here is no .old files.
Is any one can advice what else I can remove to bring / file system down ??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2007 06:26 AM
11-08-2007 06:26 AM
Re: / file system is 98% ful
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2007 06:28 AM
11-08-2007 06:28 AM
Re: / file system is 98% ful
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2007 06:28 AM
11-08-2007 06:28 AM
Re: / file system is 98% ful
du -sk * |sort -rn
If you can't find any large files, use my handy dandy way to grow it with onlinejfs:
http://www.met.ca/itrc/index.php?option=com_content&task=view&id=89&Itemid=2
The main culprit could be /etc/vx
You can move that - but don't use mv or cp - use tar and a pipe - then create a symbolic link...
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2007 06:45 AM
11-08-2007 06:45 AM
Re: / file system is 98% ful
run du with -skx option like following
du -skx /
This reports you only root lvol, you can also sort output
And check your mount points like the following
lv1 -> /
lv2 -> /etc/opt/omni
Best Regards
Murat
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-10-2007 04:05 PM
11-10-2007 04:05 PM
Re: / file system is 98% ful
#find / -xdev -size +100000 -exec ls -lrt {} \;
if you dont see any files or if you get more files adjust the number of zeroes at '+10000xyz'
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2007 08:51 PM
11-11-2007 08:51 PM
Re: / file system is 98% ful
Salm,
#find / -xdev -size +2000 > file.out
suspected you restore the files to /
WK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2007 10:00 PM
11-11-2007 10:00 PM
Re: / file system is 98% ful
in this case, i usually follow this step:
1/
search for 'core' files
find / -xdev -name "core"
2/
search for big folders
du -skx / |sort -n |tail
3/
search for removed open files
lsof -V
Redards,
Cedrick Gaillard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2007 11:05 PM
11-11-2007 11:05 PM
Re: / file system is 98% ful
check the size of the following file
syslog.log
wtmp files
and all log files
Regards
Safar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2007 10:58 PM
11-12-2007 10:58 PM
Re: / file system is 98% ful
cd /
ll -tr
will show you the most recently amended files at the bottom. Repeat for /etc.
Mark Syder (like the drink but spelt different)