注:在工作中有时候磁盘空间不足了免不了是需要给服务器增加硬盘的 来增大分区。
现在用虚拟机来模拟一下案例
PS:分区分为 1.主分区 2.扩展分区 3.逻辑分区
1.一块磁盘 主分区最多4个
2.扩展分区下面是分逻辑分区 逻辑分区没有分区数量限制 逻辑分区要挂在扩展分区之下
命令描述`
针对磁盘进行分区
命令语法
fdisk [磁盘名称] 进行分区
fdisk -l 查看磁盘
案例一:增加一块磁盘 并且进行分区
先在虚拟机上增加一块10G的硬盘,使用默认即可,添加之后重新启动机器
[root@localhost ~]# fdisk -l PS:查看磁盘
磁盘 /dev/sda:21.5 GB, 21474836480 字节,41943040 个扇区
Units = 扇区 of 1 * 512 = 512 bytes
扇区大小(逻辑/物理):512 字节 / 512 字节
I/O 大小(最小/最佳):512 字节 / 512 字节
磁盘标签类型:dos
磁盘标识符:0x000a8ebd
设备 Boot Start End Blocks Id System
/dev/sda1 * 2048 411647 204800 83 Linux
/dev/sda2 411648 4605951 2097152 82 Linux swap / Solaris
/dev/sda3 4605952 41943039 18668544 83 Linux
磁盘 /dev/sdb:10.7 GB, 10737418240 字节,20971520 个扇区 PS这是新的磁盘
Units = 扇区 of 1 * 512 = 512 bytes
扇区大小(逻辑/物理):512 字节 / 512 字节
I/O 大小(最小/最佳):512 字节 / 512 字节
[root@localhost ~]#
[root@localhost ~]# fdisk /dev/sdb ps:限制分区
欢迎使用 fdisk (util-linux 2.23.2)。
更改将停留在内存中,直到您决定将更改写入磁盘。
使用写入命令前请三思。
Device does not contain a recognized partition table
使用磁盘标识符 0x981039b8 创建新的 DOS 磁盘标签。
命令(输入 m 获取帮助):m
命令操作
a toggle a bootable flag
b edit bsd disklabel
c toggle the dos compatibility flag
d delete a partition PS:删除分区
g create a new empty GPT partition table
G create an IRIX (SGI) partition table
l list known partition types
m print this menu PS:显示帮助文档
n add a new partition ps:新增加一个分区
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 ps:保存
x extra functionality (experts only)
命令(输入 m 获取帮助):
命令(输入 m 获取帮助):n
Partition type:
p primary (0 primary, 0 extended, 4 free)
e extended
Select (default p):
Select (default p): p
分区号 (1-4,默认 1):1
起始 扇区 (2048-20971519,默认为 2048):
将使用默认值 2048 PS:使用默认即可
Last 扇区, +扇区 or +size{K,M,G} (2048-20971519,默认为 20971519):+8G PS:设置为8个G
分区 1 已设置为 Linux 类型,大小设为 8 GiB
命令(输入 m 获取帮助):p
磁盘 /dev/sdb:10.7 GB, 10737418240 字节,20971520 个扇区
Units = 扇区 of 1 * 512 = 512 bytes
扇区大小(逻辑/物理):512 字节 / 512 字节
I/O 大小(最小/最佳):512 字节 / 512 字节
磁盘标签类型:dos
磁盘标识符:0xc89ac830
设备 Boot Start End Blocks Id System
/dev/sdb1 2048 16779263 8388608 83 Linux
命令(输入 m 获取帮助):
命令(输入 m 获取帮助):w
The partition table has been altered!
Calling ioctl() to re-read partition table.
正在同步磁盘。
[root@localhost ~]#
[root@localhost ~]# fdisk -l
磁盘 /dev/sda:21.5 GB, 21474836480 字节,41943040 个扇区
Units = 扇区 of 1 * 512 = 512 bytes
扇区大小(逻辑/物理):512 字节 / 512 字节
I/O 大小(最小/最佳):512 字节 / 512 字节
磁盘标签类型:dos
磁盘标识符:0x000a8ebd
设备 Boot Start End Blocks Id System
/dev/sda1 * 2048 411647 204800 83 Linux
/dev/sda2 411648 4605951 2097152 82 Linux swap / Solaris
/dev/sda3 4605952 41943039 18668544 83 Linux
磁盘 /dev/sdb:10.7 GB, 10737418240 字节,20971520 个扇区
Units = 扇区 of 1 * 512 = 512 bytes
扇区大小(逻辑/物理):512 字节 / 512 字节
I/O 大小(最小/最佳):512 字节 / 512 字节
磁盘标签类型:dos
磁盘标识符:0xc89ac830
设备 Boot Start End Blocks Id System
/dev/sdb1 2048 16779263 8388608 83 Linux PS:新的磁盘
[root@localhost ~]#
PS:分区其实非常简单 fdisk 磁盘目录 然后根据提示分区即可 这一次 我直接分8个G为一个主分区
本文转自 闪电王 51CTO博客,原文链接:http://blog.51cto.com/sdwaqw/2055985