tape backups, scsi tape drive?

tape backups, scsi tape drive?

Post by Larry Clar » Sat, 28 Oct 2000 05:22:35



ok I have a scsi tape drive install, the scsi driver loaded (st) but how do
I do this, I have tried mounting the following:
/dev/tape, /dev/st0 nothing, any help would be appreciated...thanks
 
 
 

tape backups, scsi tape drive?

Post by Bill Grzani » Sat, 28 Oct 2000 06:09:09



>ok I have a scsi tape drive install, the scsi driver loaded (st) but how do
>I do this, I have tried mounting the following:
>/dev/tape, /dev/st0 nothing, any help would be appreciated...thanks

Hi, Larry.

I guess this qualifies as a FAQ...  you don't "mount" tape drives. They do not
have a file system on them, so mounting doesn't apply.  You simply insert a
tape and point the software at the device.  For example, to use tar to backup
everything except /proc to /dev/st0:

tar -c -v --exclude /proc/* / > /dev/st0

You might also be interested in reading the man pages for mt.

Hope this helps.

-Bill

 
 
 

tape backups, scsi tape drive?

Post by Andrei Ivan » Sat, 28 Oct 2000 06:47:40



> ok I have a scsi tape drive install, the scsi driver loaded (st) but how do
> I do this, I have tried mounting the following:
> /dev/tape, /dev/st0 nothing, any help would be appreciated...thanks

Those are character devices ==> non-mountable. Read man pages devoted
to 'dump' and 'restore', 'mt', 'dd', 'tar' and 'cpio'. Visit this site:

        http://www.backupcentral.com/

--
andrei

 
 
 

tape backups, scsi tape drive?

Post by NDQ » Sat, 28 Oct 2000 16:39:34




> >ok I have a scsi tape drive install, the scsi driver loaded (st) but how do
> >I do this, I have tried mounting the following:
> >/dev/tape, /dev/st0 nothing, any help would be appreciated...thanks

You can not mount a Tape !!!

Quote:

> I guess this qualifies as a FAQ...  you don't "mount" tape drives. They do not
> have a file system on them, so mounting doesn't apply.  You simply insert a
> tape and point the software at the device.  For example, to use tar to backup
> everything except /proc to /dev/st0:

> tar -c -v --exclude /proc/* / > /dev/st0

Or :
# tar cf /dev/st0 /my/dir/to/backup

--
NGUYEN-DAI Quy