- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- / is full (100%)
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-01-2007 12:25 AM
06-01-2007 12:25 AM
can some one help me with this problem.
os: hpux B.11.11 U 9000/800
Problem: / is at 100%, pls let me know how to deal with this problem.
increaseing the size of / is not possible.
Filesystem kbytes used avail %used Mounted on
/dev/vg00/lvol3 245760 244728 1032 100% /
Regards
Ak
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2007 12:31 AM
06-01-2007 12:31 AM
Re: / is full (100%)
find / -name core
Then check for mistakes in the /dev directory (usually caused by someone mistyping a device name: /dev/rmt/Omn instead of /dev/rmt/0mn, for example)
find /dev -type f
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2007 12:33 AM
06-01-2007 12:33 AM
Re: / is full (100%)
xargs -i ls -ld {} | sort -n -k 5
That will display all the files that have been modified in the last 2 days sorted by filesize.
Examine the list, ID the largest that's *NOT* OS related and either delete it or move it.
Once you have / below 100%, ID what's getting added to the root filesystem and create a new filesystem for those files.
HTH;
Doug
------
Senior UNIX Admin
O'Leary Computers Inc
linkedin: http://www.linkedin.com/dkoleary
Resume: http://www.olearycomputers.com/resume.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2007 12:39 AM
06-01-2007 12:39 AM
Solution10 largest directories in the root filesystem:
$ du -kx / | sort -rn -k1 | head -n 10
10 largest files in the root filesystem:
$ find / -type f -xdev -print | xargs -e ll | sort -rn -k5 | head -n 10
Recently modified files in the root filesystem:
$ find / -type f -xdev -mtime -1 -print | xargs ll | sort -rn -k5
PCS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2007 12:45 AM
06-01-2007 12:45 AM
Re: / is full (100%)
If increasing the filesystem is not an option you need to find out where your using space in the root filesystem and remove whatever possible. Given the size of your root filesystem I wouldn't say there is much you could remove.
Try
du -x / | sort -n
regards,
Richard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2007 01:32 AM
06-01-2007 01:32 AM
Re: / is full (100%)
Removing the VG configuration backups makes it more difficult to recover if you have VG problems, but a 100% full root filesystems is worse. As a compromise, you might move other VG configuration files to some other location, but keep only the vg00 configuration backups in that directory.
Remember that the LVM commands may generate configuration backups automatically, so make a habit of checking the free space on the root filesystem before and after making configuration changes to large VGs. You might also consider using the "-A n" option in the LVM commands to disable backup creation, then using "vgcfgbackup" manually to create the configuration backups to a place of your choice.
MK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2007 02:22 AM
06-01-2007 02:22 AM
Re: / is full (100%)
find /dev -type f -exec ll {} +
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2007 02:49 AM
06-01-2007 02:49 AM
Re: / is full (100%)
du -x | sort -rn.
After u found the files with larger sizes trim it if the file is unwanted or cleanup the file system as cleanup -c 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2007 03:55 AM
06-02-2007 03:55 AM