- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to test hard disc surface
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-05-2002 12:25 AM
12-05-2002 12:25 AM
How to test hard disc surface
I want to make a non-destructive test on a SCSI disk that seems to have problems.
I have used STM but it??s not enough for me.
What kind of tool can I use ??
I have used STM but it??s not enough for me.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2002 12:26 AM
12-05-2002 12:26 AM
Re: How to test hard disc surface
dd is the tool you want. If it passes over an entire disk surface without any errors your non-destructive read test is fine and the disk is ok;
dd if=/dev/rdsk/cxxxxxx of=/dev/null bs=1024k
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2002 12:31 AM
12-05-2002 12:31 AM
Re: How to test hard disc surface
Execute this command:
dd if=/dev/dsk/cxtydz of=/dev/null
Change cxtydz with the device file of the disk you suspect with problems.
This options check hardware integrity.
Regards Vicente.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2002 12:37 AM
12-05-2002 12:37 AM
Re: How to test hard disc surface
That is a good READ test of the disc surface.
Any idea abaout a WRITE non-destructive test ???
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2002 12:37 AM
12-05-2002 12:37 AM
Re: How to test hard disc surface
not /dev/dsk/c....
Always use the rdsk entry when doing a surface check.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2002 12:48 AM
12-05-2002 12:48 AM
Re: How to test hard disc surface
dd if=/dev/zero of=/dev/rdsk/cxxxxxx bs=1024k
This will write zeroes to all parts of your disk and again, if it works your disk is fine, if it fails with an I/O error then you have a problem.
Another command you can use is mediainit (this does a low level format) but its NOT recommended for modern disks as it may reduce their lifetime. Only use if your desperate (ie. cant get the disk replaced). Again, if mediainit fails your disk is dead, bin it, if it works your disk is usable but its lifetime may be reduced.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2002 01:09 AM
12-05-2002 01:09 AM
Re: How to test hard disc surface
I??m using this:
dd if=/dev/rdsk/c3t15d0 of=/dev/rdsk/c3t15d0 bs=1024k
for a NON-destructive test, I??m now waiting for the errors ....