私は受け入れられた解決策を試しましたが、私にとっては失敗しました:
# 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
そして、私はconvertfromrawのstdin形式を使用しました
# 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)...