Skip to content

[macOS] Display clipped on higher resolutions #226

@bernardro

Description

@bernardro

Describe the Issue

I used autopilot and installation went smooth until I tried to increase the resolution within OSX - with every increase in resolution the lower half of the screen gets clipped (covered by black space) and so I am forced to go back to a lower resolution so the entire screen can show. I have tried every combination of display and video in KVM virt manager

Reproduce the Issue

starting with a debian host, use autopilot and choose all the default settings. After booting into OSX go to settings > displays and try to change the resolution to a higher one

Expectation

while the width of the screen remains intact, the height of the screen becomes shorter with the lower part of the guest being cut off such that you cant see the lower portions of windows

Screenshots

Image Image

Operating System

Debian 13, KDE plasma 6.3.6, Wayland

Kernel

6.12.73+deb13-amd64 (64-bit)

Processor

32 × AMD Ryzen 9 7950X3D 16-Core Processor

RAM (in GB)

192 GiB of RAM (187.8 GiB usable)

GPU(s)

AMD Radeon Graphics

Version

v0.14.1

Branch

main

Generated Script File

#!/usr/bin/env bash
# shellcheck disable=SC2054

#
#   APC-RUN_28-02-2026_17-14-17
#
#   THIS FILE WAS GENERATED USING AUTOPILOT.
#
#   To boot this script, run the following command:
#   $ ./boot.sh
#

#
#	boot.sh
#	Created by Coopydood as part of the ultimate-macOS-KVM project.
#
#	Profile: https://github.com/Coopydood
#	Repo: https://github.com/Coopydood/ultimate-macOS-KVM
#
#	Adapted from OSX-KVM among others.
#	Greetz to TheNickDude, Dortania, kholia, foxlet, and other contributors :]
#


ID="macOS"
NAME="macOS 15"
FILE="boot.sh"

ULTMOS=0.14.1
IGNORE_FILE=0
REQUIRES_SUDO=0
VFIO_PTA=0
VFIO_DEVICES=0
GEN_EPOCH=1772288057
FEATURE_LEVEL=12
VERBOSE=1
DISCORD_RPC=1
DISCORD_RPC_IMG="default"

SCREEN_RES="3840x2160"

ALLOCATED_RAM="100G"
CPU_SOCKETS="1"
CPU_CORES="16"
CPU_THREADS="1"
CPU_MODEL="Haswell-noTSX"
CPU_FEATURE_ARGS="+ssse3,+sse4.2,+popcnt,+avx,+aes,+xsave,+xsaveopt,check"

REPO_PATH="KVM/osxkvm"
VM_PATH="KVM/osxkvm"
OVMF_DIR="KVM/osxkvm/ovmf"

VFIO_ID_0="$USR_VFIO_ID_0"
VFIO_ID_1="$USR_VFIO_ID_1"
VFIO_ROM="$USR_VFIO_ROM"

USB_DEVICES="$USR_USB_DEVICES"

NETWORK_DEVICE="virtio-net"
MAC_ADDRESS="00:16:cb:00:21:09"

OS_ID="Sequoia"

HDD_PATH="$VM_PATH/HDD.qcow2"
DISK_TYPE="SSD"

#   You should not have to touch anything below this line, especially if you
#   don't really know what you're doing. It'll probably break something.

