- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How can I backup HP-UX 10.20 using a linux machine...
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
10-16-2001 03:44 AM
10-16-2001 03:44 AM
How can I backup HP-UX 10.20 using a linux machine ?
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2001 03:56 AM
10-16-2001 03:56 AM
Re: How can I backup HP-UX 10.20 using a linux machine ?
From the HP Box;
cd /
tar cf - * | dd bs=64k | remsh
You need to be able to remsh to the linux box from your HP without needing a password (.rhosts)
You can do the same in reverse from the linux box to backup onto the HP DDS drive.
You can put both onto one tape if you have enough capacity. Backup the linux box first using the /dev/nst0 device file (no rewind). When its done the tape wont rewind and now you can backup the HP to it using /dev/nst0 also and it will go onto the same tape.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2001 03:57 AM
10-16-2001 03:57 AM
Re: How can I backup HP-UX 10.20 using a linux machine ?
mknod pipename p
then start your backup:
tar -cvf /pathtopipe/pipename
on your linux box do this:
rsh hpmachine dd if=/pathtopipe/pipename | dd of=/devicepathnameoftapedrive
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2001 03:58 AM
10-16-2001 03:58 AM
Re: How can I backup HP-UX 10.20 using a linux machine ?
Use NFS. Mount the filesystem you want to backup from the HP c200 on the server, then backup it.
add the line
/partition
to your /etc/exports file on the HP c200 and then do
exportfs /partition
then on the server you can
mount HPc200:/partition /where_you_want_on_the_server
man nfs
man exportfs
man exports
man mount
E.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2001 04:12 AM
10-16-2001 04:12 AM
Re: How can I backup HP-UX 10.20 using a linux machine ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2001 04:31 AM
10-16-2001 04:31 AM
Re: How can I backup HP-UX 10.20 using a linux machine ?
I would favor Stefan's variant over NFS (too buggy and slow at all), with few modifications:
tar -cvf . (dot instead of '*' because '*' will not backup all the files like .profile, .netrc ...)
And I would not use 64k as a blocksize over the network, this might cause TCP/IP block fragmentation. I favor 5120 bytes for the dd feeding the remote-shell and 64k for the dd feeding the tape.
For ease of use, you might even consider to feed the tape with a blocksize of 5120 bytes, so you could directly untar from the tape.
Just my 0.02 ?
Volker
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2001 03:56 AM
10-17-2001 03:56 AM
Re: How can I backup HP-UX 10.20 using a linux machine ?
Unfortunately I could not resolve my problem. If I try to use mount I can?t access subdirectories, for example: I want to do a full backup and I access the /xyz directory but I can?t see the /xyz/abc directory. I did a "man exports" in my HP and see a warning about it.
So, I try the other option using remsh from my HP to access the linux server but this service is not installed there, in the linux server. I search for this service in /etc/inetd.conf and there is no rsh service.
If you have more suggestions....
Thanks once more.
Cheers, Mauro
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2001 12:45 AM
10-18-2001 12:45 AM
Re: How can I backup HP-UX 10.20 using a linux machine ?
On the general aspect of remote backup to a non-HP Unix system, see my response in the thread http://forums.itrc.hp.com/cm/QuestionAnswer/1,11866,0x16bacf38d6bdd5118ff10090279cd0f9,00.html That response points to another thread which has the majority of the information (see my responses in that, second, thread).