- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: how to recover data from secondary 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
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
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
11-04-2003 11:34 AM
11-04-2003 11:34 AM
I can install another disk with the operating system, but how can I recover the data?
Any ideas?
I will appreciate any help.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2003 11:47 AM
11-04-2003 11:47 AM
Re: how to recover data from secondary hard disk
Otherwise, tape restore, or if you're really desperate you can try a data recovery service like Ontrack: http://www.ontrack.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2003 11:50 AM
11-04-2003 11:50 AM
Re: how to recover data from secondary hard disk
vgexend /dev/vg00 /dev/dsk/c#t#d#
Then you can probably use dd command to copy the data to a filesystem.
If you have a recent make_tape_recovery or make_net_recovery Ignite backup, you can restore the whole system once the disk is replaced.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2003 12:04 PM
11-04-2003 12:04 PM
Re: how to recover data from secondary hard disk
We don´t have a backup.
Thank
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2003 12:42 PM
11-04-2003 12:42 PM
SolutionSomething like this:
# mkdir /dev/vg01
# mknod /dev/vg01/group c 64 0x010000
# vgimport -v /dev/vg01 /dev/dsk/c?t?d?
where c?t?d? is the disks device file.
From that point you will need to make a note of the LVs that it imports (they will be of the form lvol1, lvol2, etc.) and try to mount them.
# mkdir /mount1
# mount /dev/vg01/lvol1 /mount1
And do that for each LV that is imported.
Good luck!!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2003 02:33 PM
11-04-2003 02:33 PM
Re: how to recover data from secondary hard disk
Ok what you can do is connect this disk to another system, and go through the following steps.
1. mkdir /dev/
2. mknod /dev/
3. vgimport /dev/dsk/
4. vgchange -a y /dev/
5. mkdir /old
make subdirectories in it and mount the lvols you have in /dev/
you might have to do fsck to make the filesystem clean
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2003 12:22 AM
11-05-2003 12:22 AM