ar.falsy.cat/content/note/info-tech/qemu.md
2023-02-24 02:18:11 +09:00

34 lines
839 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.

---
title: qemu
tags: [note, info-tech, tool, virtualization]
---
- 個人的にqemuはコマンドラインベースのVirtualBoxと思っている
- 今のところM2チップのMacbook ProでLinuxを使うための最善手
- M1/M2向けVirtualBoxはまだ開発者プレビューしかなくまともに使えなかった
<!--more-->
## インストール
### Mac
```bash
$ brew install qemu
```
- ハードウェアアクセラレーションが有効化されている他のビルドもあるらしいが未検証
- 今後GPU使いたくなったら検証予定
## コマンド逆引き
### archのlive cdを起動
```bash
qemu-system-x86_64 \
-m 4G \
-cdrom ../iso/archlinux-2023.02.01-x86_64.iso
```
## オプション一覧
```
-m 4G # メモリサイズ指定
-cdrom a.iso # ISOファイル指定
```