- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Recover Data from Hard Disk
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
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
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
тАО04-11-2006 12:39 AM
тАО04-11-2006 12:39 AM
Recover Data from Hard Disk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-11-2006 02:17 AM
тАО04-11-2006 02:17 AM
Re: Recover Data from Hard Disk
did you get any errors when you created the tar? I would install the removed disk and generate another tar/backup, ensuring nothing went wrong.
Then swap the new disk in and restore, after making sure the disk is ok.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-11-2006 02:33 AM
тАО04-11-2006 02:33 AM
Re: Recover Data from Hard Disk
Reconnect the 18Gigs hard disk and be sure to have a good backup:
mt -f [your_tape_device] rew
find /mount_point_of_lvol13 -cpio [your_tape_device]
to restore:
cd /mount_point_of_lvol13 && cpio -i < [your_tape_device]
man cpio
Regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-11-2006 06:02 AM
тАО04-11-2006 06:02 AM
Re: Recover Data from Hard Disk
there was a single VG and the partition represented by this data disk was lvol13.
HPUX11.0 is the OS.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-11-2006 07:35 AM
тАО04-11-2006 07:35 AM
Re: Recover Data from Hard Disk
mkdir /dev/source_workstation_vg_name # use the same vg name that was on the source workstation
mknod /dev/source_workstation_vg_name/group c 64 0xNN0000 # use the same minor number of the source workstation
insert disk from old workstation
ioscan -fnC disk
insf -C disk
vgscan -pv
1) if output of the vgscan above is good
vgscan -v
vgchange -a y old_workstation_vg_name
mount /dev/source_workstation_vg_name/lvol13 /wherever
2) if output is not good
mv /etc/lvmtab.pre /etc/lvmtab
report here what went wrong
Regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-11-2006 07:58 AM
тАО04-11-2006 07:58 AM
Re: Recover Data from Hard Disk
It could be possible, depends a bit on how you removed (commands used)the disk from the original C3600. You could try below commands on a your spare workstation.
shutdown your spare WS, add the disk and boot the system, run "ioscan -fnCdisk" and note the added disk device file "/dev/dsk/cxtydz"
# ll /dev/*/group
crw-r----- 1 root sys 64 0x000000 Jun 29 01:34 /dev/vg00/group
note the vg number and minor number used on your WS volume group.
# mkdir /dev/vg01
# mknod /dev/vg01/group c 64 0x010000
# vgimport vg01 /dev/dsk/cxtydz
use the device file from your ioscan command.
# vgchange -a y vg01
# vgcfgbackup vg01
# vgdisplay -v vg01
# mkdir /mnt
# mount /dev/vg01/lvol1 /mnt
Check if you have access to your data.
Hope this helps,
obert-Jan