- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Mount a HP-UX tape device on 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
06-07-2004 07:17 AM
06-07-2004 07:17 AM
We have two servers:
1) A HP-UX 11.0 which is installed a DLT-8000 tape device;
2) A Linux ASE without any tape device.
We want to build a backup routine on the Linux, saving the data on DLT device across the network.
Is possible to mount the DLT device (/dev/rmt/0mnb) on the Linux machine, so we can reference it as a Linux local device? How can we do that?
Thanks,
Oscar
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2004 07:22 AM
06-07-2004 07:22 AM
SolutionOptions:
scp the files across and use the backup device via a ssh command.
Veritas Netbackup does make HP-UX tape devices available on the network to certain clients, at least for their product.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2004 07:31 AM
06-07-2004 07:31 AM
Re: Mount a HP-UX tape device on a Linux machine
If you are doing a 'dump' backup from your linux system, you may be able to use the "rdump" command to backup.
#man rdump, for more info.
Setup NFS to mount your Linux filesystems on the HP-UX box and backup through NFS.
Or Use some standard backup software like Veritas or Legato to backup the whole environment in a client/server manner.
rsync would be a better utility than scp if the filesystem changes are minor and you could copy only changed files to the remote system.
HTH,
Abdul.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2004 07:33 AM
06-07-2004 07:33 AM
Re: Mount a HP-UX tape device on a Linux machine
You can not "remote" mount a tape drive unless your "backup" software has that facility.
BUT you can CHEAT:
linux box:
DO ONCE:
/sbin/mknod /tmp/stuffing p
echo "+ +" >.rhosts
TO DO BACKUPS:
cd /
tar -cvf /tmp/stuffing .
ON HP BOX
remsh linuxbox dd if=/tmp/stuffing | dd of=/dev/rmt/TAPEDRIVENAME
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2004 11:41 AM
06-07-2004 11:41 AM
Re: Mount a HP-UX tape device on a Linux machine
From hpux:
remsh linuxbox "cd /;tar cvf -" | dd of=/dev/rmt/TAPEDEVICE
If you're in remote-segments of the network, this also gives you the option to compress the stream to save bandwidth:
remsh linux "cd /;tar zcvf -" |
You can either write the compressed stream, or un-compress it before writing for better hardware-compression.
We do similar backup's here from about 8 servers around the office.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2004 10:08 PM
06-07-2004 10:08 PM
Re: Mount a HP-UX tape device on a Linux machine
1. NFS mount the Linux Filesystems onto HPUX and backup.
Regds,
Kapil Raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2004 11:36 PM
06-07-2004 11:36 PM
Re: Mount a HP-UX tape device on a Linux machine
Oscar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2004 01:25 AM
06-08-2004 01:25 AM
Re: Mount a HP-UX tape device on a Linux machine
The way to thank in this forum is by assigning points to the responses you've received.
regds,
Abdul.