What hdd tools to use?


 
Thread Tools Search this Thread
Special Forums Hardware Filesystems, Disks and Memory What hdd tools to use?
# 1  
Old 07-09-2002
Error What hdd tools to use?

What diagnostic tools can one use to check for bad blocks on a scsi drive? Is fsck the only tool?
# 2  
Old 07-16-2002
Tools to test hdd

Unix itself is a toolbox and you can use the dd command.
Example:
Suppose you want to check disk: /dev/hdisk1
you can try this:
dd if=/dev/hdisk1 of=/dev/null bs=1k
Meaning read disk /dev/hdisk1 (block device) and write to /dev/null
To physically test the hard disk you can use the raw device name:
/dev/rhdisk1 or /dev/rdsk/c0t5d0 whatever special file you have.
So this would look like: dd if=/dev/rdsk/c0t5d0 of=/dev/null
The block size (bs) is optional.

There might be a SCSI test from your vendor.
Some SCSI controllers have built in tools.
-----

fsck checks filesystems this is a different story.
vxfs (Veritas Filesystems) can do a replay using a intent log.
(fsck -o full in hp-ux forces a full check)

ufs checks the whole filesystem, all inodes.
check your man page for options.


Good luck with your SCS disk.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

IBM AIX Internal HDD vs SAN HDD and Oracle

Hi Folks, I am facing an issue with the performance. P4 with 1 processor and 16 GB RAM and SAN HDD = Oracle report takes 25 minutes P5 with 2 processors and 16 GB RAM internall HDD with LPAR = Oracle Report takes 1 hour 15 minutes ( please note I have assigned all the max processors and... (7 Replies)
Discussion started by: filosophizer
7 Replies

2. Solaris

Help with HDD Mirroring

Hi All Please can I have some help/advice. I am fairly new to unix so any help will be useful. I need to perform HDD Mirroring on a Sun Fire V245 Server running Solaris 10 OS. The system is already up and running and has the partitions and slices already. Is it possible to perform the... (6 Replies)
Discussion started by: pluto.flame
6 Replies

3. Solaris

New HDD Installation

All, I am a complete grasshopper when it comes to Unix, so here goes. I have a Solaris 9 server, running two 36GB HDD in a mirrored configuration. I am running low on disk space, and have purchased an additional 145GB HDD. Can anyone point me in the direction to some documentation on how to... (1 Reply)
Discussion started by: ptvenom427
1 Replies

4. UNIX for Dummies Questions & Answers

Old HDD copy to new HDD ? im lost...

Over the last few months the HDD spins louder and louder, so I fiqured its time to replace the HDD. Its been running 24/7/365 since 98 :eek:. yes i said since 98 :D I have an IBM system 43P Model 240. 233 MHz. running AIX Version 4. The current HDD is an IBM DGHS COMP IEC -950 FRU PN#... (5 Replies)
Discussion started by: Chevy89rocks
5 Replies

5. HP-UX

Access to a second HDD

Hello How to access to a second hard disk on a HP-UX system? Thanks (3 Replies)
Discussion started by: ouniss
3 Replies

6. UNIX for Dummies Questions & Answers

Scsi Hdd

i read the reply at this link https://www.unix.com/unix-dummies-que...d-backups.html and i really surprised and i want to know if it must the mirrored HDD be on the secondary SCSI port and the operated HDD on Primary SCSI port? thanks (3 Replies)
Discussion started by: hatemeid
3 Replies

7. Shell Programming and Scripting

Mounting Hdd

Can anybody help me. How can I retreive a data from my old unix SCSI hdd. My server is having a new SCSI Hdd. What should I do. Somebody was telling to mount the old hdd and take. What should I do to mount this old hdd and copy the data. Rajesh, Tata Coffee Ltd (2 Replies)
Discussion started by: tatacoffee
2 Replies

8. UNIX for Dummies Questions & Answers

Adding a new HDD

I am adding a new HDD to a Unix Sco Release 5 webserver. I consider myself a windows pro. However, growing up in the late 90's means I have little Unix knowledge. I know the HDD has to be mounted and formatted correctly. Can anyone give me any advice on this? A dummy's guide to installing a... (5 Replies)
Discussion started by: jeffreydavisjr
5 Replies

9. Solaris

Partioning HDD

Hi theres I am quite new to solaris, I have 40GB HDD in which I have created only 10 GB partition & installed solaris 10. Now I want to add another 10GB from remaining 30GB space. I tried this with format utility but I get stuck after I create fdsik partition. After creating this I cant... (1 Reply)
Discussion started by: i_mroy
1 Replies

10. Ubuntu

How can I get Knoppix on HDD

Umm How can I get the Knoppix can be booted off my hard drive instead of the CD. I dont like using the CD. :confused: (4 Replies)
Discussion started by: shade11
4 Replies
Login or Register to Ask a Question