Operating System - Tru64 Unix
1753706 Members
4947 Online
108799 Solutions
New Discussion

Acessing the tape drive from another server

 
SOLVED
Go to solution
Phuti
Occasional Advisor

Acessing the tape drive from another server

Hi

I have an ultrium tape drive attached to a Tru64 server. I want to access this tape drive from another server directly.

How can I handle this challenge?

Thanks in advance.
1 REPLY 1
Ivan Ferreira
Honored Contributor
Solution

Re: Acessing the tape drive from another server

It depends of your operating system version and backup command used.

You can for example use rvdump if you have the command, or you can use a tar command like this:

localsystem> tar cvf - /usr/users | rsh remotesistem.domain dd of=/dev/ntape/tape0c

This will backup the contents of the /usr/users directory using tar in a remote system.

To list the backup

localsystem> rsh remotesistem.domain dd if=/dev/tape/tape0c | tar tvf -
Por que hacerlo dificil si es posible hacerlo facil? - Why do it the hard way, when you can do it the easy way?