How to mount remote tape drive?


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users How to mount remote tape drive?
# 1  
Old 08-12-2011
How to mount remote tape drive?

Good day all!

I need to recover FS from backup, but the thing is that tape drive cable is not compatible with the server's input (tape drive's cable is wide, but at the server input (V240) is tight one). So, I want to connect this tape drive to another Solaris based server and mount tape drive remotely to be able recover dump from tape.
Can anyone suggest me how I can do it?

Thanks in advance,
Roman

---------- Post updated at 07:18 PM ---------- Previous update was at 06:42 PM ----------

Guys, I found cable which I can connect to V240. Smilie Smilie Smilie
So, it seems that problem is solved... ))))
# 2  
Old 08-12-2011
Or you can Share Tape Drive over NFS without the need to move the drive between machines
# 3  
Old 08-16-2011
Ho, could you please let me know how I can do that?
# 4  
Old 08-20-2011
You need to configure NFS Server / client
Otherwise you can tar over rsh and vice versa
First, here is how to archive files from the local machine (example) to a tape on a remote system (host):

Code:
 example% tar cvfb  -  20 filenames | rsh host dd of=/dev/rmt/0  obs=20b

here is how to use tar to get files from a tape on the remote system back to the local system:

Code:
example% rsh -n host dd if=/dev/rmt/0 bs=20b | tar xvBfb - 20 filenames

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Using a remote tape drive.

Hello everyone. I googled a little bit, and the best anwers i had were found in this forum. But , unfortunately, they couldn't give me a solution. So i decided to ask the question completely. I have two servers: One RHEL 5 , x64 , with a SCSI DAT72 Tape Drive. Another (the new one), with... (0 Replies)
Discussion started by: pablobhz
0 Replies

2. Solaris

Backup to remote tape drive

Hello all, I'm trying to backup some files on a solaris 10 machine to the remote tape drive connected to another solaris 10 machine. I have set up rsh to allow for password-less connection between the servers, but I'm not able to write to the tape with the command: root@sdp4a>tar cvf... (1 Reply)
Discussion started by: kerrygold
1 Replies

3. UNIX for Dummies Questions & Answers

How to send files to remote tape drive

We have 2 UNIX machines, 1.HP-UX 11i where oracle database running on it. 2.AIX 5 with Ultrium LTO3 tape drive connected. My query is, i want to send oracle database archive files from HP machine to the tape drive which connected on AIX machine, everyday. These files should be appended. I... (3 Replies)
Discussion started by: yashdbad
3 Replies

4. AIX

How to mount internal tape drive of sun machine in AIX 5.3

Hi, Help required! How to mount internal tape drive of sun machine in AIX 5.3 (0 Replies)
Discussion started by: ashwin.krishna
0 Replies

5. Solaris

Problem restoring files from remote tape drive

Server 1 - Sun Solaris 5.8 sparc SUNW,Sun-Fire-480R with attached DLT tape drive /dev/rmt/0n Server 2 - Old DG-UX box which has restore command on it compatible with the files on the backyup tape - backed up with dump2 Server 3 - Sun solaris 5.9 sparc SUNW,Sun-Fire-V490 with lots of free space... (4 Replies)
Discussion started by: lindab
4 Replies

6. Solaris

tar on remote tape drive

hello guys, am trying to save a file file1 to a remote tape drive using tar and i get a permission denied error as shown below: server1%tar cvf - file1 | rsh server2 dd of=/dev/rmt/1m conv=sync a file1 1883905K permission denied since server2 requires login username and password, i see in... (3 Replies)
Discussion started by: nom
3 Replies

7. AIX

Mounting remote tape drive

Hi, Would appreciate if anyone could tell me if it is possible to mount (and use) a remote tape drive on a AIX server, and if so, what are the precise configuration steps needed? The tape drive to be mounted as a remote tape drive is present on another AIX server in the same network. ... (5 Replies)
Discussion started by: dnicky
5 Replies

8. Shell Programming and Scripting

Mounting remote tape drive

Hi, Would appreciate if anyone could tell me if it is possible to mount (and use) a remote tape drive on a AIX server, and if so, what are the precise configuration steps needed? The tape drive to be mounted as a remote tape drive is present on another AIX server in the same network. ... (0 Replies)
Discussion started by: dnicky
0 Replies

9. Solaris

Backup over network to remote tape drive

I am currently using tar to backup a server that has 9gb of data. This is fine and works fine, as part of this I send the backup to a remote tape on a remote server using rsh.. This is not very secure though is it? Whats the best idea here - is there another way I should do this to be more... (1 Reply)
Discussion started by: frustrated1
1 Replies

10. UNIX for Dummies Questions & Answers

mount a remote drive

How do I mount a directory that is on another server that has already shared it? mount 555.555.444.44:/cdrom0 does not work. (2 Replies)
Discussion started by: flowrats
2 Replies
Login or Register to Ask a Question