- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: sharing a tape device on Solaris system
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-06-2005 09:59 PM
02-06-2005 09:59 PM
sharing a tape device on Solaris system
I have HP server that holds no tape device and at the same time I have a SUN server that holds a tape device.
Now my question is:
Can I use the tape device that exists on a SUN system as a remote backup device from the HP server?
I'm asking this because if you go to the SAM backup and Recovery you will find an option saying "Specify Remote Backup Device".
and is the answer was yes, how can I set up the shared device on the HP server?
Thanking yOu
Marwan Shantir
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2005 10:05 PM
02-06-2005 10:05 PM
Re: sharing a tape device on Solaris system
There is nothing much to do in this. You have to enable remote shall on SUN server.
you should be able to login to SUN server without password using rlogin. if this work you can use your SUN server's tape drive from HP servers in SAM utility.
Sunil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2005 11:50 PM
02-06-2005 11:50 PM
Re: sharing a tape device on Solaris system
You will need to use tar, cpio, vxdump, dd or other utilites and then send the output to the tape on the remote system.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2005 12:20 AM
02-07-2005 12:20 AM
Re: sharing a tape device on Solaris system
on HP system:
cd to say /tmp
/sbin/mknod /stuffithere p
echo "+ +" >/.rhosts
tar -cvf /stuffithere .
on SUN server
rsh HPSYSTEM dd if=/stuffithere | dd of=/tapedevicepath
tar -tvf /tapedevicepath
live free or die
harry d brown jr
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2005 03:37 AM
02-07-2005 03:37 AM
Re: sharing a tape device on Solaris system
Also netcat is very usefull to make a pipe over the network to the SUN tapedrive.
On the SUN with tape drive:
nc -l -p 40000 | dd of=/dev/rmt/0m bs=32k
On the HP to backup:
tar cpf - / | nc -w 3
Try it.
It uses port 40000 in this example to pipe the tar stdout into the sun host with netcat. (not norton commander ;-) )
Regards,
Bob