diff options
author | aslanvyos <126803786+aslanvyos@users.noreply.github.com> | 2023-09-22 15:37:52 +0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-22 15:37:52 +0400 |
commit | 3b7c616418fb7efbd85fc5e96e0b7d6c589913e0 (patch) | |
tree | f0526fde40d67e8086512752623cac5ea8c94f13 | |
parent | d51461b1efe1b07b32b1bdd11c7d1f7735b9296d (diff) | |
download | vyos-documentation-3b7c616418fb7efbd85fc5e96e0b7d6c589913e0.tar.gz vyos-documentation-3b7c616418fb7efbd85fc5e96e0b7d6c589913e0.zip |
Update libvirt.rst
1. In the new version of Libvirt this --os-type is deprecated. When we put this option we get this message "WARNING --os-type is deprecated and does nothing. Please stop using it."
2. Some ques OS KVM console is chosen as the default boot option and when we enter the console console hangs. For this reason, we need to reboot and select Serial console.
-rw-r--r-- | docs/installation/virtual/libvirt.rst | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/docs/installation/virtual/libvirt.rst b/docs/installation/virtual/libvirt.rst index ff896d07..4937eee4 100644 --- a/docs/installation/virtual/libvirt.rst +++ b/docs/installation/virtual/libvirt.rst @@ -25,7 +25,6 @@ the virtual network (type Virtio) created by the hypervisor with NAT. --ram 4096 \ --vcpus 2 \ --cdrom /var/lib/libvirt/images/vyos.iso \ - --os-type linux \ --os-variant debian10 \ --network network=default \ --graphics vnc \ @@ -68,7 +67,6 @@ Create VM with ``import`` qcow2 disk option. $ virt-install -n vyos_r2 \ --ram 4096 \ --vcpus 2 \ - --os-type linux \ --os-variant debian10 \ --network network=default \ --graphics vnc \ @@ -92,6 +90,29 @@ Connect to VM with command ``virsh console vyos_r2`` vyos@vyos:~$ +If your can not go to this screen + +.. code-block:: none + + vyos login: vyos + Password: + +Stayed in this stage. This is because the KVM console is chosen as the default boot option. + +.. code-block:: none + + Connected to domain vyos_r2 + Escape character is ^] + +Open a secondary/parallel session and use this command to reboot the VM: + +.. code-block:: none + + $ virsh reboot vyos_r2 + +Then go to the first session where you opened the console. +Select ``VyOS 1.3.x for QEMU (Serial console)`` and press ``Enter`` + The system is fully operational. Virt-manager |