差分
このページの2つのバージョン間の差分を表示します。
| 両方とも前のリビジョン 前のリビジョン 次のリビジョン | 前のリビジョン | ||
| tips:linux:openwrt [2025/10/18 18:56] – [仮想 PC での利用] asaasa | tips:linux:openwrt [2026/05/10 09:11] (現在) – [仮想 PC での利用] asaasa | ||
|---|---|---|---|
| 行 13: | 行 13: | ||
| * https:// | * https:// | ||
| * 仮想PCなら combined おすすめ? DLしたのはgunzip で展開し .img の状態にする。 | * 仮想PCなら combined おすすめ? DLしたのはgunzip で展開し .img の状態にする。 | ||
| - | * 変換手順は以下。 | ||
| - | * VMware : <code bash> | ||
| - | * QEMU/KVM : <code bash> | ||
| * VMware の場合、第1ネットワークを専用ネットワークにして第2ネットワークをブリッジにすることでルータとして稼働し始める。 | * VMware の場合、第1ネットワークを専用ネットワークにして第2ネットワークをブリッジにすることでルータとして稼働し始める。 | ||
| + | * 変換手順は以下。 (vmdk / qcow2 部分すなわち -O 直後は、vdi や vpc (vpcはvhd形式相当) も選べる) | ||
| + | |||
| + | <code bash> | ||
| + | #VirtualBox | ||
| + | user$ qemu-img convert -f raw -O vdi openwrt-25.12.3-x86-64-generic-ext4-combined.img openwrt-25.12.3-x86-64-generic-ext4-combined.vdi | ||
| + | #VMware | ||
| + | user$ qemu-img convert -f raw -O vmdk openwrt-25.12.3-x86-64-generic-ext4-combined.img openwrt-25.12.3-x86-64-generic-ext4-combined.vmdk | ||
| + | #HyperV 等 | ||
| + | user$ qemu-img convert -f raw -O vpc openwrt-25.12.3-x86-64-generic-ext4-combined.img openwrt-25.12.3-x86-64-generic-ext4-combined.vhd | ||
| + | #QEMU/KVM | ||
| + | user$ qemu-img convert -f raw -O qcow2 openwrt-25.12.3-x86-64-generic-ext4-combined.img openwrt-24.10.3-x86-64-generic-ext4-combined.qcow2 | ||
| + | </ | ||