Trouble mounting tape drive with Lynx OS


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Trouble mounting tape drive with Lynx OS
# 1  
Old 05-04-2005
Trouble mounting tape drive with Lynx OS

I'm trying to mount tape drive so I can tar from a cd.
this is what i type: mount /dev/rsd2940.4 /mnt
this is what i get: mount /dev/rsd2940.4 on /mnt : Block device required
I have no idea what that is supposed to mean. It's my understanding that rsd2940.4 is the block device. An interesting thing I saw is that when I did an ls -lasg in the /dev, that device had an asterisk next to the four that indicates the SCSI id.
I would appreciate any input that someone might have. Thanks
# 2  
Old 05-05-2005
I don't know your os, but in general terms, look at this:
Code:
$ ls -l /dev/dsk/c0t0d0
brw-r-----   1 bin        sys         31 0x000000 Aug 31  2000 /dev/dsk/c0t0d0
$ ls -l /dev/rdsk/c0t0d0
crw-r-----   1 bin        sys        188 0x000000 Oct 28  2004 /dev/rdsk/c0t0d0
$

The lead b is for block device and the leading c is for a character device. A block device connects to a driver that does all i/o via the via buffer cache. It is very rare to have a block tape device, but some versions of HP-UX did. This supported mountable tapes that were used for recovery. These tape had to be specially formatted so they appeared to have a filesystem on them. I would be surpised if your os supports mountable tapes, but it is possible.

It is not clear why you want to mount a tape drive to tar from a cd. I would think you need to use a cd drive to read your cd. Smilie
 
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. SCO

Mounting Tape Drive

Sorry I posted it in wrong forum first. OK, I'm new to Unix (but an IT since DOS 6.2 era) Long story short I'm trying to help a friend who has failing Unix system which is perhaps 16 years old with SCO Openserver 3.4v4.2 with DDS90 Tape where they backup their data. I've setup a Dell Precision... (9 Replies)
Discussion started by: shunail
9 Replies

2. AIX

Mounting Tape Drive from different partition

Dear all, I have a AIX server with logical 3 partitions and the server is connecting a tape drive. the first partition can successfully making a system backup to the tape but how can i fail to mount the tape to second and thrid partition. would anyone can help me to deal with it? what command... (3 Replies)
Discussion started by: rickhlwong
3 Replies

3. SCO

mounting USB floppy drive /Flash drive in OSR 6.0

Can anybody help me out to mount USB flash /floppy drive in sco openserver 6.0 . (5 Replies)
Discussion started by: sureshdrajan
5 Replies

4. UNIX for Dummies Questions & Answers

Mounting DLT tape and to backup file to tape

Hi there: I'm new here Can anyone help me: I have DS15 Alpha server : Unix 5.1B Now i need to connect a DLVT VS80 1U Rackmount Tape Drive unit. What is the exact comman to mount the DLTape IV?? How do i make backuo @ copy file to the tape? Thanx to all (0 Replies)
Discussion started by: ayzeayem
0 Replies

5. 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

6. 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

7. UNIX for Dummies Questions & Answers

trouble mounting

What is the possible cause for the mount command to take ages? im trying to mount remotely : "mount -t nfs xx.x.x.x:/export/xyz/cdrom-4.0 /mnt/cdrom" on a system using bash. Im able to ping the remote server, but the system hangs or takes about half an hour to carry out this mount command.... (4 Replies)
Discussion started by: sahilb
4 Replies

8. Solaris

mounting an external scsi tape drive

hi- I just installed a quad gigaswift ethernet scsi card to my sunblade 150. I checked with the docs, and got all of the required drivers on the box. Now, I'm trying to mount an external scsi tape drive with no luck. I set the scsi address on the external drive to 0. Here's what I'm coming... (9 Replies)
Discussion started by: ECBROWN
9 Replies
Login or Register to Ask a Question