Linux下为LVM更换硬盘操作

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux下为LVM更换硬盘操作相关的知识,希望对你有一定的参考价值。

参考技术A 在我们使用 Linux 操作系统时,有时我们可能因为硬盘故障、或者需要升级硬盘,这时候我们就需要做更换硬盘的操作。
以下将以 Ubuntu 系统,LVM 分区 作为例子,简单介绍如何给 Linux 系统下 LVM 磁盘分区作更换硬盘操作。

操作大致分为以下几个步骤:
1- 添加新的硬盘到需要更换的 VG卷
2- 迁移旧硬盘的数据到新的硬盘中
3- 检查确认数据
4- 删除旧硬盘

为方便说明,以下为不同硬盘的标记:
旧硬盘 → /dev/sda
新硬盘 → /dev/sdb

其中, /dev/sda 中有一分区 /dev/sda1 ,且当前存在一个 vg_store VG卷,存在一个 store 的 LV 卷。

以上默认假设为新硬盘容量至少大于等于旧硬盘已有的数据容量大小。

完成分区操作后,为新硬盘创建 PV卷

然后将新的物理卷添加到现有的VG卷中

检查PV卷是否已经成功添加,检查新硬盘容量是否满足要求

使用 pvmove 迁移数据

LINUX下为LVM磁盘增加硬盘空间

LINUX下为LVM磁盘增加硬盘空间

 

1,为客户机增加一块新的硬盘

2 重启客户机

3 fdisk -l查看整个磁盘空间

#fdisk -l

 

Disk /dev/sda: 34.4 GB, 34359738368 bytes

255 heads, 63 sectors/track, 4177 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x000b2d34

 

   Device Boot      Start         End      Blocks   Id  System

/dev/sda1   *           1          64      512000   83  Linux

Partition 1 does not end on cylinder boundary.

/dev/sda2              64        4178    33041408   8e  Linux LVM

 

Disk /dev/sdb: 214.7 GB, 214748364800 bytes  //新加的盘硬盘

255 heads, 63 sectors/track, 26108 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x00000000

 

Disk /dev/mapper/VolGroup-lv_root: 30.4 GB, 30396121088 bytes

255 heads, 63 sectors/track, 3695 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x00000000

 

Disk /dev/mapper/VolGroup-lv_swap: 3435 MB, 3435134976 bytes

255 heads, 63 sectors/track, 417 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x00000000


4 pvcreate /dev/sdb将新的硬盘加入物理卷

pvcreate /dev/sdb

  Physical volume “/dev/sdb” successfully created


5 vgextend VolGroup /dev/sdb将新硬盘加入卷组

vgextend VolGroup /dev/sdb

  Volume group “VolGroup” successfully extended


6 为根分区扩散空间lvextend -L +200G /dev/mapper/VolGroup-lv_root

lvextend -L +180G /dev/mapper/VolGroup-lv_root  //180G

lvextend -l +100%FREE /dev/VolGroup-lv_root  //加全部


Extending logical volume lv_root to 208.31 GiB

  Logical volume lv_root successfully resized


7 将之应用resize2fs /dev/VolGroup/lv_root

resize2fs /dev/VolGroup/lv_root


resize2fs 1.41.12 (17-May-2010)

Filesystem at /dev/VolGroup/lv_root is mounted on /; on-line resizing required

old desc_blocks = 2, new_desc_blocks = 14

Performing an on-line resize of /dev/VolGroup/lv_root to 54606848 (4k) blocks.

The filesystem on /dev/VolGroup/lv_root is now 54606848 blocks long.


8 再用DF

H查看空间,已加入

df -h

Filesystem                    Size  Used Avail Use% Mounted on

/dev/mapper/VolGroup-lv_root  206G  5.7G  189G   3% /

tmpfs                         1.9G     0  1.9G   0% /dev/shm

/dev/sda1                     485M   32M  428M   7% /boot


9 其它细节


本文出自 “jinchuang” 博客,请务必保留此出处http://jinchuang.blog.51cto.com/8690689/1844414

以上是关于Linux下为LVM更换硬盘操作的主要内容,如果未能解决你的问题,请参考以下文章

LINUX下为LVM磁盘增加硬盘空间

LVM逻辑卷管理

更换固态硬盘详细流程

服务器更换了一块硬盘需要重新组RAID 如何操作

磁盘阵列更换硬盘后出现“已降级”的问题,如何处理?

720XD服务器怎么更换硬盘