我正在尝试使用 VirtualBox 在 Ubuntu 中运行 OpenWRT,并且我正在关注本教程。我没有 Windows 电脑,所以我无法运行vboxmanage.exe
。
我可以使用此命令将其转换.img
为:.vdi
# instead of vboxmanage.exe converted ...
qemu-img convert
但我不知道如何.vdi
在Linux中调整
# vboxmanage.exe modifyhd
# what is the equivalent in linux?
答案1
如果您的 Ubuntu 机器上安装了 VirtualBox,您可以直接按照本教程操作。Linux 上的命令是VBoxManage
(大写字母很重要)。您可以使用以下命令调整硬盘大小:
VBoxManage modifyhd --resize 512 openwrt.vdi
您还可以转换.img
为.vdi
使用 VirtualBox 而不是 QEMU:
VBoxManage convertdd openwrt-19.07.6-x86-64-combined-ext4.img openwrt.vdi