linux图形界面扩容lvm,linux下对LVM扩容

linux图形界面扩容lvm,linux下对LVM扩容操作环境:VirtualBox下RedHat6.464位版本扩容原因:/dev/vg_rhel64/lv_root占用率达到100%,导致部分应用无法继续运行操作过程:1.关闭系统,在虚拟机中添加一块10G的磁盘2.查看新添加磁盘对应的名称[root@rhel64~]#fdisk-cul得知磁盘对应名称为/dev/sdc3.给sdc分区,只分一个区sdc1[root@rhel64…

大家好,又见面了,我是你们的朋友全栈君。

操作环境:VirtualBox下RedHat6.4 64位版本

扩容原因:/dev/vg_rhel64/lv_root 占用率达到100%,导致部分应用无法继续运行

操作过程:

1.关闭系统,在虚拟机中添加一块10G的磁盘

2.查看新添加磁盘对应的名称

[root@rhel64 ~]# fdisk -cul 得知磁盘对应名称为 /dev/sdc

3.给sdc分区,只分一个区sdc1

[root@rhel64 ~]# fdisk -cu /dev/sdc

Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel

Building a new DOS disklabel with disk identifier 0xa655ad49.

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): n

Command action

e extended

p primary partition (1-4)

p

Partition number (1-4): 1

First sector (2048-20971519, default 2048):

Using default value 2048

Last sector, +sectors or +size{K,M,G} (2048-20971519, default 20971519):

Using default value 20971519

Command (m for help): p

Disk /dev/sdc: 10.7 GB, 10737418240 bytes

255 heads, 63 sectors/track, 1305 cylinders, total 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

Disk identifier: 0xa655ad49

Device Boot Start End Blocks Id System

/dev/sdc1 2048 20971519 10484736 83 Linux

Command (m for help): w

The partition table has been altered!

Calling ioctl() to re-read partition table.

Syncing disks.

4.在sdc1上创建pv

[root@rhel64 ~]# pvcreate /dev/sdc1

Physical volume “/dev/sdc1” successfully created

5.查看pv的情况

[root@rhel64 ~]# pvdisplay

— Physical volume —

PV Name /dev/sdb2

VG Name vg_rhel64

PV Size 14.51 GiB / not usable 3.00 MiB

Allocatable yes (but full)

PE Size 4.00 MiB

Total PE 3714

Free PE 0

Allocated PE 3714

PV UUID VBVnoj-7R81-0BgJ-j8Tr-nq2W-i84v-xJZlqZ

— Physical volume —

PV Name /dev/sda5

VG Name vg_myvg

PV Size 1.00 GiB / not usable 4.00 MiB

Allocatable yes (but full)

PE Size 4.00 MiB

Total PE 255

Free PE 0

Allocated PE 255

PV UUID CmX1Tx-1LdX-wtRf-qXoX-Myg3-WR5g-klwUg9

— Physical volume —

PV Name /dev/sda6

VG Name vg_myvg

PV Size 1021.00 MiB / not usable 0

Allocatable yes (but full)

PE Size 4.00 MiB

Total PE 255

Free PE 0

Allocated PE 255

PV UUID Q9FgFp-0gHF-KMtK-Vrfa-2f95-eKRg-7bq40d

“/dev/sdc1” is a new physical volume of “10.00 GiB”

— NEW Physical volume —

PV Name /dev/sdc1

VG Name

PV Size 10.00 GiB

Allocatable NO

PE Size 0

Total PE 0

Free PE 0

Allocated PE 0

PV UUID KrvMui-Kzmd-qGdP-SBl6-yYfZ-Q5Y6-PA1Vv0

6.查看系统当前vg的情况

[root@rhel64 ~]# vgdisplay

— Volume group —

VG Name vg_rhel64

System ID

Format lvm2

Metadata Areas 1

Metadata Sequence No 3

VG Access read/write

VG Status resizable

MAX LV 0

Cur LV 2

Open LV 2

Max PV 0

Cur PV 1

Act PV 1

VG Size 14.51 GiB

PE Size 4.00 MiB

Total PE 3714

Alloc PE / Size 3714 / 14.51 GiB

Free PE / Size 0 / 0

VG UUID Yb3iGX-1SdP-MoFz-I4iS-0oDt-NhVD-SE5UAr

— Volume group —

VG Name vg_myvg

System ID

Format lvm2

Metadata Areas 2

Metadata Sequence No 5

VG Access read/write

VG Status resizable

MAX LV 0

Cur LV 1

Open LV 1

Max PV 0

Cur PV 2

Act PV 2

VG Size 1.99 GiB

PE Size 4.00 MiB

Total PE 510

Alloc PE / Size 510 / 1.99 GiB

Free PE / Size 0 / 0

VG UUID x9sUhJ-gQ4c-avxR-daQ1-ceib-VtGF-nvwqv9

