vivion27 发表于 2015-4-4 20:30:52

vmware-vdiskmanager 出现 the disk is full的原因

  C:\Program Files\VMware\VMware Workstation>vmware-vdiskmanager.exe -x 30GB "F:\Ubuntu.vmdk\Ubuntu.vmdk"
Failed to expand the disk F:\Ubuntu.vmdk\Ubuntu.vmdk': An error occurred while writing a file; the disk is full. Data has not been
saved. Free some space and try again (0xd00000008).
  出错的原因是你的硬盘空间不足了
  注意:假如你现在的大小是20G,想要增加到30G 这是硬盘剩余磁盘空间还有20G,那么也是要报错的
  是因为VM保证扩展不出错,直接产生一个新的vmdk文件,这个新的vmdk大小和原来的差不都,但是要保证剩余的硬盘空间必须大于30G
  而不是直接在原来的文件上修改增加!!
  

  
  
  VMware Virtual Disk Manager - build 324285.
Usage: vmware-vdiskmanager.exe OPTIONS|
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      : 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 mount point for shrinking.
   -r      : convert the specified disk; need to specify
                            destination disk-type.For local destination disks
                            the disk type must be specified.
   -x   : 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.
   -D                   : make disk deletable.This should only be used on disks
                            that have been copied from another product.
  Other Options:
   -q                   : do not log messages
  Additional options for create and convert:
   -a          : (for use with -c only) adapter type
                            (ide, buslogic, lsilogic). Pass lsilogic for other adapter types.
   -s             : capacity of the virtual disk
   -t      : disk type id
  Options for remote disks:
   -h         : hostname of remote server
   -u         : username for remote server
   -f         : file containing password
   -P             : 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
      6                   : thin provisioned virtual disk - ESX 3.x and above
  The capacity can be specified in sectors, KB, MB or GB.
   The acceptable ranges:
                           ide adapter :
                           scsi adapter:
      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 "/path/to/targetDisk.vmdk"
      ex 7: vmware-vdiskmanager.exe -k myDisk.vmdk
      ex 8: vmware-vdiskmanager.exe -p
            (A virtual disk first needs to be mounted at )
  
  
页: [1]
查看完整版本: vmware-vdiskmanager 出现 the disk is full的原因