- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Help me: root directory 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
09-16-2008 11:45 PM
09-16-2008 11:45 PM
Help me: root directory is full
use bdf then result is:
bvcls2:/# bdf
Filesystem kbytes used avail %used Mounted on
/dev/vg00/lvol3 614400 597024 17264 97% /
. . .
but when I use du -kxs then result is:
bvcls2:/# du -kxs
312152 .
I dont know why is 97% used ???
Mntks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-16-2008 11:49 PM
09-16-2008 11:49 PM
Re: Help me: root directory is full
If its not possible to delete anything there is a procedure to increase root without reboot. You need MirrorDisk/UX for that.
regards,
ivan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-16-2008 11:54 PM
09-16-2008 11:54 PM
Re: Help me: root directory is full
check
find / -name core
Reagrds
prashant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2008 12:13 AM
09-17-2008 12:13 AM
Re: Help me: root directory is full
. There is preallocated space on this lv. And that is strange. This is generally use for data, and data should not be found on /. "du" command gives used space, whereas bdf gives allocated space. Troobleshot this will be difficult. You'll have to check everywhere. "ls" command also gives allocated space, so "ls -l" should give a different result than "du", and this should point to the file.
. Other cause can be a directory, with files in it, but hidden by a mounted filesystem. For instance, if /var wasn't a filesystem at the begining and started to fill /, and then a filesystem was created to be mounted there. If the filesystem has been mounted over the old files, you can't see them anymore, but they are still there, consuming space.
As the second cause is easier to point, could you give here the result of the "mount" command ?
Regards,
Fred
"Reality is just a point of view." (P. K. D.)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2008 12:20 AM
09-17-2008 12:20 AM
Re: Help me: root directory is full
find / -follow -size +100000
where the size option is in bytes.
Best regards.
Ernesto
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2008 12:21 AM
09-17-2008 12:21 AM
Re: Help me: root directory is full
If it has grown, the most common thing is a mistyped tape device name resulting in a large text file in /dev.
Alternatively, look for processes writing to a directory in root that should be in its own filesystem.
Mark Syder (like the drink but spelt different)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2008 12:23 AM
09-17-2008 12:23 AM
Re: Help me: root directory is full
Use lsof to find open files, because find command will not find open files which is not in used any more.
lsof +L1 /
Suraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2008 12:26 AM
09-17-2008 12:26 AM
Re: Help me: root directory is full
"Reality is just a point of view." (P. K. D.)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2008 12:44 AM
09-17-2008 12:44 AM
Re: Help me: root directory is full
If you have free unmounted space or unused mounted filesystem than you can increase the size of root FileSystem.
You can do this via SAM.
Regards,
Gokul Chandola
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2008 01:14 AM
09-17-2008 01:14 AM
Re: Help me: root directory is full
find / -xdev -size +1000000c -exec ll {} \;
If you dont find any bigger or the file which can be deleted, then you need to take the downtime for the system, and boot from ignite tape and resize the root file system then.
Thanks
SKR
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2008 01:56 AM
09-17-2008 01:56 AM
Re: Help me: root directory is full
With lsof you can find those files which are not using but still opened this type of files also taking good space.
Same problem I have faced earlier with the help of lsof only I have solved..
Suraj