管理磁盘分区之fdisk详解

Mozatr的不定期更新,处于学习阶段的Mozart,愿不断分享,不断进步。管理磁盘分区之fdisk详解

此次分享一个重要的管理分区命令:fdisk ,我们一一阐述。

(一)分区

首先我们了解下什么是分区,分区是将一个硬盘驱动器分成若干个逻辑驱动器,分区是把硬盘连续的区块当做一个独立的磁盘使用。分区表是一个硬盘分区的索引,分区的信息都会写进分区表。

分区的优点:

    (1)优化I/O性能

    (2)实现磁盘空间配额限制增加磁盘空间使用效率

    (3)提高修复速度

    (4)隔离系统和程序

    (5)安装多个OS  

    (6)采用不同文件系统

    (7)防止数据丢失

等等

(二)分区机制

其次在Linux系统中有MBRGPT两中分区机制,其中MBR的使用比较多,但是有限制。GPT是比MBR更新的一个分区机制。

两者的区别:

    MBRMaster Boot Record)主引导记录,是传统的分区机制,应用于绝大多数使用BIOSPC设备。

    MBR支持32位和64位系统。

    MBR支持分区数量有限。

    MBR只支持不超过2T的硬盘,超过2T的硬盘将只能用2T空间(有第三方解决方法)。

    GPTGUID Partition Table)全局唯一标识分区表,是一个较新的分区机制,解决了MBR很多缺点。

    支持超过2T的磁盘(64位寻址空间)。fdisk最大只能建立2TB大小的分区,创建一个大于2TB的分区使用parted

    向后兼容MBR

    必须在支持uEFI的硬件上才能使用(Intel提出,用于取代BIOS)。

    必须使用64位系统。

    MacLinux系统都能支持GPT分区格式。

    Windows 7/8 64bitWindows Server 2008 64bit支持GPT

总得来说GPTMBR更先进,但是MBR的兼容性比GPT要好。

(三)fdisk 分区管理命令

重点接踵而至:接下来我们对fdisk命令管理磁盘进行详解:

fdisk是对基于MBR机制分区的管理磁盘命令

1 fdisk -l [-u -c …] [disk] 查看磁盘分区情况

CentOS6版本下:

[root@centos6 ~]# fdisk -l /dev/sda     #默认以nondos模式列出磁盘情况
Disk /dev/sda: 214.7 GB, 214748364800 bytes       #磁盘总大小
255 heads, 63 sectors/track, 26108 cylinders          #磁盘“三围”,heads 磁头数 sectors/track 扇区/每磁道 cylinders 柱面数
Units = cylinders of 16065 * 512 = 8225280 bytes   #单位:柱面以及柱面的大小(字节)
Sector size (logical/physical): 512 bytes / 512 bytes   #扇区大小512字节(固定)
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x0004b712

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1         131     1048576   83  Linux
Partition 1 does not end on cylinder boundary.   #提示分区1没有在柱面边界结束   (nondos模式与dos模式的区别处)
/dev/sda2             131        6658    52428800   83  Linux
/dev/sda3            6658       13185    52428800   83  Linux
/dev/sda4           13185       26109   103808000    5  Extended
/dev/sda5           13186       13447     2097152   82  Linux swap / Solaris
#具体的分区情况,以柱面为分割
[root@centos6 ~]# fdisk -lc /dev/sda   #以dos模式列出
.........
   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1         131     1048576   83  Linux    
/dev/sda2             131        6658    52428800   83  Linux
/dev/sda3            6658       13185    52428800   83  Linux
/dev/sda4           13185       26109   103808000    5  Extended
/dev/sda5           13186       13447     2097152   82  Linux swap / Solaris
[root@centos6 ~]# fdisk -lu /dev/sda   #具体分区情况以字节列出
Disk /dev/sda: 214.7 GB, 214748364800 bytes
255 heads, 63 sectors/track, 26108 cylinders, total 419430400 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 identifier: 0x0004b712
   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *        2048     2099199     1048576   83  Linux
Partition 1 does not end on cylinder boundary.
/dev/sda2         2099200   106956799    52428800   83  Linux
/dev/sda3       106956800   211814399    52428800   83  Linux
/dev/sda4       211814400   419430399   103808000    5  Extended
/dev/sda5       211818496   216012799     2097152   82  Linux swap / Solaris

CentOS7版本下:

[root@localhost ~]#fdisk -l /dev/sda  #默认nondos模式列出磁盘情况,具体内容与CentOS6相似,具体分区情况以字节为分割
.......
   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *        2048     1953791      975872   83  Linux
/dev/sda2         1953792    99608575    48827392   83  Linux
[root@localhost ~]#fdisk -l -c=dos /dev/sda   #以dos模式列出磁盘情况
......
   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *        2048     1953791      975872   83  Linux
Partition 1 does not end on cylinder boundary.
/dev/sda2         1953792    99608575    48827392   83  Linux
........
[root@localhost ~]#fdisk -l -c=dos -u=cylinder /dev/sda   #具体分区情况以柱面为分割列出
   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1         122      975872   83  Linux
Partition 1 does not end on cylinder boundary.
/dev/sda2             122        6201    48827392   83  Linux

