- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- how to backup to a remote tape?
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
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
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
тАО01-15-2002 07:49 PM
тАО01-15-2002 07:49 PM
how to backup to a remote tape?
(my system is b2000 with 11.0)
I want to backup the system to a tape on a remote sun box. when use rdump, or sam to do this , It failed.
how to do this job.
Thanks
Sunny
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-15-2002 08:06 PM
тАО01-15-2002 08:06 PM
Re: how to backup to a remote tape?
e.g.
find . -print | cpio -ocBv | remsh sunhost dd ibs=5k obs=1000k of=/dev/tape
If you are going over a slow network you may want to add compress/uncompress to your pipeline. You could also use tar or fbackup as your front-end command.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-15-2002 08:07 PM
тАО01-15-2002 08:07 PM
Re: how to backup to a remote tape?
Using tar
# tar cvf - /dir_name | remsh hostname dd of=/dev/rmt/0m
or
# remsh
Using cpio
# find . -depth -xdev | cpio -ovxcB 2>/tmp/err.cpio |remsh hostwithtapedrive -l user "cat - | dd of=/dev/rmt/0m obs=5k"
HTH
-Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-15-2002 08:11 PM
тАО01-15-2002 08:11 PM
Re: how to backup to a remote tape?
I suppose I should mention one much faster though not free alternative. You might look into Omniback. You can install it as a 60-day trial. It will allow you to backup many flavors of UNIX, Windows, Novell, and others to tape drives located essentially anywhere on the network.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-16-2002 06:36 AM
тАО01-16-2002 06:36 AM
Re: how to backup to a remote tape?
I believe you should be able to use rdump to backup to your Sun's tape drive. I have done the reverse (ufsdump to a HPUX box) and extracted files (restore) there. You have to set up the "r" security stuff (.rhosts, etc) for this to work.
What was your error?
Darrell
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-17-2002 05:08 AM
тАО01-17-2002 05:08 AM
Re: how to backup to a remote tape?
> Sorry, you are not going to find those commands on HP-UX.
Which commands? The Question Author mentioned rdump and sam and, AFAIK :-), those *are* on HP-UX.
> HP's answer is to use fbackup which will talk to remote tape drives but it is HP only.
If by "it is HP only" you mean that fbackup *itself* is HP only and must run on HP-UX, then that is true. But fbackup can make *remote backup* (which is asked here) to a tape drive on a non-HP-UX system, provided that system has the Berkeley standard rmt(1M). For details see the comments on rmt in the fbackup(1M) manual page.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-17-2002 05:24 AM
тАО01-17-2002 05:24 AM
Re: how to backup to a remote tape?
get Gnu's tar, it'll do remote tape writes. It will also handle LARGE files.
for hp:
http://hpux.cs.utah.edu/hppd/hpux/Gnu/tar-1.13.25/
for sun:
http://sunsite.ics.forth.gr/sunsite/gnu/tar/
or better yet (where you select your Solaris OS revision):
http://www.sunfreeware.com/
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-17-2002 09:48 AM
тАО01-17-2002 09:48 AM
Re: how to backup to a remote tape?
The unwritten etiquette on the forum is not to criticise nor directly correct another forum members answer to a question, but to answer the question posed.
Paula