1、给主机添加一块新硬盘sdb(也可用原有的sda进行操做)linux
2、步骤
1.查看现有分区centos
[19:34:36 root@centos7 ~]#lsblk NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT sda 8:0 0 200G 0 disk ├─sda1 8:1 0 1G 0 part /boot ├─sda2 8:2 0 100G 0 part / ├─sda3 8:3 0 50G 0 part /data ├─sda4 8:4 0 1K 0 part └─sda5 8:5 0 3G 0 part [SWAP] sdb 8:16 0 20G 0 disk sdc 8:32 0 20G 0 disk sr0 11:0 1 10G 0 rom /run/media/root/CentOS 7 x86_64
2.查看fdisk命令帮助bash
[08:48:17 root@centos7 ~]#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): m //输入m查看帮助 Command action 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 partitions system id //更改分区系统id u change display/entry units v verify the partition table w write table to disk and exit //保存并退出 x extra functionality (experts only)
3.开始建立分区ide
Command (m for help): n //建立新分区 Partition type: //分区类型 p primary (0 primary, 0 extended, 4 free) e extended Select (default p): //默认主分区 Using default response p Partition number (1-4, default 1): //分区编号,默认1 First sector (2048-41943039, default 2048): //起始字节数 Using default value 2048 Last sector, +sectors or +size{K,M,G} (2048-41943039, default 41943039): +1G //建立1G大小的新分区 Partition 1 of type Linux and of size 1 GiB is set Command (m for help): P //查看建立的分区 Disk /dev/sdb: 21.5 GB, 21474836480 bytes, 41943040 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: 0xfd655652 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): Using default response p Partition number (2-4, default 2): First sector (2099200-41943039, default 2099200): 2300000 //此处跳过起始字节号 Last sector, +sectors or +size{K,M,G} (2300000-41943039, default 41943039): 2500000 //终止字节号 Partition 2 of type Linux and of size 97.7 MiB is set Command (m for help): n //继续建立新分区 Partition type: p primary (2 primary, 0 extended, 2 free) e extended Select (default p): Using default response p Partition number (3,4, default 3): First sector ('2099200'-41943039, default 2099200): //此处起始字节已有变化 Using default value 2099200 Last sector, +sectors or +size{K,M,G} (2099200-2299999, default 2299999): +2G //此处要建立的分区大小已被限制,掉进前面跨过的"夹缝" Value out of range. //显示超出范围,但磁盘空间还剩不少 Last sector, +sectors or +size{K,M,G} (2099200-2299999, default 2299999): Using default value 2299999 Partition 3 of type Linux and of size 98 MiB is set Command (m for help): p Disk /dev/sdb: 21.5 GB, 21474836480 bytes, 41943040 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: 0xfd655652 Device Boot Start End Blocks Id System /dev/sdb1 2048 2099199 1048576 83 Linux /dev/sdb2 2300000 2500000 100000+ 83 Linux /dev/sdb3 2099200 2299999 100400 83 Linux Partition table entries are not in disk order //分区表条目不按磁盘顺序排列
(若要避免这种状况发生,建立分区时尽可能使字节号连续,中间不要有跨越)
4.保存退出,查看分区已创建好ui
Command (m for help): w //保存并退出 The partition table has been altered! Calling ioctl() to re-read partition table. Syncing disks. [08:53:53 root@centos7 ~]#lsblk NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT sda 8:0 0 200G 0 disk ├─sda1 8:1 0 1G 0 part /boot ├─sda2 8:2 0 100G 0 part / ├─sda3 8:3 0 50G 0 part /data ├─sda4 8:4 0 1K 0 part └─sda5 8:5 0 3G 0 part [SWAP] sdb 8:16 0 20G 0 disk ├─sdb1 8:17 0 1G 0 part ├─sdb2 8:18 0 97.7M 0 part //分区已建立成功 └─sdb3 8:19 0 98M 0 part sdc 8:32 0 20G 0 disk sr0 11:0 1 10G 0 rom /run/media/root/CentOS 7 x86_64