- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Backup Tape Recorder
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
02-01-2002 09:33 AM
02-01-2002 09:33 AM
Backup Tape Recorder
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2002 10:28 AM
02-01-2002 10:28 AM
Re: Backup Tape Recorder
If you don't use a backup software like omniback / veritas netbackup then I think the command commands are tar and cpio. You have fbackup on hp side, but don't think it is there on sun side too. You can use dd though.
Hope this helps.
regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2002 01:40 PM
02-02-2002 01:40 PM
Re: Backup Tape Recorder
http://www.gnu.org/software/tar/tar.html
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-04-2002 05:54 AM
02-04-2002 05:54 AM
Re: Backup Tape Recorder
make sure remsh works from HP to SUN.
Do backup then with
tar -cvf - ./directory_to_backup | remsh SUN dd of=/dev/rmt/tapedevice bs=5120
Do restore with
remsh SUN dd if=/dev/rmt/tapedevice bs=5120
| tar -xvf -
Hope this helps
Volker
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2002 01:39 AM
02-08-2002 01:39 AM
Re: Backup Tape Recorder
See the comment about /usr/sbin/rmt and /etc/rmt in the fbackup(1M) manual page.
Before actually trying this, make sure that
remsh host whereis rmt
works, as *root* and *without* having to give a password, and return somthing like:
rmt: /usr/sbin/rmt /usr/share/man/man1m.Z/rmt.1m
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2002 01:54 AM
02-08-2002 01:54 AM
Re: Backup Tape Recorder
I agree, that normally you should use tar or cpio if you don't use commercial software, but there is an alternative:
pax is a new command which is available on all UNIXes and is in work for Linux as well. It is able to read every tar- or cpio- format and for these reasons the ideal command if you work between different platforms. The pax- command is planned to be the future industrial standard.
More informations: man pax
Allways stay on the bright side of life!
Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2002 02:16 AM
02-08-2002 02:16 AM
Re: Backup Tape Recorder
Borowski solve the problem with
| remsh SUN "dd of=... "
In HP side you can use any comman to create arhive. I use pax -tdwx ustar -f - | remsh ..
JIP