分区Linux 调整磁盘分区:一步步指导(linux调整磁盘)
在使用Linux系统的时候,磁盘分区是其中一项重要的工作,下面来详细说明一下Linux磁盘调整分区的操作步骤。
1. 首先,我们需要查看当前的分区情况。我们使用命令`fdisk -l`来查看,可以便捷的查看出当前所有的分区。
如:
“`
[root@localhost ~]# fdisk -l
Disk /dev/vdc: 10 GB, 10737418240 bytes, 20971520 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
Disklabel type: dos
Disk identifier: 0xc68e2b9f
Device Boot Start End Blocks Id System
/dev/vdc1 * 2048 20971519 10485376 83 Linux
2. 接下来,我们就可以使用fdisk来进行磁盘分区了。我们首先使用`fdisk /dev/device`来进入fdisk命令。
[root@localhost ~]# fdisk /dev/vdc
Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel
Building a new DOS disklabel. Changes will remain in memory only,
until you decide to write them. After that, of course, the previous
content won’t be recoverable.
Warning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite)
Command (m for help):
3. 接下来我们按照提示开始一步步操作,其实就是按照提示输入相应的字母并确定,以便完成分区。我们可以按照以下步骤进行操作:
- 按下 m键 查看全部可以使用的指令;- 按下 n键 创建新的分区,根据提示输入相应的数字以确定磁盘分区类型;
- 按下 p 键 来查看当前的分区情况;- 按下 w 键 写入数据并更新磁盘分区。
Command (m for help): n
Partition type:
p primary (0 primary, 0 extended, 4 free)
e extended
Select (default p): p
Partition number (1-4, default 1):
First sector (2048-20971519, default 2048):
Using default value 2048
Last sector, +sectors or +size{K,M,G} (2048-20971519, default 20971519): +512M
Command (m for help): w
The partition table has been altered.
4. 最后,我们应该使用`fdisk -l`来查看分区的情况,确保新分区数据正确写入并生效:
[root@localhost ~]# fdisk -l
Disk /dev/vdc: 10 GB, 10737418240 bytes, 20971520 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
Disklabel type: dos
Disk identifier: 0xc68e2b9f
Device Boot Start End Blocks Id System
/dev/vdc1 * 2048 10485760 5242856 83 Linux
以上就是Linux磁盘调整分区的一般操作步骤,集中体现了Linux系统可快速而简单的进行磁盘分区,而不需要复杂的操作,大大简化了Linux系统操作的难度。