테잎을 이용한 백업스크립트
2010.05.12 03:11
원문 : http://www.ischo.net -- 조인상 // 시스템 엔지니어
Writer : http://www.ischo.net -- ischo // System Engineer in Replubic Of Korea
+++++++++++++++++++++++++++++++++++++++++++++++++++++++
본문 : http://www.ischo.net -- 조인상 //시스템 엔지니어
+++++++++++++++++++++++++++++++++++++++++++++++++++++++
setenv LANG C <-- csh
export LANG C <-- sh (ksh)
## OS Backup Script ##
banner / backup
ufsdump 0ufc /dev/rmt/0n /
banner Tape Eject
mt -f /dev/rmt/0 off
## Data Backup Script ##
banner /backup backup
ufsdump 0ufc /dev/rmt/0n /backup
banner Tape Eject
mt -f /dev/rmt/0 off
ufsrestore ivf /dev/rmt/0
restore> ls
restore> cd usr
restore> ls
restore> exit (quit)
Data Restore
ufsrestore rvf /dev/rmt/0n
cd /....
ufsrestore rvf /dev/rmt/0n
cd /....
ufsrestore rvf /dev/rmt/0n
ufsrestore ivf --> interactive restore<br>
ufsrestore rvf --> full restore <br>
# ufsrestore xvf /dev/rmt/0 ./etc/passwd ./etc/shadow --> 지정한 file만 복구하기 <br>
*** ufsresotre로 복구할때 resotresymtable이 만들어진다. incremental 복구시에 사용되는 이 파일은 복구가 끝나면 지워야 한다.