硬盘分区及格式化 新建逻辑卷 扩展逻辑卷的大小

本文详细介绍了Linux下硬盘分区、新建逻辑卷、调整分区大小以及扩展逻辑卷的步骤,包括使用fdisk创建分区,通过LVM创建卷组、逻辑卷,以及调整逻辑卷大小并更新文件系统容量。内容涵盖了从基本的分区操作到复杂的LVM管理,适用于系统管理员和运维人员学习。
摘要由CSDN通过智能技术生成

1 案例1:硬盘分区及格式化

1.1 问题

本例要求熟悉硬盘分区结构,使用fdisk分区工具在磁盘 /dev/vdb 上按以下要求建立分区:

  1. 采用默认的 msdos 分区模式
  2. 第1个分区 /dev/vdb1 的大小为 200MiB
  3. 第2个分区 /dev/vdb2 的大小为 2000MiB
  4. 第3个分区 /dev/vdb3 的大小为 1000MiB

完成分区后,能够配置开机自动挂载 /dev/vdb2 分区:

  1. 文件系统类型为 EXT4
  2. 将其挂载到 /mnt/part2 目录

1.2 方案

fdisk分区工具用来建立msdos分区方案,其交互模式中的主要指令如下:

  • m:列出指令帮助
  • p:查看当前的分区表信息
  • n:新建分区
  • d:删除分区
  • t:更改分区标识
  • q:放弃分区更改并退出
  • w:保存对分区表所做的更改

1.3 步骤

实现此案例需要按照如下步骤进行。

步骤一:新建分区表

1)打开fdisk工具,操作磁盘/dev/vdb

  1. [root@server0 ~]# fdisk /dev/vdb
  2. Welcome to fdisk (util-linux 2.23.2).
  3. Changes will remain in memory only, until you decide to write them.
  4. Be careful before using the write command.
  5. Device does not contain a recognized partition table
  6. Building a new DOS disklabel with disk identifier 0x9ac1bc10.
  7. Command (m for help):                         //交互操作提示信息

2)新建第1个分区/dev/vdb1

 
    
  1. Command (m for help): n                                 //新建分区
  2. Partition type:
  3. p primary (0 primary, 0 extended, 4 free)
  4. e extended
  5. Select (default p): p                                 //类型为p(主分区)
  6. Partition number (1-4, default 1): 1                     //分区编号1
  7. First sector (2048-20971519, default 2048):             //起始位置默认
  8. Using default value 2048
  9. Last sector, +sectors or +size{ K,M,G} (2048-20971519, default 20971519): +200M
  10. Partition 1 of type Linux and of size 200 MiB is set     //结束位置+200MiB大小
  11. Command (m for help): p                             //确认当前分区表
  12. .. ..
  13. Device Boot Start End Blocks Id System
  14. /dev/vdb1 2048 411647 204800 83 Linux

3)新建第2个分区/dev/vdb2

  1. Command (m for help): n
  2. Partition type:
  3. p primary (1 primary, 0 extended, 3 free)
  4. e extended
  5. Select (default p): p                                 //类型为p(主分区)
  6. Partition number (2-4, default 2): 2                    //分区编号2
  7. First sector (411648-20971519, default 411648):         //起始位置默认
  8. Using default value 411648
  9. Last sector, +sectors or +size{ K,M,G} (411648-20971519, default 20971519): +2000M
  10. Partition 2 of type Linux and of size 2 GiB is set     //结束位置+2000MiB大小
  11. Command (m for help): p                             //确认当前分区表
  12. .. ..
  13. Device Boot Start End Blocks Id System
  14. /dev/vdb1 2048 411647 204800 83 Linux
  15. /dev/vdb2 411648 4507647 2048000 83 Linux

4)新建第3个分区/dev/vdb3

 
    
  1. Command (m for help): n
  2. Partition type:
  3. p primary (2 primary, 0 extended, 2 free)
  4. e extended
  5. Select (default p): p
  6. Partition number (3,4, default 3): 3
  7. First sector (4507648-20971519, default 4507648):
  8. Using default value 4507648
  9. Last sector, +sectors or +size{ K,M,G} (4507648-20971519, default 20971519): +1000M
  10. Partition 3 of type Linux and of size 1000 MiB is set
  11. Command (m for help): p                             //确认当前分区表
  12. .. ..
  13. Device Boot Start End Blocks Id System
  14. /dev/vdb1 2048 411647 204800 83 Linux
  15. /dev/vdb2 411648 4507647 2048000 83 Linux
  16. /dev/vdb3 4507648 6555647 1024000 83 Linux

5)调整分区类型标识(可选)

将/dev/vdb1的类型(默认为83,表示EXT2/3/4分区)修改为8e(LVM设备):

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值