Hitachi HD issues

 
Thread Tools Search this Thread
Special Forums Hardware Hitachi HD issues
# 1  
Old 09-20-2012
Hitachi HD issues

I have an adapter that can read ide and sata HD's. When the drive is good it lights up green and when its bad it lights up red. I have used the adapter already to read about 10 other HD's with no problem. When I got to the hitachi HD it lights up green but I can't see what is on it or even format. The drive doesn't show up when I do fdisk -l, use testdisk, or use disk management in windows. I'm guessing it has something to do with a master/slave issue. There is a big chart on the HD but I have no clue how I should set it.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Hardware

Hitachi SATA hard disk drive password locked

Hi everyone (see attachments) I bought an HP Elitebook 8460p on eBay and it came with a password-locked Hitachi hard drive which I was told is the original hard drive. I don't know the password for the drive and running the diagnostics tools I see the hard drive is healthy. I tried booting... (9 Replies)
Discussion started by: milhan
9 Replies

2. HP-UX

Hitachi Device Manager Agent for HPUX

Hi there, i am looking to download the Device manager agent for HPUX 11.31. Where we can find it. I've tried on google and Hitachi web sites and spent several hours, i just couldn't find anything at all. Please help. Thank you very much! (8 Replies)
Discussion started by: lamoul
8 Replies

3. UNIX and Linux Applications

Issues with squid

Hello, I have been trying to setup the following squid configuration http://veloso.org/SquidConfig/SquidConfig.html but every time I get to start squid I get the following error- 2012/05/28 10:31:12| WARNING: redirector #1 (FD 7) exited 2012/05/28 10:31:12| WARNING: redirector #2 (FD 9)... (2 Replies)
Discussion started by: jamie_123
2 Replies

4. Emergency UNIX and Linux Support

rm -rf issues

We are using the solaris server and if i am using rm -rf to delete the directories its asking the confirmation for each and every file inside the directory.Is there any way to disable ( should not ask the confirmation) only for a particular session? (12 Replies)
Discussion started by: sureshbabuc
12 Replies

5. AIX

Aix and Storage Hitachi

Hello everyone I would like to hear your opinions about Aix 6.1 and Aix 5.3 with Storage Hitachi the model is USP VM. We buy it and I want to know day to day task with this storage and Aix. Thanks for your comments. Best wishes for this 2010 (2 Replies)
Discussion started by: lo-lp-kl
2 Replies

6. Solaris

Hitachi Airis Mate 2007, Unix 5.0

Hello everyone! Today we have a problem and decided to ask people on this forum maybe someone can help. At our medical center we have an Hitachi Airis Mate MRI system, yom 2007 with Unix OS (don't know exactly the version). As usually, in the morning we started up the system normally and it... (1 Reply)
Discussion started by: cmdp
1 Replies

7. HP-UX

Hitachi arrays to HP-UX 11.11

We have 2 servers (L1000 and rp7410) running 11.11. We would like to hook them up to either a Hitatchi AMS 2500 or Hitachi USPV via fiber channel. I need to what drivers I need for this and if it will work. Oh, they are using HP Tachyon XL2 Fiber Channel Mass Storage Adapters. Thanks, Bill (1 Reply)
Discussion started by: wsmcelroy
1 Replies

8. Shell Programming and Scripting

SU issues

Hi, I have automated a build process that does the following activities. 1. check out code from cvs to a specific directory 2. build the revision checked out with 'ANT' 3. integrate the compiled code with the QA/UAT or new environment (/apps/QA or /apps/UAT or /apps/new directory) I... (1 Reply)
Discussion started by: yoi2hot4ya
1 Replies

9. UNIX for Dummies Questions & Answers

pkgadd issues

Please inform me on how I can resolve the PaTcH_MsG 8 Version message below I am running solaris 9 9/05 HW on a Sun V445. Thank you. # pkgadd SUNWqlc Processing package instance <SUNWqlc> from </var/spool/pkg> Qlogic ISP 2200/2202 Fibre Channel Device Driver (sparc)... (3 Replies)
Discussion started by: GLJ@USC
3 Replies

10. Solaris

Solaris & Hitachi identify

Hello, Is there anyway to tell which set of Hitachi array the disks belong to? I'm remotely located so I cannot do the physical check. The possible Hitachi arrays are: AMS1000 and 9570 This is what I see on the format: 2. c2t50060E800475EA02d1 <HITACHI-OPEN-V*9-SUN-5007 cyl 65533 alt 2... (0 Replies)
Discussion started by: kiem
0 Replies
Login or Register to Ask a Question
I2C_ADD_NUMBERED_ADA(9) 				      I2C and SMBus Subsystem					   I2C_ADD_NUMBERED_ADA(9)

NAME
i2c_add_numbered_adapter - declare i2c adapter, use static bus number SYNOPSIS
int i2c_add_numbered_adapter(struct i2c_adapter * adap); ARGUMENTS
adap the adapter to register (with adap->nr initialized) CONTEXT
can sleep DESCRIPTION
This routine is used to declare an I2C adapter when its bus number matters. For example, use it for I2C adapters from system-on-chip CPUs, or otherwise built in to the system's mainboard, and where i2c_board_info is used to properly configure I2C devices. If the requested bus number is set to -1, then this function will behave identically to i2c_add_adapter, and will dynamically assign a bus number. If no devices have pre-been declared for this bus, then be sure to register the adapter before any dynamically allocated ones. Otherwise the required bus ID may not be available. When this returns zero, the specified adapter became available for clients using the bus number provided in adap->nr. Also, the table of I2C devices pre-declared using i2c_register_board_info is scanned, and the appropriate driver model device nodes are created. Otherwise, a negative errno value is returned. COPYRIGHT
Kernel Hackers Manual 3.10 June 2014 I2C_ADD_NUMBERED_ADA(9)