GPT分区

GPT分区

一、介绍

分区模式GPT
GPT,GUID Partition Table
–全局唯一标识分区表
–突破固定大小64字节的分区表限制
–最多可支持128个主分区,最大支持18EB容量
1 EB = 1024 PB = 1024 x 1024 TB

二、案例


parted常用分区指令
–help    //查看指令帮助
–mktable  gpt    //建立指定模式分区表
–mkpart  分区的名称  文件系统类型  start  end
    //指定大小或百分比%作为起始、结束位置
–print   //查看分区表
–rm  序号    //删除指定的分区
–quit   //退出交互环境
//查看块设备
[root@www ~]# lsblk
NAME            MAJ:MIN RM  SIZE RO TYPE MOUNTPOINT
sda               8:0    0   60G  0 disk
├─sda1            8:1    0    1G  0 part /boot
└─sda2            8:2    0   59G  0 part
  ├─centos-root 253:0    0 38.3G  0 lvm  /
  ├─centos-swap 253:1    0    2G  0 lvm  [SWAP]
  └─centos-home 253:2    0 18.7G  0 lvm  /home
sdb               8:16   0   10G  0 disk
├─sdb1            8:17   0    1G  0 part
├─sdb2            8:18   0    1G  0 part
├─sdb3            8:19   0    1G  0 part
├─sdb4            8:20   0    1K  0 part
└─sdb5            8:21   0    1G  0 part
sdc               8:32   0   10G  0 disk
sr0              11:0    1  4.3G  0 rom  /mydvd
[root@www ~]#

// 对sdc进行分区
[root@www ~]# parted /dev/sdc
GNU Parted 3.1
Using /dev/sdc
Welcome to GNU Parted! Type 'help' to view a list of commands.
(parted) mktable gpt    //指定分区模式
(parted) mkpart        //划分新的分区
Partition name?  []? sdb_test 
File system type?  [ext2]? ext4
Start? 0  // 初始点
End? 1G   // 结束点
// 此时会警告,因为我们占用了初始的空间,测试环境中,我们忽视即可
Warning: The resulting partition is not properly aligned for best performance.
Ignore/Cancel?
Ignore/Cancel? Ignore
// 查看分区表信息
(parted) print
Model: VMware, VMware Virtual S (scsi)
Disk /dev/sdc: 10.7GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt
Disk Flags:

Number  Start   End     Size    File system  Name      Flags
 1      17.4kB  1000MB  1000MB               sdb_test

(parted)
// 在进行一次分区

(parted) mkpart
Partition name?  []? sdc_test2
File system type?  [ext2]? ext4
Start? 1G
End? 5G
(parted) print
Model: VMware, VMware Virtual S (scsi)
Disk /dev/sdc: 10.7GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt
Disk Flags:

Number  Start   End     Size    File system  Name       Flags
 1      17.4kB  1000MB  1000MB               sdb_test
 2      1000MB  5000MB  3999MB               sdc_test2

(parted)

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

// 此时我们可以看到分好的区
[root@www ~]# lsblk
NAME            MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
sda               8:0    0    60G  0 disk
├─sda1            8:1    0     1G  0 part /boot
└─sda2            8:2    0    59G  0 part
  ├─centos-root 253:0    0  38.3G  0 lvm  /
  ├─centos-swap 253:1    0     2G  0 lvm  [SWAP]
  └─centos-home 253:2    0  18.7G  0 lvm  /home
sdb               8:16   0    10G  0 disk
├─sdb1            8:17   0     1G  0 part
├─sdb2            8:18   0     1G  0 part
├─sdb3            8:19   0     1G  0 part
├─sdb4            8:20   0     1K  0 part
└─sdb5            8:21   0     1G  0 part
sdc               8:32   0    10G  0 disk
├─sdc1            8:33   0 953.7M  0 part
└─sdc2            8:34   0   3.7G  0 part
sr0              11:0    1   4.3G  0 rom  /mydvd
[root@www ~]#

上一篇:看我出招之:svchost.exe文件删不得


下一篇:STL中stack和queue的用法