- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- / 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
10-15-2008 04:36 AM
10-15-2008 04:36 AM
/ is full
My / "slash" directory is full 100%. What could be growing in slash to cause it to fill up? What can I remove or shorten to get space back?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2008 04:38 AM
10-15-2008 04:38 AM
Re: / is full
regards,
ivan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2008 04:44 AM
10-15-2008 04:44 AM
Re: / is full
Probably the most common cause of this is a regular file in the device ('/dev') directory from a mis-typed backup like:
/dev/rmt/om
...note the "o" and not the "0".
Do:
# ls -lR /dev|grep "^-"
...and see what (if anything) turns up.
Also, see where your space has been consumed by doing :
# du -kx / | sort -k1,1rn
...the majority of the utilization should be in '/etc' and '/sbin'.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2008 04:46 AM
10-15-2008 04:46 AM
Re: / is full
Check which dir consumes more space by,
#du -xk / |sort -nr |head -25
Check in /dev diretory if anyone used wrong device files(om instead of 1m)
Find large files in root.(size more than 50MB)
# find / -size +50000 -xdev -exec ll {} \;
Find if any core files and delete.
# find / -name core -print
Ganesh.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2008 05:11 AM
10-15-2008 05:11 AM
Re: / is full
find / -xdev -size +1000000c -exec ll {} \;
du -sk / | sort -n
If you dont have nothing to remove, then you need to go for ignite boot of the server and resize the root FS.
Thanks
SKR
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2008 05:59 AM
10-15-2008 05:59 AM
Re: / is full
Then would be better able to advise what you could "remove".
If you're setup in a standard fashion there won't be much if anything you could remove.
Other than finding a file that grew due to the reasons already posted.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2008 06:25 AM
10-15-2008 06:25 AM
Re: / is full
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2008 06:38 AM
10-15-2008 06:38 AM
Re: / is full
Once saw a person have /var under root. Which caused their problems with /, root not slash, :) filling up
Looks like following the advice of the above posts is the way to go.
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2008 06:54 AM
10-15-2008 06:54 AM
Re: / is full
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2008 06:57 AM
10-15-2008 06:57 AM
Re: / is full
Well, what have you tried and what were your findings thus far?
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2008 07:18 AM
10-15-2008 07:18 AM
Re: / is full
http://forums13.itrc.hp.com/service/forums/questionanswer.do?threadId=1276884
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2008 06:21 AM
10-16-2008 06:21 AM
Re: / is full
cd /
ls -l core*
i think this will solve your issue .
else find with du command .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2008 06:27 AM
10-16-2008 06:27 AM
Re: / is full
We had to restore from an ignite tape from another box. And when he mapped in the volume groups and file systems, he missed that one.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2008 07:07 AM
10-16-2008 07:07 AM
Re: / is full
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2008 07:38 AM
10-16-2008 07:38 AM
Re: / is full
Not sure what these were but my first guess is that these "big printer files" are still open in memory.
In order to recover the space still allocated in RAM and not reflected from a filesystem point of view you either need to stop/kill those processes holding open the files or even better reboot the system as mostlikley your next comment will be that you cannot stop the application. Either way you will have to take an outage.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2008 07:51 AM
10-16-2008 07:51 AM
Re: / is full
all the suggestion given were good. I also suggest you use "lsof" to see if you have any lost open files
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2008 08:04 AM
10-16-2008 08:04 AM
Re: / is full
var/adm/syslog/syslog.log
event.log
dmesg
probably you will find something there
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2008 08:07 AM
10-20-2008 08:07 AM
Re: / is full
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2008 11:21 PM
10-20-2008 11:21 PM
Re: / is full
You don't need to unmount it. What you could do is export the directory under the mount point and if you have RW access, you can remove those files.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2008 02:21 AM
10-21-2008 02:21 AM
Re: / is full
You don't need to unmount it. What you could do is export the directory under the mount point and if you have RW access, you can remove those files.
------------
Sorry Dennis, I'm not certain I follow you. I was under the impression that if you exported a directory, which was a mounted volume, the remote system saw the contents of the mount point, not the directory under the mount point. Could you provide more detail on how to "export the directory under the mount point" without unmounting the file system first?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2008 03:30 AM
10-21-2008 03:30 AM
Re: / is full
Pls create a file just before your fs got full by touch -t time stamp /REF_FILE
for example
touch -t 200810201235 /REF_FILE
search for newer files wrt REF_FILE for all directories of / file system.
find DIRNAME -type f -newer /REF_FILE
re-view the files and remove if not required.
Cheers,
Awadhesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2008 12:50 AM
10-22-2008 12:50 AM
Re: / is full
I may have been talking about the mount point under an NFS mount point, not a local filesystem. Since you can't daisy chain export NFS, you get the one underneath.
>Could you provide more detail on how to "export the directory under the mount point" without unmounting the file system first?
Hmm, it seems to be not very easy.
Anyway, if you want to get underneath a NFS mount point, you can't just put the that in exportfs:
exportfs error: /var/tmp/FILER3: Too many levels of remote in path
But if you put /var/tmp there, you can then look at that, then go into FILER3.
mymachine:/var/tmp /var/tmp/FILER3_under nfs
So look at /var/tmp/FILER3_under/FILER3.