- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- dmesg error
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
02-27-2007 02:49 AM
02-27-2007 02:49 AM
msgcnt 1 vxfs: mesg 001: vx_nospace - /dev/vg00/lvol4 file system full (1 block extent).
My /tmp is not full, I can see some processes accessing it, but this is normal since SAP is running.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2007 02:54 AM
02-27-2007 02:54 AM
SolutionIt is very likely that the message is quite old. The buffer only updated with critical, diagnostic events and has no timestamp. You can check your '/var/adm/syslog/syslog.log', too. If '/tmp' isn't out of space currently, then you have no issue.
The manpages for 'dmesg' will show you how to capture the incremental changes in the buffer.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2007 02:56 AM
02-27-2007 02:56 AM
Re: dmesg error
Now, you have a more serious configuration problem and that is that /tmp should never be used for user/application temporary files. /tmp is intended to be used for OS related temporary files. /var/tmp should be used for user/application temporary files unless overridden with the TMPDIR environment variable to designate another location (but preferably not /tmp).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2007 03:07 AM
02-27-2007 03:07 AM
Re: dmesg error
SAP probably uses /tm/ folder on startup only,
I don't have any problem right now, but i was checking the message,
how to remove it?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2007 03:13 AM
02-27-2007 03:13 AM
Re: dmesg error
> I don't have any problem right now, but i was checking the message, how to remove it?
You can't clear the buffer but you can process (read) it for incremental changes as I noted. Do:
# dmesg -
...and you will only see "new" messages (if any) as discussed in the manpages for 'dmesg'.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2007 03:49 AM
02-27-2007 03:49 AM
Re: dmesg error
I guess this site should take the first award for best support site.
The unix forum is wonderfull.
Thank you!!