设为首页 收藏本站
查看: 1418|回复: 0

[经验分享] 使用 vmware-vdiskmanager增加虚拟机中的磁盘空间

[复制链接]

尚未签到

发表于 2016-1-6 08:34:39 | 显示全部楼层 |阅读模式
  准备在虚拟机上的Windows 7 的系统上安装一个SQL Server 2008 R2 Developer version, 安装过程中发现虚拟机原先设置的20G空间不够用了。原先在虚拟机VM 6.5 上安装windows 7系统时采用的是单文件存储的形式,所以20G的空间就渐渐不够用了。
  
  这时候只好请教一下Google老师了。一番搜索后发现可以使用Vmware 自带的vmware-vdiskmanager.exe对原有的虚拟空间进行扩展。假设默认的安装目录为C:\Program Files\VMware\VMware Workstation。
  
  运行CMD命令,通过命令 cd C:\Program Files\VMware\VMware Workstation 进入VMware Workstation的安装目录。
  先运行命令 vmware-vdiskmanager可以得到以下的参数说明:
  
  VMware Virtual Disk Manager - build 185404.
Usage: vmware-vdiskmanager.exe OPTIONS <disk-name> | <mount-point>
Offline disk manipulation utility
  Operations, only one may be specified at a time:
     -c                   : create disk.  Additional creation options must
                            be specified.  Only local virtual disks can be
                            created.
     -d                   : defragment the specified virtual disk. Only
                            local virtual disks may be defragmented.
     -k                   : shrink the specified virtual disk. Only local
                            virtual disks may be shrunk.
     -n <source-disk>     : rename the specified virtual disk; need to
                            specify destination disk-name. Only local virtual
                            disks may be renamed.
     -p                   : prepare the mounted virtual disk specified by
                            the drive-letter for shrinking.
     -r <source-disk>     : convert the specified disk; need to specify
                            destination disk-type.  For local destination disks
                            the disk type must be specified.
     -x <new-capacity>    : expand the disk to the specified capacity. Only
                            local virtual disks may be expanded.
     -R                   : check a sparse virtual disk for consistency and attempt
                            to repair any errors.
  Other Options:
     -q                   : do not log messages
  Additional options for create and convert:
     -a <adapter>         : (for use with -c only) adapter type
                            (ide, buslogic or lsilogic)
     -s <size>            : capacity of the virtual disk
     -t <disk-type>       : disk type id
  Options for remote disks:
     -h <hostname>        : hostname of remote server
     -u <username>        : username for remote server
     -f <filename>        : file containing password
     -P <port>            : optional TCP port number (default: 902)
     -S                   : specifies that the source disk is remote, by default
  the remote options are assumed to refer to the
                            destination.
  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
      4                   : preallocated ESX-type virtual disk
      5                   : compressed disk optimized for streaming
  The capacity can be specified in sectors, KB, MB or GB.
     The acceptable ranges:
                           ide adapter : [1MB, 950.0GB]
                           scsi adapter: [1MB, 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.vmdk
        ex 4: vmware-vdiskmanager.exe -x 36GB myDisk.vmdk
        ex 5: vmware-vdiskmanager.exe -n sourceName.vmdk destinationName.vmdk
        ex 6: vmware-vdiskmanager.exe -r sourceDisk.vmdk -t 4 -h esx-name.mycompany.com \
              -u username -f passwordfile "[storage1]/path/to/targetDisk.vmdk"
        ex 7: vmware-vdiskmanager.exe -k myDisk.vmdk
        ex 8: vmware-vdiskmanager.exe -p <mount-point>
              (A virtual disk first needs to be mounted at <mount-point>)
  
  通过上面的参数说明我们可以得知,可以使用参数 -x 来扩展虚拟空间。
  此参数是将虚拟磁盘空间增大到指定的容量。你必须指定新的更大尺寸的虚拟磁盘用GB或MB单位标示。当然你不能改变物理磁盘的大小
  注意:在你运行虚拟磁盘管理软件前,你应该最好先备份虚拟磁盘文件。(因为不会创建新的文件,所以备份以防增大磁盘操作失败)
  
  举个例子如下:
  命令:vmware-vdiskmanager -x 30GB myDisk.vmdk
这条命令将把虚拟磁盘myDisk.vmdk大小增大到30GB
实际命令输入(注意最后参数上有双引号):
C:\Program Files\VMware\VMware Workstation>vmware-vdiskmanager -x 30GB "C:\Program Files\Virtual Machines\Windows7\Windows7.vmdk"
执行结果显示:
Using log file C:\DOCUME~1\AnEgg\LOCALS~1\Temp\vmware-AnEgg\vdiskmanager.log
Grow: 100% done.
The old geometry C/H/S of the disk is: 8322/16/63
The new geometry C/H/S of the disk is: 16383/16/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
  
  到这里就说明虚拟的磁盘空间已成功扩大。
  
  如果出现以下信息:
  This disk is part of a snapshot chain in 'C:\Program Files\Virtual Machines\Windows7\Windows7.vmdk'.
The selected operation can only be executed on a disk with no snapshots
意思就是这个虚拟机不能有快照,必须要删除快照后再执行这个命令,这个删除会花费很多时间,千万要等它完毕,不然,如果强行关掉删除snapshot的进程的话,再次尝试增加磁盘的命令,会成功,但会使vm不能启动!会出现下面的错误当你尝试启动vm的时候:

The parent virtual disk has been modified since the child was created

解决方法请参考最后的参考链接中的
  3.http://www.cnblogs.com/jinweijie/archive/2009/01/14/1375634.html
  
  如果扩展成功的话,那么你可以进入虚拟机的系统在 控制面板\系统和安全\管理工具 下的 计算机管理 中的 存储--磁盘管理 中,可以看到未指派的空间。
  由于我的虚拟机上的win 7 系统只有一个C盘,所以我是直接鼠标右键 扩展卷 将未分配的磁盘空间分配到了原先的C盘上,这样C盘的空间从原来的20GB扩大到了30GB。
  
  如果源磁盘已经分过区,则必须使用第三方工具来扩充源分区的大小。
  (可以使用GParted工具(下载地址:http://transact.dl.sourceforge.net/sourceforge/gparted/gparted-live-0.4.5-2.iso))
  
  完成!
  
  注意:本人将上述步骤实践过一次,而且成功的完成了扩展,但是由于以上操作涉及磁盘中数据以及系统具有一定的风险性,所以各位操作时请注意,造成一切后果请自负。
   
  以下是一些参考的链接:
  1.http://hi.baidu.com/angivo/blog/item/d585e5c6b4bb65119d163dad.html
  
  如何用vmware-vdiskmanager创建共享磁盘
  2.http://hi.baidu.com/xgyyi/blog/item/c320dd5c7fcfb844faf2c06e.html
  
  vmware虚拟机的磁盘空间扩容
  3.http://www.cnblogs.com/jinweijie/archive/2009/01/14/1375634.html
  4.http://hi.baidu.com/pdckxd/blog/item/447a7aecaf6ba4d82e2e216f.html
  
  
  

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.iyunv.com/thread-160799-1-1.html 上篇帖子: VMWare vCenter Converter converter.fault.ManagedDiskOpenFault错误 下篇帖子: 在VMWare里安装设置FreeBSD系统
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表