Gateway未来科技

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 166|回复: 0

Linux VPS 扩充磁盘(动态添加合并挂载)

[复制链接]

258

主题

270

帖子

819

积分

超级版主

Rank: 8Rank: 8

积分
819
发表于 2017-3-1 01:47:44 | 显示全部楼层 |阅读模式

  Linux操作系统扩充硬盘,此办法挂载硬盘,可把可用的硬盘空间,全部扩充到一个硬盘下,这样的好处就是,硬盘的空间可以利用起来,但坏处就是如果此硬盘分区出问题,就会导致硬盘分区损坏,可能在损坏下的数据就无法恢复了。
  SSH登录到Linux系统
  先检查硬盘分区和挂载情况
  df -hal
485997056.jpg
  fdisk -l
846705389.jpg
  以上我们可以看到,/dev/xvdb有20G硬盘没有分区,接下来就是对/dev/xvdb分区
  fdisk /dev/xvdb
  [root@MyVPS ~]# fdisk /dev/xvdb
  The number of cylinders for this disk is set to 2871.
  There is nothing wrong with that, but this is larger than 1024,
  and could in certain setups cause problems with:
  1) software that runs at boot time (e.g., old versions of LILO)
  2) booting and partitioning software from other OSs
  (e.g., DOS FDISK, OS/2 FDISK)
  输入n新建分区
  Command (m for help): n
  Command action
  e   extended
  p   primary partition (1-4)
  p
  /dev/xvdb中第1个分区
  Partition number (1-4): 1
  First cylinder (1-2871, default 1):
  Using default value 1
  Last cylinder or +size or +sizeM or +sizeK (1-2871, default 2871):
  Using default value 2871
  输入t,改变分区格式为8e (LVM格式)
  Command (m for help): t
  Selected partition 1
  Hex code (type L to list codes): 8e
  Changed system type of partition 1 to 8e (Linux LVM)
  输入w保存退出
  Command (m for help): w
  The partition table has been altered!
  Calling ioctl() to re-read partition table.
  Syncing disks.
  重启机子生效 (可省略)
  reboot
968413531.jpg
  再次运行fdisk -l,我们看到
  xvdb1分区为8e(LVM)格式生效了
  先查看卷组情况,和卷组名称 (注:每种Linux系统的卷组名称都会不一样,接下来的参数也需要随之修改)
  vgs
881153636.jpg
  以上我们看到卷组名称为“VolGroup00”
  创建物理卷,并将物理卷加入到组VolGroup00(注:卷名VolGroup00,因系统不同改变)
  pvcreate /dev/xvdb1
  vgextend VolGroup00 /dev/xvdb1
2764603245.jpg
  查看卷组剩余空间情况
  vgdisplay
1648693741.jpg
  我们看到Free  PE / Size有19.97G空间,那么把19.96G空间扩容到VolGroup00
  (注:为什么这里是扩容19.96G,其实这里并没有19.97G,按单位换算大约在19.96G多点)
  lvresize -L +19.96G /dev/VolGroup00/LogVol00
  resize2fs /dev/VolGroup00/LogVol00
3727535956.jpg
  通过命令查看扩容最后情况
  df -hal
1840104517.jpg
  系统重装后的重装扩展处理!
  重装后,直接执行resize2fs进去动态扩容即可。
  resize2fs /dev/VolGroup00/LogVol00
  PVs missing导致LVM无法重新扩容的解决办法!
  运行vgextend、vgdisplay返回错误:
  Couldn't find device with uuid ************************
  Cannot change VG VolGroup00 while PVs are missing.
  此时可以运行
  vgreduce VolGroup00  --removemissing
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|Comsenz Inc.

GMT+8, 2024-12-23 12:36 , Processed in 0.073005 second(s), 21 queries .

Powered by Discuz! X3.4

© 2001-2013 Comsenz Inc. Templated By 【未来科技 www.veikei.com】设计

快速回复 返回顶部 返回列表