linux系统使用fdisk进行磁盘管理

linux磁盘主流的分区机制有两种: MBR和GPT
fdisk是MBR分区机制中磁盘管理方式。
MBR机制磁盘分区的概念:一个磁盘最多可以分为4个主分区,其中我们可以把任意的主分区拿出来做成扩展分区,在扩展分区中增加逻辑分区。
命令如下:(分区操作是在root用户下进行的)
fdisk -l :查看当前磁盘分区情况。
fdisk /dev/sda :对sda磁盘进行分区操作。然后输入 m 查看帮助命令。
命令如下:
a toggle a bootable flag
b edit bsd disklabel
c toggle the dos compatibility flag
d delete a partition
g create a new empty GPT partition table
G create an IRIX (SGI) partition table
l list known partition types
m print this menu
n add a new partition
o create a new empty DOS partition table
p print the partition table
q quit without saving changes
s create a new empty Sun disklabel
t change a partition’s system id
u change display/entry units
v verify the partition table
w write table to disk and exit
x extra functionality (experts only)

主要的几个命令:
n 增加新的分区
p 展示当前分区情况
t 修改分区类型
w 分区完毕后输入 w 保存分区设置并退出

退出后 输入fdisk -l 查看分区情况,有时候还会显示老的分区情况,这时候要输入partprobe 命令更新让内核更新分区信息即可。

你可能感兴趣的:(linux基础)