7.给vg扩容

[root@rhel64 ~]# vgextend vg_rhel64 /dev/sdc1

Volume group “vg_rhel64” successfully extended

8.查看扩容后vg的情况

[root@rhel64 ~]# vgdisplay

— Volume group —

VG Name vg_rhel64

System ID

Format lvm2

Metadata Areas 2

Metadata Sequence No 4

VG Access read/write

VG Status resizable

MAX LV 0

Cur LV 2

Open LV 2

Max PV 0

Cur PV 2

Act PV 2

VG Size 24.50 GiB

PE Size 4.00 MiB

Total PE 6273

Alloc PE / Size 3714 / 14.51 GiB

Free PE / Size 2559 / 10.00 GiB

VG UUID Yb3iGX-1SdP-MoFz-I4iS-0oDt-NhVD-SE5UAr

— Volume group —

VG Name vg_myvg

System ID

Format lvm2

Metadata Areas 2

Metadata Sequence No 5

VG Access read/write

VG Status resizable

MAX LV 0

Cur LV 1

Open LV 1

Max PV 0

Cur PV 2

Act PV 2

VG Size 1.99 GiB

PE Size 4.00 MiB

Total PE 510

Alloc PE / Size 510 / 1.99 GiB

Free PE / Size 0 / 0

VG UUID x9sUhJ-gQ4c-avxR-daQ1-ceib-VtGF-nvwqv9

9.查看系统当前lv的情况

[root@rhel64 ~]# lvdisplay

— Logical volume —

LV Path /dev/vg_rhel64/lv_root

LV Name lv_root

VG Name vg_rhel64

LV UUID Y2oXR6-yrXx-fetw-GiOl-iHmc-HbOV-fIUc83

LV Write Access read/write

LV Creation host, time rhel64.oracle.com, 2017-11-13 21:47:39 +0800

LV Status available

#open 1

LV Size 12.54 GiB

Current LE 3210

Segments 1

Allocation inherit

Read ahead sectors auto

currently set to 256

Block device 253:0

— Logical volume —

LV Path /dev/vg_rhel64/lv_swap

LV Name lv_swap

VG Name vg_rhel64

LV UUID OuuBWZ-WqMd-kZ5B-ka62-Ifgy-hfD5-6bpdZL

LV Write Access read/write

LV Creation host, time rhel64.oracle.com, 2017-11-13 21:47:42 +0800

LV Status available

#open 1

LV Size 1.97 GiB

Current LE 504

Segments 1

Allocation inherit

Read ahead sectors auto

currently set to 256

Block device 253:1

— Logical volume —

LV Path /dev/vg_myvg/lv_mylv

LV Name lv_mylv

VG Name vg_myvg

LV UUID vFq38A-3mJ1-RRso-2EcI-e9gO-wz2a-YWU3x8

LV Write Access read/write

LV Creation host, time rhel64.oracle.com, 2018-01-12 14:14:35 +0800

LV Status available

#open 1

LV Size 1.99 GiB

Current LE 510

Segments 2

Allocation inherit

Read ahead sectors auto

currently set to 256

10.给lv扩容

[root@rhel64 ~]# lvextend /dev/vg_rhel64/lv_root /dev/sdc1

Extending logical volume lv_root to 22.54 GiB

Logical volume lv_root successfully resized

11.查看扩容后的lv

[root@rhel64 ~]# lvdisplay

— Logical volume —

LV Path /dev/vg_rhel64/lv_root

LV Name lv_root

VG Name vg_rhel64

LV UUID Y2oXR6-yrXx-fetw-GiOl-iHmc-HbOV-fIUc83

LV Write Access read/write

LV Creation host, time rhel64.oracle.com, 2017-11-13 21:47:39 +0800

LV Status available

#open 1

LV Size 22.54 GiB

Current LE 5769

Segments 2

Allocation inherit

Read ahead sectors auto

currently set to 256

Block device 253:0

— Logical volume —

LV Path /dev/vg_rhel64/lv_swap

LV Name lv_swap

VG Name vg_rhel64

LV UUID OuuBWZ-WqMd-kZ5B-ka62-Ifgy-hfD5-6bpdZL

LV Write Access read/write

LV Creation host, time rhel64.oracle.com, 2017-11-13 21:47:42 +0800

LV Status available

#open 1

LV Size 1.97 GiB

Current LE 504

Segments 1

Allocation inherit

Read ahead sectors auto

currently set to 256

Block device 253:1

— Logical volume —

LV Path /dev/vg_myvg/lv_mylv

LV Name lv_mylv

VG Name vg_myvg

LV UUID vFq38A-3mJ1-RRso-2EcI-e9gO-wz2a-YWU3x8

LV Write Access read/write

LV Creation host, time rhel64.oracle.com, 2018-01-12 14:14:35 +0800

