Server관련/Sever(OS)

linux에 HDD추가법 + Full Backup

saltdoll 2010. 7. 21. 10:10
반응형

오랜만에 하니 가물~가물~해서 메모해본다.

 

1. demsg로 하드디스크 확인 (#dmesg | grep sd   sata의 경우 sda로 나타난다.)

2. fdisk 파티션 작업 ( #fdisk /dev/sda 이후 n으로 새로운 파티션추가, w로 저장.)

3. mkfs.ext3 /dev/sda1 로 포멧 ( #mkfs.ext3 /dev/sda1 )

4. mkdir 연결한디렉토리 ( #mkdir /home2 )

5. vi /etc/fstab 추가 ( /dev/sdb1    /home2      ext3    defaults        1 3   )

6. reboot 작업

 

* 작업5번의 1 3은 1은 리눅스 파일타입, 3은 3번째로 체크검사 하겠다는 의미.



상단 1.번 작업으로 추가된 디스크 찾기

1. fdisk -l     ==> 디스크 내용 보여주기.

[root@tnblog home2]# fdisk -l   <== 디스크 확인

Disk /dev/sda: 320.0 GB, 320072933376 bytes
255 heads, 63 sectors/track, 38913 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1          13      104391   83  Linux
/dev/sda2              14       38913   312464250   8e  Linux LVM

Disk /dev/sdb: 160.0 GB, 160041885696 bytes    <== 추가된 디스크
255 heads, 63 sectors/track, 19457 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

Device Boot      Start         End      Blocks   Id  System
/dev/sdb1   *           1       19457   156288321   83  Linux     <== 마운트 포인트
[root@tnblog home2]# mount /dev/sdb1 /home2




NFS파일 초기 자동 mount하기 위한 fstab설정하기

10.115.150.133:/data    /data                   nfs     bg,soft         0 1

Linux NFS를 사용하려면 <-- NFS사용방법 관련 포스트






Full Backup 하기

cd /

mkdir backups

cd backups


vi fullbackup.sh


[백업] fullbackup.sh 내용

tar -cvpf /backups/fullbackup.tar --directory=/ --exclude=proc --exclude=sys --exclude=dev/pts --exclude=backups .

c : create backup file

v : verbose output command

p : preserves file permissions

f : fie which follows next in the command


exclude예 :

 --exclude=/proc

not be the leading / (slash) character in front the directory names. 


[복원] 복원명령

tar -xvpf /fullbackup.tar



압축해서 백업하기

tar -zcvpf /backups/fullbackup.tar.gz --directory=/ --exclude=proc --exclude=sys --exclude=dev/pts --exclude=backups .

복원하기

tar -zxvpf /fullbackup.tar.gz


출처:  http://www.aboutdebian.com/tar-backup.htm



반응형
도움이 되셨다면 하트모양의 "♡ 공감"을 눌러주시면 큰 격려가 됩니다.
(로그인하지 않으셔도 가능)