1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

lxdで立ち上げた仮想マシンのCPUとメモリの設定をする

Posted at

起動している仮想マシン

$ lxc list
+--------------------------+---------+-----------------------+-------------------------------------------------+-----------------+-----------+
|           NAME           |  STATE  |         IPV4          |                      IPV6                       |      TYPE       | SNAPSHOTS |
+--------------------------+---------+-----------------------+-------------------------------------------------+-----------------+-----------+
| ubuntu2204-desktop-vm-00 | RUNNING | 10.86.163.88 (enp5s0) | fd42:f181:9c81:dde3:216:3eff:fe03:b48b (enp5s0) | VIRTUAL-MACHINE | 0         |
+--------------------------+---------+-----------------------+-------------------------------------------------+-----------------+-----------+

CPU情報を表示させるとCPUコアは1個認識していました。

$ lxc exec ubuntu2204-desktop-vm-00 -- cat /proc/cpuinfo | grep ^process
processor	: 0

メモリは約1GBでした。

$ lxc exec ubuntu2204-desktop-vm-00 -- free -h
               total        used        free      shared  buff/cache   available
Mem:           967Mi       590Mi        99Mi        50Mi       277Mi       188Mi
Swap:             0B          0B          0B

一旦仮想マシンを停止します。

$ lxc stop ubuntu2204-desktop-vm-00
$ lxc list
+--------------------------+---------+------+------+-----------------+-----------+
|           NAME           |  STATE  | IPV4 | IPV6 |      TYPE       | SNAPSHOTS |
+--------------------------+---------+------+------+-----------------+-----------+
| ubuntu2204-desktop-vm-00 | STOPPED |      |      | VIRTUAL-MACHINE | 0         |
+--------------------------+---------+------+------+-----------------+-----------+

CPUコアを4個、メモリ容量を8GBに設定します。

$ lxc config set ubuntu2204-desktop-vm-00 limits.cpu 4
$ lxc config set ubuntu2204-desktop-vm-00 limits.memory 8GB

仮想マシンを起動します。

$ lxc start ubuntu2204-desktop-vm-00

CPU情報を表示させるとCPUコアは4個認識していました。

$ lxc exec ubuntu2204-desktop-vm-00 -- cat /proc/cpuinfo | grep ^process
processor	: 0
processor	: 1
processor	: 2
processor	: 3

メモリは約8GBでした。

$ lxc exec ubuntu2204-desktop-vm-00 -- free -h
               total        used        free      shared  buff/cache   available
Mem:           7.2Gi       700Mi       6.0Gi        54Mi       528Mi       6.3Gi
Swap:             0B          0B          0B
1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?