args=(
-global ICH9-LPC.acpi-pci-hotplug-with-bridge-support=off
-enable-kvm -m "$ALLOCATED_RAM" -cpu "$CPU_MODEL",kvm=on,vendor=GenuineIntel,+invtsc,vmware-cpuid-freq=on,"$CPU_FEATURE_ARGS"
-machine q35
-boot menu=on,splash-time=5
#-device usb-ehci,id=ehci
#-device qemu-xhci,id=xhci
-usb -device usb-kbd -device usb-tablet 
#USB_DEV_BEGIN
#USB_DEV_END
-smp threads="$CPU_THREADS",cores="$CPU_CORES",sockets="$CPU_SOCKETS"
-device pcie-root-port,bus=pcie.0,slot=1,x-speed=16,x-width=32
#VFIO_DEV_BEGIN
#VFIO_DEV_END
-device isa-applesmc,osk="ourhardworkbythesewordsguardedpleasedontsteal(c)AppleComputerInc"
-drive if=pflash,format=raw,readonly=on,file="$OVMF_DIR/OVMF_CODE.fd"
-drive if=pflash,format=raw,file="$OVMF_DIR/OVMF_VARS.fd"
-smbios type=2
-audio driver=sdl,model=virtio
-device ich9-ahci,id=sata
-drive id=OpenCore,if=none,format=qcow2,file="$VM_PATH/boot/OpenCore.qcow2"
-drive id=HDD,if=none,file="$HDD_PATH",format=qcow2
-device ide-hd,bus=sata.2,drive=OpenCore,bootindex=1
-device ide-hd,bus=sata.3,drive=HDD,rotation_rate=1

############## REMOVE THESE LINES AFTER MACOS INSTALLATION ###############
-drive id=BaseSystem,if=none,file="$VM_PATH/BaseSystem.img",format=raw
-device ide-hd,bus=sata.4,drive=BaseSystem
##########################################################################

-netdev user,id=net0 -device "$NETWORK_DEVICE",netdev=net0,id=net0,mac="$MAC_ADDRESS"
-device qxl-vga,vgamem_mb=128,vram_size_mb=128    
-monitor stdio
#-display none
#-vga qxl

################ UNCOMMENT IF YOU WANT TO USE VNC MONITOR ################
#-vnc 0.0.0.0:1,password=on -k en-us
##########################################################################

)

while getopts d: flag
do
    case "${flag}" in
        d) DISCORD_RPC=${OPTARG};;
    esac
done

if [ $VERBOSE = 1 ]
then
echo
echo \ \ \──────────────────────────────────────────────
echo \ \ \ \ \ $FILE
echo \ \ \ \ \ $ID $OS_ID
echo
echo \ \ \ \ \ Built with ULTMOS v$ULTMOS
echo \ \ \ \ \ Using $CPU_MODEL CPU model
if [ $REQUIRES_SUDO = 1 ]
then
echo \ \ \ \ \ Superuser privileges enabled
fi
if [ $VFIO_PTA = 1 ]
then
echo \ \ \ \ \ Passthrough enabled
else
echo \ \ \ \ \ Passthrough disabled
fi
if [ $DISCORD_RPC = 1 ]
then
echo \ \ \ \ \ Discord RPC enabled
else
echo \ \ \ \ \ Discord RPC disabled
fi
echo \ \ \──────────────────────────────────────────────
echo
fi

if [ $DISCORD_RPC = 1 ]
then
"$REPO_PATH/scripts/drpc.py" --os "$OS_ID" --pt $VFIO_DEVICES --wd "$REPO_PATH" --show "$DISCORD_RPC_IMG" &
fi

qemu-system-x86_64 "${args[@]}"

if [ $DISCORD_RPC = 1 ]
then
pkill -f drpc.py
fi

Generated XML File (if applicable)

<!--
	 
	    APC-RUN_28-02-2026_17-14-23
 
    THIS FILE WAS GENERATED USING AUTOPILOT.
				 
     To be used with virsh / virt-manager.
	 
	
	KVM/osxkvm/boot.xml	
	Created by Coopydood as part of the ultimate-macOS-KVM project.
	
	Profile: https://github.com/Coopydood
	Repo: https://github.com/Coopydood/ultimate-macOS-KVM

-->

