4테라 이상 하드 파티셔닝, parted 명령어 정리
알아둘일
2020. 12. 13. 15:11
주로 fdisk 로 하드 파티셔닝을 한다.
하드용량이 크면 parted 를 사용해야 한다.
# parted /dev/sde
GNU Parted 3.2
Using /dev/sde
Welcome to GNU Parted! Type 'help' to view a list of commands.
(parted) p
Model: WDC WD40 EZRZ-00GXCB0 (scsi)
Disk /dev/sde: 4001GB
Sector size (logical/physical): 512B/4096B
Partition Table: msdos
Disk Flags:
Number Start End Size Type File system Flags
(parted) mklabel gpt
Warning: The existing disk label on /dev/sde will be destroyed and all data on this disk will be
lost. Do you want to continue?
Yes/No? y
(parted) p
Model: WDC WD40 EZRZ-00GXCB0 (scsi)
Disk /dev/sde: 4001GB
Sector size (logical/physical): 512B/4096B
Partition Table: gpt
Disk Flags:
Number Start End Size File system Name Flags
(parted) mkpart primary 0 4001GB
Warning: The resulting partition is not properly aligned for best performance.
Ignore/Cancel? i
(parted) p
Model: WDC WD40 EZRZ-00GXCB0 (scsi)
Disk /dev/sde: 4001GB
Sector size (logical/physical): 512B/4096B
Partition Table: gpt
Disk Flags:
Number Start End Size File system Name Flags
1 17.4kB 4001GB 4001GB primary
(parted) q
Information: You may need to update /etc/fstab.
주요명령어를 요약하면
# parted /dev/sde
(parted) p
(parted) mklabel gpt
(parted) mkpart primary 0 4001GB
(parted) q
파티션테이블을 gpt 모드로 바꾸고(mklabel), 파티셔닝하고(mkpart) , 끝.
구글링하기 귀찮아서 정리.
반응형
'알아둘일' 카테고리의 다른 글
맥(MacOS)에서 사파리가 먹통이 된다. (feat SafariBookmarksSyncAgent) (0) | 2021.01.08 |
---|---|
umount 시 target is busy 라고 나올 때 (0) | 2020.12.13 |
맥os 에서 ssh 터널링 사용하기 (use autossh) feat launchctl (0) | 2020.12.12 |
맥os 에서 기본메일앱의 수신받은 메일 첨부파일명이 깨져보일때 (1) | 2020.06.18 |
우분투, 외부에서 접속가능하게 ssh 터널링 설정해본다 (use autossh) (0) | 2020.06.18 |
WRITTEN BY
- 1day1
하루하루 즐거운일 하나씩, 행복한일 하나씩 만들어 가요.
,