From c4875ef0df92bfe397980061d3688ea58b65c0f8 Mon Sep 17 00:00:00 2001 From: Peter Boy Date: Nov 19 2022 06:43:00 +0000 Subject: Fixed typo in download link --- diff --git a/docs/modules/ROOT/pages/virtualization/vm-install-diskimg-fedoraserver.adoc b/docs/modules/ROOT/pages/virtualization/vm-install-diskimg-fedoraserver.adoc index 631fbc6..5c2cc2c 100644 --- a/docs/modules/ROOT/pages/virtualization/vm-install-diskimg-fedoraserver.adoc +++ b/docs/modules/ROOT/pages/virtualization/vm-install-diskimg-fedoraserver.adoc @@ -59,10 +59,10 @@ We assume a complete installation of virtualization support according to the xre ---- […]$ sudo -i […]# cd /var/lib/libvirt/boot -[…]# wget https://download.fedoraproject.org/pub/fedora/linux/releases/37/Server/x86_64/image/Fedora-Server-KVM-37.x86_64.qcow2 +[…]# wget https://download.fedoraproject.org/pub/fedora/linux/releases/37/Server/x86_64/images/Fedora-Server-KVM-37-1.7.x86_64.qcow2 […]# wget https://getfedora.org/static/checksums/37/images/Fedora-Server-37-1.7-x86_64-CHECKSUM -[…]# curl https://getfedora.org/static/fedora.gpg | gpg --import -[…]# gpg --verify-files /var/lib/libvirt/boot/*-CHECKSUM +[…]# curl -O https://getfedora.org/static/fedora.gpg +[…]# gpgv --keyring ./fedora.gpg *-CHECKSUM […]# sh -c ' cd /var/lib/libvirt/boot/ && sha256sum --ignore-missing -c *-CHECKSUM ' Fedora-Server-KVM-37-20221002.n.0.x86_64.qcow2: OK ---- @@ -80,7 +80,7 @@ If you copy or move files directly from elsewhere, you should check the correct [source,] ---- […]# cd /var/lib/libvirt/boot -[…]# cp Fedora-Server-KVM-37.x86_64.qcow2 Fedora-Server-KVM-37-custom.qcow2 +[…]# cp Fedora-Server-KVM-37-1.7.x86_64.qcow2 Fedora-Server-KVM-37-custom.qcow2 […]# qemu-img info /var/lib/libvirt/boot/Fedora-Server-KVM-37-custom.qcow2 […]# qemu-img resize /var/lib/libvirt/boot/Fedora-Server-KVM-37-custom.qcow2 +30G […]# qemu-img info /var/lib/libvirt/boot/Fedora-Server-KVM-37-custom.qcow2 @@ -98,7 +98,7 @@ Copy the customized distribution file into the disk image pool and use virt-inst [source,] ---- -[…]# cp /var/lib/libvirt/boot/Fedora-Server-KVM-37-custom.qcow2 /var/lib/libvirt//images/{VM_NAME}.qcow2 +[…]# cp /var/lib/libvirt/boot/Fedora-Server-KVM-37-custom.qcow2 /var/lib/libvirt/images/{VM_NAME}.qcow2 […]# virt-install --name \ --memory 4096 --cpu host --vcpus 2 --graphics none \ --os-variant fedora37 \ @@ -107,7 +107,10 @@ Copy the customized distribution file into the disk image pool and use virt-inst --network type=direct,source=enp1s0,source_mode=bridge,model=virtio \ --network bridge=virbr0,model=virtio ---- - +[IMPORTANT] +==== +If a message "Unknown OS name 'fedora37'" appears, the list has not yet been updated in virt-install. You can then use "fedora-unknown" without any problems. +==== The parameters are quite descriptive and are to be adjusted accordingly. You will find a more detailed explanation in the appendix. A lot of messages then scroll across the screen. If the network interface doesn't provide DHCP, in includes a NetworkManager error message. You can safely ignore it for now. It finally ends with a simple, text-based input mask for the first boot configuration.