0. 개요

parted 는 파티션 관리 , 크기 변경 프로그램으로서 파티션 생성, 삭제, 용량변경, 이동, 복사를 지원함.

또한 ext3, ext2, linx-swap, FAT, FAT32 파티션 복사 또는 이동 등을 지원하여 새로운
디스크에 데이터를 복사하기에도 편리.


  1. parted 실행

- 파티션 나누려는 장치를 parted 명령어 실행

[root@myhostname ~]# parted /dev/sdc

GNU Parted 3.1
Using /dev/sdc
Welcome to GNU Parted! Type 'help' to view a list of commands.




2. 디스크 라벨을 GPT로 변경


(parted) mklabel gpt 
                                                    
Warning: The existing disk label on /dev/sdc will be destroyed and all data on this disk will be lost. Do you want to continue?
Yes/No? unit TB                                                           
parted: invalid token: unit

Yes/No? yes
              

  
3. 파티션 생성 

(parted) mkpart primary 0.00TB 5.00TB   



                                  
4. 장비 파티션 구성 출력

(parted) p               
                                                
Model: Seagate BUP BK (scsi)
Disk /dev/sdc: 5001GB
Sector size (logical/physical): 512B/4096B
Partition Table: gpt
Disk Flags:
 



Number  Start   End     Size    File system  Name     Flags
 1      1049kB  5001GB  5001GB               primary


5. 종료 

(parted) quit
Information: You may need to update /etc/fstab.


6. EXT4 파일 시스템 생성

[root@myhostname /]# mkfs.ext4 /dev/sdc1
mke2fs 1.42.9 (28-Dec-2013)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
152621056 inodes, 1220942336 blocks
61047116 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=3370123264
37261 block groups
32768 blocks per group, 32768 fragments per group
4096 inodes per group
Superblock backups stored on blocks:
        32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
        4096000, 7962624, 11239424, 20480000, 23887872, 71663616, 78675968,
        102400000, 214990848, 512000000, 550731776, 644972544
 
Allocating group tables: done                           
Writing inode tables: done                           
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: done    

   
6. 파일 시스템 마운트

[root@myhostname /]# mount -t ext4 /dev/sdc1 /usb


7. 마운트 확인

[root@alpha24 /]# df -h
Filesystem          Size  Used Avail Use% Mounted on
/dev/sda4           275G   32G  243G  12% /
devtmpfs            126G     0  126G   0% /dev
/dev/sdb1           187G   48G  139G  26% /scratch
/dev/sda2           494M  120M  374M  25% /boot
/dev/sda1           198M  9.4M  188M   5% /boot/efi
/dev/sdc1           4.6T   89M  4.3T   1% /usb
 
8. 파일 시스템 마운트 Point 추가

#vi/etc/fstab
/dev/sdc1       /usb    ext4    defaults 1 2

+ Recent posts