Changes between Version 9 and Version 10 of Migrate_Windows
- Timestamp:
- Sep 22, 2009 9:32:42 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Migrate_Windows
v9 v10 38 38 VBoxManage convertfromraw ImageFile.dd OutputFile.vdi 39 39 }}} 40 a. If you are converting from the drive, you need to use `VBoxManage stdin /dev/sdg OutPutFile.vdi NUMBEROFBYTES`. Note, if you use `fdisk -l` in Linux you can see how many bytes each drive is to supply this parameter. Example: 40 a. If you are converting from the drive, you need to use 41 {{{ 42 cat /dev/sdg | VBoxManage stdin OutPutFile.vdi NUMBEROFBYTES 43 }}} 44 Note, if you use `fdisk -l` in Linux you can see how many bytes each drive is to supply this parameter. Example: 41 45 {{{ 42 46 # fdisk -l /dev/sda 43 47 Disk /dev/sda: 1500.3 GB, 1500301910016 bytes 44 48 }}} 49 To determine the same information on a Mac OS X host, you do 50 {{{ 51 # diskutil list 52 # diskutil info /dev/disk0 53 }}} 54 to list available disks and to show the number of bytes under ''Total Size:''. 45 55 1. Then use the media manager in VirtualBox to add the newly converted drive. 46 56 1. Make a new virtual machine, using the drive you just added with the media manager.