- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- file system 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
12-06-2005 12:16 PM
12-06-2005 12:16 PM
/dev/vg01/lvol2 8929280 7051484 1761050 80% /var/opt/OV
Dec 6 23:04:02 imis_sms vmunix: msgcnt 254569 vxfs: mesg 001: vx_nospace - /dev/vg01/lvol2 file system full (8 block extent)
Dec 6 23:04:08 imis_sms vmunix: msgcnt 254571 vxfs: mesg 001: vx_nospace - /dev/vg01/lvol2 file system full (8 block extent)
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2005 12:35 PM
12-06-2005 12:35 PM
Solution- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2005 03:22 PM
12-06-2005 03:22 PM
Re: file system full
As Clay said, every process reserves/locks some space in disk while it is running. This will be freed up once the process dies and the reserved space may not be shown in bdf also.Thats the reason you bdf shows free space and still you get the nospace error.
With Regards,
Siva
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2005 03:41 PM
12-06-2005 03:41 PM
Re: file system full
it might also be time to purge your old log files from /var.
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2005 03:43 PM
12-06-2005 03:43 PM
Re: file system full
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2005 07:01 PM
12-06-2005 07:01 PM
Re: file system full
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2005 08:58 PM
12-06-2005 08:58 PM
Re: file system full
PROBLEM
The filesystem has filled up, so action was taken to delete 800MB of logfiles.
The command:
"du -s"
shows the space as 'freed' but "bdf" doesn't. How can that be?
CONFIGURATION
hpux 10.x 10.20 11.x s700
s800
RESOLUTION
Obviously there is a difference in how du and bdf behave.
This may occur if we touch open files.
"du" shows output in a positive view: it shows the number of currently allocated
blocks and counts the blocks you've just deleted as free.
"bdf" has a more negative perspective: it shows the free disk space available.
The difference is here: if a still-active process has allocated blocks (such as
for a logfile that you've just deleted), "bdf" counts these as still occupied.
This won't change until the process closes the file ("deallocates the blocks")
as it usually happens when the process terminates.
ALT KEYWORDS
fs vxfs jfs hfs space display difference delete remove free
up
Good Luck,