<domain xmlns:qemu="http://libvirt.org/schemas/domain/qemu/1.0" type="kvm">
  <name>ultmos-15</name>
  <title>macOS Sequoia (ULTMOS)</title>
  <description>  macOS Sequoia
  Converted from KVM/osxkvm/boot.sh 

  This virtual machine was created using ultimate-macOS-KVM, a project by Coopydood.
  Visit https://github.com/Coopydood/ultimate-macOS-KVM for help and support, or provide some feedback!

  DEBUG
  ULTMOS: v0.14.1
  XML: KVM/osxkvm/boot.xml
  AP: KVM/osxkvm/boot.sh
  APFLOW: Yes
  AUTO: Yes
  USEBLOBS: Yes
  RUNTIME: 17:14:23 28/02/2026
  </description>
  <uuid>f63c6b20-d056-432a-925f-6eb9a0389360</uuid>
  <memory unit="KiB">104857600</memory>
  <currentMemory unit="KiB">104857600</currentMemory>
  <vcpu placement="static">16</vcpu>
  <os>
    <type arch="x86_64" machine="pc-q35-7.2">hvm</type>
    <loader readonly="yes" type="pflash">KVM/osxkvm/ovmf/OVMF_CODE.fd</loader>
    <nvram>KVM/osxkvm/ovmf/OVMF_VARS.fd</nvram>
    <boot dev="hd"/>
  </os>
  <features>
    <acpi/>
    <apic/>
  </features>
  <cpu mode="host-passthrough" check="none" migratable="on">
    <topology sockets="1" dies="1" cores="16" threads="1"/>
  </cpu>
  <clock offset="utc">
    <timer name="rtc" tickpolicy="catchup"/>
    <timer name="pit" tickpolicy="delay"/>
    <timer name="hpet" present="no"/>
  </clock>
  <on_poweroff>destroy</on_poweroff>
  <on_reboot>restart</on_reboot>
  <on_crash>restart</on_crash>
  <devices>
    <emulator>/usr/bin/qemu-system-x86_64</emulator>
    <disk type="file" device="disk">
      <driver name="qemu" type="qcow2"/>
      <source file="KVM/osxkvm/boot/OpenCore.qcow2"/>
      <target dev="sda" bus="sata"/>
      <address type="drive" controller="0" bus="0" target="0" unit="0"/>
    </disk>
    <disk type="file" device="disk"> <!-- HDD HEADER -->
      <driver name="qemu" type="qcow2"/>
      <source file="KVM/osxkvm/HDD.qcow2"/>
      <target dev="sdb" bus="sata" rotation_rate="1"/>
      <address type="drive" controller="0" bus="0" target="0" unit="1"/>
    </disk> <!-- HDD FOOTER -->

<!--############# REMOVE THESE LINES AFTER MACOS INSTALLATION #############-->

    <disk type="file" device="disk"> 
      <driver name="qemu" type="raw"/>
      <source file="KVM/osxkvm/BaseSystem.img"/>
      <target dev="sdc" bus="sata"/>
      <address type="drive" controller="0" bus="0" target="0" unit="2"/>
	  </disk> 

