差分
このページの2つのバージョン間の差分を表示します。
| 両方とも前のリビジョン 前のリビジョン 次のリビジョン | 前のリビジョン | ||
| tips:linux:openwrt [2025/10/18 18:55] – [OpenWRT メモ] 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 の状態にする。 | ||
| - | * 変換手順は以下。 | + | |
| - | | + | |
| - | | + | |
| + | <code bash> | ||
| + | # | ||
| + | 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 | ||
| + | </ | ||