KVM : 仮想マシンを作成する2023/04/27 |
ゲスト OS をインストールして仮想マシンを作成します。
当例ではホスト OS と同じ Ubuntu 23.04 をインストールします。 |
|
[1] | 当例では、事前に Ubuntu 23.04 インストール用 ISO ファイルを適当なディレクトリにダウンロードして (下例では [/home] 配下)、ISO ファイルからテキストモードでインストールします。 直接コンソールからでも、リモートから Putty 等のエミュレータ経由からでも実行可能です。 また、デフォルトでは仮想マシンのイメージの保管場所 (ストレージプール) は [/var/lib/libvirt/images] となっていますが、 当例では別パスにストレージプールを作成して進めます。(自身が覚えやすいパスで OK) |
# ストレージプールとするディレクトリ作成 root@dlp:~# mkdir -p /var/kvm/images root@dlp:~# virt-install \ --name ubuntu2304 \ --ram 4096 \ --disk path=/var/kvm/images/ubuntu2304.img,size=20 \ --vcpus 2 \ --os-variant ubuntu23.04 \ --network bridge=br0 \ --graphics none \ --console pty,target_type=serial \ --location /home/ubuntu-23.04-live-server-amd64.iso,kernel=casper/vmlinuz,initrd=casper/initrd \ --extra-args 'console=ttyS0,115200n8' # インストールが開始される ================================================================================ Serial [ Help ] ================================================================================ As the installer is running on a serial console, it has started in basic mode, using only the ASCII character set and black and white colours. If you are connecting from a terminal emulator such as gnome-terminal that supports unicode and rich colours you can switch to "rich mode" which uses unicode, colours and supports many languages. You can also connect to the installer over the network via SSH, which will allow use of rich mode. [ Continue in rich mode > ] [ Continue in basic mode > ] [ View SSH instructions ] # [Continue in basic mode] を選択 # この後は通常のインストール手順と同じ |
上例で指定しているオプションの意味です。その他多数のオプションは [man virt-install] で確認可能です。
|
[2] | インストーラー起動後はテキストモードでインストール作業を進めます。テキストモードも基本は GUI と同様のため、インストール過程は割愛します。 インストールが完了すると、通常通り一旦システムが再起動し、以下のようにターミナル上にゲスト OS のログインプロンプトが表示されます。インストール中に設定したユーザーでログインできればインストール完了です。 |
Ubuntu 23.04 ubuntu ttyS0 ubuntu login: ubuntu Password: Welcome to Ubuntu 23.04 (GNU/Linux 6.2.0-20-generic x86_64) * Documentation: https://help.ubuntu.com * Management: https://landscape.canonical.com * Support: https://ubuntu.com/advantage System information as of Wed Apr 26 08:06:59 UTC 2023 System load: 0.0 Processes: 137 Usage of /: 31.9% of 9.75GB Users logged in: 0 Memory usage: 5% IPv4 address for enp1s0: 10.0.0.222 Swap usage: 0% 2 updates can be applied immediately. To see these additional updates run: apt list --upgradable The programs included with the Ubuntu system are free software; the exact distribution terms for each program are described in the individual files in /usr/share/doc/*/copyright. Ubuntu comes with ABSOLUTELY NO WARRANTY, to the extent permitted by applicable law. To run a command as administrator (user "root"), use "sudo |
[3] | ゲスト OS 側からホスト OS 側へのコンソールの切り替えは Ctrl + ] キーです。 ホスト OS 側からゲスト OS 側へのコンソールの切り替えは [virsh console (仮想マシン名)] とコマンドを入力します。 |
ubuntu@localhost:~$ # Ctrl + ] キー root@dlp:~# # ホスト側のコンソールに切り替わった root@dlp:~# virsh console ubuntu2304 # ゲスト OS のコンソールに切り替え Connected to domain 'ubuntu2304' Escape character is ^] # Enter キー押下 ubuntu@localhost:~$ # ゲスト側のコンソールに切り替わった |
[4] | 作成した仮想マシンは容易に複製可能です。 |
root@dlp:~# virt-clone --original ubuntu2304 --name template --file /var/kvm/images/template.img Allocating 'template.img' | 20 GB 00:00:04 Clone 'template' created successfully. # ディスクイメージ root@dlp:~# ll /var/kvm/images/template.img -rw------- 1 root root 4558356480 Apr 26 08:08 /var/kvm/images/template.img # 定義ファイル root@dlp:~# ll /etc/libvirt/qemu/template.xml -rw------- 1 root root 6688 Apr 26 08:08 /etc/libvirt/qemu/template.xml |
Sponsored Link |