vmware中如何为虚拟机增加硬盘容量
第一种方法:增加新硬盘分区:
1.打开vmware(不用启动虚拟机内的系统),=>虚拟机=>设置=>add,选择hard disk,然后一直点 next,(中间有一步是设置需要添加磁盘的大小,按照自己的需求设置,这里就忽略了)最后点ok
2.=>启动该虚拟机 ,在虚拟的系统里面再执行以下操作: =>控制面板=>管理工具=>计算机管理=>磁盘管理,会跳出一个“欢迎使用磁盘初始化和转换向导”的界面。一直点“下一步”,(在右下区域找到刚初始化的磁盘,你会发现是“未指派”的),选中该磁盘后执行以下操作:=>操作=>所有任务=>新建磁盘分区=>一直下一步直到完成。
第二种方法:扩展已有硬盘容量:
界面中并没有提供增加硬盘容量的方法。
只能在命令行形式下执行。
安装所在盘的program files\vmware\vmware workstation下有一个vmware-vdiskmanager.exe,就是它。
命令参数如下:
usage: vmware-vdiskmanager.exe options <disk-name> | <mount-point>
offline disk manipulation utility
options:
-c : create disk; need to specify other create options
-d : defragment the specified virtual disk
-k : shrink the specified virtual disk
-n <source-disk> : rename the specified virtual disk; need to
specify destination disk-name
-p : prepare the mounted virtual disk specified by
the drive-letter for shrinking
-q : do not log messages
-r <source-disk> : convert the specified disk; need to specify
destination disk-type
-x <new-capacity> : expand the disk to the specified capacity
additional options for create and convert:
-a <adapter> : (for use with -c only) adapter type (ide, buslogic o
r lsilogic)
-s <size> : capacity of the virtual disk
-t <disk-type> : disk type id
disk types:
0 : single growable virtual disk
1 : growable virtual disk split in 2gb files
2 : preallocated virtual disk
3 : preallocated virtual disk split in 2gb files
the capacity can be specified in sectors, kb, mb or gb.
the acceptable ranges:
ide adapter : [100.0mb, 950.0gb]
scsi adapter: [100.0mb, 950.0gb]
ex 1: vmware-vdiskmanager.exe -c -s 850mb -a ide -t 0 myidedisk.vmdk
ex 2: vmware-vdiskmanager.exe -d mydisk.vmdk
ex 3: vmware-vdiskmanager.exe -r sourcedisk.vmdk -t 0 destinationdisk.vm
dk
ex 4: vmware-vdiskmanager.exe -x 36gb mydisk.vmdk
ex 5: vmware-vdiskmanager.exe -n sourcename.vmdk destinationname.vmdk
ex 6: vmware-vdiskmanager.exe -k mydisk.vmdk
ex 7: vmware-vdiskmanager.exe -p <mount-point>
(a virtual disk first needs to be mounted at <mount-point>)
-----------------------------------------------------------------
其中的-x参数就是用来扩容的……
如这个:vmware-vdiskmanager.exe -x 36gb mydisk.vmdk
-------------------------------------------------------
我的执行过程:
e:\program files\vmware\vmware workstation>set path=%path%;e:\program files\vmwa
re\vmware workstation
e:\program files\vmware\vmware workstation>e:
e:\program files\vmware\vmware workstation>cd e:\vm_machine
e:\vm_machine>cd windows server 2003 standard edition
e:\vm_machine\windows server 2003 standard edition>dir *.vmdk
2007/07/20 11:17 1,588,527,104 windows server 2003 standard edition-s001
.vmdk
2007/07/20 11:17 65,536 windows server 2003 standard edition-s002
.vmdk
2007/07/20 10:56 448 windows server 2003 standard edition.vmdk
e:\vm_machine\windows server 2003 standard edition>vmware-vdiskmanager.exe -x 4g
"windows server 2003 standard edition.vmdk"
using log file c:\docume~1\admini~1\locals~1\temp\1\vmware-administrator\vdiskma
nager.log
the specified disk size does not fall within acceptable range.
the acceptable ranges:
ide adapter : [100.0mb, 950.0gb]
scsi adapter: [100.0mb, 950.0gb]
e:\vm_machine\windows server 2003 standard edition>vmware-vdiskmanager.exe -x 4g
b "windows server 2003 standard edition.vmdk"
using log file c:\docume~1\admini~1\locals~1\temp\1\vmware-administrator\vdiskma
nager.log
the old geometry c/h/s of the disk is: 261/255/63
the new geometry c/h/s of the disk is: 522/255/63
disk expansion completed successfully.
warning: if the virtual disk is partitioned, you must use a third-party
utility in the virtual machine to expand the size of the
partitions. for more information, see:
http://www.vmware.com/support/kb/enduser/std_adp.php?p_faqid=1647
总结一下:
1。文件名应该用双引号括起来。
2。vmdk文件用不带001,002的最短的那个文件名。
3。gb,mb,别忘了b。
需要强调的一点是,调整硬盘大小之后的效果,相当于增加了原来物理硬盘的柱面数目,因此,文件系统并不会自动增长。需要重新调整文件系统的大小。这一步不同的系统有不同的方法。比如
1. 如果guest os为win系列,可以通过partion magic来实现
2. 如果guest os为linux系列,可以通过 resize2fs来扩大ext2/3格式的文件系统。
3. 如果guset os为其他unix系统,可以通过向文件树中新增加分区,来扩充原文件系统。
通过vm加盘的方法:在菜单栏哪里有个“vm”,点击“vm”里面有个“settings”或者直接用快捷键“ctrl+d”,点击“add”增加一个“hard disk”.加完后进入系统后,右击我的电脑选择“管理”进入后再选择“存储”中的“磁盘管理”。对你刚才新增加的硬盘进行快速格式化后,就可以为你原先的硬盘多增加一个盘符=已经扩大你原先的硬盘大小
上一篇: XtraDB/InnoDB的文件格式