From Fedora Project Wiki
(Point at python-blivet bug)
(Change link to edk2 licensing issues)
Line 16: Line 16:
** To use virt-install from git, just do: <code>cd virt-manager; ./virt-install ...</code>
** To use virt-install from git, just do: <code>cd virt-manager; ./virt-install ...</code>
* Grab UEFI builds for QEMU and AARCH64
* Grab UEFI builds for QEMU and AARCH64
** Note: These bits are not part of fedora due to licensing issues. See [[Testing_secureboot_with_KVM#EDK2_Licensing_Issues]] for more info.
** Note: These bits are not part of fedora due to licensing issues. See [[Using_UEFI_with_QEMU#EDK2_Licensing_Issues]] for more info.
** Install Gerd's nightly firmware repo, as described here: https://www.kraxel.org/repos/
** Install Gerd's nightly firmware repo, as described here: https://www.kraxel.org/repos/
** Install the relevant bits: <code>sudo yum install edk2.git-aarch64</code>
** Install the relevant bits: <code>sudo yum install edk2.git-aarch64</code>

Revision as of 20:24, 23 November 2014

Installing Fedora aarch64 with QEMU and libvirt

These steps will work on both x86 and aarch64 hardware. If running on actual aarch64 hardware, the virt-install commands should automatically request KVM for maximum performance.

Get the necessary bits

Importing F21 aarch64 disk image

 sudo ./virt-install \
   --name f21-aarch64-import --ram 2048 --arch aarch64 \
   --boot loader_ro=yes,loader_type=pflash,loader=/usr/share/edk2.git/aarch64/QEMU_EFI-pflash.img,nvram_template=/usr/share/edk2.git/aarch64/QEMU_EFI_VARS.fd \
   --os-variant fedora21 --import \
   --disk /var/lib/libvirt/images/F21-20141017-foundation-v8.img
  • The guest should start booting. Log in with user=root, password=fedora
  • Note: Networking doesn't work automatically for this image, you'll need to change the config inside the VM to use DHCP

Installing F21 aarch64 from URL

Warning.png
This currently doesn't work
There's a backtrace from python-blivet when transitioning to anaconda. See bug 1166876
 sudo ./virt-install \
   --name f21-aarch64-urlinst --ram 2048 --arch aarch64 \
   --boot loader_ro=yes,loader_type=pflash,loader=/usr/share/edk2.git/aarch64/QEMU_EFI-pflash.img,nvram_template=/usr/share/edk2.git/aarch64/QEMU_EFI_VARS.fd \
   --disk size=8 \
   --location http://dl.fedoraproject.org/pub/fedora-secondary/releases/test/21_Beta/Server/aarch64/os/

Installing F21 aarch64 from CDROM

Warning.png
This currently doesn't work
The CDROM doesn't automatically boot. May be able to make it work by messing with UEFI boot settings. Could be related to bug 1163481
 sudo ./virt-install \
   --name f21-aarch64-cdrom --ram 2048 --arch aarch64 \
   --boot loader_ro=yes,loader_type=pflash,loader=/usr/share/edk2.git/aarch64/QEMU_EFI-pflash.img,nvram_template=/usr/share/edk2.git/aarch64/QEMU_EFI_VARS.fd \
   --disk size=8 --os-variant fedora21 \
   --cdrom /var/lib/libvirt/images/Fedora-Server-DVD-aarch64-21_Beta.iso