Operating System - HP-UX
1838606 Members
3161 Online
110128 Solutions
New Discussion

OS problem in rp5470 using root to access electronic mail (elm)

 
ajk_5
Frequent Advisor

OS problem in rp5470 using root to access electronic mail (elm)

Dear All,

Could you tell me what happen as the following message? How can I solve the problem?? Thanks.


------------------------------------------------------------------------------------------------------------
Reading in /var/mail/root, message: 93
msgcnt 20 vxfs: mesg 001: vx_nospace - /dev/vg00/lvol4 file system full (1 block
extent)

Write to temp file /tmp/mbox.root failed!!
** No space left on device. **

Write to temp file failed, exiting leaving mailbox intact!
-------------------------------------------------------------------------------------------------------------



Best Regards
Ajk
5 REPLIES 5
Sundar_7
Honored Contributor

Re: OS problem in rp5470 using root to access electronic mail (elm)

Hi Ajk,

The problem is obvious. your /tmp file system is 100% full.

# bdf /tmp

if the used is 100% then u got to clean up the file system

# cd /tmp
# find . -atime +7 -exec ls -lrt {} \;

review the files displayed by the above command

if none of them are required

# find . -atime +7 -exec rm {} \;

Learn What to do ,How to do and more importantly When to do ?
Steven E. Protter
Exalted Contributor

Re: OS problem in rp5470 using root to access electronic mail (elm)

clear some space ont he filesystem using /dev/vg00/lvol4

run the command bdf

it will be now to answer but eventually will let you know what filesystem the logical volume is mounted on.

Based on the error message, I'd guess /tmp

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
ajk_5
Frequent Advisor

Re: OS problem in rp5470 using root to access electronic mail (elm)

Well, I think the /tmp is not full.

$ bdf
Filesystem kbytes used avail %used Mounted on
/dev/vg00/lvol3 204800 123648 81152 60% /
/dev/vg00/lvol1 298928 57504 211528 21% /stand
/dev/vg00/xpo 4194304 902339 3086276 23% /xpo
/dev/vg00/lvol8 4710400 1214536 3468576 26% /var
/dev/vg00/lvol7 2621440 1469488 1143000 56% /usr
/dev/vg00/lvol4 204800 39048 164512 19% /tmp
/dev/vg00/lvol6 1245184 913008 329784 73% /opt
/dev/d2/livedb 2097152 52167 1918612 3% /livedb
/dev/d3/db4 17776640 5809160 11780548 33% /livedb/db4
/dev/d2/db3 17776640 6223876 11372316 35% /livedb/db3
/dev/d1/db2 13332480 1637004 11330054 13% /livedb/db2
/dev/d1/db1 13332480 5876330 7223208 45% /livedb/db1
/dev/vg00/lvol5 1048576 778184 268344 74% /home
/dev/dskdump/dskdump
35557376 20356376 15085736 57% /dskdump
/dev/vg00/devlp 8388608 4281818 3978476 52% /devlp
/dev/vg00/development
2097152 1614 1964574 0% /devlp/development

Any comment? Thanks!
Sundar_7
Honored Contributor

Re: OS problem in rp5470 using root to access electronic mail (elm)

OK, guess your /var/mail/root is so big that is fills out /tmp when you are trying to read mail.

here is what I would do.

# tail -2000 /var/mail/root > /tmp/rootmail

# more /tmp/rootmail

(I hope you can view mail using more - I am not sure though).
Learn What to do ,How to do and more importantly When to do ?
T G Manikandan
Honored Contributor

Re: OS problem in rp5470 using root to access electronic mail (elm)

Your mailbox size is greater than the free space on the /tmp file system.

Try changing the TMPDIR variable like

TMPDIR=/var/tmp


REvert