1833059 Members
2743 Online
110049 Solutions
New Discussion

accessing foreign disk

 
SOLVED
Go to solution
sahaj bahra
Frequent Advisor

accessing foreign disk

I have a hard disk which i got from another system and now i want to access it on my hp-ux server to see the data present inside.I donot have the map file. How can i access this disk?
4 REPLIES 4
SANTOSH S. MHASKAR
Trusted Contributor

Re: accessing foreign disk

Hi,

Pl. provide following info.

1] Platform, OS of both systems.

2] The disk management utility (LVM, VxVM etc.),file system on disk.

3] Type of Hard Disk (SCSI etc.)
-Santosh
Peter Godron
Honored Contributor
Solution

Re: accessing foreign disk

Hi,
further info is required on what sort of system this disk comes from and what the filesystem is.

But in principle:
mkdir /dev/vgxx
mknod /dev/vgxx/group c 64 0x010000
The 010000 should be one higher than the number of VGs you currently have, counting from 0.
vgimport /dev/vgxx /dev/dsk/c?t?d?
Check vgxx for lvols
vgchange -a y /dev/vgxx
mkdir /lvol1
mount /dev/vgxx/lvol1 /lvol1

Please read:
http://66.34.90.71/ITRCForumsEtiquette/after.html

Please also read:
http://forums1.itrc.hp.com/service/forums/helptips.do?#33 on how to reward any useful answers given to your questions.

So far you have not awarded any points !
sahaj bahra
Frequent Advisor

Re: accessing foreign disk

Thanks peter, that was a real neat one.
sahaj bahra
Frequent Advisor

Re: accessing foreign disk

Thanks