- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Access the Remote Tape drive
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
08-26-2004 10:50 PM
08-26-2004 10:50 PM
Access the Remote Tape drive
i have a system "Apple" connected with a DLT drive. i want to access this DLT in "MICKY". i have enabled rlogin for the both the servers. let me know how do i do that.
is ther any permissions required to be set.
THanks in advance.
REgards,
Govind.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2004 10:54 PM
08-26-2004 10:54 PM
Re: Access the Remote Tape drive
Backup and Recovery -> Interactive Backup and Recovery -> Actions -> Use Remote Backup Device -> Back Up Files Interactively...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2004 10:57 PM
08-26-2004 10:57 PM
Re: Access the Remote Tape drive
Thanks for the reply.
i want the command. can u give me the command.
Thanks
Govind.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2004 11:03 PM
08-26-2004 11:03 PM
Re: Access the Remote Tape drive
or
You can use for example tar (or cpio etc) to a remote tape drive with:-
micky# tar cvf - / | rexec apple "dd of=/dev/rmt/0mn"
This will tar to stdio, which will be passed to dd via the pipe, which will write it to tape.
You may need to experiment with the bs= parameter of dd to get optimum performance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2004 11:04 PM
08-26-2004 11:04 PM
Re: Access the Remote Tape drive
I think it's something like this:
fbackup -f
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2004 11:09 PM
08-26-2004 11:09 PM
Re: Access the Remote Tape drive
let me how to restore from the tape to Micky.
thanks
Govind.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2004 11:15 PM
08-26-2004 11:15 PM
Re: Access the Remote Tape drive
If you want to restore data you should know what format backup is taken. If backup has taken using fbackup you can restore it using
#frecover -f apple:/dev/rmt/1m ..
Sunil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2004 11:17 PM
08-26-2004 11:17 PM
Re: Access the Remote Tape drive
To restore the tar (as I backup up above): -
micky# rexec apple "dd if=/dev/rmt/0mn" | tar xvf -
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2004 11:17 PM
08-26-2004 11:17 PM
Re: Access the Remote Tape drive
frecover -f MICKY:/dev/rmt/0m -v
Add -I /var/tmp/index_test if you used an index when doing the fbackup
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2004 11:21 PM
08-26-2004 11:21 PM
Re: Access the Remote Tape drive
When I wrote "frecover -f MICKY:/dev/rmt/0m -v", I wanted to post:
frecover -f Apple:/dev/rmt/0m -v (Apple is the server with DLT)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2004 12:08 AM
08-27-2004 12:08 AM
Re: Access the Remote Tape drive
Bill Hassell, sysadmin