<!--#######################################################################-->

    <controller type="sata" index="0">
      <address type="pci" domain="0x0000" bus="0x00" slot="0x1f" function="0x2"/>
    </controller>
    <controller type="pci" index="0" model="pcie-root"/>
    <controller type="pci" index="1" model="pcie-root-port">
      <model name="pcie-root-port"/>
      <target chassis="1" port="0x8"/>
      <address type="pci" domain="0x0000" bus="0x00" slot="0x01" function="0x0" multifunction="on"/>
    </controller>
    <controller type="pci" index="2" model="pcie-root-port">
      <model name="pcie-root-port"/>
      <target chassis="2" port="0x9"/>
      <address type="pci" domain="0x0000" bus="0x00" slot="0x01" function="0x1"/>
    </controller>
    <controller type="pci" index="3" model="pcie-root-port">
      <model name="pcie-root-port"/>
      <target chassis="3" port="0xa"/>
      <address type="pci" domain="0x0000" bus="0x00" slot="0x01" function="0x2"/>
    </controller>
    <controller type="pci" index="4" model="pcie-root-port">
      <model name="pcie-root-port"/>
      <target chassis="4" port="0xb"/>
      <address type="pci" domain="0x0000" bus="0x00" slot="0x01" function="0x3"/>
    </controller>
    <controller type="pci" index="5" model="pcie-root-port">
      <model name="pcie-root-port"/>
      <target chassis="5" port="0xc"/>
      <address type="pci" domain="0x0000" bus="0x00" slot="0x01" function="0x4"/>
    </controller>
    <controller type="pci" index="6" model="pcie-root-port">
      <model name="pcie-root-port"/>
      <target chassis="6" port="0xd"/>
      <address type="pci" domain="0x0000" bus="0x00" slot="0x01" function="0x5"/>
    </controller>
    <controller type="pci" index="7" model="pcie-root-port">
      <model name="pcie-root-port"/>
      <target chassis="7" port="0xe"/>
      <address type="pci" domain="0x0000" bus="0x00" slot="0x01" function="0x6"/>
    </controller>
    <controller type="pci" index="8" model="pcie-root-port">
      <model name="pcie-root-port"/>
      <target chassis="8" port="0xf"/>
      <address type="pci" domain="0x0000" bus="0x00" slot="0x01" function="0x7"/>
    </controller>
    <controller type="pci" index="9" model="pcie-to-pci-bridge">
      <model name="pcie-pci-bridge"/>
      <address type="pci" domain="0x0000" bus="0x01" slot="0x00" function="0x0"/>
    </controller>
    <controller type="usb" index="0" model="ich9-ehci1">
      <address type="pci" domain="0x0000" bus="0x00" slot="0x1d" function="0x7"/>
    </controller>
    <controller type="usb" index="0" model="ich9-uhci1">
      <master startport="0"/>
      <address type="pci" domain="0x0000" bus="0x00" slot="0x1d" function="0x0" multifunction="on"/>
    </controller>
    <controller type="usb" index="0" model="ich9-uhci2">
      <master startport="2"/>
      <address type="pci" domain="0x0000" bus="0x00" slot="0x1d" function="0x1"/>
    </controller>
    <controller type="usb" index="0" model="ich9-uhci3">
      <master startport="4"/>
      <address type="pci" domain="0x0000" bus="0x00" slot="0x1d" function="0x2"/>
    </controller>
    <interface type="network">
      <mac address="00:16:cb:00:21:09"/>
      <source network="default"/>
      <model type="virtio-net"/>
      <address type="pci" domain="0x0000" bus="0x09" slot="0x02" function="0x0"/>
    </interface>
    <serial type="pty">
      <target type="isa-serial" port="0">
        <model name="isa-serial"/>
      </target>
    </serial>
    <console type="pty">
      <target type="serial" port="0"/>
    </console>
    <input type="mouse" bus="ps2"/>
    <input type="keyboard" bus="ps2"/>
    <input type="keyboard" bus="usb">
      <address type="usb" bus="0" port="3"/>
    </input>
    <input type="tablet" bus="usb">
      <address type="usb" bus="0" port="4"/>
    </input>
    <graphics type="spice">
      <listen type="none"/>
    </graphics>
    <sound model="ich9">
	  <address type="pci" domain="0x0000" bus="0x00" slot="0x1b" function="0x0"/>
	</sound>
    <audio id="1" type="none"/>
    <video>
      <model type="vga" vram="16384" heads="1" primary="yes"/>
      <address type="pci" domain="0x0000" bus="0x09" slot="0x01" function="0x0"/>
    </video>
    <!-- VFIO-PCI HEADER -->
    <!-- USB HEADER -->
    <!--<watchdog model="itco" action="reset"/> -->
    <memballoon model="none"/>
  </devices>
  <qemu:commandline>
    <qemu:arg value="-global"/>
    <qemu:arg value="ICH9-LPC.acpi-pci-hotplug-with-bridge-support=off"/>
    <qemu:arg value="-device"/>
    <qemu:arg value="isa-applesmc,osk=ourhardworkbythesewordsguardedpleasedontsteal(c)AppleComputerInc"/>
    <qemu:arg value="-smbios"/>
    <qemu:arg value="type=2"/>
    <qemu:arg value="-cpu"/>
    <qemu:arg value="Haswell-noTSX,kvm=on,vendor=GenuineIntel,+invtsc,vmware-cpuid-freq=on,+ssse3,+sse4.2,+popcnt,+avx,+aes,+xsave,+xsaveopt,check"/>
    <qemu:arg value="-smp"/>
    <qemu:arg value="threads=1,cores=16,sockets=1"/>
    <qemu:arg value="-global"/>
    <qemu:arg value="nec-usb-xhci.msi=off"/>
    
    <!-- NVME HEADER -->
  </qemu:commandline>
</domain>

Generated Log File