LV Status available

#open 1

LV Size 1.99 GiB

Current LE 510

Segments 2

Allocation inherit

Read ahead sectors auto

currently set to 256

Block device 253:2

12.查看系统当前的分区情况

[root@rhel64 ~]# df -h

Filesystem Size Used Avail Use% Mounted on

/dev/mapper/vg_rhel64-lv_root

13G 12G 104M 100% /

tmpfs 1.5G 72K 1.5G 1% /dev/shm

/dev/sdb1 485M 33M 427M 8% /boot

/dev/sda1 18G 172M 17G 1% /u01

/dev/sda2 7.9G 146M 7.4G 2% /software

/dev/mapper/vg_myvg-lv_mylv

2.0G 11M 1.9G 1% /lvm

没有扩容

13.对/扩容

[root@rhel64 ~]# resize2fs /dev/vg_rhel64/lv_root

resize2fs 1.41.12 (17-May-2010)

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

old desc_blocks = 1, new_desc_blocks = 2

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

The filesystem on /dev/vg_rhel64/lv_root is now 5907456 blocks long.

14.查看扩容后分区的情况

[root@rhel64 ~]# df -Th

Filesystem Type Size Used Avail Use% Mounted on

/dev/mapper/vg_rhel64-lv_root

ext4 23G 12G 9.5G 56% /

tmpfs tmpfs 1.5G 72K 1.5G 1% /dev/shm

/dev/sdb1 ext4 485M 33M 427M 8% /boot

/dev/sda1 ext4 18G 172M 17G 1% /u01

/dev/sda2 ext4 7.9G 146M 7.4G 2% /software

/dev/mapper/vg_myvg-lv_mylv

ext4 2.0G 11M 1.9G 1% /lvm

可以看到,/分区由原来的13G扩容到了23G

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/151497.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • 小白能读懂的 《手把手教你学DSP(TMS320X281X)》第二章(1) 2020-12-21[通俗易懂]

    小白能读懂的 《手把手教你学DSP(TMS320X281X)》第二章(1) 2020-12-21[通俗易懂]1声明由于本人也是小白,只是将所能查询到的资料进行汇总,水平有限,只能代表个人的理解,但所写文章也从小白视角出发,对小白友好,如果帮助到你,记得点赞收藏不迷路。如果文章有错误,请不吝赐教;待我查询后一定改正,这样你我教学相长,岂不美哉,当然有些错误待我多时之后也可能自己发现,到时候自己回来改正,不过有的可能遗忘,所以能提醒我最好,哈哈,谢谢。2概述首先dsp2812是32位的定点dsp。单片机中的32位是指cpu处理的数据的宽度,即参与运算的寄存器的数据长度。…

  • Windows下cmd中Tree命令的使用[通俗易懂]

    Windows下cmd中Tree命令的使用[通俗易懂]经常会见到项目组织的树形结构:├──images│└──scottsdale│├──IMG_1786-2.jpg│├──IMG_1787-2.jpg│└──IMG_1788-2.jpg├──image_stitching.py├──image_stitching_simple.py└──output.png2directories,6files那么它是如何生成的呢?使用的是tree命令打开cmd,跳转到某一磁盘,

  • 递归 数列_数列递归公式

    递归 数列_数列递归公式标题:递归数列类别函数与递归程序类型:代码片段时间限制:2S内存限制 10000Kb问题描述 一个数列A定义如下A(1)=1,A(2)=1/(1+A(1)),A(3)=1/(1+A(2)),……A(n)=1/(1+A(n-1))。定义一个函数function用来计算数列的第第n项的值,函数声明如下:doublefunction(intn);输入说明: 输入为1个正整数n,n<=10。输出说明 函数输出数列A第n项的值,结果小数点后保留6位有.

  • Win8 app判断网络连接状态

    Win8app判断网络连接状态推荐:http://www.cnblogs.com/roucheng/p/3535198.html

    2021年12月25日
  • Android面试题之Activity篇

    Android面试题之Activity篇Activity篇目录前言一、Activity1、什么是Activity?2、请描述一下Activity生命周期3、请描述一下Activity的四个状态4、两个Activity之间传递数据,除了intent,广播接收者,contentprovider还有啥?5、Android中的Context,Activity,Appliction有什么区别?6、Context是什么?7、如何保存Activity的状态?8、横竖屏切换时Activity的生命周期9、两个Activity

  • tabnine 激活码【2021免费激活】

    (tabnine 激活码)这是一篇idea技术相关文章,由全栈君为大家提供,主要知识点是关于2021JetBrains全家桶永久激活码的内容https://javaforall.cn/100143.htmlIntelliJ2021最新激活注册码,破解教程可免费永久激活,亲测有效,上面是详细链接哦~DB847YMYYZ-eyJsaWNlb…

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号