差分
このページの2つのバージョン間の差分を表示します。
| 両方とも前のリビジョン 前のリビジョン 次のリビジョン | 前のリビジョン | ||
| tips:linux:openwrt [2025/10/18 17:50] – [仮想 PC での利用] asaasa | tips:linux:openwrt [2026/05/10 09:11] (現在) – [仮想 PC での利用] asaasa | ||
|---|---|---|---|
| 行 3: | 行 3: | ||
| * Linux を使っているルータ用 OS なので扱いをここにする。 | * Linux を使っているルータ用 OS なので扱いをここにする。 | ||
| * 公式サイト : https:// | * 公式サイト : https:// | ||
| + | |||
| + | ===== 絶対入れろ なやつ ===== | ||
| + | * 日本語化はしておきたいね、ということで、下記はマストで導入する。 | ||
| + | * luci-i18n-base-ja | ||
| ===== 仮想 PC での利用 ===== | ===== 仮想 PC での利用 ===== | ||
| 行 8: | 行 12: | ||
| * x86 版のOpenWRT をDLしてどうにかしてイメージ変換なり焼き込みなりする。 | * x86 版のOpenWRT をDLしてどうにかしてイメージ変換なり焼き込みなりする。 | ||
| * https:// | * https:// | ||
| - | * 仮想PCなら combined おすすめ? | + | * 仮想PCなら combined おすすめ? |
| - | * 変換手順は以下。 | + | * VMware の場合、第1ネットワークを専用ネットワークにして第2ネットワークをブリッジにすることでルータとして稼働し始める。 |
| - | | + | * 変換手順は以下。 |
| - | | + | |
| + | <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 | ||
| + | </ | ||