- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- OS problem in rp5470 using root to access electron...
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
06-17-2004 03:26 PM
06-17-2004 03:26 PM
OS problem in rp5470 using root to access electronic mail (elm)
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 03:49 PM
06-17-2004 03:49 PM
Re: OS problem in rp5470 using root to access electronic mail (elm)
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 {} \;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 04:05 PM
06-17-2004 04:05 PM
Re: OS problem in rp5470 using root to access electronic mail (elm)
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
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 04:10 PM
06-17-2004 04:10 PM
Re: OS problem in rp5470 using root to access electronic mail (elm)
$ 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!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 04:18 PM
06-17-2004 04:18 PM
Re: OS problem in rp5470 using root to access electronic mail (elm)
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).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 04:49 PM
06-17-2004 04:49 PM
Re: OS problem in rp5470 using root to access electronic mail (elm)
Try changing the TMPDIR variable like
TMPDIR=/var/tmp
REvert