- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- NO SPACE AVAILABLE IN ROOT (/)
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-05-2005 10:46 AM
09-05-2005 10:46 AM
I have no space available in root. A few weeks ago it was 14% used, and today it's 100%.
I've checked every directory in /, but can't find any file out of the ordinary.
Inodes are 66% used.
Any suggestions?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2005 10:53 AM
09-05-2005 10:53 AM
Re: NO SPACE AVAILABLE IN ROOT (/)
It could be due to some active processes having open files under root or some files accidentally created under root. Can you attach "du /" and "bdf" output to find if this is not the case.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2005 10:56 AM
09-05-2005 10:56 AM
Re: NO SPACE AVAILABLE IN ROOT (/)
Look for the culprit this way:
# cd /dev #...or other non-mountpoint directories...
# du -k . | sort -k1nr | more
This will sort in descending order from largest to smallest the disk usage of files and directories.
The most likely directory will be /dev. It is not uncommon to mistype a device file for backup and thus creating a non-special file in /dev which consumes tremendous space:
/dev/rmt/om intstead of /dev/rmt/0m
...is the common mistake.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2005 11:07 AM
09-05-2005 11:07 AM
Solution'lsof -a +L1 /' will give you a list of all processes holding space open, but no file is linked. (Like if you delete syslog.log without running a kill -HUP on the syslogd process.)
If you find the offending process, you can sometimes do a 'kill -HUP pid' on it, other times you have to kill the process.
Another thing to look at is if you have had a filesystem unmounted while your machine was up and running. You can create data under a mount point with the filesystem unmounted, then when you mount the filesystem, you can no longer see those files, but they still hold space in the parent filesystem, because they are really still there. If you have had this condiction, you can look underneath the filesystem that used to be unmounted by unmounting it and seeing what's there...
Hope it helps
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2005 04:53 PM
09-05-2005 04:53 PM
Re: NO SPACE AVAILABLE IN ROOT (/)
The most preferred option is du followed by sort.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2005 05:02 PM
09-05-2005 05:02 PM
Re: NO SPACE AVAILABLE IN ROOT (/)
The reason may be the any of the log file or core files.Please see the 20 biggest size file by this command
ls -lR 2>/dev/null | awk ' { print $5" "$6" "$7" "$8" "$9 }' | sort -t' ' -k
1n,1 | tail -n 20
after that find the biggest files and see which files are identical and made recently.
take care
Bhushan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2005 05:27 PM
09-05-2005 05:27 PM
Re: NO SPACE AVAILABLE IN ROOT (/)
As an additon to other replies here are some
useful links asked before,
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=842012
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=850529
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=842089
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=887110
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=731677
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=619368
Good Luck,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2005 09:03 AM
09-06-2005 09:03 AM
Re: NO SPACE AVAILABLE IN ROOT (/)
Regards.
Victor Hugo.