Ubuntu 24.04 KVM 仮想管理ツールをインストールする方法
環境
Ubuntu 24.04
1.仮想管理ツールをインストールします。
# apt -y install libguestfs-tools virt-top
2.仮想マシン [ubuntu123] の [/root] を [ls -l]で確認する
# virt-ls -l -d ubuntu123 /root
3.仮想マシン内のあるファイルを [cat] する。
# virt-cat -d ubuntu123 /etc/passwd
4.仮想マシン [ubuntu123] の [/etc/fstab] を編集する
# virt-edit -d ubuntu123 /etc/fstab
# /etc/fstab: static file system information. # # Use 'blkid' to print the universally unique identifier for a # device; this may be used with UUID= as a more robust way to name devices # that works even if disks are added and removed. See fstab(5). # # <file system> <mount point> <type> <options> <dump> <pass> # / was on /dev/ubuntu-vg/ubuntu-lv during curtin installation /dev/disk/by-id/dm-uuid-LVM-7Fj9ZetVJwmcbgOg03MrGWILfigbFA4ep9MvgTA98qonXLhXq8cdDCGmv1G4Aax5 / ext4 defaults 0 1 # /boot was on /dev/vda2 during curtin installation /dev/disk/by-uuid/31e23499-50dc-42f1-a847-5c278123e2c66 /boot ext4 defaults 0 1 /swap.img none swap sw 0 0
5.仮想マシン [ubuntu123] のディスク使用量を表示する
# virt-df -d ubuntu123
6.仮想マシン [ubuntu2404] のディスクを [/mnt] にマウントする
# guestmount -d ubuntu123 -i /mnt # ll /mnt
7.仮想マシンの状態を表示する。
# virt-top