허용 된 솔루션을 시도했지만 실패했습니다.
# VBoxManage convertfromraw /dev/sdg /path/to/file.vdi --format VDI
Converting from raw image file="/dev/sdg" to file="/path/to/file.vdi"...
Creating dynamic image with size 0 bytes (0MB)...
VBoxManage: error: Cannot create the disk image "/path/to/file.vdi": VERR_INVALID_PARAMETER
디스크가 USB를 통해 연결되어 크기를 감지하지 못할 수 있습니까?
대신 디스크 크기를 얻었습니다. fdisk -l
Disk /dev/sdg: 160.0 GB, 160041885696 bytes
그런 다음 stdin 형식의 convertfromraw를 사용했습니다.
# dd if=/dev/sdg | VBoxManage convertfromraw stdin /path/to/file.vdi 160041885696 --format VDI
Converting from raw image file="stdin" to file="/path/to/file.vdi"...
Creating dynamic image with size 160041885696 bytes (152628MB)...