补充知识:对于IDE硬盘,每块盘有一个设备名:对应于主板的四个IDE接口,设备名依次为:/dev/hda,/dev/hdb,/dev/hdc,/dev/hdd等,

     如果还有IDE Raid卡,则依次为:/dev/hde,/dev/hdf,/dev/hdg,/dev/hdh

     对于SCSI硬盘,则设备名依次为/dev/sda,/dev/sdb…等等

2fdisk device 管理具体分区

(Centos7下

fdisk device

进入交互模式

常用子命令:

帮助 建立新分区 删除分区 p 预览分区信息
转换分区类型 将指定分区设置/取消为活动分区 L/l 查看分区类型 重建分区表
验证分区表,显示剩余没有被分区划分的扇区数量 创建GPT格式的分区(不建议使用fdisk创建GPT分区) 退出不保存 退出并保存,不保存,所有的修改都不生效

示例:

[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): 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: 0xd0fc70a4

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1            2048     2099199     1048576   83  Linux

Command (m for help): n    #创建新分区
Partition type:
   p   primary (1 primary, 0 extended, 3 free)   #创建主分区
   e   extended     #创建扩展分区
Select (default p): p
Partition number (2-4, default 2):    #默认依次创建
First sector (2099200-104857599, default 2099200):    #默认从上一分区结束空间开始
Using default value 2099200
Last sector, +sectors or +size{K,M,G} (2099200-104857599, default 104857599): +1G    #默认分取剩余全部空间,可以以扇区或指定大小分取空间
Partition 2 of type Linux and of size 1 GiB is set

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: 0xd0fc70a4

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1            2048     2099199     1048576   83  Linux
/dev/sdb2         2099200     4196351     1048576   83  Linux

Command (m for help): w     #保存并退出
The partition table has been altered!   #显示分区表已经修改

Calling ioctl() to re-read partition table.     #显示分区情况已经同步到磁盘,分区完成。
Syncing disks.

fdisk命令使用注意事项:

1fdisk命令只有root用户权限才能够运行;

2)使用fdisk -l 可以实时列出所有安装的磁盘及其分区信息;

3)使用fdisk /dev/sdb 可以对目标磁盘进行交互式分区操作;

(4)查看分区实时更新信息:cat /proc/partitions

(5)管理分区之后需要使用partprobe(CentOS7)命令让内核更新分区信息,否则需要重启才能识别新的分区或者参看(6);(CentOS6中partprobe命令存在bug)

(6)通知内核重新读取硬盘分区表(不用重启) (CentOS6/7通用)

    新增分区用 

    partx -a DEVICE 

    删除分区用

    partx -d –nr M-N DEVICE

示例:当对系统所在磁盘进行添加删除分区时,会提示:

WARNING: Re-reading the partition table failed with error 16: Device or resource busy.
The kernel still uses the old table. The new table will be used at
the next reboot or after you run partprobe(8) or kpartx(8)
Syncing disks.   #无法同步分区表

此时,可以选择重启电脑或者进行如下操作(CentOS6/7通用):

对于添加分区:

[root@localhost ~]#partx -a /dev/sda       #告诉内核当前磁盘分区情况
#同步完成

对于删除分区:

[root@localhost ~]#partx -d --nr n /dev/sda    #n:删除的分区号 支持范围更新n-m

fdisk命令到此已全部介绍完毕,以上示例均亲测有效,不足之处请大家多多谅解,同时欢迎大佬指教。管理磁盘分区之fdisk详解管理磁盘分区之fdisk详解管理磁盘分区之fdisk详解

PS:博文写到最后,只想说一句话:第一次感觉英语这么有用!!!

原创文章,作者:Mozart,如若转载,请注明出处:http://www.178linux.com/84971

(7)
MozartMozart
上一篇 2017-08-19
下一篇 2017-08-19

相关推荐

  • 高可用keepalived

    21.高可用之keepalived                keepalived实现wrrp热网关备份:        配置网关上的keepalived,配置文件如下         …

    2017-05-15
  • 107-tomcat

    一.编程语言基础  1.1 编程语言: 硬件级:微码编程,汇编语言 系统级:C,C++,…

    2016-12-02
  • 人志建,则无敌—if、case练习

    马哥21期网络班-9周博客作业 1、写一个脚本,判断当前系统上所有用户的shell是否为可登录shell(即用户的shell不是/sbin/nologin);分别这两类用户的个数;通过字符串比较来实现; #!/bin/bash for i in `cut -d: -f7 /etc/passwd`;&…

    Linux干货 2016-09-05
  • cut命令练习总结

    cut命令的作用是实现文本内容的切割,原内容或者原文件不受影响。   cut小练习:                       2016年 07月 …

    Linux干货 2016-07-22
  • 系统无法正常启动的解决之道

    先来看下配置文件的格式: [root@centos6 ~]# uname -r 2.6.32-642.el6.x86_64 [root@centos6 ~]# cat /boot/grub/grub.conf  # Note that you do&…

    Linux干货 2016-09-19
  • N25_第三周作业

    1、列出当前系统上所有已经登录的用户的用户名,注意:同一个用户登录多次,则只显示一次即可。 [root@aio ~]# who|cut -d" " -f1|uniq root 2、取出最后登录到当前系统的用户的相关信息。 [root@aio ~]# who| …

    Linux干货 2016-12-19