博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
为EXSi5.5上的Centos虚机增加硬盘容量
阅读量:6117 次
发布时间:2019-06-21

本文共 3687 字,大约阅读时间需要 12 分钟。

宿主机调整

1. 关闭虚机,

2. 检查是否有存在的snapshot, 如果有, 需要删除, 否则不能调整磁盘容量

3. 虚机上编辑配置, 将磁盘容量调大后保存

虚机调整

参考这篇写得非常详细:

 
To extend the logical volume:
Note: These steps only apply to EXT3 file systems.
 
Caution: VMware recommends having a complete backup of the virtual machine prior making these changes.
  1. Power off the virtual machine.
  2. Edit the virtual machine settings and extend the virtual disk size. For more information, see .
  3. Power on the virtual machine.
  4. Identify the device name, which is by default /dev/sda, and confirm the new size by running the command:
    fdisk -l
  5. Create a new primary partition:
    1. Run the command:
      fdisk /dev/sda (depending the results of the step 4)
    2. Press p to print the partition table to identify the number of partitions. By default there are 2: sda1 and sda2.
    3. Press n to create a new primary partition. 
    4. Press p for primary.
    5. Press 3 for the partition number, depending the output of the partition table print.
    6. Press Enter two times.
    7. Press t to change the system's partition ID
    8. Press 3 to select the newly creation partition
    9. Type 8e to change the Hex Code of the partition for Linux LVM
    10. Press w to write the changes to the partition table.
  6. Restart the virtual machine.
  7. Run this command to verify that the changes were saved to the partition table and that the new partition has an
    8e
    type:
    fdisk -l
  8. Run this command to convert the new partition to a physical volume:
    Note: The number for the sda can change depending on system setup. Use the sda number that was created in step 5.
    pvcreate /dev/sda3
  9. Run this command to extend the physical volume:
    vgextend VolGroup00 /dev/sda3
    Note: To determine which volume group to extend, use the command vgdisplay.
  10. Run this command to verify how many physical extents are available to the Volume Group:
    vgdisplay VolGroup00 | grep "Free"
  11. Run the following command to extend the Logical Volume:
    lvextend -L+#G /dev/VolGroup00/LogVol00# orlvextend -l +15359 /dev/VolGroup/lv_root
    Where # is the number of Free space in GB available as per the previous command. Use the full number output from Step 10 including any decimals.
    Note: to determine which logical volume to extend, use the command lvdisplay.
  12. Run the following command to expand the ext3 filesystem online, inside of the Logical Volume:
    ext2online /dev/VolGroup00/LogVol00
    Note: Use resize2fs instead of ext2online if it is not a Red Hat virtual machine.
    Note: Use xfs_growfs if that LVM is using xfs as their file system. (Try mount |grep xfs to check it)
  13. Run the following command to verify that the / filesystem has the new space available:
    df -h /

 

对于新建LVM的系统

Run the following to create the Logical Volume: (if the volume group is newly created)

lvcreate -n LogVol00 --size 255G VolGroup00#orlvcreate -n LogVol00 -l 262143 VolGroup00#thenmke2fs /dev/VolGroup00/LogVol00#then make dir and mount itmkdir /archivemount /dev/VolGroup00/LogVol00 /archive#then write it to /etc/fstab to make it mount upon startup## /etc/fstab# Created by anaconda on Mon Mar 19 11:38:35 2012## Accessible filesystems, by reference, are maintained under '/dev/disk'# See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info#UUID=6362f46a-8e70-4c3e-9f07-d5666a8db4b0 /                       ext4    defaults        1 1UUID=7999a0fb-4c24-4e20-817c-47afd387cc51 swap                    swap    defaults        0 0tmpfs                   /dev/shm                tmpfs   defaults        0 0devpts                  /dev/pts                devpts  gid=5,mode=620  0 0sysfs                   /sys                    sysfs   defaults        0 0proc                    /proc                   proc    defaults        0 0/dev/VolGroup00/LogVol00 /archive               ext4    defaults        0 0

 

转载地址:http://ahpka.baihongyu.com/

你可能感兴趣的文章
如何使frame能居中显示
查看>>
第k小数
查看>>
构建之法阅读笔记三
查看>>
Python/PHP 远程文件/图片 下载
查看>>
【原创】一文彻底搞懂安卓WebView白名单校验
查看>>
写给对前途迷茫的朋友:五句话定会改变你的人生
查看>>
并行程序设计学习心得1——并行计算机存储
查看>>
JAVA入门到精通-第86讲-半双工/全双工
查看>>
bulk
查看>>
js document.activeElement 获得焦点的元素
查看>>
C++ 迭代器运算
查看>>
【支持iOS11】UITableView左滑删除自定义 - 实现多选项并使用自定义图片
查看>>
day6-if,while,for的快速掌握
查看>>
JavaWeb学习笔记(十四)--JSP语法
查看>>
【算法笔记】多线程斐波那契数列
查看>>
java8函数式编程实例
查看>>
jqgrid滚动条宽度/列显示不全问题
查看>>
在mac OS10.10下安装 cocoapods遇到的一些问题
查看>>
angularjs表达式中的HTML内容,如何不转义,直接表现为html元素
查看>>
css技巧
查看>>