zoukankan      html  css  js  c++  java
  • VirtualBox更改虚拟机磁盘VDI的大小

    流程虚拟机中使用,有时会遇到磁盘大小是不够的,假设一套”动态分配的内存“。通过下面的方法来手动扩展磁盘空间。

    1.启动CMD命令行。进入VirtualBox安装文件夹。例如

    cd E:Program FilesOracleVirtualBox

    2.查看须要改动的虚拟硬盘:

    E:Program FilesOracleVirtualBox>VBoxManage.exe list hdds
    UUID:           e8e2c341-b3b1-49db-ad2d-ab4e6b08bc5a
    Parent UUID:    base
    State:          locked write
    Type:           normal (base)
    Location:       F:VMCentOS-64.vdi
    Storage format: VDI
    Capacity:       8000 MBytes

    UUID:           707d45b6-380d-4e51-96bd-8c9508bfd313
    Parent UUID:    base
    State:          created
    Type:           normal (base)
    Location:       F:VMCentOS-64-ext.vdi
    Storage format: VDI
    Capacity:       21273 MBytes

    UUID:           aca81637-fbc0-4826-be66-847ecc96d83b
    Parent UUID:    base
    State:          created
    Type:           normal (base)
    Location:       C:UsersEdward.WuVirtualBox VMsWinXPWinXP.vdi
    Storage format: VDI
    Capacity:       10240 MBytes

    ----

    我们看到共同拥有三个虚拟磁盘,我们要改动图中第一个。它的空间大小为8G。UUID:e8e2c341-b3b1-49db-ad2d-ab4e6b08bc5a 

    2. 调整磁盘空间为15G:

    E:Program FilesOracleVirtualBox>VBoxManage.exe modifyhd e8e2c341-b3b1-49db-ad2d-ab4e6b08bc5a --resize 15000 0%...10%...20%...30%...40%...50%...60%...70%...80%...90%...100%

    3.又一次查看:

    E:Program FilesOracleVirtualBox>VBoxManage.exe list hdds UUID:           e8e2c341-b3b1-49db-ad2d-ab4e6b08bc5a Parent UUID:    base State:          locked write Type:           normal (base) Location:       F:VMCentOS-64.vdi Storage format: VDI Capacity:       15000 MBytes

    UUID:           707d45b6-380d-4e51-96bd-8c9508bfd313 Parent UUID:    base State:          created Type:           normal (base) Location:       F:VMCentOS-64-ext.vdi Storage format: VDI Capacity:       21273 MBytes

    UUID:           aca81637-fbc0-4826-be66-847ecc96d83b Parent UUID:    base State:          created Type:           normal (base) Location:       C:UsersEdward.WuVirtualBox VMsWinXPWinXP.vdi Storage format: VDI Capacity:       10240 MBytes

    4.查看新的磁盘空间

    又一次启动虚拟机,查看磁盘情况。

    [root@aimin ~]# fdisk -l /dev/sda

    Disk /dev/sda: 15.7 GB, 15728640000 bytes 255 heads, 63 sectors/track, 1912 cylinders

    能够看到磁盘空间已经扩展到15G,但这时还不能够使用。

    5.Enable新添加的空间

    使用 fdisk 将虚拟磁盘的空暇空间创建为一个新的分区。注意要使用代表 Linux LVM 的分区号 8e 来作为 ID。

    # fdisk /dev/sda

    n {new partition}

    p {primary partition}

    3 {partition number}

    [这时会提示改动大小,选择默认直接回车就可以]

    t {change partition id}

    3 {partition number}

    8e {Linux LVM partition}

    w

    ------

    假设中间有设置大小之类的提示。就直接回车。

    完毕后。假设提示:

    WARNING: Re-reading the partition table failed with error 16: 设备或资源忙. The kernel still uses the old table. The new table will be used at the next reboot or after you run partprobe(8) or kpartx(8)

    就重新启动一下系统。

    6.查看新添加的sda3是否标记为LVM。假设没有须要reboot

    #fdisk -l /dev/sda

    7.调整LVM大小

    先看一下Volume Group名称

    [root@aimin ~]# vgdisplay   --- Volume group ---   VG Name               vg_aimin

    ....

    vg_aimin是我的VolumeGroup的名称,实际操作时,须要使用实际显示的名称。

    8.把新分配的空间创建一个新的物理卷

    #pvcreate /dev/sda3

    9.然后使用新的物理卷来扩展 LVM 的 VolGroup,

    # vgextend vg_aimin /dev/sda3
      No physical volume label read from /dev/sda3
      Writing physical volume data to disk "/dev/sda3"
      Physical volume "/dev/sda3" successfully created
      Volume group "vg_aimin" successfully extended

    10.然后扩展 LVM 的逻辑卷 vg_aimin-lv_root。

    # lvextend /dev/vg_aimin/lv_root /dev/sda3
    

    11.调整逻辑卷的大小

    #resize2fs /dev/vg_aimin/lv_root

    到这里就完毕了空间的扩展。

    12.查看效果

    [root@aimin ~]# df -h文件系统              容量  已用  可用 已用%% 挂载点/dev/mapper/vg_aimin-lv_root                       12G  5.2G  6.2G  46% /tmpfs                 499M   80K  499M   1% /dev/shm/dev/sda1             485M   33M  427M   8% /boot

    成功扩展。!

    版权声明:本文博客原创文章。博客,未经同意,不得转载。

  • 相关阅读:
    Hibernate注解(一对一、一对多、多对多)
    Hibernate多表关系配置——继承
    Hibernate多表关系配置——多对多对关系映射
    Hibernate多表关系配置——一对一关系映射
    Hibernate多表关系配置——多对一关系映射
    初识Hibernate——添加数据
    Servlet学习总结
    jQuery动态添加Table行
    VS2013搭建CSDN源代码管理git
    Node.js amqplib 连接 Rabbitmq 学习笔记
  • 原文地址:https://www.cnblogs.com/mengfanrong/p/4750616.html
Copyright © 2011-2022 走看看