欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

Linux如何更改VirtualBox虚拟机的磁盘容量

程序员文章站 2023-11-01 09:04:10
在Linux系统使用过程中会遇到VirtualBox虚拟机磁盘空间不够用的问题,那么如何更改VirtualBox虚拟机的磁盘容量,下面为大家详细介绍下,有遇到的朋友可以看看... 15-01-16...

  virtualbox是一款虚拟机,在linux系统使用过程中会遇到virtualbox虚拟机磁盘空间不够用的问题,遇到这种问题该如何解决呢?下面小编就教大家linux如何更改virtualbox虚拟机的磁盘容量。

Linux如何更改VirtualBox虚拟机的磁盘容量

  1.启动cmd命令行,进入virtualbox的安装目录。如

  cd e:\program files\oracle\virtualbox

  2.查看需要修改的虚拟硬盘:

  e:\program files\oracle\virtualbox》vboxmanage.exe list hdds

  uuid: e8e2c341-b3b1-49db-ad2d-ab4e6b08bc5a

  parent uuid: base

  state: locked write

  type: normal (base)

  location: f:\vm\centos-64.vdi

  storage format: vdi

  capacity: 8000 mbytes

  uuid: 707d45b6-380d-4e51-96bd-8c9508bfd313

  parent uuid: base

  state: created

  type: normal (base)

  location: f:\vm\centos-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:\users\edward.wu\virtualbox vms\winxp\winxp.vdi

  storage format: vdi

  capacity: 10240 mbytes

  ----

  我们看到共有三个虚拟磁盘,我们要修改图中第一个,它的空间大小为8g,uuid:e8e2c341-b3b1-49db-ad2d-ab4e6b08bc5a

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

  e:\program files\oracle\virtualbox》vboxmanage.exe modifyhd e8e2c341-b3b1-49db-ad2d-ab4e6b08bc5a --resize 150000%.。.10%.。.20%.。.30%.。.40%.。.50%.。.60%.。.70%.。.80%.。.90%.。.100% 

  重新查看:

  e:\program files\oracle\virtualbox》vboxmanage.exe list hdds uuid: e8e2c341-b3b1-49db-ad2d-ab4e6b08bc5a parent uuid: base state: locked write type: normal (base) location: f:\vm\centos-64.vdi storage format: vdi capacity: 15000 mbytes

  uuid: 707d45b6-380d-4e51-96bd-8c9508bfd313 parent uuid: base state: created type: normal (base) location: f:\vm\centos-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:\users\edward.wu\virtualbox vms\winxp\winxp.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

  成功扩展!!!

  上面就是linux修改virtualbox虚拟机磁盘容量的方法介绍了,首先使用命令行进入virtualbox虚拟机的安装目录,在找到相应文件进行磁盘大小的修改。