1827286 Members
2115 Online
109717 Solutions
New Discussion

Re: System Failure

 
SOLVED
Go to solution
Sean Furman_1
Advisor

System Failure

We have an HP 9000 D330 which had something go wrong with the boot drive which contains an 10.20 installation. We believe that our data is on another drive that is that same server. We have a D390 coming in tommorow that we are hoping to put this drive in. Can anyone give me some advise on what I am trying to do. If I can mount this drive in the new server I can save one day's worth of data entry. Also, if we have a 64 port EISA card are we going to need special drivers for it or will it be recognized by the new server when it boots up? Any advise would be much appreciated.
2 REPLIES 2
Sridhar Bhaskarla
Honored Contributor
Solution

Re: System Failure

Hi,

Yes. You can mount it on the other server. First find out the disk path by 'ioscan -fnC disk' command. (say c0t5d0)

If it was under LVM configuration, then import the disk using 'vgimport'.

#mkdir /dev/vg01
#mknod /dev/vg01/group c 64 0x010000
#vgimport -v vg01 /dev/dsk/c0t5d0
#vgchange -a y vg01

Now look under /dev/vg01. You should see some logical volumes like lvol1, lvol2 etc.,

Find out the data in them by mounting them.

#mkdir /filesystem1
#mount /dev/vg01/lvol1 /filesystem1

If it was used as a whole disk, then you can do

#mkdir /disk1
#mount /dev/dsk/c0t5d0 /disk1

-Sri
You may be disappointed if you fail, but you are doomed if you don't try
V.Tamilvanan
Honored Contributor

Re: System Failure

Hi,
I go with Sri. But you are safe only, if your root VG is not spawned across your Data disk.

HTH