Operating System - HP-UX
1834346 Members
1828 Online
110066 Solutions
New Discussion

filesystem "/dev/root" is full

 
SOLVED
Go to solution
chad_c
Super Advisor

filesystem "/dev/root" is full

Hi. Can anyone shed some light on what the following message refers to and how to remedy it. We we are receiving it on our OVO 7.5 unix 11.11 server?

The filesystem "/dev/root" is full

Regards,
Chad
9 REPLIES 9
IT_2007
Honored Contributor

Re: filesystem "/dev/root" is full

your root file system is full. Use bdf command to see it.

you need to find out any "core" files or any big files might sitting at / level. Remove them to reduce the filesystem.
James R. Ferguson
Acclaimed Contributor

Re: filesystem "/dev/root" is full

Hi:

Your root filesystem is full. You can see where space is used with:

# du -kx / | sort -k1rn

One common cause of full root filesystems is a mis-typing of a tape device filename when doing a backup.

If you specify '/dev/rmt/om' [the letter 'o'] instead of '/dev/rmt/0m' [with a zero] you create a regular, usually very large, file in '/dev' thus filling the root filesystem. Therefore, look for non-special files in '/dev' also!

Regards!

...JRF...
chad_c
Super Advisor

Re: filesystem "/dev/root" is full

Thanks for the info. Not sure why it is saying /dev/root is full. The bdf command shows / to be at 91%.

/dev/vg00/lvol3 20971520 19171560 1787384 91% /

is /dev/root referring to / (root)
chad_c
Super Advisor

Re: filesystem "/dev/root" is full

the original message is:

msgcnt 11 vxfs: mesg 001: vx_nospace - /dev/root file system full (1 block extent)

Pete Randall
Outstanding Contributor

Re: filesystem "/dev/root" is full

Yes, /dev/root is referring to /. Usually what happens is the system was booted in LVM maintenance mode that brought up to multi-user mode with the "init 3" command, rather than rebooting normally.

This thread sheds some light on the subject:

http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=29833


Pete

Pete
Patrick Wallek
Honored Contributor

Re: filesystem "/dev/root" is full

The real key is WHEN did this message occurr?

If you are seeing this from withing OVO or dmesg, then you need to check syslog.log. That will give you a date and time that this happened.

chad_c
Super Advisor

Re: filesystem "/dev/root" is full

The message appeared a couple of hours ago in our OVO java gui.

However the syslog does not make reference to the actual message we received. There are a bunch of the following message in the syslog that we do not know what it means...

Oct 12 00:00:10 txovo remshd[8315]: wtmp:open: /var/adm/wtmp Value too large to be stored in data type
Pete Randall
Outstanding Contributor
Solution

Re: filesystem "/dev/root" is full

Since you're at 91% now and bdf shows that / is correctly mounted (not as /dev/root), I wouldn't worry about it. It was apparently a temporary thing.


Pete

Pete
chad_c
Super Advisor

Re: filesystem "/dev/root" is full

good stuff