NotePublic/Software/Applications/VirtualBox/Virtualbox_磁盘转换.md

14 lines
351 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Virtualbox 磁盘转换
很多情况下需要在不同虚拟机磁盘镜像类型间进行转换Virtualbox 的 VBoxManage 工具提供了该功能,这个工具根据扩展名识别转换类型,命令格式如下:
```bash
VBoxManage convertdd <input.xxx> <output.yyy>
```
如:
```bash
VBoxManage convertdd input.iso output.vdi
```