View previous topic :: View next topic |
Author |
Message |
.:deadhead:. Advocate
Joined: 25 Nov 2003 Posts: 2963 Location: Milano, Italy
|
Posted: Wed Aug 18, 2004 9:48 am Post subject: [HW] Tape: perche ti riavvolgi? [RISOLTO] |
|
|
Ho il mio bel tape DDS4 che ad ogni scrittura, si riavvolge...
Alcune info sul soggetto:
Controlles e tape indo dal dmesg
Code: | Attached devices:
scsi0:A:1:0: Tagged Queuing enabled. Depth 32
scsi1 : Adaptec AIC7XXX EISA/VLB/PCI SCSI HBA DRIVER, Rev 6.2.36
<Adaptec 3960D Ultra160 SCSI adapter>
aic7899: Ultra160 Wide Channel B, SCSI Id=7, 32/253 SCBs
(scsi1:A:6): 80.000MB/s transfers (40.000MHz, offset 32, 16bit)
Vendor: ARCHIVE Model: Python 06408-XXX Rev: 9100
Type: Sequential-Access ANSI SCSI revision: 03
st: Version 20040403, fixed bufsize 32768, s/g segs 256
Attached scsi tape st0 at scsi1, channel 0, id 6, lun 0
st0: try direct i/o: yes (alignment 512 B), max page reachable by HBA 1048575 |
mt status Code: | SCSI 2 tape drive:
File number=0, block number=0, partition=0.
Tape block size 512 bytes. Density code 0x26 (DDS-4 or QIC-4GB).
Soft error count since last status=0
General status bits on (41010000):
BOT ONLINE IM_REP_EN |
all'inserimento della cassetta:
Code: | st0: Block limits 1 - 16777215 bytes. |
Il tape funzione, non ha alcun problema, ed anche la cassettina non è stata martoriata più di tanto [avrà alle spalle al max 3 mesi di backup giornalieri].
L'altro giorno mi sono documentato un po' di più su come eseguire backups usando il tape ed ho realizzato che potevo salvare più backup sullo stesso nastro. Non lo sapevo
Tutto contento faccio le mie prove
Code: | mt rewind
tar cf /dev/st0 pippo
tar cf /dev/st0 pluto
mt rewind
tar tvf /dev/st0 |
mi dà l'output della cartella pluto!
Code: | mt rewind
tar cf /dev/st0 pippo
mt tell
(output)At block 0 |
Perchè? Perchè alla fine della creazione del tar di pippo torna indietro?
Avete qualche idea/suggerimento/esorcismo? Oppure ho capito male io ed il mio tape è giusto e normale che si comporti così?
update
mt status Code: | SCSI 2 tape drive:
File number=0, block number=0, partition=0.
Tape block size 512 bytes. Density code 0x26 (DDS-4 or QIC-4GB).
Soft error count since last status=0
General status bits on (41010000):
BOT ONLINE IM_REP_EN |
Leggendo qui mi è venuto un dubbio...
Cosa vuol dire quel BOT di output all mt status? Il tipo del link sopra infatti, ha il mio stesso tape [rev differente, ma non credo che cambi molto] e dal suo mex a lui il tape funzia correttamente, tanto che riesce a fare fsf per muoversi da un archivio all'altro...
Sapete cosa vuol dire quel BOT o come si può rimuovere?
thanks
.:deadhead:. _________________ Proudly member of the Gentoo Documentation Project: the Italian Conspiracy !
Last edited by .:deadhead:. on Wed Aug 18, 2004 12:32 pm; edited 4 times in total |
|
Back to top |
|
|
morellik l33t
Joined: 03 Feb 2003 Posts: 629 Location: Firenze
|
Posted: Wed Aug 18, 2004 10:38 am Post subject: Re: [HW] Tape DDS4: perche ti riavvolgi? |
|
|
.:deadhead:. wrote: |
Code: | mt rewind
tar cf /dev/st0 pippo
tar cd /dev/st0 pluto
mt rewind
tar tvf /dev/st0 |
|
Non capisco il tar cd. Dalla man page del tar l'opzione -d serve a trovare
le differenze tra l'archivio e il file system e -c crea un nuovo archivio. L'opzione corretta per appendere e' -r.
Code: |
tar cf /dev/st0 pippo Inizializza il tape e fa il backup di pippo
tar rf /dev/st0 pluto Appende alla fine del backup il file o la directory pluto
|
Ciauz
morellik |
|
Back to top |
|
|
.:deadhead:. Advocate
Joined: 25 Nov 2003 Posts: 2963 Location: Milano, Italy
|
Posted: Wed Aug 18, 2004 10:42 am Post subject: Re: [HW] Tape DDS4: perche ti riavvolgi? |
|
|
morellik wrote: | Non capisco il tar cd. | Errore di battitura: era tar cf come il comando sopra, ora correggo.
Il mio obiettivo cmq è avere più tar sullo stesso tape.
Grazie per avermi segnalato l'errore _________________ Proudly member of the Gentoo Documentation Project: the Italian Conspiracy ! |
|
Back to top |
|
|
morellik l33t
Joined: 03 Feb 2003 Posts: 629 Location: Firenze
|
Posted: Wed Aug 18, 2004 10:48 am Post subject: |
|
|
Ok. Ma ricorda che l'opzione -c inizializza il tape in ogni caso. Per cui non lo puoi
usare per appendere ma solo la prima volta che salvi un archivio su un tape nuovo
o se vuoi riutilizzare un tape usato riscrivendone il contenuto.
Per appendere devi usare l'opzione -r.
Ciauz
morellik |
|
Back to top |
|
|
.:deadhead:. Advocate
Joined: 25 Nov 2003 Posts: 2963 Location: Milano, Italy
|
|
Back to top |
|
|
.:deadhead:. Advocate
Joined: 25 Nov 2003 Posts: 2963 Location: Milano, Italy
|
Posted: Wed Aug 18, 2004 12:34 pm Post subject: |
|
|
Effettivamente, come suggersice la guida di tar, accedendo tape tramite il device /dev/$nomedevice ad ogni fine scrittura si riavvolge.
Se invece si accede tramite /dev/n$nomedevice non si riavvolge!
Nel mio caso è bastato usare /dev/nst0 ed ora tutto funzia come voglio!
yeppa! _________________ Proudly member of the Gentoo Documentation Project: the Italian Conspiracy ! |
|
Back to top |
|
|
|