- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Need to backup/copy from Linux to HP-UX.
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-23-2004 05:26 AM
11-23-2004 05:26 AM
Need to backup/copy from Linux to HP-UX.
So, can I backup Oracle database to any HP-UX Server where I have lots of free space?
Also what would be the best way to copy/move files from Linux-to-HP-UX-to-Linux.
Thanks,
Gulam.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2004 05:33 AM
11-23-2004 05:33 AM
Re: Need to backup/copy from Linux to HP-UX.
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2004 05:39 AM
11-23-2004 05:39 AM
Re: Need to backup/copy from Linux to HP-UX.
You can do a NFS mount of a large filesystem from the HP server on the Linux box adn then tar it on that.
Rgds
HGN
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2004 05:43 AM
11-23-2004 05:43 AM
Re: Need to backup/copy from Linux to HP-UX.
Gulam.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2004 05:58 AM
11-23-2004 05:58 AM
Re: Need to backup/copy from Linux to HP-UX.
Im sure your linux box is a good candidate for nfsclient and "not configured" NFS server on HPUX is no good excuse if you are adminitrator of the box:
Its dead easy using sam:
sam& go to Networking and communications / Networkes File systems.
Click on Exported local file systems /Action-add Exported file system...
If the daemons werent started - It will ask you Enable NFS server...
Im quite sure the client is running on the linux box so you just have to try:
mount
(check the correct syntax on your linux box)
Be sure to have the boxes name resolved either by DNS or /etc/hosts
Good luck
Victor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2004 05:59 AM
11-23-2004 05:59 AM
Re: Need to backup/copy from Linux to HP-UX.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2004 06:45 AM
11-23-2004 06:45 AM
Re: Need to backup/copy from Linux to HP-UX.
I think I would go with ftp as this is a one time requirement only.
A will also compress files before ftp.
Thanks,
Gulam.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2004 09:18 PM
11-23-2004 09:18 PM
Re: Need to backup/copy from Linux to HP-UX.
Well there are other solutions:
Try to get the boxes to accept your connections without passwd - that is using the correct .rhosts file on each box.
Test by doing a rlogin that it is straight through then with remsh or rsh.
If success then e.g. with remsh:
- On the source node, go to the directory you want to backup (or the level above so 2 examples will be given)
tar -cf - dir1 |remsh
This one I just tried so I know it works:
In the directory:
tar -cf - * | remsh dest-node "(cd /dest-dir ; tar -xvf - )"
Good luck
All the best
Victor