728x90
안녕하세요
2024.02.02 - [Linux(리눅스)/VMware_RHEL] - VMware RHEL 6.9 fdisk 파티션 생성 및 마운트 1
2024.02.05 - [Linux(리눅스)/VMware_RHEL] - VMware RHEL 6.9 fdisk 파티션 생성 및 마운트 2
기존 파티션 생성에 이어 제거하는 방법을 알아보겠습니다.
MBR 디스크 파티션 제거하기 [5단계]
1. 제거할 파티션이 포함된 디스크 지정
[root@localhost ~]# fdisk /dev/sdb Welcome to fdisk (util-linux 2.23.2). Changes will remain in memory only, until you decide to write them. Be careful before using the write command. Command (m for help): |
2. 삭제할 파티션의 번호를 확인
p를 입력하여 fdisk에서 디스크 및 해당 파티션 정보를 표시합니다.
Command (m for help): p Disk /dev/sdb: 53.7 GB, 53687091200 bytes, 104857600 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk label type: dos Disk identifier: 0x5f316181 Device Boot Start End Blocks Id System /dev/sdb1 2048 20973567 10485760 82 Linux swap / Solaris /dev/sdb2 20973568 31459327 5242880 83 Linux |
3. 파티션 삭제
d를 입력하여 파티션 제거를 시작하고 제거할 파티션 번호를 입력합니다.
Command (m for help): d Partition number (1,2, default 2): 2 Partition 2 is deleted |
4. 파티션 테이블 변경 사항 저장
w를 입력하여 파티션 제거를 완료 및 저장합니다.
Command (m for help): w The partition table has been altered! Calling ioctl() to re-read partition table. Syncing disks. |
5. 커널이 새 파티션 테이블을 다시 읽음
[root@localhost ~]# partprobe /dev/sdb [root@localhost ~]# lsblk NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT sda 8:0 0 100G 0 disk ├─sda1 8:1 0 300M 0 part /boot ├─sda2 8:2 0 2G 0 part [SWAP] └─sda3 8:3 0 97.7G 0 part / sdb 8:16 0 50G 0 disk └─sdb1 8:17 0 10G 0 part sr0 11:0 1 1024M 0 rom |
728x90
반응형
'Linux(리눅스) > VMware_RHEL' 카테고리의 다른 글
gdisk로 GPT 파티션 제거하기 (0) | 2024.02.10 |
---|---|
gdisk로 GPT 파티션 만들기 (0) | 2024.02.08 |
VMware RHEL 6.9 fdisk 파티션 생성 및 마운트 2 (0) | 2024.02.05 |
VMware RHEL 6.9 fdisk 파티션 생성 및 마운트 1 (1) | 2024.02.02 |
VMware에 하드 디스크 추가하기 (0) | 2024.01.31 |