- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: generating a boot tape and make_net_recovery
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
03-10-2005 01:02 AM
03-10-2005 01:02 AM
generating a boot tape and make_net_recovery
root@admorum:/var/opt/ignite/clients/klax/recovery/latest> es/klax/2005-03-10,11:37 of=/dev/rmt/0mn obs=10k <
I/O error
3205820+0 records in
160290+1 records out
root@admorum:/var/opt/ignite/clients/klax/recovery/latest>
Anyone can tell me a way to verify if the tape is correctly generated (witout rebooting the machine) and tell me why this I/O error could be happend?. Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2005 01:07 AM
03-10-2005 01:07 AM
Re: generating a boot tape and make_net_recovery
I'm wondering why we don't just do a make_tape_recovery. I'm guessing that is becasue this system does not have a tape drive.
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
03-10-2005 01:55 AM
03-10-2005 01:55 AM
Re: generating a boot tape and make_net_recovery
if the image was 160290 or 160291 10k blocks in size, things might be okay, but thinking technically the tape is definitely *not*, as it's different from what You had on Your disk.
You said 'always' - did You try different tapes? In that case this might be a blocksize problem.
(SEP,
imagine he recovered a two-months old image from a backup of /var/opt/ignite/recovery/archives/ - we also have this situation from time to time.)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2005 04:13 AM
03-10-2005 04:13 AM
Re: generating a boot tape and make_net_recovery
PS: The reason I made this process is because I have a Ignite-UX server who store in disk several sysimages of some HP-UX servers. I only generate a tape when its needed (for example system recovery). Its an affective way to centralize whole process and reduce hand work.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2005 04:45 AM
03-10-2005 04:45 AM
Re: generating a boot tape and make_net_recovery
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2005 04:53 AM
03-10-2005 04:53 AM
Re: generating a boot tape and make_net_recovery
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2005 06:46 PM
03-10-2005 06:46 PM
Re: generating a boot tape and make_net_recovery
# cat 2005-03-10,11:37 | gunzip | pax -tf - | head -5
Works perfectly, so it cuould be a gunzip problem in my case. My image file is 2.5GB large and with two different tapes (and passing a cleanning cartridge between) it allways fails in the same record:
root@igniteUXServer:/root> ll ./2005-03-10,11:37
-rw------- 1 bin sys 2567972913 Mar 10 12:38 ./2005-03-10,11:37
root@igniteUXServer:/root> cat 2005-03-10,11:37 | gunzip | pax -tf - | head -5
stand/
stand/lost+found/
stand/ioconfig
stand/bootconf
stand/system
root@igniteUXServer:/root>
root@igniteUXServer:/root>dd if=./2005-03-10,11:37 of=/dev/rmt/0mn obs=10k
I/O error
3190420+0 records in
159520+1 records out
root@igniteUXServer:/root>
Also, making a dd to /dev/null works perfectly:
root@igniteUXServer:/root> dd if=./2005-03-10,11:37 of=/dev/null obs=10k
5015572+1 records in
250778+1 records out
root@igniteUXServer:/root>
Help will be very apreciated. Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2005 08:25 PM
03-10-2005 08:25 PM
Re: generating a boot tape and make_net_recovery
Before you blame the target device (tape-drive or suspect media) check that the archive image you have is not corrupted (as far as gzip is concerned - dd will transfer the data as it does not care what format it is in :)
cat 2005-03-10,11:37 | gunzip | pax -tf -
ie let it run all the way through.
Is the tape-media capable of storing the full (uncompressed...?) image - hitting the end-of-media could be construed as an IO error....? Does the fact that your image file is >2GB pose any problems - perhaps someone else knows the answer to these ....?
HTH
Regards,
Nick
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2005 08:45 PM
03-10-2005 08:45 PM
Re: generating a boot tape and make_net_recovery
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2005 11:46 PM
03-10-2005 11:46 PM
Re: generating a boot tape and make_net_recovery
root@igniteUXServer:/root> dd if=/var/opt/ignite/recovery/archives/klax/2005-03-10,11:37 of=/dev/rmt/0mn obs=10k
5015572+1 records in
250778+1 records out
root@igniteUXServer:/root>
Thanks everybody for your help.