- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to make a bootable Backup?
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
тАО03-04-2000 12:46 AM
тАО03-04-2000 12:46 AM
How to make a bootable Backup?
bootable backup on a DAT-Tape that allowes an user after an HD replacement to
boot from it and to restore the complete HD structure, similar like mksysbckup
in AIX. Is that possible? And if yes, how?
Benjamin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-04-2000 09:09 PM
тАО03-04-2000 09:09 PM
Re: How to make a bootable Backup?
have to boot single user, and perform a dd copy of the hard drive. I am not
sure what the steps are involved to do this, but there is probably a man page
for it. Check out IGNITE first.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-04-2000 10:14 PM
тАО03-04-2000 10:14 PM
Re: How to make a bootable Backup?
copy with dd would bring me a bootable tape? Otherwise I can?t restore the
content without the installation media. Same with mkrs: I can boot from a
mkrs-Tape, but can?t access my DAT-Drive. And I haven?t found a way to make a
mkrs-tape with custom file content and/or kernel...
Benjamin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-05-2000 04:43 PM
тАО03-05-2000 04:43 PM
Re: How to make a bootable Backup?
the OS version would be an odd number as the last digit, e.g. 9.05
mkrs is the best way to make a recovery tape on a workstation at 9.0x, as
there is NO version of Ignite/UX for 9.x.
There is no way I know of to modify any of the settings when you do cvreate the
mkrs tape, as it is only meant to be used to do exactly as it name suggests,
recovery of the system.
There is another method that could be used, but this requires your system to be
down, and the Diagnostic or Support Media, and that is the copyutil utility,
but again you have no control over what it copies.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-24-2000 11:47 PM
тАО04-24-2000 11:47 PM
Re: How to make a bootable Backup?
you are looking for a disaster backup method for HP-UX 9.0x.
Here is my solution:
Create a bootable section to the tape:
dd if=/usr/lib/uxbootlf.700 of=/dev/rmt/0mn bs=2k
Copy the entire disk image to the tape:
dd if=/dev/rdsk/c201d6s0 of=/dev/rmt/0m bs=64k
Note: The disk device depends on your system.
You must use the norewind device when creating
then boot image.
This procedure works if you replace the disk with a new one that has the same
or bigger size.
I've got this information from the hpux_700 man page.
Hope this helps you