ULTMOS AUTOPILOT LOG 28-02-2026 17:10:28
───────────────────────────────────────────────────────────────────
[17:10:28.419][ INFO ]:  ULTMOS v0.14.1
[17:10:28.419][ INFO ]:   
[17:10:28.419][ INFO ]:  Name       : AutoPilot
[17:10:28.419][ INFO ]:  File       : autopilot.py
[17:10:28.419][ INFO ]:  Identifier : APC
[17:10:28.419][ INFO ]:  Vendor     : Coopydood
[17:10:28.419][ INFO ]:   
[17:10:28.419][ INFO ]:  Logging to ./logs/APC_RUN_28-02-2026_17-10-28.log
[17:10:28.420][  OK  ]:  The NRS folder structure was not detected, will not use NRS
[17:10:28.420][ INFO ]:  Downloading notice list
[17:10:29.885][  OK  ]:  Notice list downloaded
[17:10:29.885][ INFO ]:  Checking notice list
[17:10:29.886][  OK  ]:  Notice list loaded
[17:10:29.886][ INFO ]:  Marking spark timestamp
[17:10:29.886][ INFO ]:  Displaying menu
[17:10:29.886][  OK  ]:  Menu displayed
[17:10:29.886][ WAIT ]:  Waiting on user input
[17:10:35.246][  OK  ]:  User input received
[17:10:35.246][  OK  ]:  ───────────────── STARTING INTERROGATION SEQUENCE ─────────────────
[17:10:35.246][ INFO ]:  FEATURE LEVEL 12
[17:10:35.246][  OK  ]:  Stage 1 sequence initiated
[17:10:35.246][  OK  ]:  Removing stale blobs
[17:10:45.810][  OK  ]:  Using default value of boot.sh
[17:10:45.810][ WARN ]:  Notice hook has been hit
[17:10:45.810][ WARN ]:  Arming notice selection trigger
[17:10:45.810][  OK  ]:  Stage 2 sequence initiated
[17:10:48.761][ WARN ]:  Notice hook has been hit
[17:10:48.761][ WARN ]:  Arming notice selection trigger
[17:10:48.762][  OK  ]:  Stage 2 sequence initiated
[17:10:48.762][ INFO ]:  Custom value requested, setting up
[17:10:51.546][  OK  ]:  Custom value was set to 15
[17:10:51.546][  OK  ]:  Stage 3 sequence initiated
[17:11:06.490][  OK  ]:  Stage 3 sequence initiated
[17:11:06.490][ INFO ]:  Custom value requested, setting up
[17:11:33.526][  OK  ]:  Custom value was set to 16
[17:11:33.526][  OK  ]:  Stage 4 sequence initiated
[17:11:41.350][  OK  ]:  Stage 4 sequence initiated
[17:11:41.350][ INFO ]:  Custom value requested, setting up
[17:11:41.990][  OK  ]:  Custom value was set to 1
[17:11:41.990][  OK  ]:  Stage 5 sequence initiated
[17:11:45.866][  OK  ]:  Using default value of Haswell-noTSX
[17:11:45.866][  OK  ]:  Stage 6 sequence initiated
[17:11:47.274][  OK  ]:  Using default value of +ssse3,+sse4.2,+popcnt,+avx,+aes,+xsave,+xsaveopt,check
[17:11:47.274][  OK  ]:  Stage 7 sequence initiated
[17:11:50.770][  OK  ]:  Stage 7 sequence initiated
[17:11:50.770][ INFO ]:  Custom value requested, setting up
[17:11:50.771][ WAIT ]:  Waiting for user input
[17:11:54.194][  OK  ]:  User input received
[17:11:54.194][  OK  ]:  Custom value was set to 100G
[17:11:54.194][  OK  ]:  Stage 8 sequence initiated
[17:11:59.922][  OK  ]:  Using default value of 80G
[17:11:59.922][ WARN ]:  Notice hook has been hit
[17:11:59.922][ WARN ]:  Arming notice selection trigger
[17:11:59.922][  OK  ]:  Stage 9 sequence initiated
[17:12:04.730][  OK  ]:  Will set disk up as an SSD
[17:12:04.730][  OK  ]:  Stage 10 sequence initiated
[17:12:08.242][  OK  ]:  Using default value of virtio-net
[17:12:08.242][  OK  ]:  Stage 11 sequence initiated
[17:12:11.154][  OK  ]:  Using default value of 00:16:cb:00:21:09
[17:12:11.154][  OK  ]:  Stage 12 sequence initiated
[17:12:19.462][  OK  ]:  Stage 12 sequence initiated
[17:12:19.463][ INFO ]:  Custom value requested, setting up
[17:12:19.463][ WAIT ]:  Waiting for user input
[17:12:19.463][ INFO ]:  New gen dialogs enabled, using GUI filepicker
[17:12:36.205][  OK  ]:  Successfully got response from GUI dialog
[17:12:36.205][  OK  ]:  User input received
[17:12:36.205][  OK  ]:  Custom value was set to DMG/BaseSystem.img
[17:12:36.205][  OK  ]:  Stage 13 sequence initiated
[17:12:44.894][  OK  ]:  Stage 13 sequence initiated
[17:12:44.894][ INFO ]:  Custom value requested, setting up
[17:12:57.221][  OK  ]:  Custom value was set to 3840x2160
[17:12:57.222][  OK  ]:  Stage 14 sequence initiated
[17:13:14.118][  OK  ]:  Using default value of True
[17:13:41.246][  OK  ]:  Interrogation complete, displaying summary and AP autoflow sliproad
[17:13:44.782][ INFO ]:  Handoff started, user preferences saved
[17:13:44.782][  OK  ]:  ───────────────── STARTING AUTOPILOT AUTOFLOW ─────────────────
[17:13:44.782][ INFO ]:  Here we go!
[17:13:46.783][  OK  ]:  Updating status UI
[17:13:49.783][ INFO ]:  STARTING PREPARE PHASE
[17:13:49.783][  OK  ]:  Updating status UI
[17:13:49.784][ INFO ]:  Setting up environment
[17:13:49.785][  OK  ]:  Copied baseConfig into live working file
[17:13:50.786][ INFO ]:  Setting up OpenCore image
[17:13:50.786][ INFO ]:  Selecting appropriate OpenCore image
[17:13:50.786][  OK  ]:  Selected NEW OpenCore image
[17:13:50.786][ INFO ]:  Copying OpenCore image in place
[17:13:50.800][  OK  ]:  OpenCore image copied
[17:13:50.800][ INFO ]:  Copying OVMF code into place
[17:13:50.805][ INFO ]:  Copying OVMF vars for resolution 3840x2160
[17:13:50.806][  OK  ]:  OVMF files copied
[17:13:50.806][ INFO ]:  Creating local OVMF variable store
[17:13:50.808][ INFO ]:  Performing integrity check
[17:13:51.308][  OK  ]:  Integrity check PASSED
[17:13:51.308][  OK  ]:  Updated stage status, handing off to next stage
[17:13:52.309][  OK  ]:  Updating status UI
[17:13:52.309][ INFO ]:  STARTING INTEGRITY PHASE
[17:13:52.309][  OK  ]:  Updating status UI
[17:13:56.310][  OK  ]:  Integrity check PASSED
[17:13:56.310][  OK  ]:  Updated stage status, handing off to next stage
[17:13:57.310][  OK  ]:  Updating status UI
[17:13:57.311][ INFO ]:  STARTING GENERATION PHASE
[17:13:57.311][ INFO ]:  Working directory was captured as PLAT/KVM/osxkvm
[17:13:57.311][  OK  ]:  Updating status UI
[17:13:57.311][ INFO ]:  Scanning for file conflict
[17:14:00.311][ INFO ]:  Beginning variable injection
[17:14:00.312][ INFO ]:  Checking disk type
[17:14:00.312][ WARN ]:  Disk type is SSD, modifying rotation rate
[17:14:00.312][  OK  ]:  Rotation rate updated
[17:14:00.312][ INFO ]:  Enabling experimental audio support
[17:14:00.312][  OK  ]:  Variable injection complete
[17:14:00.312][ INFO ]:  Stamping with ULTMOS version
[17:14:00.312][  OK  ]:  Marked working script as using ULTMOS v0.14.1
[17:14:00.312][ INFO ]:  Stamping with feature level
[17:14:00.312][  OK  ]:  Marked working script as feature level 12
[17:14:00.312][ INFO ]:  Checking if Discord rich presence is available
[17:14:00.312][  OK  ]:  Discord rich presence is available, will enable in script
[17:14:00.312][  OK  ]:  Updating status UI
[17:14:00.312][ INFO ]:  Adding OS ID marker
[17:14:00.312][ INFO ]:  Setting up BaseSystem image attachment
[17:14:00.312][ INFO ]:  Writing changes
[17:14:00.312][  OK  ]:  Changes written to file
[17:14:00.312][ INFO ]:  Performing integrity check
[17:14:00.312][  OK  ]:  Integrity check PASSED
[17:14:00.813][  OK  ]:  Updated stage status, handing off to next stage
[17:14:01.013][  OK  ]:  Updating status UI
[17:14:02.014][  OK  ]:  User is using their own macOS recovery image, disarming downloader
[17:14:02.014][  OK  ]:  Switching to local copy mode
[17:14:02.014][ INFO ]:  STARTING LOCAL RECOVERY PHASE
[17:14:02.014][  OK  ]:  Updating status UI
[17:14:04.015][ INFO ]:  Copying DMG/BaseSystem.img to repository directory
[17:14:05.366][ INFO ]:  Setting up file name
[17:14:05.370][ INFO ]:  Performing integrity check
[17:14:05.370][  OK  ]:  Integrity check PASSED
[17:14:05.370][  OK  ]:  Updated stage status, handing off to next stage
[17:14:06.371][  OK  ]:  Updating status UI
[17:14:08.371][  OK  ]:  User requested a new HDD file, generation will go ahead
[17:14:08.371][ INFO ]:  STARTING HARDDISK PHASE
[17:14:08.372][  OK  ]:  Updating status UI
[17:14:10.372][ INFO ]:  Scanning for file conflict
[17:14:10.372][ INFO ]:  Generating hard disk image file
[17:14:13.380][  OK  ]:  Hard disk image file generation verified
[17:14:13.380][  OK  ]:  Updated stage status, handing off to next stage
[17:14:13.780][  OK  ]:  Updating status UI
[17:14:15.781][ INFO ]:  STARTING APPLY PHASE
[17:14:15.781][  OK  ]:  Updating status UI
[17:14:17.781][  OK  ]:  Integrity check PASSED
[17:14:17.781][ INFO ]:  Dumping contents of baseConfig to memory
[17:14:17.781][ INFO ]:  Stripping warning headers
[17:14:17.781][ INFO ]:  Generating epoch timestamp
[17:14:17.781][  OK  ]:  Epoch timestamped as 1772288057
[17:14:17.781][ INFO ]:  Writing to file
[17:14:17.782][  OK  ]:  Header verification complete
[17:14:17.782][ INFO ]:  Moving working file into place
[17:14:17.783][  OK  ]:  Moved working file into boot.sh successfully
[17:14:18.384][  OK  ]:  Updated stage status, handing off to next stage
[17:14:18.384][  OK  ]:  Updating status UI
[17:14:20.385][ INFO ]:  Checking XML creation preferences
[17:14:20.385][  OK  ]:  XML creation requested, WILL be generating XML
[17:14:20.385][  OK  ]:  Updating status UI
[17:14:20.385][ INFO ]:  Copying current session blobs into user backdir
[17:14:21.388][  OK  ]:  Handing off to XMLC and waiting for result
[17:14:28.437][ INFO ]:  Got exit signal from XMLC, checking integrity
[17:14:28.437][  OK  ]:  XML file was successfully generated at boot.xml
[17:14:28.838][  OK  ]:  Updating status UI
[17:14:30.839][ INFO ]:  STARTING PERMISSIONS PHASE
[17:14:30.839][  OK  ]:  Updating status UI
[17:14:32.840][ INFO ]:  Setting execute permissions
[17:14:32.841][ INFO ]:  Setting readwrite permissions
[17:14:32.842][  OK  ]:  Permissons set for new user files
[17:14:32.842][  OK  ]:  Updated stage status, handing off to next stage
[17:14:33.143][  OK  ]:  Updating status UI
[17:14:35.144][  OK  ]:  Updating status UI
[17:14:35.144][ INFO ]:  STARTING CLEANUP PHASE
[17:14:36.144][ INFO ]:  Copying current session blobs into user backdir
[17:14:36.147][ INFO ]:  Marking blobs as stale
[17:14:36.147][ INFO ]:  Moving blobs into stale folder
[17:14:36.149][  OK  ]:  Blob cleanup complete
[17:14:36.149][  OK  ]:  Updated stage status, handing off to next stage
[17:14:36.349][  OK  ]:  Updating status UI
[17:14:37.350][ INFO ]:  Stopping timer
[17:14:39.350][ INFO ]:  Updating variable definition
[17:14:39.351][  OK  ]:  Timer was stopped with a recorded time of 53 seconds in live mode
[17:14:39.351][  OK  ]:  AutoPilot stages complete, displaying user summary screen
[17:14:39.351][  OK  ]:  ───────────────── AUTOPILOT COMPLETE! SESSION TIME WAS 53 SEC ─────────────────
[17:14:39.351][ INFO ]:  XML generation was part of AP flow, offering import experience
[17:14:39.351][ WAIT ]:  Waiting for user input
[17:14:47.726][  OK  ]:  User input received
[17:14:47.726][ INFO ]:  Handing off to XML importer experience flow
[17:14:47.726][ FATAL ]: bye
[17:14:47.726][ FATAL ]: ───────────────── END OF LOGFILE ─────────────────

Additional Information

I have also tried tweaking virt-manager "view" configs (fullscreen, scale display, etc)

Metadata

Metadata

Assignees

No one assigned

    Labels

    BugSomething isn't workingPendingThe issue or pull request is being reviewed

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions