2007. 11. 1. 17:39 Unix/Linux
리눅스에서 DAT사용법
Linux 에서 DAT 사용법
SCSI controller 를 linux 에서 인식시키는 방법.
modprobe <SCSI module 이름>
예: modprobe initio
SCSI controller 및 연결된 장비 보는 방법.
J:~ # cat /proc/scsi/scsi
Attached devices:
Host: scsi0 Channel: 00 Id: 05 Lun: 00
Vendor: HP Model: C5683A Rev: C005
Type: Sequential-Access ANSI SCSI revision: 02
혹은 dmesg 명령.
scsi0 : Initio INI-9X00U/UW SCSI device driver; Revision: 1.03g
Vendor: HP Model: C5683A Rev: C005
Type: Sequential-Access ANSI SCSI revision: 02
st: Version 20030403, bufsize 32768, max init. bufs 4, s/g segs 16
Attached scsi tape st0 at scsi0, channel 0, id 5, lun 0
st0: Block limits 1 - 16777215 bytes.
mt 사용법.
mt –f /dev/st0 status (첫번째 tape 장비 상태 보는 법)
mt –f /dev/st0 eject (첫번째 tape 장비안의 tape 꺼내기)
man mt 참고할 것.
tar 사용법.
tar cvf /dev/st0 /backup (/backup 을 tape 에 기록)
tar tvf /dev/st0 (tape 안의 내용을 봄)
tar xvf /dev/st0 (현재 folder 에 tape 내용을 복구)
man tar 참고할 것.
참고 문서: http://kldp.org/KoreanDoc/TapeDrive-KLDP
출처 : http://cafe.naver.com/lto/31