- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: corrupt block
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
04-12-2004 11:27 PM
04-12-2004 11:27 PM
corrupt block
Our system is running at OS HP-UX 11.00. Does any utility exist that can found out a corrupt block at disk? I need an utility that can work with raw devices. I tried stm. I can not understand the output file - raw file. There is an error - EIO 5 and description of the mistake is in hexadecimal mode.
Thanks Dadie
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2004 11:33 PM
04-12-2004 11:33 PM
Re: corrupt block
Diffecult, you could try
# dd if=/dev/rdsk/cxtydz of=dev/null bs=1024
I'm not shore it will report the exact block.
Hope this helps,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2004 11:44 PM
04-12-2004 11:44 PM
Re: corrupt block
U can always check thru' dd.
dd if=
U have to get input and output as same.
if any mismatch u can conclude the bad blocks.
Hope this will help you.
suresh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2004 12:04 AM
04-13-2004 12:04 AM
Re: corrupt block
dd read error: Unknown error
1466160+0 records in
1466160+0 records out
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2004 01:05 AM
04-13-2004 01:05 AM
Re: corrupt block
Could you check the output from,
# diskinfo -v /dev/rdsk/cxtydz
and check if the number of block correspond to the number of blocks from your dd command.
Regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2004 01:11 AM
04-13-2004 01:11 AM
Re: corrupt block
there is a utility inside stm called the logtool which is used to read the raw logs created stm. execute stm and invoke the logtool utility and specify the location of the raw log file corresponding to your disk. This utility will convert the raw log file into a readable format and will be displayed on the screen.
but as robert said, dd is also a good util to check up the consistency of your disk
With best wishes
Naveej
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2004 12:26 AM
04-16-2004 12:26 AM
Re: corrupt block
Thanks, Dad