123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890
00:00:01.686998 VirtualBox VM 7.0.26 r168464 linux.amd64 (Apr 11 2025 14:30:21) release log
00:00:01.687001 Log opened 2025-05-19T11:59:37.791234000Z
00:00:01.687002 Build Type: release
00:00:01.687005 OS Product: Linux
00:00:01.687006 OS Release: 6.10.11+bpo-amd64
00:00:01.687007 OS Version: #1 SMP PREEMPT_DYNAMIC Debian 6.10.11-1~bpo12+1 (2024-10-03)
00:00:01.687035 DMI Product Name: 42434YG
00:00:01.687045 DMI Product Version: ThinkPad T520
00:00:01.687055 Firmware type: BIOS
00:00:01.687094 Host RAM: 15883MB (15.5GB) total, 5824MB (5.6GB) available
00:00:01.687098 Executable: /usr/lib/virtualbox/VirtualBoxVM
00:00:01.687098 Process ID: 51954
00:00:01.687099 Package type: LINUX_64BITS_DEBIAN_12_0
00:00:01.689958 Installed Extension Packs:
00:00:01.689973 Oracle VM VirtualBox Extension Pack (Version: 7.0.14 r161095; VRDE Module: VBoxVRDP; Crypto Module: VBoxPuelCrypto)
00:00:01.691189 Console: Machine state changed to 'Starting'
00:00:01.691473 Qt version: 5.15.8
00:00:01.691480 X11 Window Manager code: 2
00:00:01.713190 SUP: seg #0: R 0x00000000 LB 0x00061000
00:00:01.713222 SUP: seg #1: R X 0x00061000 LB 0x001b9000
00:00:01.713227 SUP: seg #2: R 0x0021a000 LB 0x0006b000
00:00:01.713230 SUP: seg #3: RW 0x00285000 LB 0x0002eaf8
00:00:01.717524 SUP: Loaded VMMR0.r0 (/usr/lib/virtualbox/VMMR0.r0) at 0xXXXXXXXXXXXXXXXX - ModuleInit at XXXXXXXXXXXXXXXX and ModuleTerm at XXXXXXXXXXXXXXXX
00:00:01.717559 SUP: VMMR0EntryEx located at XXXXXXXXXXXXXXXX and VMMR0EntryFast at XXXXXXXXXXXXXXXX
00:00:01.724200 Guest OS type: 'Windows11_64'
00:00:01.730437 fHMForced=true - No raw-mode support in this build!
00:00:01.743880 GUI: UIMediumEnumerator: Medium-enumeration finished!
00:00:01.744613 X Server details: vendor: The X.Org Foundation, release: 12101007, protocol version: 11.0, display string: :0
00:00:01.744625 Using XKB for keycode to scan code conversion
00:00:01.759243 File system of '/home/my-username/VirtualBox VMs/windows11/windows11.vdi' is ext4
00:00:01.762897 File system of '/home/my-username/Downloads/VBoxGuestAdditions_7.0.0-153872.iso' (DVD) is ext4
00:00:01.767944 File system of '/home/my-username/Downloads/VBoxGuestAdditions_7.0.0-153872.iso' (DVD) is ext4
00:00:01.798962 Audio: Detected default audio driver type is 'ALSAAudio'
00:00:01.810948 Shared Clipboard: Service loaded
00:00:01.810963 Shared Clipboard: Mode: Bidirectional
00:00:01.811002 Shared Clipboard: Service running in normal mode
00:00:01.812270 Drag and drop service loaded
00:00:01.812275 Drag and drop mode: Bidirectional
00:00:01.814207 ERROR [COM]: aRC=VBOX_E_IPRT_ERROR (0x80bb0005) aIID={6ac83d89-6ee7-4e33-8ae6-b257b2e81be8} aComponent={ConsoleWrap} aText={The VBoxGuestPropSvc service call failed with the error VERR_HGCM_SERVICE_NOT_FOUND}, preserve=false aResultDetail=-2900
00:00:01.816495 ************************* CFGM dump *************************
00:00:01.816509 [/] (level 0)
00:00:01.816526 CpuExecutionCap <integer> = 0x0000000000000064 (100)
00:00:01.816531 EnablePAE <integer> = 0x0000000000000001 (1)
00:00:01.816532 HMEnabled <integer> = 0x0000000000000001 (1)
00:00:01.816533 MemBalloonSize <integer> = 0x0000000000000000 (0, 0 B)
00:00:01.816535 Name <string> = "windows11" (cb=10)
00:00:01.816536 NumCPUs <integer> = 0x0000000000000002 (2)
00:00:01.816537 PageFusionAllowed <integer> = 0x0000000000000000 (0)
00:00:01.816538 RamHoleSize <integer> = 0x0000000020000000 (536 870 912, 512.0 MiB)
00:00:01.816540 RamSize <integer> = 0x00000001c2800000 (7 558 135 808, 7.0 GiB)
00:00:01.816542 TimerMillies <integer> = 0x000000000000000a (10)
00:00:01.816543 UUID <bytes> = "b9 9f 74 1d 10 11 9b 41 bd 90 22 21 c7 97 02 64" (cb=16)
00:00:01.816546
00:00:01.816550 [/CPUM/] (level 1)
00:00:01.816551 Enable64bit <integer> = 0x0000000000000001 (1)
00:00:01.816552 GuestCpuName <string> = "host" (cb=5)
00:00:01.816553 NestedHWVirt <integer> = 0x0000000000000000 (0)
00:00:01.816554 PortableCpuIdLevel <integer> = 0x0000000000000000 (0)
00:00:01.816555 SpecCtrl <integer> = 0x0000000000000000 (0)
00:00:01.816556
00:00:01.816556 [/CPUM/IsaExts/] (level 2)
00:00:01.816557
00:00:01.816560 [/DBGC/] (level 1)
00:00:01.816561 GlobalInitScript <string> = "/home/my-username/.config/VirtualBox/dbgc-init" (cb=44)
00:00:01.816562 HistoryFile <string> = "/home/my-username/.config/VirtualBox/dbgc-history" (cb=47)
00:00:01.816563 LocalInitScript <string> = "/home/my-username/VirtualBox VMs/windows11/dbgc-init" (cb=50)
00:00:01.816563
00:00:01.816564 [/DBGF/] (level 1)
00:00:01.816564 Path <string> = "/home/my-username/VirtualBox VMs/windows11/debug/;/home/my-username/VirtualBox VMs/windows11/;cache*/home/my-username/VirtualBox VMs/windows11/dbgcache/;/home/my-username/" (cb=160)
00:00:01.816566
00:00:01.816566 [/Devices/] (level 1)
00:00:01.816567
00:00:01.816567 [/Devices/3c501/] (level 2)
00:00:01.816568
00:00:01.816568 [/Devices/8237A/] (level 2)
00:00:01.816569
00:00:01.816569 [/Devices/8237A/0/] (level 3)
00:00:01.816571 Trusted <integer> = 0x0000000000000001 (1)
00:00:01.816571
00:00:01.816572 [/Devices/GIMDev/] (level 2)
00:00:01.816572
00:00:01.816573 [/Devices/GIMDev/0/] (level 3)
00:00:01.816574 Trusted <integer> = 0x0000000000000001 (1)
00:00:01.816574
00:00:01.816575 [/Devices/VMMDev/] (level 2)
00:00:01.816576
00:00:01.816576 [/Devices/VMMDev/0/] (level 3)
00:00:01.816577 PCIBusNo <integer> = 0x0000000000000000 (0)
00:00:01.816578 PCIDeviceNo <integer> = 0x0000000000000004 (4)
00:00:01.816579 PCIFunctionNo <integer> = 0x0000000000000000 (0)
00:00:01.816579 Trusted <integer> = 0x0000000000000001 (1)
00:00:01.816580
00:00:01.816580 [/Devices/VMMDev/0/Config/] (level 4)
00:00:01.816582 GuestCoreDumpDir <string> = "/home/my-username/VirtualBox VMs/windows11/Snapshots" (cb=50)
00:00:01.816582
00:00:01.816583 [/Devices/VMMDev/0/LUN#0/] (level 4)
00:00:01.816584 Driver <string> = "HGCM" (cb=5)
00:00:01.816584
00:00:01.816585 [/Devices/VMMDev/0/LUN#0/Config/] (level 5)
00:00:01.816586
00:00:01.816586 [/Devices/VMMDev/0/LUN#999/] (level 4)
00:00:01.816587 Driver <string> = "MainStatus" (cb=11)
00:00:01.816588
00:00:01.816588 [/Devices/VMMDev/0/LUN#999/Config/] (level 5)
00:00:01.816589 First <integer> = 0x0000000000000000 (0)
00:00:01.816590 HasMediumAttachments <integer> = 0x0000000000000000 (0)
00:00:01.816591 Last <integer> = 0x0000000000000000 (0)
00:00:01.816592 iLedSet <integer> = 0x0000000000000005 (5)
00:00:01.816593
00:00:01.816593 [/Devices/acpi/] (level 2)
00:00:01.816594
00:00:01.816594 [/Devices/acpi/0/] (level 3)
00:00:01.816595 PCIBusNo <integer> = 0x0000000000000000 (0)
00:00:01.816596 PCIDeviceNo <integer> = 0x0000000000000007 (7)
00:00:01.816597 PCIFunctionNo <integer> = 0x0000000000000000 (0)
00:00:01.816598 Trusted <integer> = 0x0000000000000001 (1)
00:00:01.816599
00:00:01.816599 [/Devices/acpi/0/Config/] (level 4)
00:00:01.816601 CpuHotPlug <integer> = 0x0000000000000000 (0)
00:00:01.816601 FdcEnabled <integer> = 0x0000000000000000 (0)
00:00:01.816602 HostBusPciAddress <integer> = 0x0000000000000000 (0)
00:00:01.816603 HpetEnabled <integer> = 0x0000000000000000 (0)
00:00:01.816604 IOAPIC <integer> = 0x0000000000000001 (1)
00:00:01.816605 IocPciAddress <integer> = 0x0000000000010000 (65 536)
00:00:01.816606 NumCPUs <integer> = 0x0000000000000002 (2)
00:00:01.816607 Parallel0IoPortBase <integer> = 0x0000000000000000 (0)
00:00:01.816607 Parallel0Irq <integer> = 0x0000000000000000 (0)
00:00:01.816608 Parallel1IoPortBase <integer> = 0x0000000000000000 (0)
00:00:01.816609 Parallel1Irq <integer> = 0x0000000000000000 (0)
00:00:01.816610 Serial0IoPortBase <integer> = 0x0000000000000000 (0)
00:00:01.816610 Serial0Irq <integer> = 0x0000000000000000 (0)
00:00:01.816611 Serial1IoPortBase <integer> = 0x0000000000000000 (0)
00:00:01.816612 Serial1Irq <integer> = 0x0000000000000000 (0)
00:00:01.816614 ShowCpu <integer> = 0x0000000000000001 (1)
00:00:01.816615 ShowRtc <integer> = 0x0000000000000000 (0)
00:00:01.816617 SmcEnabled <integer> = 0x0000000000000000 (0)
00:00:01.816618 TpmMode <string> = "fifo2.0" (cb=8)
00:00:01.816619
00:00:01.816620 [/Devices/acpi/0/LUN#0/] (level 4)
00:00:01.816621 Driver <string> = "ACPIHost" (cb=9)
00:00:01.816622
00:00:01.816623 [/Devices/acpi/0/LUN#0/Config/] (level 5)
00:00:01.816624
00:00:01.816625 [/Devices/acpi/0/LUN#1/] (level 4)
00:00:01.816627 Driver <string> = "ACPICpu" (cb=8)
00:00:01.816627
00:00:01.816628 [/Devices/acpi/0/LUN#1/Config/] (level 5)
00:00:01.816630
00:00:01.816630 [/Devices/ahci/] (level 2)
00:00:01.816631
00:00:01.816632 [/Devices/ahci/0/] (level 3)
00:00:01.816633 PCIBusNo <integer> = 0x0000000000000000 (0)
00:00:01.816634 PCIDeviceNo <integer> = 0x000000000000000d (13)
00:00:01.816636 PCIFunctionNo <integer> = 0x0000000000000000 (0)
00:00:01.816637 Trusted <integer> = 0x0000000000000001 (1)
00:00:01.816638
00:00:01.816638 [/Devices/ahci/0/Config/] (level 4)
00:00:01.816640 Bootable <integer> = 0x0000000000000001 (1)
00:00:01.816641 PortCount <integer> = 0x0000000000000002 (2)
00:00:01.816642
00:00:01.816643 [/Devices/ahci/0/Config/Port0/] (level 5)
00:00:01.816645 Hotpluggable <integer> = 0x0000000000000000 (0)
00:00:01.816646
00:00:01.816647 [/Devices/ahci/0/Config/Port1/] (level 5)
00:00:01.816649 Hotpluggable <integer> = 0x0000000000000000 (0)
00:00:01.816650
00:00:01.816650 [/Devices/ahci/0/LUN#0/] (level 4)
00:00:01.816652 Driver <string> = "VD" (cb=3)
00:00:01.816653
00:00:01.816653 [/Devices/ahci/0/LUN#0/Config/] (level 5)
00:00:01.816655 BlockCache <integer> = 0x0000000000000001 (1)
00:00:01.816656 Format <string> = "VDI" (cb=4)
00:00:01.816657 Mountable <integer> = 0x0000000000000000 (0)
00:00:01.816658 Path <string> = "/home/my-username/VirtualBox VMs/windows11/windows11.vdi" (cb=54)
00:00:01.816659 Type <string> = "HardDisk" (cb=9)
00:00:01.816660 UseNewIo <integer> = 0x0000000000000001 (1)
00:00:01.816661
00:00:01.816662 [/Devices/ahci/0/LUN#0/Config/Plugins/] (level 6)
00:00:01.816664
00:00:01.816665 [/Devices/ahci/0/LUN#0/Config/Plugins/VDPluginCrypt/] (level 7)
00:00:01.816667 Path <string> = "/usr/lib/virtualbox/ExtensionPacks/Oracle_VM_VirtualBox_Extension_Pack/linux.amd64/VDPluginCrypt.so" (cb=100)
00:00:01.816669
00:00:01.816669 [/Devices/ahci/0/LUN#0/Config/VDConfig/] (level 6)
00:00:01.816671 AllocationBlockSize <string> = "1048576" (cb=8)
00:00:01.816672
00:00:01.816673 [/Devices/ahci/0/LUN#1/] (level 4)
00:00:01.816674 Driver <string> = "SCSI" (cb=5)
00:00:01.816676
00:00:01.816676 [/Devices/ahci/0/LUN#1/AttachedDriver/] (level 5)
00:00:01.816678 Driver <string> = "VD" (cb=3)
00:00:01.816679
00:00:01.816679 [/Devices/ahci/0/LUN#1/AttachedDriver/Config/] (level 6)
00:00:01.816681 Format <string> = "RAW" (cb=4)
00:00:01.816682 Mountable <integer> = 0x0000000000000001 (1)
00:00:01.816684 Path <string> = "/home/my-username/Downloads/VBoxGuestAdditions_7.0.0-153872.iso" (cb=61)
00:00:01.816685 ReadOnly <integer> = 0x0000000000000001 (1)
00:00:01.816686 Type <string> = "DVD" (cb=4)
00:00:01.816686 UseNewIo <integer> = 0x0000000000000001 (1)
00:00:01.816687
00:00:01.816688 [/Devices/ahci/0/LUN#1/AttachedDriver/Config/Plugins/] (level 7)
00:00:01.816690
00:00:01.816691 [/Devices/ahci/0/LUN#1/AttachedDriver/Config/Plugins/VDPluginCrypt/] (level 8)
00:00:01.816694 Path <string> = "/usr/lib/virtualbox/ExtensionPacks/Oracle_VM_VirtualBox_Extension_Pack/linux.amd64/VDPluginCrypt.so" (cb=100)
00:00:01.816695
00:00:01.816695 [/Devices/ahci/0/LUN#999/] (level 4)
00:00:01.816697 Driver <string> = "MainStatus" (cb=11)
00:00:01.816698
00:00:01.816698 [/Devices/ahci/0/LUN#999/Config/] (level 5)
00:00:01.816700 DeviceInstance <string> = "ahci/0" (cb=7)
00:00:01.816701 First <integer> = 0x0000000000000000 (0)
00:00:01.816702 HasMediumAttachments <integer> = 0x0000000000000001 (1)
00:00:01.816703 Last <integer> = 0x0000000000000001 (1)
00:00:01.816705 iLedSet <integer> = 0x0000000000000002 (2)
00:00:01.816706
00:00:01.816707 [/Devices/apic/] (level 2)
00:00:01.816708
00:00:01.816709 [/Devices/apic/0/] (level 3)
00:00:01.816710 Trusted <integer> = 0x0000000000000001 (1)
00:00:01.816712
00:00:01.816712 [/Devices/apic/0/Config/] (level 4)
00:00:01.816714 IOAPIC <integer> = 0x0000000000000001 (1)
00:00:01.816716 Mode <integer> = 0x0000000000000002 (2)
00:00:01.816717 NumCPUs <integer> = 0x0000000000000002 (2)
00:00:01.816718
00:00:01.816718 [/Devices/dp8390/] (level 2)
00:00:01.816720
00:00:01.816720 [/Devices/e1000/] (level 2)
00:00:01.816722
00:00:01.816722 [/Devices/e1000/0/] (level 3)
00:00:01.816724 PCIBusNo <integer> = 0x0000000000000000 (0)
00:00:01.816725 PCIDeviceNo <integer> = 0x0000000000000003 (3)
00:00:01.816726 PCIFunctionNo <integer> = 0x0000000000000000 (0)
00:00:01.816728 Trusted <integer> = 0x0000000000000001 (1)
00:00:01.816729
00:00:01.816730 [/Devices/e1000/0/Config/] (level 4)
00:00:01.816732 AdapterType <integer> = 0x0000000000000000 (0)
00:00:01.816733 CableConnected <integer> = 0x0000000000000001 (1)
00:00:01.816734 LineSpeed <integer> = 0x0000000000000000 (0)
00:00:01.816736 MAC <bytes> = "08 00 27 32 5b be" (cb=6)
00:00:01.816738
00:00:01.816739 [/Devices/e1000/0/LUN#0/] (level 4)
00:00:01.816741 Driver <string> = "NAT" (cb=4)
00:00:01.816742
00:00:01.816743 [/Devices/e1000/0/LUN#0/Config/] (level 5)
00:00:01.816746 AliasMode <integer> = 0x0000000000000000 (0)
00:00:01.816747 BootFile <string> = "windows11.pxe" (cb=14)
00:00:01.816749 DNSProxy <integer> = 0x0000000000000000 (0)
00:00:01.816750 LocalhostReachable <integer> = 0x0000000000000001 (1)
00:00:01.816751 Network <string> = "10.0.2.0/24" (cb=12)
00:00:01.816752 PassDomain <integer> = 0x0000000000000001 (1)
00:00:01.816753 TFTPPrefix <string> = "/home/my-username/.config/VirtualBox/TFTP" (cb=39)
00:00:01.816755 UseHostResolver <integer> = 0x0000000000000000 (0)
00:00:01.816756
00:00:01.816757 [/Devices/e1000/0/LUN#999/] (level 4)
00:00:01.816759 Driver <string> = "MainStatus" (cb=11)
00:00:01.816760
00:00:01.816760 [/Devices/e1000/0/LUN#999/Config/] (level 5)
00:00:01.816762 First <integer> = 0x0000000000000000 (0)
00:00:01.816764 HasMediumAttachments <integer> = 0x0000000000000000 (0)
00:00:01.816765 Last <integer> = 0x0000000000000000 (0)
00:00:01.816767 iLedSet <integer> = 0x0000000000000004 (4)
00:00:01.816768
00:00:01.816769 [/Devices/efi/] (level 2)
00:00:01.816770
00:00:01.816771 [/Devices/efi/0/] (level 3)
00:00:01.816773 Trusted <integer> = 0x0000000000000001 (1)
00:00:01.816774
00:00:01.816774 [/Devices/efi/0/Config/] (level 4)
00:00:01.816776 64BitEntry <integer> = 0x0000000000000001 (1)
00:00:01.816778 APIC <integer> = 0x0000000000000001 (1)
00:00:01.816779 BootArgs <string> = "" (cb=1)
00:00:01.816780 DeviceProps <string> = "" (cb=1)
00:00:01.816781 EfiRom <string> = "VBoxEFI64.fd" (cb=13)
00:00:01.816782 IOAPIC <integer> = 0x0000000000000001 (1)
00:00:01.816783 McfgBase <integer> = 0x0000000000000000 (0)
00:00:01.816784 McfgLength <integer> = 0x0000000000000000 (0)
00:00:01.816785 NumCPUs <integer> = 0x0000000000000002 (2)
00:00:01.816786 NvramFile <string> = "/home/my-username/VirtualBox VMs/windows11/windows11.nvram" (cb=56)
00:00:01.816787 TpmPpiBase <integer> = 0x00000000fed45000 (4 275 326 976)
00:00:01.816789 UUID <bytes> = "b9 9f 74 1d 10 11 9b 41 bd 90 22 21 c7 97 02 64" (cb=16)
00:00:01.816792 UuidLe <integer> = 0x0000000000000001 (1)
00:00:01.816794
00:00:01.816794 [/Devices/efi/0/LUN#0/] (level 4)
00:00:01.816796 Driver <string> = "NvramStore" (cb=11)
00:00:01.816797
00:00:01.816798 [/Devices/hda/] (level 2)
00:00:01.816799
00:00:01.816800 [/Devices/hda/0/] (level 3)
00:00:01.816801 PCIBusNo <integer> = 0x0000000000000000 (0)
00:00:01.816802 PCIDeviceNo <integer> = 0x0000000000000005 (5)
00:00:01.816804 PCIFunctionNo <integer> = 0x0000000000000000 (0)
00:00:01.816805 Trusted <integer> = 0x0000000000000001 (1)
00:00:01.816806
00:00:01.816806 [/Devices/hda/0/AudioConfig/] (level 4)
00:00:01.816808
00:00:01.816809 [/Devices/hda/0/Config/] (level 4)
00:00:01.816811 DebugEnabled <integer> = 0x0000000000000000 (0)
00:00:01.816812
00:00:01.816812 [/Devices/hda/0/LUN#0/] (level 4)
00:00:01.816814 Driver <string> = "AUDIO" (cb=6)
00:00:01.816815
00:00:01.816816 [/Devices/hda/0/LUN#0/AttachedDriver/] (level 5)
00:00:01.816818 Driver <string> = "ALSAAudio" (cb=10)
00:00:01.816819
00:00:01.816819 [/Devices/hda/0/LUN#0/AttachedDriver/Config/] (level 6)
00:00:01.816822
00:00:01.816822 [/Devices/hda/0/LUN#0/Config/] (level 5)
00:00:01.816824 DriverName <string> = "ALSAAudio" (cb=10)
00:00:01.816825 InputEnabled <integer> = 0x0000000000000001 (1)
00:00:01.816827 OutputEnabled <integer> = 0x0000000000000001 (1)
00:00:01.816828
00:00:01.816828 [/Devices/hda/0/LUN#1/] (level 4)
00:00:01.816830 Driver <string> = "AUDIO" (cb=6)
00:00:01.816831
00:00:01.816832 [/Devices/i8254/] (level 2)
00:00:01.816833
00:00:01.816834 [/Devices/i8254/0/] (level 3)
00:00:01.816835
00:00:01.816835 [/Devices/i8254/0/Config/] (level 4)
00:00:01.816837
00:00:01.816837 [/Devices/i8259/] (level 2)
00:00:01.816838
00:00:01.816839 [/Devices/i8259/0/] (level 3)
00:00:01.816841 Trusted <integer> = 0x0000000000000001 (1)
00:00:01.816842
00:00:01.816842 [/Devices/i8259/0/Config/] (level 4)
00:00:01.816844
00:00:01.816845 [/Devices/ioapic/] (level 2)
00:00:01.816846
00:00:01.816846 [/Devices/ioapic/0/] (level 3)
00:00:01.816848 Trusted <integer> = 0x0000000000000001 (1)
00:00:01.816849
00:00:01.816849 [/Devices/ioapic/0/Config/] (level 4)
00:00:01.816850 NumCPUs <integer> = 0x0000000000000002 (2)
00:00:01.816851
00:00:01.816851 [/Devices/mc146818/] (level 2)
00:00:01.816852
00:00:01.816853 [/Devices/mc146818/0/] (level 3)
00:00:01.816854
00:00:01.816854 [/Devices/mc146818/0/Config/] (level 4)
00:00:01.816855 UseUTC <integer> = 0x0000000000000000 (0)
00:00:01.816856
00:00:01.816856 [/Devices/parallel/] (level 2)
00:00:01.816857
00:00:01.816857 [/Devices/pcarch/] (level 2)
00:00:01.816858
00:00:01.816858 [/Devices/pcarch/0/] (level 3)
00:00:01.816859 Trusted <integer> = 0x0000000000000001 (1)
00:00:01.816860
00:00:01.816860 [/Devices/pcarch/0/Config/] (level 4)
00:00:01.816861
00:00:01.816862 [/Devices/pci/] (level 2)
00:00:01.816862
00:00:01.816863 [/Devices/pci/0/] (level 3)
00:00:01.816864 Trusted <integer> = 0x0000000000000001 (1)
00:00:01.816864
00:00:01.816865 [/Devices/pci/0/Config/] (level 4)
00:00:01.816866 IOAPIC <integer> = 0x0000000000000001 (1)
00:00:01.816866
00:00:01.816866 [/Devices/pcibridge/] (level 2)
00:00:01.816867
00:00:01.816868 [/Devices/pckbd/] (level 2)
00:00:01.816868
00:00:01.816869 [/Devices/pckbd/0/] (level 3)
00:00:01.816870 Trusted <integer> = 0x0000000000000001 (1)
00:00:01.816870
00:00:01.816871 [/Devices/pckbd/0/Config/] (level 4)
00:00:01.816872
00:00:01.816872 [/Devices/pckbd/0/LUN#0/] (level 4)
00:00:01.816873 Driver <string> = "KeyboardQueue" (cb=14)
00:00:01.816874
00:00:01.816874 [/Devices/pckbd/0/LUN#0/AttachedDriver/] (level 5)
00:00:01.816875 Driver <string> = "MainKeyboard" (cb=13)
00:00:01.816876
00:00:01.816876 [/Devices/pckbd/0/LUN#0/Config/] (level 5)
00:00:01.816877 QueueSize <integer> = 0x0000000000000040 (64, 64 B)
00:00:01.816879
00:00:01.816879 [/Devices/pckbd/0/LUN#1/] (level 4)
00:00:01.816880 Driver <string> = "MouseQueue" (cb=11)
00:00:01.816881
00:00:01.816881 [/Devices/pckbd/0/LUN#1/AttachedDriver/] (level 5)
00:00:01.816882 Driver <string> = "MainMouse" (cb=10)
00:00:01.816883
00:00:01.816883 [/Devices/pckbd/0/LUN#1/Config/] (level 5)
00:00:01.816884 QueueSize <integer> = 0x0000000000000080 (128, 128 B)
00:00:01.816885
00:00:01.816885 [/Devices/pcnet/] (level 2)
00:00:01.816886
00:00:01.816887 [/Devices/piix3ide/] (level 2)
00:00:01.816887
00:00:01.816888 [/Devices/piix3ide/0/] (level 3)
00:00:01.816889 PCIBusNo <integer> = 0x0000000000000000 (0)
00:00:01.816890 PCIDeviceNo <integer> = 0x0000000000000001 (1)
00:00:01.816891 PCIFunctionNo <integer> = 0x0000000000000001 (1)
00:00:01.816892 Trusted <integer> = 0x0000000000000001 (1)
00:00:01.816892
00:00:01.816893 [/Devices/piix3ide/0/Config/] (level 4)
00:00:01.816894 Type <string> = "PIIX4" (cb=6)
00:00:01.816894
00:00:01.816895 [/Devices/piix3ide/0/LUN#0/] (level 4)
00:00:01.816896 Driver <string> = "VD" (cb=3)
00:00:01.816896
00:00:01.816896 [/Devices/piix3ide/0/LUN#0/Config/] (level 5)
00:00:01.816898 Format <string> = "RAW" (cb=4)
00:00:01.816898 Mountable <integer> = 0x0000000000000001 (1)
00:00:01.816899 Path <string> = "/home/my-username/Downloads/VBoxGuestAdditions_7.0.0-153872.iso" (cb=61)
00:00:01.816900 ReadOnly <integer> = 0x0000000000000001 (1)
00:00:01.816901 Type <string> = "DVD" (cb=4)
00:00:01.816901
00:00:01.816902 [/Devices/piix3ide/0/LUN#0/Config/Plugins/] (level 6)
00:00:01.816903
00:00:01.816903 [/Devices/piix3ide/0/LUN#0/Config/Plugins/VDPluginCrypt/] (level 7)
00:00:01.816905 Path <string> = "/usr/lib/virtualbox/ExtensionPacks/Oracle_VM_VirtualBox_Extension_Pack/linux.amd64/VDPluginCrypt.so" (cb=100)
00:00:01.816906
00:00:01.816906 [/Devices/piix3ide/0/LUN#999/] (level 4)
00:00:01.816907 Driver <string> = "MainStatus" (cb=11)
00:00:01.816908
00:00:01.816908 [/Devices/piix3ide/0/LUN#999/Config/] (level 5)
00:00:01.816909 DeviceInstance <string> = "piix3ide/0" (cb=11)
00:00:01.816910 First <integer> = 0x0000000000000000 (0)
00:00:01.816911 HasMediumAttachments <integer> = 0x0000000000000001 (1)
00:00:01.816912 Last <integer> = 0x0000000000000003 (3)
00:00:01.816913 iLedSet <integer> = 0x0000000000000003 (3)
00:00:01.816914
00:00:01.816914 [/Devices/serial/] (level 2)
00:00:01.816915
00:00:01.816915 [/Devices/tpm/] (level 2)
00:00:01.816916
00:00:01.816916 [/Devices/tpm/0/] (level 3)
00:00:01.816917 Trusted <integer> = 0x0000000000000001 (1)
00:00:01.816918
00:00:01.816918 [/Devices/tpm/0/Config/] (level 4)
00:00:01.816920
00:00:01.816920 [/Devices/tpm/0/LUN#0/] (level 4)
00:00:01.816921 Driver <string> = "TpmEmuTpms" (cb=11)
00:00:01.816921
00:00:01.816922 [/Devices/tpm/0/LUN#0/AttachedDriver/] (level 5)
00:00:01.816923 Driver <string> = "NvramStore" (cb=11)
00:00:01.816923
00:00:01.816924 [/Devices/tpm/0/LUN#0/Config/] (level 5)
00:00:01.816925 TpmVersion <integer> = 0x0000000000000002 (2)
00:00:01.816926
00:00:01.816926 [/Devices/tpm-ppi/] (level 2)
00:00:01.816927
00:00:01.816927 [/Devices/tpm-ppi/0/] (level 3)
00:00:01.816928 Trusted <integer> = 0x0000000000000001 (1)
00:00:01.816929
00:00:01.816929 [/Devices/tpm-ppi/0/Config/] (level 4)
00:00:01.816930 MmioBase <integer> = 0x00000000fed45000 (4 275 326 976)
00:00:01.816931
00:00:01.816932 [/Devices/usb-xhci/] (level 2)
00:00:01.816932
00:00:01.816933 [/Devices/usb-xhci/0/] (level 3)
00:00:01.816934 PCIBusNo <integer> = 0x0000000000000000 (0)
00:00:01.816935 PCIDeviceNo <integer> = 0x000000000000000c (12)
00:00:01.816935 PCIFunctionNo <integer> = 0x0000000000000000 (0)
00:00:01.816936 Trusted <integer> = 0x0000000000000001 (1)
00:00:01.816937
00:00:01.816937 [/Devices/usb-xhci/0/Config/] (level 4)
00:00:01.816938
00:00:01.816939 [/Devices/usb-xhci/0/LUN#0/] (level 4)
00:00:01.816940 Driver <string> = "VUSBRootHub" (cb=12)
00:00:01.816940
00:00:01.816941 [/Devices/usb-xhci/0/LUN#0/Config/] (level 5)
00:00:01.816942
00:00:01.816942 [/Devices/usb-xhci/0/LUN#1/] (level 4)
00:00:01.816943 Driver <string> = "VUSBRootHub" (cb=12)
00:00:01.816944
00:00:01.816944 [/Devices/usb-xhci/0/LUN#1/Config/] (level 5)
00:00:01.816945
00:00:01.816945 [/Devices/usb-xhci/0/LUN#999/] (level 4)
00:00:01.816946 Driver <string> = "MainStatus" (cb=11)
00:00:01.816947
00:00:01.816947 [/Devices/usb-xhci/0/LUN#999/Config/] (level 5)
00:00:01.816948 First <integer> = 0x0000000000000000 (0)
00:00:01.816949 HasMediumAttachments <integer> = 0x0000000000000000 (0)
00:00:01.816950 Last <integer> = 0x0000000000000001 (1)
00:00:01.816951 iLedSet <integer> = 0x0000000000000001 (1)
00:00:01.816952
00:00:01.816952 [/Devices/vga/] (level 2)
00:00:01.816953
00:00:01.816953 [/Devices/vga/0/] (level 3)
00:00:01.816954 PCIBusNo <integer> = 0x0000000000000000 (0)
00:00:01.816955 PCIDeviceNo <integer> = 0x0000000000000002 (2)
00:00:01.816956 PCIFunctionNo <integer> = 0x0000000000000000 (0)
00:00:01.816956 Trusted <integer> = 0x0000000000000001 (1)
00:00:01.816957
00:00:01.816957 [/Devices/vga/0/Config/] (level 4)
00:00:01.816959 3DEnabled <integer> = 0x0000000000000000 (0)
00:00:01.816959 CustomVideoModes <integer> = 0x0000000000000000 (0)
00:00:01.816960 FadeIn <integer> = 0x0000000000000001 (1)
00:00:01.816961 FadeOut <integer> = 0x0000000000000001 (1)
00:00:01.816962 HeightReduction <integer> = 0x0000000000000000 (0)
00:00:01.816963 LogoFile <string> = "" (cb=1)
00:00:01.816963 LogoTime <integer> = 0x0000000000000000 (0)
00:00:01.816964 MonitorCount <integer> = 0x0000000000000001 (1)
00:00:01.816965 ShowBootMenu <integer> = 0x0000000000000002 (2)
00:00:01.816966 VRamSize <integer> = 0x0000000010000000 (268 435 456, 256.0 MiB)
00:00:01.816967
00:00:01.816968 [/Devices/vga/0/LUN#0/] (level 4)
00:00:01.816969 Driver <string> = "MainDisplay" (cb=12)
00:00:01.816969
00:00:01.816969 [/Devices/vga/0/LUN#0/Config/] (level 5)
00:00:01.816971
00:00:01.816971 [/Devices/vga/0/LUN#999/] (level 4)
00:00:01.816972 Driver <string> = "MainStatus" (cb=11)
00:00:01.816972
00:00:01.816973 [/Devices/vga/0/LUN#999/Config/] (level 5)
00:00:01.816974 First <integer> = 0x0000000000000000 (0)
00:00:01.816975 HasMediumAttachments <integer> = 0x0000000000000000 (0)
00:00:01.816976 Last <integer> = 0x0000000000000000 (0)
00:00:01.816976 iLedSet <integer> = 0x0000000000000000 (0)
00:00:01.816977
00:00:01.816978 [/Devices/virtio-net/] (level 2)
00:00:01.816979
00:00:01.816979 [/EM/] (level 1)
00:00:01.816980 TripleFaultReset <integer> = 0x0000000000000000 (0)
00:00:01.816980
00:00:01.816981 [/GCM/] (level 1)
00:00:01.816982 FixerSet <integer> = 0x0000000000000000 (0)
00:00:01.816982
00:00:01.816983 [/GIM/] (level 1)
00:00:01.816983 Provider <string> = "HyperV" (cb=7)
00:00:01.816984
00:00:01.816984 [/HM/] (level 1)
00:00:01.816985 64bitEnabled <integer> = 0x0000000000000001 (1)
00:00:01.816986 EnableLargePages <integer> = 0x0000000000000001 (1)
00:00:01.816987 EnableNestedPaging <integer> = 0x0000000000000001 (1)
00:00:01.816988 EnableUX <integer> = 0x0000000000000001 (1)
00:00:01.816989 EnableVPID <integer> = 0x0000000000000001 (1)
00:00:01.816989 Exclusive <integer> = 0x0000000000000001 (1)
00:00:01.816990 HMForced <integer> = 0x0000000000000001 (1)
00:00:01.816991 IBPBOnVMEntry <integer> = 0x0000000000000000 (0)
00:00:01.816992 IBPBOnVMExit <integer> = 0x0000000000000000 (0)
00:00:01.816993 L1DFlushOnSched <integer> = 0x0000000000000001 (1)
00:00:01.816994 L1DFlushOnVMEntry <integer> = 0x0000000000000000 (0)
00:00:01.816994 MDSClearOnSched <integer> = 0x0000000000000001 (1)
00:00:01.816995 MDSClearOnVMEntry <integer> = 0x0000000000000000 (0)
00:00:01.816996 SpecCtrlByHost <integer> = 0x0000000000000000 (0)
00:00:01.816997 SvmVirtVmsaveVmload <integer> = 0x0000000000000000 (0)
00:00:01.816997 UseNEMInstead <integer> = 0x0000000000000000 (0)
00:00:01.816998
00:00:01.816998 [/MM/] (level 1)
00:00:01.816999 CanUseLargerHeap <integer> = 0x0000000000000000 (0)
00:00:01.817000
00:00:01.817000 [/NEM/] (level 1)
00:00:01.817001 Allow64BitGuests <integer> = 0x0000000000000001 (1)
00:00:01.817001 IBPBOnVMEntry <integer> = 0x0000000000000000 (0)
00:00:01.817002 IBPBOnVMExit <integer> = 0x0000000000000000 (0)
00:00:01.817003 L1DFlushOnSched <integer> = 0x0000000000000001 (1)
00:00:01.817004 L1DFlushOnVMEntry <integer> = 0x0000000000000000 (0)
00:00:01.817004 MDSClearOnSched <integer> = 0x0000000000000001 (1)
00:00:01.817005 MDSClearOnVMEntry <integer> = 0x0000000000000000 (0)
00:00:01.817006
00:00:01.817006 [/PDM/] (level 1)
00:00:01.817007
00:00:01.817007 [/PDM/AsyncCompletion/] (level 2)
00:00:01.817008
00:00:01.817008 [/PDM/AsyncCompletion/File/] (level 3)
00:00:01.817009
00:00:01.817010 [/PDM/AsyncCompletion/File/BwGroups/] (level 4)
00:00:01.817011
00:00:01.817011 [/PDM/BlkCache/] (level 2)
00:00:01.817012 CacheSize <integer> = 0x0000000000500000 (5 242 880, 5.0 MiB)
00:00:01.817013
00:00:01.817013 [/PDM/Devices/] (level 2)
00:00:01.817014
00:00:01.817014 [/PDM/Devices/VBoxNvme/] (level 3)
00:00:01.817015 Path <string> = "/usr/lib/virtualbox/ExtensionPacks/Oracle_VM_VirtualBox_Extension_Pack/linux.amd64/VBoxNvmeR3.so" (cb=97)
00:00:01.817016 R0SearchPath <string> = "/usr/lib/virtualbox/ExtensionPacks/Oracle_VM_VirtualBox_Extension_Pack/linux.amd64" (cb=83)
00:00:01.817017
00:00:01.817017 [/PDM/Drivers/] (level 2)
00:00:01.817018
00:00:01.817018 [/PDM/Drivers/DrvHostWebcam/] (level 3)
00:00:01.817019 Path <string> = "/usr/lib/virtualbox/ExtensionPacks/Oracle_VM_VirtualBox_Extension_Pack/linux.amd64/VBoxHostWebcam.so" (cb=101)
00:00:01.817020
00:00:01.817021 [/PDM/Drivers/VBoxC/] (level 3)
00:00:01.817021 Path <string> = "/usr/lib/virtualbox/components/VBoxC" (cb=37)
00:00:01.817022
00:00:01.817022 [/PDM/NetworkShaper/] (level 2)
00:00:01.817023
00:00:01.817024 [/PDM/NetworkShaper/BwGroups/] (level 3)
00:00:01.817025
00:00:01.817025 [/PDM/USB/] (level 2)
00:00:01.817026
00:00:01.817026 [/PDM/USB/VBoxUsbCardReader/] (level 3)
00:00:01.817027 Path <string> = "/usr/lib/virtualbox/ExtensionPacks/Oracle_VM_VirtualBox_Extension_Pack/linux.amd64/VBoxUsbCardReaderR3.so" (cb=106)
00:00:01.817028
00:00:01.817028 [/PDM/USB/VBoxUsbWebcam/] (level 3)
00:00:01.817029 Path <string> = "/usr/lib/virtualbox/ExtensionPacks/Oracle_VM_VirtualBox_Extension_Pack/linux.amd64/VBoxUsbWebcamR3.so" (cb=102)
00:00:01.817030
00:00:01.817030 [/TM/] (level 1)
00:00:01.817031 UTCOffset <integer> = 0x0000000000000000 (0)
00:00:01.817032
00:00:01.817032 [/USB/] (level 1)
00:00:01.817033
00:00:01.817033 [/USB/HidMouse/] (level 2)
00:00:01.817034
00:00:01.817034 [/USB/HidMouse/0/] (level 3)
00:00:01.817035
00:00:01.817035 [/USB/HidMouse/0/Config/] (level 4)
00:00:01.817036 Mode <string> = "absolute" (cb=9)
00:00:01.817037
00:00:01.817037 [/USB/HidMouse/0/LUN#0/] (level 4)
00:00:01.817038 Driver <string> = "MouseQueue" (cb=11)
00:00:01.817039
00:00:01.817039 [/USB/HidMouse/0/LUN#0/AttachedDriver/] (level 5)
00:00:01.817040 Driver <string> = "MainMouse" (cb=10)
00:00:01.817041
00:00:01.817041 [/USB/HidMouse/0/LUN#0/Config/] (level 5)
00:00:01.817042 QueueSize <integer> = 0x0000000000000080 (128, 128 B)
00:00:01.817043
00:00:01.817043 [/USB/USBProxy/] (level 2)
00:00:01.817044
00:00:01.817045 [/USB/USBProxy/GlobalConfig/] (level 3)
00:00:01.817045
00:00:01.817047 ********************* End of CFGM dump **********************
00:00:01.819047 HM: HMR3Init: VT-x w/ nested paging and unrestricted guest execution hw support
00:00:01.819253 GUI: UIDesktopWidgetWatchdog::sltHandleHostScreenAvailableGeometryCalculated: Screen 0 work area is actually resized to: 0x32 x 1366x736
00:00:01.819523 CPUM: fXStateHostMask=0x7; initial: 0x7; host XCR0=0x7
00:00:01.820831 CPUM: Matched host CPU INTEL 0x6/0x2a/0x7 Intel_Core7_SandyBridge with CPU DB entry 'Intel Core i7-2635QM' (INTEL 0x6/0x2a/0x7 Intel_Core7_SandyBridge)
00:00:01.821431 CPUM: MXCSR_MASK=0xffff (host: 0xffff)
00:00:01.821466 CPUM: Disabled PCID without FSGSBASE to workaround buggy guests
00:00:01.821470 CPUM: Microcode revision 0x0000002F
00:00:01.821478 CPUM: MSR/CPUID reconciliation insert: 0x0000010b IA32_FLUSH_CMD
00:00:01.821505 CPUM: SetGuestCpuIdFeature: Enabled SYSENTER/EXIT
00:00:01.821508 CPUM: SetGuestCpuIdFeature: Enabled SYSCALL/RET
00:00:01.821510 CPUM: SetGuestCpuIdFeature: Enabled PAE
00:00:01.821511 CPUM: SetGuestCpuIdFeature: Enabled LAHF/SAHF
00:00:01.821513 CPUM: SetGuestCpuIdFeature: Enabled NX
00:00:01.821514 CPUM: SetGuestCpuIdFeature: Enabled LONG MODE
00:00:01.823006 PGM: Host paging mode: AMD64+PGE+NX
00:00:01.823034 PGM: PGMPool: cMaxPages=3840 (u64MaxPages=3643)
00:00:01.823040 PGM: pgmR3PoolInit: cMaxPages=0xf00 cMaxUsers=0x1e00 cMaxPhysExts=0x1e00 fCacheEnable=true
00:00:01.824055 PGM: /proc/sys/vm/max_map_count = 65530 (rc2=VWRN_TRAILING_CHARS); cGuessNeeded=16384
00:00:01.848674 TM: GIP - u32Mode=3 (Invariant) u32UpdateHz=62 u32UpdateIntervalNS=16000000 enmUseTscDelta=2 (Practically Zero) fGetGipCpu=0x1b cCpus=4
00:00:01.848739 TM: GIP - u64CpuHz=2 491 904 816 (0x94877330) SUPGetCpuHzFromGip => 2 491 904 816
00:00:01.848749 TM: GIP - CPU: iCpuSet=0x0 idCpu=0x0 idApic=0x0 iGipCpu=0x1 i64TSCDelta=0 enmState=3 u64CpuHz=2491905500(*) cErrors=0
00:00:01.848756 TM: GIP - CPU: iCpuSet=0x1 idCpu=0x1 idApic=0x1 iGipCpu=0x0 i64TSCDelta=0 enmState=3 u64CpuHz=2491904816(*) cErrors=0
00:00:01.848762 TM: GIP - CPU: iCpuSet=0x2 idCpu=0x2 idApic=0x2 iGipCpu=0x2 i64TSCDelta=0 enmState=3 u64CpuHz=2491903597(*) cErrors=0
00:00:01.848767 TM: GIP - CPU: iCpuSet=0x3 idCpu=0x3 idApic=0x3 iGipCpu=0x3 i64TSCDelta=0 enmState=3 u64CpuHz=2491903925(*) cErrors=0
00:00:01.848872 TM: cTSCTicksPerSecond=2 491 904 816 (0x94877330) enmTSCMode=1 (VirtTSCEmulated)
00:00:01.848877 TM: cTSCTicksPerSecondHost=2 491 904 816 (0x94877330)
00:00:01.848879 TM: TSCTiedToExecution=false TSCNotTiedToHalt=false
00:00:01.849844 EMR3Init: fIemExecutesAll=false fGuruOnTripleFault=true
00:00:01.850426 IEM: TargetCpu=CURRENT, Microarch=Intel_Core7_SandyBridge aidxTargetCpuEflFlavour={1,0}
00:00:01.851540 GIM: Using provider 'HyperV' (Implementation version: 0)
00:00:01.851567 GIM: HyperV: Reporting vendor as 'VBoxVBoxVBox'
00:00:01.851573 CPUM: SetGuestCpuIdFeature: Enabled Hypervisor Present bit
00:00:01.851636 GCM: Initialized (fixer bits: 0x0)
00:00:01.905222 AIOMgr: Default manager type is 'Async'
00:00:01.905291 AIOMgr: Default file backend is 'NonBuffered'
00:00:01.905428 BlkCache: Cache successfully initialized. Cache size is 5242880 bytes
00:00:01.905432 BlkCache: Cache commit interval is 10000 ms
00:00:01.905434 BlkCache: Cache commit threshold is 2621440 bytes
00:00:01.918294 SUP: seg #0: R 0x00000000 LB 0x0000a000
00:00:01.918322 SUP: seg #1: R X 0x0000a000 LB 0x0002c000
00:00:01.918326 SUP: seg #2: R 0x00036000 LB 0x0000e000
00:00:01.918328 SUP: seg #3: RW 0x00044000 LB 0x00008500
00:00:01.918499 SUP: Loaded VBoxDDR0.r0 (/usr/lib/virtualbox/VBoxDDR0.r0) at 0xXXXXXXXXXXXXXXXX - ModuleInit at XXXXXXXXXXXXXXXX and ModuleTerm at XXXXXXXXXXXXXXXX
00:00:01.922176 NvramStore: Loading 'TpmEmuTpms/permall' from archive
00:00:01.922203 NvramStore: Loading 'efi/nvram' from archive
00:00:01.922360 EFI: boot args =
00:00:01.922366 EFI: device props =
00:00:01.923630 Found EFI FW Volume, 540672 bytes (132 4096-byte blocks)
00:00:01.940153 EFI: Registered 528KB flash at 00000000ffc00000
00:00:01.941913 CPUM: SetGuestCpuIdFeature: Enabled xAPIC
00:00:01.943805 IOAPIC: Version=2.0 ChipType=ICH9
00:00:01.944019 PIT: mode=3 count=0x10000 (65536) - 18.20 Hz (ch=0)
00:00:01.944351 VMMDev: cbDefaultBudget: 693 972 138 (295d2caa)
00:00:01.949289 Shared Folders service loaded
00:00:01.950502 Guest Control service loaded
00:00:02.113660 VGA: Using the 386+ BIOS image.
00:00:02.123048 VD: VDInit finished with VINF_SUCCESS
00:00:02.123561 DrvVD: Flushes will be ignored
00:00:02.123572 DrvVD: Async flushes will be passed to the disk
00:00:02.127526 AIOMgr: Endpoint for file '/home/my-username/VirtualBox VMs/windows11/windows11.vdi' (flags 000c0723) created successfully
00:00:02.129946 VD: Opening the disk took 4198548 ns
00:00:02.130061 AHCI: LUN#0: disk, PCHS=16383/16/63, total number of sectors 109051904
00:00:02.130364 DrvVD: Flushes will be ignored
00:00:02.130373 DrvVD: Async flushes will be passed to the disk
00:00:02.132459 AIOMgr: Endpoint for file '/home/my-username/Downloads/VBoxGuestAdditions_7.0.0-153872.iso' (flags 000c0781) created successfully
00:00:02.132481 VD: Opening the disk took 142191 ns
00:00:02.132548 AHCI: LUN#1: CD/DVD
00:00:02.132912 AHCI#0: Reset the HBA
00:00:02.132921 VD#0: Cancelling all active requests
00:00:02.134421 DrvVD: Flushes will be ignored
00:00:02.134446 DrvVD: Async flushes will be passed to the disk
00:00:02.134497 VD: Opening the disk took 42381 ns
00:00:02.134532 PIIX3 ATA: LUN#0: CD/DVD, total number of sectors 25857, passthrough disabled
00:00:02.139146 PIIX3 ATA: LUN#1: no unit
00:00:02.139316 PIIX3 ATA: LUN#2: no unit
00:00:02.139323 PIIX3 ATA: LUN#3: no unit
00:00:02.139388 PIIX3 ATA: Ctl#0: finished processing RESET
00:00:02.139413 PIIX3 ATA: Ctl#1: finished processing RESET
00:00:02.140034 E1000#0: Chip=82540EM LinkUpDelay=5000ms EthernetCRC=on GSO=enabled Itr=disabled ItrRx=enabled TID=disabled R0=enabled RC=disabled
00:00:02.148381 NAT: Guest address guess set to 10.0.2.15 by initialization
00:00:02.148561 NAT: resolv.conf: nameserver 192.168.3.1
00:00:02.148578 NAT: Adding domain name lan
00:00:02.148582 NAT: DNS#0: 192.168.3.1
00:00:02.149207 Audio: Initializing ALSA driver
00:00:02.205864 ALSA: The ALSAAudio plugin for pulse audio is being used (pulse).
00:00:02.205904 Audio: Found 35 devices for driver 'ALSA'
00:00:02.205908 Audio: Device 'Playback/recording through the PulseAudio sound server':
00:00:02.205909 Audio: ID = default
00:00:02.205909 Audio: Usage = duplex
00:00:02.205910 Audio: Flags = NONE
00:00:02.205910 Audio: Input channels = 2
00:00:02.205911 Audio: Output channels = 2
00:00:02.205913 Audio: Device 'Rate Converter Plugin Using Libav/FFmpeg Library':
00:00:02.205913 Audio: ID = lavrate
00:00:02.205913 Audio: Usage = duplex
00:00:02.205914 Audio: Flags = NONE
00:00:02.205914 Audio: Input channels = 2
00:00:02.205914 Audio: Output channels = 2
00:00:02.205916 Audio: Device 'Rate Converter Plugin Using Samplerate Library':
00:00:02.205916 Audio: ID = samplerate
00:00:02.205917 Audio: Usage = duplex
00:00:02.205917 Audio: Flags = NONE
00:00:02.205917 Audio: Input channels = 2
00:00:02.205918 Audio: Output channels = 2
00:00:02.205919 Audio: Device 'Rate Converter Plugin Using Speex Resampler':
00:00:02.205920 Audio: ID = speexrate
00:00:02.205920 Audio: Usage = duplex
00:00:02.205920 Audio: Flags = NONE
00:00:02.205921 Audio: Input channels = 2
00:00:02.205921 Audio: Output channels = 2
00:00:02.205922 Audio: Device 'JACK Audio Connection Kit':
00:00:02.205923 Audio: ID = jack
00:00:02.205923 Audio: Usage = duplex
00:00:02.205923 Audio: Flags = NONE
00:00:02.205924 Audio: Input channels = 2
00:00:02.205924 Audio: Output channels = 2
00:00:02.205926 Audio: Device 'Open Sound System':
00:00:02.205926 Audio: ID = oss
00:00:02.205926 Audio: Usage = duplex
00:00:02.205927 Audio: Flags = NONE
00:00:02.205927 Audio: Input channels = 2
00:00:02.205927 Audio: Output channels = 2
00:00:02.205929 Audio: Device 'PulseAudio Sound Server':
00:00:02.205929 Audio: ID = pulse
00:00:02.205929 Audio: Usage = duplex
00:00:02.205930 Audio: Flags = NONE
00:00:02.205930 Audio: Input channels = 2
00:00:02.205930 Audio: Output channels = 2
00:00:02.205932 Audio: Device 'Plugin using Speex DSP (resample, agc, denoise, echo, dereverb)':
00:00:02.205932 Audio: ID = speex
00:00:02.205933 Audio: Usage = duplex
00:00:02.205933 Audio: Flags = NONE
00:00:02.205933 Audio: Input channels = 2
00:00:02.205934 Audio: Output channels = 2
00:00:02.205935 Audio: Device 'Plugin for channel upmix (4,6,8)':
00:00:02.205935 Audio: ID = upmix
00:00:02.205936 Audio: Usage = duplex
00:00:02.205936 Audio: Flags = NONE
00:00:02.205936 Audio: Input channels = 2
00:00:02.205937 Audio: Output channels = 2
00:00:02.205952 Audio: Device 'Plugin for channel downmix (stereo) with a simple spacialization':
00:00:02.205952 Audio: ID = vdownmix
00:00:02.205953 Audio: Usage = duplex
00:00:02.205953 Audio: Flags = NONE
00:00:02.205953 Audio: Input channels = 2
00:00:02.205954 Audio: Output channels = 2
00:00:02.205955 Audio: Device 'Direct hardware device without any conversions (HDA Intel PCH, CX20590 Analog)':
00:00:02.205956 Audio: ID = hw:CARD=PCH,DEV=0
00:00:02.205956 Audio: Usage = duplex
00:00:02.205956 Audio: Flags = NONE
00:00:02.205957 Audio: Input channels = 2
00:00:02.205957 Audio: Output channels = 2
00:00:02.205959 Audio: Device 'Direct hardware device without any conversions (HDA Intel PCH, HDMI 0)':
00:00:02.205959 Audio: ID = hw:CARD=PCH,DEV=3
00:00:02.205959 Audio: Usage = output
00:00:02.205960 Audio: Flags = NONE
00:00:02.205960 Audio: Input channels = 0
00:00:02.205960 Audio: Output channels = 2
00:00:02.205962 Audio: Device 'Direct hardware device without any conversions (HDA Intel PCH, HDMI 1)':
00:00:02.205962 Audio: ID = hw:CARD=PCH,DEV=7
00:00:02.205963 Audio: Usage = output
00:00:02.205963 Audio: Flags = NONE
00:00:02.205963 Audio: Input channels = 0
00:00:02.205964 Audio: Output channels = 2
00:00:02.205965 Audio: Device 'Direct hardware device without any conversions (HDA Intel PCH, HDMI 2)':
00:00:02.205966 Audio: ID = hw:CARD=PCH,DEV=8
00:00:02.205966 Audio: Usage = output
00:00:02.205966 Audio: Flags = NONE
00:00:02.205967 Audio: Input channels = 0
00:00:02.205967 Audio: Output channels = 2
00:00:02.205968 Audio: Device 'Hardware device with all software conversions (HDA Intel PCH, CX20590 Analog)':
00:00:02.205969 Audio: ID = plughw:CARD=PCH,DEV=0
00:00:02.205969 Audio: Usage = duplex
00:00:02.205969 Audio: Flags = NONE
00:00:02.205970 Audio: Input channels = 2
00:00:02.205970 Audio: Output channels = 2
00:00:02.205972 Audio: Device 'Hardware device with all software conversions (HDA Intel PCH, HDMI 0)':
00:00:02.205972 Audio: ID = plughw:CARD=PCH,DEV=3
00:00:02.205972 Audio: Usage = output
00:00:02.205973 Audio: Flags = NONE
00:00:02.205973 Audio: Input channels = 0
00:00:02.205973 Audio: Output channels = 2
00:00:02.205975 Audio: Device 'Hardware device with all software conversions (HDA Intel PCH, HDMI 1)':
00:00:02.205975 Audio: ID = plughw:CARD=PCH,DEV=7
00:00:02.205975 Audio: Usage = output
00:00:02.205976 Audio: Flags = NONE
00:00:02.205976 Audio: Input channels = 0
00:00:02.205976 Audio: Output channels = 2
00:00:02.205978 Audio: Device 'Hardware device with all software conversions (HDA Intel PCH, HDMI 2)':
00:00:02.205978 Audio: ID = plughw:CARD=PCH,DEV=8
00:00:02.205979 Audio: Usage = output
00:00:02.205979 Audio: Flags = NONE
00:00:02.205979 Audio: Input channels = 0
00:00:02.205979 Audio: Output channels = 2
00:00:02.205981 Audio: Device 'Default Audio Device (HDA Intel PCH, CX20590 Analog)':
00:00:02.205981 Audio: ID = sysdefault:CARD=PCH
00:00:02.205982 Audio: Usage = duplex
00:00:02.205982 Audio: Flags = NONE
00:00:02.205982 Audio: Input channels = 2
00:00:02.205983 Audio: Output channels = 2
00:00:02.205984 Audio: Device 'Front output / input (HDA Intel PCH, CX20590 Analog)':
00:00:02.205984 Audio: ID = front:CARD=PCH,DEV=0
00:00:02.205985 Audio: Usage = duplex
00:00:02.205985 Audio: Flags = NONE
00:00:02.205985 Audio: Input channels = 2
00:00:02.205986 Audio: Output channels = 2
00:00:02.205987 Audio: Device '2.1 Surround output to Front and Subwoofer speakers (HDA Intel PCH, CX20590 Analog)':
00:00:02.205988 Audio: ID = surround21:CARD=PCH,DEV=0
00:00:02.205988 Audio: Usage = output
00:00:02.205988 Audio: Flags = NONE
00:00:02.205989 Audio: Input channels = 0
00:00:02.205989 Audio: Output channels = 2
00:00:02.205994 Audio: Device '4.0 Surround output to Front and Rear speakers (HDA Intel PCH, CX20590 Analog)':
00:00:02.205994 Audio: ID = surround40:CARD=PCH,DEV=0
00:00:02.205994 Audio: Usage = output
00:00:02.205995 Audio: Flags = NONE
00:00:02.205995 Audio: Input channels = 0
00:00:02.205995 Audio: Output channels = 2
00:00:02.205997 Audio: Device '4.1 Surround output to Front, Rear and Subwoofer speakers (HDA Intel PCH, CX20590 Analog)':
00:00:02.205998 Audio: ID = surround41:CARD=PCH,DEV=0
00:00:02.205998 Audio: Usage = output
00:00:02.205998 Audio: Flags = NONE
00:00:02.205998 Audio: Input channels = 0
00:00:02.205999 Audio: Output channels = 2
00:00:02.206000 Audio: Device '5.0 Surround output to Front, Center and Rear speakers (HDA Intel PCH, CX20590 Analog)':
00:00:02.206001 Audio: ID = surround50:CARD=PCH,DEV=0
00:00:02.206001 Audio: Usage = output
00:00:02.206001 Audio: Flags = NONE
00:00:02.206001 Audio: Input channels = 0
00:00:02.206002 Audio: Output channels = 2
00:00:02.206003 Audio: Device '5.1 Surround output to Front, Center, Rear and Subwoofer speakers (HDA Intel PCH, CX20590 Analog)':
00:00:02.206004 Audio: ID = surround51:CARD=PCH,DEV=0
00:00:02.206004 Audio: Usage = output
00:00:02.206004 Audio: Flags = NONE
00:00:02.206005 Audio: Input channels = 0
00:00:02.206005 Audio: Output channels = 2
00:00:02.206006 Audio: Device '7.1 Surround output to Front, Center, Side, Rear and Woofer speakers (HDA Intel PCH, CX20590 Analog)':
00:00:02.206007 Audio: ID = surround71:CARD=PCH,DEV=0
00:00:02.206007 Audio: Usage = output
00:00:02.206007 Audio: Flags = NONE
00:00:02.206008 Audio: Input channels = 0
00:00:02.206008 Audio: Output channels = 2
00:00:02.206010 Audio: Device 'HDMI Audio Output (HDA Intel PCH, HDMI 0)':
00:00:02.206010 Audio: ID = hdmi:CARD=PCH,DEV=0
00:00:02.206010 Audio: Usage = output
00:00:02.206011 Audio: Flags = NONE
00:00:02.206011 Audio: Input channels = 0
00:00:02.206011 Audio: Output channels = 2
00:00:02.206013 Audio: Device 'HDMI Audio Output (HDA Intel PCH, HDMI 1)':
00:00:02.206013 Audio: ID = hdmi:CARD=PCH,DEV=1
00:00:02.206013 Audio: Usage = output
00:00:02.206014 Audio: Flags = NONE
00:00:02.206014 Audio: Input channels = 0
00:00:02.206014 Audio: Output channels = 2
00:00:02.206016 Audio: Device 'HDMI Audio Output (HDA Intel PCH, HDMI 2)':
00:00:02.206016 Audio: ID = hdmi:CARD=PCH,DEV=2
00:00:02.206016 Audio: Usage = output
00:00:02.206017 Audio: Flags = NONE
00:00:02.206017 Audio: Input channels = 0
00:00:02.206017 Audio: Output channels = 2
00:00:02.206019 Audio: Device 'Direct sample mixing device (HDA Intel PCH, CX20590 Analog)':
00:00:02.206019 Audio: ID = dmix:CARD=PCH,DEV=0
00:00:02.206019 Audio: Usage = output
00:00:02.206020 Audio: Flags = NONE
00:00:02.206020 Audio: Input channels = 0
00:00:02.206020 Audio: Output channels = 2
00:00:02.206022 Audio: Device 'Direct sample mixing device (HDA Intel PCH, HDMI 0)':
00:00:02.206022 Audio: ID = dmix:CARD=PCH,DEV=3
00:00:02.206023 Audio: Usage = output
00:00:02.206023 Audio: Flags = NONE
00:00:02.206023 Audio: Input channels = 0
00:00:02.206023 Audio: Output channels = 2
00:00:02.206025 Audio: Device 'Direct sample mixing device (HDA Intel PCH, HDMI 1)':
00:00:02.206025 Audio: ID = dmix:CARD=PCH,DEV=7
00:00:02.206026 Audio: Usage = output
00:00:02.206026 Audio: Flags = NONE
00:00:02.206026 Audio: Input channels = 0
00:00:02.206026 Audio: Output channels = 2
00:00:02.206031 Audio: Device 'Direct sample mixing device (HDA Intel PCH, HDMI 2)':
00:00:02.206031 Audio: ID = dmix:CARD=PCH,DEV=8
00:00:02.206031 Audio: Usage = output
00:00:02.206032 Audio: Flags = NONE
00:00:02.206032 Audio: Input channels = 0
00:00:02.206032 Audio: Output channels = 2
00:00:02.206034 Audio: Device 'Direct sample snooping device (HDA Intel PCH, CX20590 Analog)':
00:00:02.206034 Audio: ID = dsnoop:CARD=PCH,DEV=0
00:00:02.206035 Audio: Usage = input
00:00:02.206035 Audio: Flags = NONE
00:00:02.206035 Audio: Input channels = 2
00:00:02.206036 Audio: Output channels = 0
00:00:02.206037 Audio: Device 'USB Stream Output (HDA Intel PCH)':
00:00:02.206038 Audio: ID = usbstream:CARD=PCH
00:00:02.206038 Audio: Usage = duplex
00:00:02.206038 Audio: Flags = NONE
00:00:02.206039 Audio: Input channels = 2
00:00:02.206039 Audio: Output channels = 2
00:00:02.206233 Audio Mixer: Setting master volume of 'HDA Mixer' -- channel volumes: ff ff ff ff ff ff ff ff ff ff ff ff
00:00:02.206239 Audio Mixer: Setting sink 'HDA Mixer/PCM Output' -- channel volumes: ff ff ff ff ff ff ff ff ff ff ff ff
00:00:02.206242 Audio Mixer: Setting sink 'HDA Mixer/Line In' -- channel volumes: ff ff ff ff ff ff ff ff ff ff ff ff
00:00:02.206249 Audio Mixer: MUTING sink 'HDA Mixer/PCM Output' -- channel volumes: 00 00 00 00 00 00 00 00 00 00 00 00
00:00:02.206252 Audio Mixer: MUTING sink 'HDA Mixer/Line In' -- channel volumes: 00 00 00 00 00 00 00 00 00 00 00 00
00:00:02.206301 HDA: Codec reset
00:00:02.206306 HDA: Reset
00:00:02.207667 GIMDev: Registered Hyper-V hypercall page
00:00:02.207696 GIMDev: Registered Hyper-V TSC page
00:00:02.207854 VUSB: Attached 'HidMouse' to port 1 on RootHub#1 (FullSpeed)
00:00:02.207871 PGM: The CPU physical address width is 36 bits
00:00:02.207875 PGM: PGMR3InitFinalize: 4 MB PSE mask 0000000fffffffff -> VINF_SUCCESS
00:00:02.207889 TM: TMR3InitFinalize: fTSCModeSwitchAllowed=true
00:00:02.210370 CPUM: Host IA32_ARCH_CAPABILITIES = 0x0
00:00:02.210374 VMM: Enabled thread-context hooks
00:00:02.210377 VMM: RTThreadPreemptIsPending() can be trusted
00:00:02.210378 VMM: Kernel preemption is possible
00:00:02.210518 HM: fWorldSwitcher=0x30000 (fIbpbOnVmExit=false fIbpbOnVmEntry=false fL1dFlushOnVmEntry=false); fL1dFlushOnSched=true fMdsClearOnVmEntry=false
00:00:02.210525 HM: Using VT-x implementation 3.0
00:00:02.210526 HM: Max resume loops = 8192
00:00:02.210526 HM: Host CR4 = 0x606f0
00:00:02.210527 HM: Host EFER = 0xd01
00:00:02.210528 HM: MSR_IA32_SMM_MONITOR_CTL = 0x0
00:00:02.210536 HM: Host DR6 zero'ed = 0xffff0ff0
00:00:02.210537 HM: MSR_IA32_FEATURE_CONTROL = 0x5
00:00:02.210538 HM: LOCK
00:00:02.210538 HM: VMXON
00:00:02.210538 HM: MSR_IA32_VMX_BASIC = 0xda040000000010
00:00:02.210539 HM: VMCS id = 0x10
00:00:02.210540 HM: VMCS size = 1024 bytes
00:00:02.210540 HM: VMCS physical address limit = None
00:00:02.210541 HM: VMCS memory type = Write Back (WB)
00:00:02.210541 HM: Dual-monitor treatment support = true
00:00:02.210542 HM: OUTS & INS instruction-info = true
00:00:02.210542 HM: Supports true-capability MSRs = true
00:00:02.210543 HM: VM-entry Xcpt error-code optional = false
00:00:02.210543 HM: MSR_IA32_VMX_PINBASED_CTLS = 0x7f00000016
00:00:02.210544 HM: EXT_INT_EXIT
00:00:02.210544 HM: NMI_EXIT
00:00:02.210545 HM: VIRTUAL_NMI
00:00:02.210545 HM: PREEMPT_TIMER
00:00:02.210545 HM: POSTED_INT (must be cleared)
00:00:02.210546 HM: MSR_IA32_VMX_PROCBASED_CTLS = 0xfff9fffe0401e172
00:00:02.210547 HM: INT_WINDOW_EXIT
00:00:02.210547 HM: USE_TSC_OFFSETTING
00:00:02.210547 HM: HLT_EXIT
00:00:02.210548 HM: INVLPG_EXIT
00:00:02.210548 HM: MWAIT_EXIT
00:00:02.210549 HM: RDPMC_EXIT
00:00:02.210549 HM: RDTSC_EXIT
00:00:02.210549 HM: CR3_LOAD_EXIT (must be set)
00:00:02.210550 HM: CR3_STORE_EXIT (must be set)
00:00:02.210550 HM: USE_TERTIARY_CTLS (must be cleared)
00:00:02.210550 HM: CR8_LOAD_EXIT
00:00:02.210551 HM: CR8_STORE_EXIT
00:00:02.210551 HM: USE_TPR_SHADOW
00:00:02.210551 HM: NMI_WINDOW_EXIT
00:00:02.210552 HM: MOV_DR_EXIT
00:00:02.210552 HM: UNCOND_IO_EXIT
00:00:02.210552 HM: USE_IO_BITMAPS
00:00:02.210552 HM: MONITOR_TRAP_FLAG
00:00:02.210553 HM: USE_MSR_BITMAPS
00:00:02.210553 HM: MONITOR_EXIT
00:00:02.210553 HM: PAUSE_EXIT
00:00:02.210554 HM: USE_SECONDARY_CTLS
00:00:02.210554 HM: MSR_IA32_VMX_PROCBASED_CTLS2 = 0xff00000000
00:00:02.210555 HM: VIRT_APIC_ACCESS
00:00:02.210555 HM: EPT
00:00:02.210556 HM: DESC_TABLE_EXIT
00:00:02.210556 HM: RDTSCP
00:00:02.210557 HM: VIRT_X2APIC_MODE
00:00:02.210557 HM: VPID
00:00:02.210557 HM: WBINVD_EXIT
00:00:02.210558 HM: UNRESTRICTED_GUEST
00:00:02.210558 HM: APIC_REG_VIRT (must be cleared)
00:00:02.210559 HM: VIRT_INT_DELIVERY (must be cleared)
00:00:02.210559 HM: PAUSE_LOOP_EXIT (must be cleared)
00:00:02.210559 HM: RDRAND_EXIT (must be cleared)
00:00:02.210560 HM: INVPCID (must be cleared)
00:00:02.210560 HM: VMFUNC (must be cleared)
00:00:02.210560 HM: VMCS_SHADOWING (must be cleared)
00:00:02.210561 HM: ENCLS_EXIT (must be cleared)
00:00:02.210561 HM: RDSEED_EXIT (must be cleared)
00:00:02.210561 HM: PML (must be cleared)
00:00:02.210562 HM: EPT_XCPT_VE (must be cleared)
00:00:02.210562 HM: CONCEAL_VMX_FROM_PT (must be cleared)
00:00:02.210563 HM: XSAVES_XRSTORS (must be cleared)
00:00:02.210563 HM: MODE_BASED_EPT_PERM (must be cleared)
00:00:02.210563 HM: SPP_EPT (must be cleared)
00:00:02.210564 HM: PT_EPT (must be cleared)
00:00:02.210564 HM: TSC_SCALING (must be cleared)
00:00:02.210564 HM: USER_WAIT_PAUSE (must be cleared)
00:00:02.210564 HM: ENCLV_EXIT (must be cleared)
00:00:02.210565 HM: MSR_IA32_VMX_ENTRY_CTLS = 0xffff000011ff
00:00:02.210565 HM: LOAD_DEBUG (must be set)
00:00:02.210566 HM: IA32E_MODE_GUEST
00:00:02.210566 HM: ENTRY_TO_SMM
00:00:02.210567 HM: DEACTIVATE_DUAL_MON
00:00:02.210567 HM: LOAD_PERF_MSR
00:00:02.210567 HM: LOAD_PAT_MSR
00:00:02.210567 HM: LOAD_EFER_MSR
00:00:02.210568 HM: LOAD_BNDCFGS_MSR (must be cleared)
00:00:02.210568 HM: CONCEAL_VMX_FROM_PT (must be cleared)
00:00:02.210568 HM: LOAD_RTIT_CTL_MSR (must be cleared)
00:00:02.210569 HM: LOAD_CET_STATE (must be cleared)
00:00:02.210569 HM: LOAD_PKRS_MSR (must be cleared)
00:00:02.210569 HM: MSR_IA32_VMX_EXIT_CTLS = 0x7fffff00036dff
00:00:02.210570 HM: SAVE_DEBUG (must be set)
00:00:02.210570 HM: HOST_ADDR_SPACE_SIZE
00:00:02.210571 HM: LOAD_PERF_MSR
00:00:02.210571 HM: ACK_EXT_INT
00:00:02.210571 HM: SAVE_PAT_MSR
00:00:02.210572 HM: LOAD_PAT_MSR
00:00:02.210572 HM: SAVE_EFER_MSR
00:00:02.210572 HM: LOAD_EFER_MSR
00:00:02.210573 HM: SAVE_PREEMPT_TIMER
00:00:02.210573 HM: CLEAR_BNDCFGS_MSR (must be cleared)
00:00:02.210573 HM: CONCEAL_VMX_FROM_PT (must be cleared)
00:00:02.210574 HM: CLEAR_RTIT_CTL_MSR (must be cleared)
00:00:02.210574 HM: LOAD_CET_STATE (must be cleared)
00:00:02.210574 HM: LOAD_PKRS_MSR (must be cleared)
00:00:02.210575 HM: MSR_IA32_VMX_TRUE_PINBASED_CTLS = 0x7f00000016
00:00:02.210575 HM: MSR_IA32_VMX_TRUE_PROCBASED_CTLS = 0xfff9fffe04006172
00:00:02.210576 HM: MSR_IA32_VMX_TRUE_ENTRY_CTLS = 0xffff000011fb
00:00:02.210577 HM: MSR_IA32_VMX_TRUE_EXIT_CTLS = 0x7fffff00036dfb
00:00:02.210578 HM: MSR_IA32_VMX_MISC = 0x100401e5
00:00:02.210578 HM: PREEMPT_TIMER_TSC = 0x5
00:00:02.210579 HM: EXIT_SAVE_EFER_LMA = true
00:00:02.210580 HM: ACTIVITY_STATES = 0x7 ( HLT SHUTDOWN SIPI_WAIT )
00:00:02.210580 HM: INTEL_PT = false
00:00:02.210581 HM: SMM_READ_SMBASE_MSR = false
00:00:02.210581 HM: CR3_TARGET = 0x4
00:00:02.210582 HM: MAX_MSR = 0x0 ( 512 )
00:00:02.210582 HM: VMXOFF_BLOCK_SMI = true
00:00:02.210583 HM: VMWRITE_ALL = false
00:00:02.210583 HM: ENTRY_INJECT_SOFT_INT = 0x0
00:00:02.210583 HM: MSEG_ID = 0x0
00:00:02.210584 HM: MSR_IA32_VMX_VMCS_ENUM = 0x2a
00:00:02.210584 HM: HIGHEST_IDX = 0x15
00:00:02.210585 HM: MSR_IA32_VMX_EPT_VPID_CAP = 0xf0106114141
00:00:02.210585 HM: RWX_X_ONLY
00:00:02.210586 HM: PAGE_WALK_LENGTH_4
00:00:02.210587 HM: MEMTYPE_UC
00:00:02.210587 HM: MEMTYPE_WB
00:00:02.210587 HM: PDE_2M
00:00:02.210588 HM: INVEPT
00:00:02.210588 HM: INVEPT_SINGLE_CONTEXT
00:00:02.210588 HM: INVEPT_ALL_CONTEXTS
00:00:02.210589 HM: INVVPID
00:00:02.210589 HM: INVVPID_INDIV_ADDR
00:00:02.210589 HM: INVVPID_SINGLE_CONTEXT
00:00:02.210590 HM: INVVPID_ALL_CONTEXTS
00:00:02.210590 HM: INVVPID_SINGLE_CONTEXT_RETAIN_GLOBALS
00:00:02.210590 HM: MSR_IA32_VMX_CR0_FIXED0 = 0x80000021
00:00:02.210591 HM: MSR_IA32_VMX_CR0_FIXED1 = 0xffffffff
00:00:02.210591 HM: MSR_IA32_VMX_CR4_FIXED0 = 0x2000
00:00:02.210592 HM: MSR_IA32_VMX_CR4_FIXED1 = 0x667ff
00:00:02.210592 HM: Guest support: 32-bit and 64-bit
00:00:02.210599 HM: Supports VMCS EFER fields = true
00:00:02.210599 HM: Enabled VMX
00:00:02.210602 HM: Enabled nested paging
00:00:02.210603 HM: EPT flush type = Single context
00:00:02.210603 HM: Enabled unrestricted guest execution
00:00:02.210610 HM: Enabled large page support
00:00:02.210610 HM: Enabled VPID
00:00:02.210611 HM: VPID flush type = Single context
00:00:02.210611 HM: Enabled VMX-preemption timer (cPreemptTimerShift=5)
00:00:02.210611 HM: VT-x/AMD-V init method: Global
00:00:02.210612 EM: Exit history optimizations: enabled=true enabled-r0=true enabled-r0-no-preemption=false
00:00:02.210654 APIC: fPostedIntrsEnabled=false fVirtApicRegsEnabled=false fSupportsTscDeadline=false
00:00:02.210662 TMR3UtcNow: nsNow=1 747 655 978 314 969 000 nsPrev=0 -> cNsDelta=1 747 655 978 314 969 000 (offLag=0 offVirtualSync=0 offVirtualSyncGivenUp=0, NowAgain=1 747 655 978 314 969 000)
00:00:02.210677 VMM: fUsePeriodicPreemptionTimers=false
00:00:02.210682 APIC: Enabling Hyper-V x2APIC compatibility mode
00:00:02.210845 CPUM: Logical host processors: 4 present, 4 max, 4 online, online mask: 000000000000000f
00:00:02.210961 CPUM: Physical host cores: 2
00:00:02.210962 ************************* CPUID dump ************************
00:00:02.210980 Raw Standard CPUID Leaves
00:00:02.210980 Leaf/sub-leaf eax ebx ecx edx
00:00:02.210981 Gst: 00000000/0000 0000000d 756e6547 6c65746e 49656e69
00:00:02.210982 Hst: 0000000d 756e6547 6c65746e 49656e69
00:00:02.210983 Gst: 00000001/0000 000206a7 00020800 96982203 178bfbff
00:00:02.210984 Hst: 000206a7 02100800 1fbae3ff bfebfbff
00:00:02.210985 Gst: 00000002/0000 76035a01 00f0b2ff 00000000 00ca0000
00:00:02.210987 Hst: 76035a01 00f0b2ff 00000000 00ca0000
00:00:02.210988 Gst: 00000003/0000 00000000 00000000 00000000 00000000
00:00:02.210988 Hst: 00000000 00000000 00000000 00000000
00:00:02.210989 Gst: 00000004/0000 04000121 01c0003f 0000003f 00000000
00:00:02.210990 Hst: 1c004121 01c0003f 0000003f 00000000
00:00:02.210991 Gst: 00000004/0001 04000122 01c0003f 0000003f 00000000
00:00:02.210992 Hst: 1c004122 01c0003f 0000003f 00000000
00:00:02.210993 Gst: 00000004/0002 04000143 01c0003f 000001ff 00000000
00:00:02.210993 Hst: 1c004143 01c0003f 000001ff 00000000
00:00:02.210994 Gst: 00000004/0003 04000163 02c0003f 00000fff 00000006
00:00:02.210995 Hst: 1c03c163 02c0003f 00000fff 00000006
00:00:02.210996 Gst: 00000004/0004 04000000 00000000 00000000 00000000
00:00:02.210997 Hst: 00000000 00000000 00000000 00000000
00:00:02.210997 Gst: 00000005/0000 00000000 00000000 00000000 00000000
00:00:02.210998 Hst: 00000040 00000040 00000003 00021120
00:00:02.210999 Gst: 00000006/0000 00000004 00000000 00000000 00000000
00:00:02.211000 Hst: 00000077 00000002 00000009 00000000
00:00:02.211001 Gst: 00000007/0000 00000000 00000000 00000000 10000400
00:00:02.211001 Hst: 00000000 00000000 00000000 9c000400
00:00:02.211002 Gst: 00000008/0000 00000000 00000000 00000000 00000000
00:00:02.211003 Hst: 00000000 00000000 00000000 00000000
00:00:02.211004 Gst: 00000009/0000 00000000 00000000 00000000 00000000
00:00:02.211004 Hst: 00000000 00000000 00000000 00000000
00:00:02.211005 Gst: 0000000a/0000 00000000 00000000 00000000 00000000
00:00:02.211006 Hst: 07300403 00000000 00000000 00000603
00:00:02.211007 Gst: 0000000b/0000 00000000 00000001 00000100 00000000
00:00:02.211007 Hst: 00000001 00000002 00000100 00000002
00:00:02.211008 Gst: 0000000b/0001 00000001 00000002 00000201 00000000
00:00:02.211009 Hst: 00000004 00000004 00000201 00000002
00:00:02.211009 Gst: 0000000b/0002 00000000 00000000 00000002 00000000
00:00:02.211010 Hst: 00000000 00000000 00000002 00000002
00:00:02.211011 Gst: 0000000c/0000 00000000 00000000 00000000 00000000
00:00:02.211012 Hst: 00000000 00000000 00000000 00000000
00:00:02.211012 Gst: 0000000d/0000 00000007 00000340 00000340 00000000
00:00:02.211013 Hst: 00000007 00000340 00000340 00000000
00:00:02.211014 Gst: 0000000d/0001 00000000 00000000 00000000 00000000
00:00:02.211014 Hst: 00000001 00000000 00000000 00000000
00:00:02.211015 Gst: 0000000d/0002 00000100 00000240 00000000 00000000
00:00:02.211016 Hst: 00000100 00000240 00000000 00000000
00:00:02.211017 Gst: 0000000d/0003 00000000 00000000 00000000 00000000
00:00:02.211017 Hst: 00000000 00000000 00000000 00000000
00:00:02.211031 Name: GenuineIntel
00:00:02.211033 Supports: 0x00000000-0x0000000d
00:00:02.211034 Family: 6 Extended: 0 Effective: 6
00:00:02.211036 Model: 10 Extended: 2 Effective: 42
00:00:02.211037 Stepping: 7
00:00:02.211038 Type: 0 (primary)
00:00:02.211039 APIC ID: 0x00
00:00:02.211040 Logical CPUs: 2
00:00:02.211040 CLFLUSH Size: 8
00:00:02.211041 Brand ID: 0x00
00:00:02.211042 Features
00:00:02.211043 Mnemonic - Description = guest (host)
00:00:02.211043 FPU - x87 FPU on Chip = 1 (1)
00:00:02.211045 VME - Virtual 8086 Mode Enhancements = 1 (1)
00:00:02.211046 DE - Debugging extensions = 1 (1)
00:00:02.211047 PSE - Page Size Extension = 1 (1)
00:00:02.211048 TSC - Time Stamp Counter = 1 (1)
00:00:02.211050 MSR - Model Specific Registers = 1 (1)
00:00:02.211051 PAE - Physical Address Extension = 1 (1)
00:00:02.211052 MCE - Machine Check Exception = 1 (1)
00:00:02.211053 CX8 - CMPXCHG8B instruction = 1 (1)
00:00:02.211054 APIC - APIC On-Chip = 1 (1)
00:00:02.211055 SEP - SYSENTER and SYSEXIT Present = 1 (1)
00:00:02.211056 MTRR - Memory Type Range Registers = 1 (1)
00:00:02.211057 PGE - PTE Global Bit = 1 (1)
00:00:02.211058 MCA - Machine Check Architecture = 1 (1)
00:00:02.211059 CMOV - Conditional Move instructions = 1 (1)
00:00:02.211060 PAT - Page Attribute Table = 1 (1)
00:00:02.211061 PSE-36 - 36-bit Page Size Extension = 1 (1)
00:00:02.211062 PSN - Processor Serial Number = 0 (0)
00:00:02.211063 CLFSH - CLFLUSH instruction = 1 (1)
00:00:02.211065 DS - Debug Store = 0 (1)
00:00:02.211066 ACPI - Thermal Mon. & Soft. Clock Ctrl. = 0 (1)
00:00:02.211067 MMX - Intel MMX Technology = 1 (1)
00:00:02.211068 FXSR - FXSAVE and FXRSTOR instructions = 1 (1)
00:00:02.211069 SSE - SSE support = 1 (1)
00:00:02.211070 SSE2 - SSE2 support = 1 (1)
00:00:02.211071 SS - Self Snoop = 0 (1)
00:00:02.211073 HTT - Hyper-Threading Technology = 1 (1)
00:00:02.211074 TM - Therm. Monitor = 0 (1)
00:00:02.211075 PBE - Pending Break Enabled = 0 (1)
00:00:02.211076 SSE3 - SSE3 support = 1 (1)
00:00:02.211077 PCLMUL - PCLMULQDQ support (for AES-GCM) = 1 (1)
00:00:02.211078 DTES64 - DS Area 64-bit Layout = 0 (1)
00:00:02.211079 MONITOR - MONITOR/MWAIT instructions = 0 (1)
00:00:02.211080 CPL-DS - CPL Qualified Debug Store = 0 (1)
00:00:02.211081 VMX - Virtual Machine Extensions = 0 (1)
00:00:02.211082 SMX - Safer Mode Extensions = 0 (1)
00:00:02.211083 EST - Enhanced SpeedStep Technology = 0 (1)
00:00:02.211084 TM2 - Terminal Monitor 2 = 0 (1)
00:00:02.211086 SSSE3 - Supplemental Streaming SIMD Extensions 3 = 1 (1)
00:00:02.211086 CNTX-ID - L1 Context ID = 0 (0)
00:00:02.211088 SDBG - Silicon Debug interface = 0 (0)
00:00:02.211089 FMA - Fused Multiply Add extensions = 0 (0)
00:00:02.211090 CX16 - CMPXCHG16B instruction = 1 (1)
00:00:02.211091 TPRUPDATE - xTPR Update Control = 0 (1)
00:00:02.211092 PDCM - Perf/Debug Capability MSR = 0 (1)
00:00:02.211093 PCID - Process Context Identifiers = 0 (1)
00:00:02.211094 DCA - Direct Cache Access = 0 (0)
00:00:02.211095 SSE4_1 - SSE4_1 support = 1 (1)
00:00:02.211096 SSE4_2 - SSE4_2 support = 1 (1)
00:00:02.211097 X2APIC - x2APIC support = 0 (1)
00:00:02.211098 MOVBE - MOVBE instruction = 0 (0)
00:00:02.211100 POPCNT - POPCNT instruction = 1 (1)
00:00:02.211101 TSCDEADL - Time Stamp Counter Deadline = 0 (1)
00:00:02.211102 AES - AES instructions = 1 (1)
00:00:02.211103 XSAVE - XSAVE instruction = 1 (1)
00:00:02.211104 OSXSAVE - OSXSAVE instruction = 0 (1)
00:00:02.211105 AVX - AVX support = 1 (1)
00:00:02.211106 F16C - 16-bit floating point conversion instructions = 0 (0)
00:00:02.211107 RDRAND - RDRAND instruction = 0 (0)
00:00:02.211108 HVP - Hypervisor Present (we're a guest) = 1 (0)
00:00:02.211109 Structured Extended Feature Flags Enumeration (leaf 7):
00:00:02.211110 Sub-leaf 0
00:00:02.211110 Mnemonic - Description = guest (host)
00:00:02.211111 FSGSBASE - RDFSBASE/RDGSBASE/WRFSBASE/WRGSBASE instr. = 0 (0)
00:00:02.211111 TSCADJUST - Supports MSR_IA32_TSC_ADJUST = 0 (0)
00:00:02.211112 SGX - Supports Software Guard Extensions = 0 (0)
00:00:02.211113 BMI1 - Advanced Bit Manipulation extension 1 = 0 (0)
00:00:02.211114 HLE - Hardware Lock Elision = 0 (0)
00:00:02.211115 AVX2 - Advanced Vector Extensions 2 = 0 (0)
00:00:02.211116 FDP_EXCPTN_ONLY - FPU DP only updated on exceptions = 0 (0)
00:00:02.211117 SMEP - Supervisor Mode Execution Prevention = 0 (0)
00:00:02.211118 BMI2 - Advanced Bit Manipulation extension 2 = 0 (0)
00:00:02.211119 ERMS - Enhanced REP MOVSB/STOSB instructions = 0 (0)
00:00:02.211119 INVPCID - INVPCID instruction = 0 (0)
00:00:02.211120 RTM - Restricted Transactional Memory = 0 (0)
00:00:02.211121 PQM - Platform Quality of Service Monitoring = 0 (0)
00:00:02.211122 DEPFPU_CS_DS - Deprecates FPU CS, FPU DS values if set = 0 (0)
00:00:02.211123 MPE - Intel Memory Protection Extensions = 0 (0)
00:00:02.211124 PQE - Platform Quality of Service Enforcement = 0 (0)
00:00:02.211125 AVX512F - AVX512 Foundation instructions = 0 (0)
00:00:02.211125 RDSEED - RDSEED instruction = 0 (0)
00:00:02.211126 ADX - ADCX/ADOX instructions = 0 (0)
00:00:02.211128 SMAP - Supervisor Mode Access Prevention = 0 (0)
00:00:02.211129 CLFLUSHOPT - CLFLUSHOPT (Cache Line Flush) instruction = 0 (0)
00:00:02.211129 CLWB - CLWB instruction = 0 (0)
00:00:02.211131 INTEL_PT - Intel Processor Trace = 0 (0)
00:00:02.211132 AVX512PF - AVX512 Prefetch instructions = 0 (0)
00:00:02.211133 AVX512ER - AVX512 Exponential & Reciprocal instructions = 0 (0)
00:00:02.211133 AVX512CD - AVX512 Conflict Detection instructions = 0 (0)
00:00:02.211134 SHA - Secure Hash Algorithm extensions = 0 (0)
00:00:02.211135 PREFETCHWT1 - PREFETCHWT1 instruction = 0 (0)
00:00:02.211136 UMIP - User mode insturction prevention = 0 (0)
00:00:02.211137 PKU - Protection Key for Usermode pages = 0 (0)
00:00:02.211138 OSPKE - CR4.PKU mirror = 0 (0)
00:00:02.211139 MAWAU - Value used by BNDLDX & BNDSTX = 0x0 (0x0)
00:00:02.211140 RDPID - Read processor ID support = 0 (0)
00:00:02.211141 SGX_LC - Supports SGX Launch Configuration = 0 (0)
00:00:02.211142 MCU_OPT_CTRL - Supports IA32_MCU_OPT_CTRL = 0 (0)
00:00:02.211143 MD_CLEAR - Supports MDS related buffer clearing = 1 (1)
00:00:02.211144 TSX_FORCE_ABORT - Supports IA32_TSX_FORCE_ABORT = 0 (0)
00:00:02.211145 CET_IBT - Supports indirect branch tracking w/ CET = 0 (0)
00:00:02.211146 IBRS_IBPB - IA32_SPEC_CTRL.IBRS and IA32_PRED_CMD.IBPB = 0 (1)
00:00:02.211147 STIBP - Supports IA32_SPEC_CTRL.STIBP = 0 (1)
00:00:02.211148 FLUSH_CMD - Supports IA32_FLUSH_CMD = 1 (1)
00:00:02.211149 ARCHCAP - Supports IA32_ARCH_CAP = 0 (0)
00:00:02.211150 CORECAP - Supports IA32_CORE_CAP = 0 (0)
00:00:02.211151 SSBD - Supports IA32_SPEC_CTRL.SSBD = 0 (1)
00:00:02.211152 Processor Extended State Enumeration (leaf 0xd):
00:00:02.211152 XSAVE area cur/max size by XCR0, guest: 0x340/0x340
00:00:02.211153 XSAVE area cur/max size by XCR0, host: 0x340/0x340
00:00:02.211154 Valid XCR0 bits, guest: 0x00000000`00000007 ( x87 SSE YMM_Hi128 )
00:00:02.211156 Valid XCR0 bits, host: 0x00000000`00000007 ( x87 SSE YMM_Hi128 )
00:00:02.211158 XSAVE features, guest:
00:00:02.211159 XSAVE features, host: XSAVEOPT
00:00:02.211161 XSAVE area cur size XCR0|XSS, guest: 0x0
00:00:02.211161 XSAVE area cur size XCR0|XSS, host: 0x0
00:00:02.211162 Valid IA32_XSS bits, guest: 0x00000000`00000000
00:00:02.211163 Valid IA32_XSS bits, host: 0x00000000`00000000
00:00:02.211163 State #2, guest: off=0x0240, cb=0x0100 IA32_XSS-bit -- YMM_Hi128
00:00:02.211165 State #2, host: off=0x0240, cb=0x0100 IA32_XSS-bit -- YMM_Hi128
00:00:02.211173 Raw Hypervisor CPUID Leaves
00:00:02.211173 Leaf/sub-leaf eax ebx ecx edx
00:00:02.211174 Gst: 40000000/0000 40000006 786f4256 786f4256 786f4256
00:00:02.211175 Hst: 00000007 00000340 00000340 00000000
00:00:02.211176 Gst: 40000001/0000 31237648 00000000 00000000 00000000
00:00:02.211177 Hst: 00000007 00000340 00000340 00000000
00:00:02.211178 Gst: 40000002/0000 00000000 00000000 00000000 00000000
00:00:02.211178 Hst: 00000007 00000340 00000340 00000000
00:00:02.211179 Gst: 40000003/0000 00000af2 00100000 00000000 00000500
00:00:02.211180 Hst: 00000007 00000340 00000340 00000000
00:00:02.211181 Gst: 40000004/0000 00000130 ffffffff 00000000 00000000
00:00:02.211182 Hst: 00000007 00000340 00000340 00000000
00:00:02.211182 Gst: 40000005/0000 00000000 00000000 00000000 00000000
00:00:02.211183 Hst: 00000007 00000340 00000340 00000000
00:00:02.211184 Gst: 40000006/0000 0000000a 00000000 00000000 00000000
00:00:02.211185 Hst: 00000007 00000340 00000340 00000000
00:00:02.211186 Raw Extended CPUID Leaves
00:00:02.211186 Leaf/sub-leaf eax ebx ecx edx
00:00:02.211187 Gst: 80000000/0000 80000008 00000000 00000000 00000000
00:00:02.211187 Hst: 80000008 00000000 00000000 00000000
00:00:02.211188 Gst: 80000001/0000 00000000 00000000 00000001 28100800
00:00:02.211189 Hst: 00000000 00000000 00000001 28100800
00:00:02.211190 Gst: 80000002/0000 20202020 49202020 6c65746e 20295228
00:00:02.211191 Hst: 20202020 49202020 6c65746e 20295228
00:00:02.211193 Gst: 80000003/0000 65726f43 294d5428 2d356920 30323532
00:00:02.211194 Hst: 65726f43 294d5428 2d356920 30323532
00:00:02.211195 Gst: 80000004/0000 5043204d 20402055 30352e32 007a4847
00:00:02.211196 Hst: 5043204d 20402055 30352e32 007a4847
00:00:02.211197 Gst: 80000005/0000 00000000 00000000 00000000 00000000
00:00:02.211198 Hst: 00000000 00000000 00000000 00000000
00:00:02.211199 Gst: 80000006/0000 00000000 00000000 01006040 00000000
00:00:02.211200 Hst: 00000000 00000000 01006040 00000000
00:00:02.211200 Gst: 80000007/0000 00000000 00000000 00000000 00000100
00:00:02.211201 Hst: 00000000 00000000 00000000 00000100
00:00:02.211202 Gst: 80000008/0000 00003024 00000000 00000000 00000000
00:00:02.211203 Hst: 00003024 00000000 00000000 00000000
00:00:02.211203 Ext Name:
00:00:02.211204 Ext Supports: 0x80000000-0x80000008
00:00:02.211205 Family: 0 Extended: 0 Effective: 0
00:00:02.211205 Model: 0 Extended: 0 Effective: 0
00:00:02.211206 Stepping: 0
00:00:02.211206 Brand ID: 0x000
00:00:02.211207 Ext Features
00:00:02.211207 Mnemonic - Description = guest (host)
00:00:02.211208 FPU - x87 FPU on Chip = 0 (0)
00:00:02.211209 VME - Virtual 8086 Mode Enhancements = 0 (0)
00:00:02.211210 DE - Debugging extensions = 0 (0)
00:00:02.211211 PSE - Page Size Extension = 0 (0)
00:00:02.211212 TSC - Time Stamp Counter = 0 (0)
00:00:02.211213 MSR - K86 Model Specific Registers = 0 (0)
00:00:02.211214 PAE - Physical Address Extension = 0 (0)
00:00:02.211215 MCE - Machine Check Exception = 0 (0)
00:00:02.211216 CX8 - CMPXCHG8B instruction = 0 (0)
00:00:02.211217 APIC - APIC On-Chip = 0 (0)
00:00:02.211219 SEP - SYSCALL/SYSRET = 1 (1)
00:00:02.211220 MTRR - Memory Type Range Registers = 0 (0)
00:00:02.211221 PGE - PTE Global Bit = 0 (0)
00:00:02.211222 MCA - Machine Check Architecture = 0 (0)
00:00:02.211223 CMOV - Conditional Move instructions = 0 (0)
00:00:02.211224 PAT - Page Attribute Table = 0 (0)
00:00:02.211225 PSE-36 - 36-bit Page Size Extension = 0 (0)
00:00:02.211226 NX - No-Execute/Execute-Disable = 1 (1)
00:00:02.211227 AXMMX - AMD Extensions to MMX instructions = 0 (0)
00:00:02.211228 MMX - Intel MMX Technology = 0 (0)
00:00:02.211231 FXSR - FXSAVE and FXRSTOR Instructions = 0 (0)
00:00:02.211232 FFXSR - AMD fast FXSAVE and FXRSTOR instructions = 0 (0)
00:00:02.211233 Page1GB - 1 GB large page = 0 (0)
00:00:02.211235 RDTSCP - RDTSCP instruction = 1 (1)
00:00:02.211237 LM - AMD64 Long Mode = 1 (1)
00:00:02.211239 3DNOWEXT - AMD Extensions to 3DNow = 0 (0)
00:00:02.211240 3DNOW - AMD 3DNow = 0 (0)
00:00:02.211242 LahfSahf - LAHF/SAHF support in 64-bit mode = 1 (1)
00:00:02.211243 CmpLegacy - Core multi-processing legacy mode = 0 (0)
00:00:02.211244 SVM - AMD Secure Virtual Machine extensions = 0 (0)
00:00:02.211245 EXTAPIC - AMD Extended APIC registers = 0 (0)
00:00:02.211248 CR8L - AMD LOCK MOV CR0 means MOV CR8 = 0 (0)
00:00:02.211249 ABM - AMD Advanced Bit Manipulation = 0 (0)
00:00:02.211258 SSE4A - SSE4A instructions = 0 (0)
00:00:02.211259 MISALIGNSSE - AMD Misaligned SSE mode = 0 (0)
00:00:02.211260 3DNOWPRF - AMD PREFETCH and PREFETCHW instructions = 0 (0)
00:00:02.211261 OSVW - AMD OS Visible Workaround = 0 (0)
00:00:02.211263 IBS - Instruct Based Sampling = 0 (0)
00:00:02.211264 XOP - Extended Operation support = 0 (0)
00:00:02.211265 SKINIT - SKINIT, STGI, and DEV support = 0 (0)
00:00:02.211266 WDT - AMD Watchdog Timer support = 0 (0)
00:00:02.211268 LWP - Lightweight Profiling support = 0 (0)
00:00:02.211269 FMA4 - Four operand FMA instruction support = 0 (0)
00:00:02.211270 TCE - Translation Cache Extension support = 0 (0)
00:00:02.211271 NodeId - NodeId in MSR C001_100C = 0 (0)
00:00:02.211272 TBM - Trailing Bit Manipulation instructions = 0 (0)
00:00:02.211273 TOPOEXT - Topology Extensions = 0 (0)
00:00:02.211275 PRFEXTCORE - Performance Counter Extensions support = 0 (0)
00:00:02.211275 PRFEXTNB - NB Performance Counter Extensions support = 0 (0)
00:00:02.211277 DATABPEXT - Data-access Breakpoint Extension = 0 (0)
00:00:02.211277 PERFTSC - Performance Time Stamp Counter = 0 (0)
00:00:02.211279 PCX_L2I - L2I/L3 Performance Counter Extensions = 0 (0)
00:00:02.211280 MONITORX - MWAITX and MONITORX instructions = 0 (0)
00:00:02.211281 AddrMaskExt - BP Addressing masking extended to bit 31 = 0 (0)
00:00:02.211282 Full Name: " Intel(R) Core(TM) i5-2520M CPU @ 2.50GHz"
00:00:02.211282 TLB 2/4M Instr/Uni: res0 0 entries
00:00:02.211283 TLB 2/4M Data: res0 0 entries
00:00:02.211284 TLB 4K Instr/Uni: res0 0 entries
00:00:02.211285 TLB 4K Data: res0 0 entries
00:00:02.211285 L1 Instr Cache Line Size: 0 bytes
00:00:02.211286 L1 Instr Cache Lines Per Tag: 0
00:00:02.211286 L1 Instr Cache Associativity: res0
00:00:02.211287 L1 Instr Cache Size: 0 KB
00:00:02.211287 L1 Data Cache Line Size: 0 bytes
00:00:02.211288 L1 Data Cache Lines Per Tag: 0
00:00:02.211288 L1 Data Cache Associativity: res0
00:00:02.211289 L1 Data Cache Size: 0 KB
00:00:02.211290 L2 TLB 2/4M Instr/Uni: off 0 entries
00:00:02.211290 L2 TLB 2/4M Data: off 0 entries
00:00:02.211291 L2 TLB 4K Instr/Uni: off 0 entries
00:00:02.211291 L2 TLB 4K Data: off 0 entries
00:00:02.211292 L2 Cache Line Size: 0 bytes
00:00:02.211293 L2 Cache Lines Per Tag: 0
00:00:02.211293 L2 Cache Associativity: off
00:00:02.211294 L2 Cache Size: 0 KB
00:00:02.211295 TS - Temperature Sensor = 0 (0)
00:00:02.211297 FID - Frequency ID control = 0 (0)
00:00:02.211298 VID - Voltage ID control = 0 (0)
00:00:02.211300 TTP - Thermal Trip = 0 (0)
00:00:02.211302 TM - Hardware Thermal Control (HTC) = 0 (0)
00:00:02.211303 100MHzSteps - 100 MHz Multiplier control = 0 (0)
00:00:02.211304 HwPstate - Hardware P-state control = 0 (0)
00:00:02.211305 TscInvariant - Invariant Time Stamp Counter = 1 (1)
00:00:02.211306 CPB - Core Performance Boost = 0 (0)
00:00:02.211307 EffFreqRO - Read-only Effective Frequency Interface = 0 (0)
00:00:02.211308 ProcFdbkIf - Processor Feedback Interface = 0 (0)
00:00:02.211309 ProcPwrRep - Core power reporting interface support = 0 (0)
00:00:02.211310 ConnectedStandby - Connected Standby = 0 (0)
00:00:02.211311 RAPL - Running average power limit = 0 (0)
00:00:02.211313 Physical Address Width: 36 bits
00:00:02.211314 Virtual Address Width: 48 bits
00:00:02.211314 Guest Physical Address Width: 0 bits
00:00:02.211315 Physical Core Count: 1
00:00:02.211318
00:00:02.211319 ******************** End of CPUID dump **********************
00:00:02.211319 *********************** VT-x features ***********************
00:00:02.211346 Nested hardware virtualization - VMX features
00:00:02.211347 Mnemonic - Description = guest (host)
00:00:02.211347 VMX - Virtual-Machine Extensions = 0 (1)
00:00:02.211348 InsOutInfo - INS/OUTS instruction info. = 0 (1)
00:00:02.211348 ExtIntExit - External interrupt exiting = 0 (1)
00:00:02.211349 NmiExit - NMI exiting = 0 (1)
00:00:02.211349 VirtNmi - Virtual NMIs = 0 (1)
00:00:02.211350 PreemptTimer - VMX preemption timer = 0 (1)
00:00:02.211350 PostedInt - Posted interrupts = 0 (0)
00:00:02.211351 IntWindowExit - Interrupt-window exiting = 0 (1)
00:00:02.211351 TscOffsetting - TSC offsetting = 0 (1)
00:00:02.211352 HltExit - HLT exiting = 0 (1)
00:00:02.211352 InvlpgExit - INVLPG exiting = 0 (1)
00:00:02.211353 MwaitExit - MWAIT exiting = 0 (1)
00:00:02.211353 RdpmcExit - RDPMC exiting = 0 (1)
00:00:02.211354 RdtscExit - RDTSC exiting = 0 (1)
00:00:02.211354 Cr3LoadExit - CR3-load exiting = 0 (1)
00:00:02.211355 Cr3StoreExit - CR3-store exiting = 0 (1)
00:00:02.211355 TertiaryExecCtls - Activate tertiary controls = 0 (0)
00:00:02.211356 Cr8LoadExit - CR8-load exiting = 0 (1)
00:00:02.211356 Cr8StoreExit - CR8-store exiting = 0 (1)
00:00:02.211357 UseTprShadow - Use TPR shadow = 0 (1)
00:00:02.211357 NmiWindowExit - NMI-window exiting = 0 (1)
00:00:02.211358 MovDRxExit - Mov-DR exiting = 0 (1)
00:00:02.211358 UncondIoExit - Unconditional I/O exiting = 0 (1)
00:00:02.211359 UseIoBitmaps - Use I/O bitmaps = 0 (1)
00:00:02.211359 MonitorTrapFlag - Monitor Trap Flag = 0 (1)
00:00:02.211360 UseMsrBitmaps - MSR bitmaps = 0 (1)
00:00:02.211360 MonitorExit - MONITOR exiting = 0 (1)
00:00:02.211361 PauseExit - PAUSE exiting = 0 (1)
00:00:02.211361 SecondaryExecCtl - Activate secondary controls = 0 (1)
00:00:02.211362 VirtApic - Virtualize-APIC accesses = 0 (1)
00:00:02.211362 Ept - Extended Page Tables = 0 (1)
00:00:02.211363 DescTableExit - Descriptor-table exiting = 0 (1)
00:00:02.211363 Rdtscp - Enable RDTSCP = 0 (1)
00:00:02.211364 VirtX2ApicMode - Virtualize-x2APIC mode = 0 (1)
00:00:02.211364 Vpid - Enable VPID = 0 (1)
00:00:02.211365 WbinvdExit - WBINVD exiting = 0 (1)
00:00:02.211366 UnrestrictedGuest - Unrestricted guest = 0 (1)
00:00:02.211366 ApicRegVirt - APIC-register virtualization = 0 (0)
00:00:02.211367 VirtIntDelivery - Virtual-interrupt delivery = 0 (0)
00:00:02.211367 PauseLoopExit - PAUSE-loop exiting = 0 (0)
00:00:02.211368 RdrandExit - RDRAND exiting = 0 (0)
00:00:02.211368 Invpcid - Enable INVPCID = 0 (0)
00:00:02.211369 VmFuncs - Enable VM Functions = 0 (0)
00:00:02.211369 VmcsShadowing - VMCS shadowing = 0 (0)
00:00:02.211370 RdseedExiting - RDSEED exiting = 0 (0)
00:00:02.211370 PML - Page-Modification Log (PML) = 0 (0)
00:00:02.211371 EptVe - EPT violations can cause #VE = 0 (0)
00:00:02.211371 ConcealVmxFromPt - Conceal VMX from Processor Trace = 0 (0)
00:00:02.211372 XsavesXRstors - Enable XSAVES/XRSTORS = 0 (0)
00:00:02.211372 ModeBasedExecuteEpt - Mode-based execute permissions = 0 (0)
00:00:02.211373 SppEpt - Sub-page page write permissions for EPT = 0 (0)
00:00:02.211373 PtEpt - Processor Trace address' translatable by EPT = 0 (0)
00:00:02.211374 UseTscScaling - Use TSC scaling = 0 (0)
00:00:02.211374 UserWaitPause - Enable TPAUSE, UMONITOR and UMWAIT = 0 (0)
00:00:02.211375 EnclvExit - ENCLV exiting = 0 (0)
00:00:02.211375 LoadIwKeyExit - LOADIWKEY exiting = 0 (0)
00:00:02.211376 EntryLoadDebugCtls - Load debug controls on VM-entry = 0 (1)
00:00:02.211376 Ia32eModeGuest - IA-32e mode guest = 0 (1)
00:00:02.211377 EntryLoadEferMsr - Load IA32_EFER MSR on VM-entry = 0 (1)
00:00:02.211377 EntryLoadPatMsr - Load IA32_PAT MSR on VM-entry = 0 (1)
00:00:02.211378 ExitSaveDebugCtls - Save debug controls on VM-exit = 0 (1)
00:00:02.211378 HostAddrSpaceSize - Host address-space size = 0 (1)
00:00:02.211379 ExitAckExtInt - Acknowledge interrupt on VM-exit = 0 (1)
00:00:02.211379 ExitSavePatMsr - Save IA32_PAT MSR on VM-exit = 0 (1)
00:00:02.211380 ExitLoadPatMsr - Load IA32_PAT MSR on VM-exit = 0 (1)
00:00:02.211380 ExitSaveEferMsr - Save IA32_EFER MSR on VM-exit = 0 (1)
00:00:02.211381 ExitLoadEferMsr - Load IA32_EFER MSR on VM-exit = 0 (1)
00:00:02.211381 SavePreemptTimer - Save VMX-preemption timer = 0 (1)
00:00:02.211382 SecondaryExitCtls - Secondary VM-exit controls = 0 (0)
00:00:02.211382 ExitSaveEferLma - Save IA32_EFER.LMA on VM-exit = 0 (1)
00:00:02.211383 IntelPt - Intel PT (Processor Trace) in VMX operation = 0 (0)
00:00:02.211383 VmwriteAll - VMWRITE to any supported VMCS field = 0 (0)
00:00:02.211384 EntryInjectSoftInt - Inject softint. with 0-len instr. = 0 (0)
00:00:02.211385
00:00:02.211385 ******************* End of VT-x features ********************
00:00:02.211551 VMEmt: Halt method global1 (5)
00:00:02.211690 VMEmt: HaltedGlobal1 config: cNsSpinBlockThresholdCfg=2000
00:00:02.211757 Changing the VM state from 'CREATING' to 'CREATED'
00:00:02.218471 SharedFolders host service: Adding host mapping
00:00:02.218484 Host path '/home/my-username/SHARED', map name 'SHARED', writable, automount=true, automntpnt=, create_symlinks=false, missing=false
00:00:02.219131 Changing the VM state from 'CREATED' to 'POWERING_ON'
00:00:02.220308 AIOMgr: Endpoints without assigned bandwidth groups:
00:00:02.220315 AIOMgr: /home/my-username/Downloads/VBoxGuestAdditions_7.0.0-153872.iso
00:00:02.220320 AIOMgr: /home/my-username/VirtualBox VMs/windows11/windows11.vdi
00:00:02.220491 Changing the VM state from 'POWERING_ON' to 'RUNNING'
00:00:02.220500 Console: Machine state changed to 'Running'
00:00:02.221707 EFI: debug point SEC_PREMEM
00:00:02.231752 GUI: UIMachineViewScale::resendSizeHint: Restoring guest size-hint for screen 0 to 1366x651
00:00:02.231893 VMMDev: SetVideoModeHint: Got a video mode hint (1366x651x0)@(0x0),(1;0) at 0
00:00:02.232864 GUI: HID LEDs sync is not supported on this platform
00:00:02.354156 EFI: VBoxDbg> loadimage64 'SecMain.efi' 0xfffcc094 LB 0x0
00:00:02.355010 EFI: VBoxDbg> loadimage64 'PeiCore.efi' 0x2020120 LB 0x0
00:00:02.355864 EFI: VBoxDbg> loadimage64 'PcdPeim.efi' 0x2026fe0 LB 0x2580
00:00:02.357033 EFI: VBoxDbg> loadimage64 'ReportStatusCodeRouterPei.efi' 0x2029620 LB 0xa00
00:00:02.358221 EFI: VBoxDbg> loadimage64 'StatusCodeHandlerPei.efi' 0x202a0a0 LB 0x700
00:00:02.359079 EFI: VBoxDbg> loadimage64 'PlatformPei.efi' 0x202a8a0 LB 0x5480
00:00:02.364215 EFI: debug point SEC_POSTMEM
00:00:02.365352 EFI: VBoxDbg> loadimage64 'PeiCore.efi' 0xdf364000 LB 0x6cc0
00:00:02.366168 EFI: VBoxDbg> loadimage64 'DxeIpl.efi' 0xdf361000 LB 0x2160
00:00:02.367090 EFI: VBoxDbg> loadimage64 'S3Resume2Pei.efi' 0xdf35f000 LB 0x1680
00:00:02.367902 EFI: VBoxDbg> loadimage64 'CpuMpPei.efi' 0xdf354000 LB 0xa8c0
00:00:02.400063 EFI: VBoxDbg> loadimage64 'TpmMmioSevDecryptPei.efi' 0xdf342000 LB 0xf00
00:00:02.400911 EFI: VBoxDbg> loadimage64 'Tcg2ConfigPei.efi' 0xdf340000 LB 0x1220
00:00:02.401978 EFI: VBoxDbg> loadimage64 'TcgPei.efi' 0xdf33d000 LB 0x26c0
00:00:02.402845 EFI: VBoxDbg> loadimage64 'Tcg2Pei.efi' 0xdf334000 LB 0x8520
00:00:02.766950 EFI: VBoxDbg> loadimage64 'DxeCore.efi' 0xdf317000 LB 0x1b100
00:00:02.768766 EFI: debug point DXE_CORE
00:00:02.770229 EFI: VBoxDbg> loadimage64 'DxeCore.efi' 0xdf317000 LB 0x0
00:00:02.772646 EFI: VBoxDbg> loadimage64 'DevicePathDxe.efi' 0xde920000 LB 0x9e00
00:00:02.773620 EFI: VBoxDbg> loadimage64 'PcdDxe.efi' 0xde92d000 LB 0x2f00
00:00:02.774642 EFI: VBoxDbg> loadimage64 'FvbServicesRuntimeDxe.efi' 0xdeeec000 LB 0x2100
00:00:02.780036 EFI: VBoxDbg> loadimage64 'ReportStatusCodeRouterRuntimeDxe.efi' 0xdeeea000 LB 0x1060
00:00:02.780983 EFI: VBoxDbg> loadimage64 'RuntimeDxe.efi' 0xdeee8000 LB 0x13c0
00:00:02.782170 EFI: VBoxDbg> loadimage64 'SecurityStubDxe.efi' 0xde816000 LB 0x84140
00:00:02.783013 EFI: VBoxDbg> loadimage64 'EbcDxe.efi' 0xde916000 LB 0x4100
00:00:02.784402 EFI: VBoxDbg> loadimage64 'Legacy8259.efi' 0xde91d000 LB 0xb00
00:00:02.785290 EFI: VBoxDbg> loadimage64 'CpuIo2Dxe.efi' 0xde91b000 LB 0xb00
00:00:02.786088 EFI: VBoxDbg> loadimage64 'CpuDxe.efi' 0xde8fa000 LB 0xdd20
00:00:02.797044 EFI: debug point DXE_AP
00:00:02.798311 EFI: VBoxDbg> loadimage64 'IncompatiblePciDeviceSupportDxe.efi' 0xde909000 LB 0x840
00:00:02.799229 EFI: VBoxDbg> loadimage64 'PciHotPlugInitDxe.efi' 0xde8e2000 LB 0x2120
00:00:02.800270 EFI: VBoxDbg> loadimage64 'ResetSystemRuntimeDxe.efi' 0xdeee6000 LB 0x1040
00:00:02.801173 EFI: VBoxDbg> loadimage64 'Metronome.efi' 0xde8e6000 LB 0x820
00:00:02.802028 EFI: VBoxDbg> loadimage64 'PrintDxe.efi' 0xde8de000 LB 0x1f80
00:00:02.803033 EFI: VBoxDbg> loadimage64 'HiiDatabase.efi' 0xde8a8000 LB 0x1a3a0
00:00:02.804080 EFI: VBoxDbg> loadimage64 'NullMemoryTestDxe.efi' 0xde8e0000 LB 0x920
00:00:02.805058 EFI: VBoxDbg> loadimage64 'AcpiTableDxe.efi' 0xde8d4000 LB 0x48c0
00:00:02.805982 EFI: VBoxDbg> loadimage64 'DpcDxe.efi' 0xde8db000 LB 0xb20
00:00:02.806773 EFI: VBoxDbg> loadimage64 'IoMmuDxe.efi' 0xde8d2000 LB 0x1780
00:00:02.807679 EFI: VBoxDbg> loadimage64 'EmuVariableFvbRuntimeDxe.efi' 0xdeee5000 LB 0xe40
00:00:02.808572 EFI: VBoxDbg> unload 'EmuVariableFvbRuntimeDxe.efi' # 0xdeee5000 LB 0xe40
00:00:02.810058 EFI: VBoxDbg> loadimage64 'VariableRuntimeDxe.efi' 0xdee5c000 LB 0x899a0
00:00:02.833389 EFI: VBoxDbg> loadimage64 'TcgDxe.efi' 0xde8ca000 LB 0x3aa0
00:00:02.834541 EFI: VBoxDbg> unload 'TcgDxe.efi' # 0xde8ca000 LB 0x3aa0
00:00:02.836432 EFI: VBoxDbg> loadimage64 'StatusCodeHandlerRuntimeDxe.efi' 0xdee5b000 LB 0xa80
00:00:02.837696 EFI: VBoxDbg> loadimage64 'Timer.efi' 0xde8d1000 LB 0x880
00:00:02.837753 PIT: mode=3 count=0x2e9c (11932) - 99.99 Hz (ch=0)
00:00:02.839079 EFI: VBoxDbg> loadimage64 'PciHostBridgeDxe.efi' 0xde8c7000 LB 0x4c80
00:00:02.840568 EFI: VBoxDbg> loadimage64 'SetupBrowser.efi' 0xde1a4000 LB 0x123c0
00:00:02.841918 EFI: VBoxDbg> loadimage64 'SmbiosDxe.efi' 0xde8a5000 LB 0x2460
00:00:02.843354 EFI: VBoxDbg> loadimage64 'AcpiPlatform.efi' 0xde8cc000 LB 0x720
00:00:02.844736 EFI: VBoxDbg> unload 'AcpiPlatform.efi' # 0xde8cc000 LB 0x720
00:00:02.845984 EFI: VBoxDbg> loadimage64 'tftpDynamicCommand.efi' 0xde40d000 LB 0x8800
00:00:02.847255 EFI: VBoxDbg> loadimage64 'httpDynamicCommand.efi' 0xde199000 LB 0xaa60
00:00:02.848786 EFI: VBoxDbg> loadimage64 'LinuxInitrdDynamicShellCommand.efi' 0xde406000 LB 0x6080
00:00:02.849883 EFI: VBoxDbg> loadimage64 'LogoDxe.efi' 0xde185000 LB 0x9a80
00:00:02.851340 EFI: VBoxDbg> loadimage64 'FaultTolerantWriteDxe.efi' 0xde89b000 LB 0x2ca0
00:00:02.853903 EFI: VBoxDbg> loadimage64 'Tcg2Dxe.efi' 0xde16d000 LB 0xbcc0
00:00:02.863588 EFI: VBoxDbg> loadimage64 'PcRtc.efi' 0xdee58000 LB 0x23a0
00:00:02.864956 EFI: VBoxDbg> loadimage64 'SecureBootConfigDxe.efi' 0xde08f000 LB 0x6e4c0
00:00:02.866040 EFI: VBoxDbg> loadimage64 'WatchdogTimer.efi' 0xde400000 LB 0x7e0
00:00:02.867178 EFI: VBoxDbg> loadimage64 'MonotonicCounterRuntimeDxe.efi' 0xdee57000 LB 0x840
00:00:02.868914 EFI: VBoxDbg> loadimage64 'CapsuleRuntimeDxe.efi' 0xdee56000 LB 0x920
00:00:02.870134 EFI: VBoxDbg> loadimage64 'DriverHealthManagerDxe.efi' 0xde179000 LB 0x41e0
00:00:02.870975 EFI: VBoxDbg> loadimage64 'BdsDxe.efi' 0xde13f000 LB 0x16300
00:00:02.871897 EFI: VBoxDbg> loadimage64 'RamDiskDxe.efi' 0xde15b000 LB 0x81e0
00:00:02.872912 EFI: VBoxDbg> loadimage64 'DisplayEngine.efi' 0xde11d000 LB 0x107a0
00:00:02.874347 EFI: VBoxDbg> loadimage64 'SmbiosPlatformDxe.efi' 0xde159000 LB 0x1280
00:00:02.875222 EFI: VBoxDbg> loadimage64 'PlatformDxe.efi' 0xde137000 LB 0x3620
00:00:02.876119 EFI: VBoxDbg> loadimage64 'Tcg2ConfigDxe.efi' 0xde114000 LB 0x8d80
00:00:02.877739 EFI: VBoxDbg> loadimage64 'PciBusDxe.efi' 0xde0fe000 LB 0xade0
00:00:02.878670 EFI: VBoxDbg> loadimage64 'VirtioPciDeviceDxe.efi' 0xde13b000 LB 0x1120
00:00:02.879451 EFI: VBoxDbg> loadimage64 'Virtio10.efi' 0xde131000 LB 0x2560
00:00:02.880278 EFI: VBoxDbg> loadimage64 'VirtioScsiDxe.efi' 0xde134000 LB 0x1f20
00:00:02.881058 EFI: VBoxDbg> loadimage64 'PvScsiDxe.efi' 0xde12f000 LB 0x1a00
00:00:02.881888 EFI: VBoxDbg> loadimage64 'MptScsiDxe.efi' 0xde110000 LB 0x17e0
00:00:02.882920 EFI: VBoxDbg> loadimage64 'ConPlatformDxe.efi' 0xde10e000 LB 0x1c40
00:00:02.883944 EFI: VBoxDbg> loadimage64 'ConSplitterDxe.efi' 0xde083000 LB 0x5500
00:00:02.885036 EFI: VBoxDbg> loadimage64 'GraphicsConsoleDxe.efi' 0xde08b000 LB 0x3e80
00:00:02.886176 EFI: VBoxDbg> loadimage64 'TerminalDxe.efi' 0xde079000 LB 0x4e80
00:00:02.887157 EFI: VBoxDbg> loadimage64 'QemuKernelLoaderFsDxe.efi' 0xde081000 LB 0x1900
00:00:02.888181 EFI: VBoxDbg> unload 'QemuKernelLoaderFsDxe.efi' # 0xde081000 LB 0x1900
00:00:02.889154 EFI: VBoxDbg> loadimage64 'DiskIoDxe.efi' 0xde081000 LB 0x1fa0
00:00:02.890160 EFI: VBoxDbg> loadimage64 'PartitionDxe.efi' 0xde06f000 LB 0x4f60
00:00:02.891166 EFI: VBoxDbg> loadimage64 'EnglishDxe.efi' 0xde10a000 LB 0xd80
00:00:02.892041 EFI: VBoxDbg> loadimage64 'ScsiBus.efi' 0xde077000 LB 0x1e80
00:00:02.892951 EFI: VBoxDbg> loadimage64 'ScsiDisk.efi' 0xde05f000 LB 0x77c0
00:00:02.893889 EFI: VBoxDbg> loadimage64 'SataController.efi' 0xde075000 LB 0x1420
00:00:02.894892 EFI: VBoxDbg> loadimage64 'AtaAtapiPassThruDxe.efi' 0xde057000 LB 0x70a0
00:00:02.895785 EFI: VBoxDbg> loadimage64 'AtaBusDxe.efi' 0xde067000 LB 0x3720
00:00:02.896721 EFI: VBoxDbg> loadimage64 'NvmExpressDxe.efi' 0xde049000 LB 0x6c20
00:00:02.897580 EFI: VBoxDbg> loadimage64 'SioBusDxe.efi' 0xde06b000 LB 0x1520
00:00:02.898539 EFI: VBoxDbg> loadimage64 'PciSioSerialDxe.efi' 0xde044000 LB 0x4b80
00:00:02.899523 EFI: VBoxDbg> loadimage64 'Ps2KeyboardDxe.efi' 0xde040000 LB 0x33c0
00:00:02.900469 EFI: VBoxDbg> loadimage64 'VBoxVgaMiniPortDxe.efi' 0xde051000 LB 0x28a0
00:00:02.901454 EFI: VBoxDbg> loadimage64 'VBoxVgaDxe.efi' 0xde038000 LB 0x32c0
00:00:02.902251 EFI: VBoxDbg> loadimage64 'VBoxHfs.efi' 0xde02a000 LB 0x61a0
00:00:02.903131 EFI: VBoxDbg> loadimage64 'VBoxSysTables.efi' 0xde055000 LB 0xa80
00:00:02.956015 EFI: VBoxDbg> loadimage64 'VBoxAppleSim.efi' 0xde035000 LB 0x2a40
00:00:02.957256 EFI: VBoxDbg> loadimage64 'VBoxApfsJmpStartDxe.efi' 0xde03c000 LB 0x1140
00:00:02.958513 EFI: VBoxDbg> loadimage64 'BootGraphicsResourceTableDxe.efi' 0xde03f000 LB 0xf00
00:00:02.959380 EFI: VBoxDbg> loadimage64 'Fat.efi' 0xde01c000 LB 0x6ec0
00:00:02.960334 EFI: VBoxDbg> loadimage64 'UdfDxe.efi' 0xde026000 LB 0x3dc0
00:00:02.961229 EFI: VBoxDbg> loadimage64 'VirtioFsDxe.efi' 0xde010000 LB 0x5ac0
00:00:02.962015 EFI: VBoxDbg> loadimage64 'SnpDxe.efi' 0xde00a000 LB 0x5480
00:00:02.963052 EFI: VBoxDbg> loadimage64 'VlanConfigDxe.efi' 0xde004000 LB 0x5380
00:00:02.964669 EFI: VBoxDbg> loadimage64 'MnpDxe.efi' 0xddff6000 LB 0x6d40
00:00:02.965760 EFI: VBoxDbg> loadimage64 'ArpDxe.efi' 0xde000000 LB 0x3440
00:00:02.967301 EFI: VBoxDbg> loadimage64 'Dhcp4Dxe.efi' 0xddfe6000 LB 0x7fa0
00:00:02.968654 EFI: VBoxDbg> loadimage64 'Ip4Dxe.efi' 0xddfc4000 LB 0x10400
00:00:02.970572 EFI: VBoxDbg> loadimage64 'Udp4Dxe.efi' 0xddfde000 LB 0x7040
00:00:02.971579 EFI: VBoxDbg> loadimage64 'Mtftp4Dxe.efi' 0xddfd6000 LB 0x7640
00:00:02.972389 EFI: VBoxDbg> loadimage64 'TcpDxe.efi' 0xddfaa000 LB 0xc4c0
00:00:02.973479 EFI: VBoxDbg> loadimage64 'UefiPxeBcDxe.efi' 0xddf8a000 LB 0xf880
00:00:02.974483 EFI: VBoxDbg> loadimage64 'IScsiDxe.efi' 0xddf54000 LB 0x1a1a0
00:00:02.977633 EFI: VBoxDbg> loadimage64 'VirtioNetDxe.efi' 0xddfc0000 LB 0x3240
00:00:02.978505 EFI: VBoxDbg> loadimage64 'E1kNetDxe.efi' 0xddfbd000 LB 0x2ce0
00:00:02.979391 EFI: VBoxDbg> loadimage64 'UhciDxe.efi' 0xddfa5000 LB 0x4220
00:00:02.980263 EFI: VBoxDbg> loadimage64 'EhciDxe.efi' 0xddfa0000 LB 0x4cc0
00:00:02.981303 EFI: VBoxDbg> loadimage64 'XhciDxe.efi' 0xddf7a000 LB 0x76e0
00:00:02.982226 EFI: VBoxDbg> loadimage64 'UsbBusDxe.efi' 0xddf9b000 LB 0x4d40
00:00:02.983148 EFI: VBoxDbg> loadimage64 'UsbKbDxe.efi' 0xddfb9000 LB 0x3de0
00:00:02.984167 EFI: VBoxDbg> loadimage64 'UsbMassStorageDxe.efi' 0xddf86000 LB 0x3100
00:00:03.102728 Display::i_handleDisplayResize: uScreenId=0 pvVRAM=00007f3598000000 w=1024 h=768 bpp=32 cbLine=0x1000 flags=0x0 origin=0,0
00:00:03.193997 PS2K: Selected scan set 2
00:00:03.194710 xHCI: Hardware reset
00:00:03.196830 xHCI: USB Operational
00:00:03.205473 xHCI: Root hub-attached device reset completed with VINF_SUCCESS
00:00:03.408987 ATA: LUN#0: EXECUTE DEVICE DIAGNOSTIC, status 00
00:00:03.429589 AHCI#0: Reset the HBA
00:00:03.429610 VD#0: Cancelling all active requests
00:00:03.599550 EFI: VBoxDbg> loadimage64 'bootmgfw.efi' 0x10000000 LB 0x1e1000
00:00:04.063575 GIM: HyperV: Guest OS reported ID 0x1040a0000271b
00:00:04.063601 GIM: HyperV: Open-source=false Vendor=0x1 OS=0x4 (Windows NT or derivative) Major=10 Minor=0 ServicePack=0 Build=10011
00:00:04.063637 GIM: HyperV: Enabled hypercall page at 0x00000000001f1000
00:00:04.926005 xHCI: USB Suspended
00:00:04.937441 EFI: debug point DXE_AP
00:00:04.937598 EFI: relocate module to 0xfffff803593af000 from 0xdeeec000
00:00:04.937658 EFI: relocate module to 0xfffff803593ad000 from 0xdeeea000
00:00:04.937725 EFI: relocate module to 0xfffff803593a9000 from 0xdeee6000
00:00:04.937782 EFI: relocate module to 0xfffff8035931f000 from 0xdee5c000
00:00:04.937877 EFI: relocate module to 0xfffff8035931e000 from 0xdee5b000
00:00:04.937934 EFI: relocate module to 0xfffff8035931b000 from 0xdee58000
00:00:04.937989 EFI: relocate module to 0xfffff8035931a000 from 0xdee57000
00:00:04.938045 EFI: relocate module to 0xfffff80359319000 from 0xdee56000
00:00:04.951871 GIM: HyperV: Guest OS reported ID 0x1040a0000271b
00:00:04.951882 GIM: HyperV: Open-source=false Vendor=0x1 OS=0x4 (Windows NT or derivative) Major=10 Minor=0 ServicePack=0 Build=10011
00:00:04.951972 GIM: HyperV: Queried extended hypercall capabilities 0x1 at 0x00000000007e6000
00:00:04.952009 GIM: HyperV: Queried boot zeroed guest memory range (starting at 0x0000000000000000 spanning 1912845 pages) at 0x00000000007e6000
00:00:04.953398 GIM: HyperV: Queried extended hypercall capabilities 0x1 at 0x0000000000007000
00:00:04.953525 GIM: HyperV: Enabled TSC page at 0x000000000000c000 - u64TscScale=0x106fee500000000 u64TscKHz=0x260600 (2 491 904) Seq=1
00:00:04.953551 TM: Switching TSC mode from 'VirtTSCEmulated' to 'RealTSCOffset'
00:00:04.953592 GIM0: HyperV: Enabled APIC-assist page at 0x000000000000d000
00:00:04.957736 RTC: period=0x10 (16) 2048 Hz
00:00:05.332472 RTC: period=0x10 (16) 2048 Hz
00:00:05.349603 RTC: period=0x10 (16) 2048 Hz
00:00:05.365618 GIM1: HyperV: Enabled APIC-assist page at 0x000000003ffff000
00:00:05.367846 RTC: period=0x10 (16) 2048 Hz
00:00:05.413697 RTC: period=0x10 (16) 2048 Hz
00:00:05.418180 RTC: period=0x10 (16) 2048 Hz
00:00:05.425851 RTC: period=0x10 (16) 2048 Hz
00:00:05.428681 RTC: period=0x10 (16) 2048 Hz
00:00:05.429444 RTC: period=0x10 (16) 2048 Hz
00:00:05.430272 RTC: period=0x10 (16) 2048 Hz
00:00:05.444975 RTC: period=0x10 (16) 2048 Hz
00:00:05.449988 RTC: period=0x10 (16) 2048 Hz
00:00:05.460279 RTC: period=0x10 (16) 2048 Hz
00:00:05.461826 RTC: period=0x10 (16) 2048 Hz
00:00:05.466317 RTC: period=0x10 (16) 2048 Hz
00:00:05.475910 RTC: period=0x10 (16) 2048 Hz
00:00:05.491192 RTC: period=0x10 (16) 2048 Hz
00:00:05.495580 RTC: period=0x10 (16) 2048 Hz
00:00:05.500728 RTC: period=0x10 (16) 2048 Hz
00:00:05.507350 RTC: period=0x10 (16) 2048 Hz
00:00:05.507988 RTC: period=0x10 (16) 2048 Hz
00:00:05.530555 RTC: period=0x10 (16) 2048 Hz
00:00:05.530756 RTC: period=0x10 (16) 2048 Hz
00:00:05.534522 RTC: period=0x10 (16) 2048 Hz
00:00:05.539198 RTC: period=0x10 (16) 2048 Hz
00:00:05.541786 RTC: period=0x10 (16) 2048 Hz
00:00:05.551061 RTC: period=0x10 (16) 2048 Hz
00:00:05.556375 RTC: period=0x10 (16) 2048 Hz
00:00:05.565560 RTC: period=0x10 (16) 2048 Hz
00:00:05.568201 RTC: period=0x10 (16) 2048 Hz
00:00:05.570153 RTC: period=0x10 (16) 2048 Hz
00:00:05.587342 RTC: period=0x10 (16) 2048 Hz
00:00:05.588064 RTC: period=0x10 (16) 2048 Hz
00:00:05.599821 RTC: period=0x10 (16) 2048 Hz
00:00:05.601581 RTC: period=0x10 (16) 2048 Hz
00:00:05.607598 RTC: period=0x10 (16) 2048 Hz
00:00:05.630896 RTC: period=0x10 (16) 2048 Hz
00:00:05.631081 RTC: period=0x10 (16) 2048 Hz
00:00:05.639642 RTC: period=0x10 (16) 2048 Hz
00:00:05.658959 RTC: period=0x10 (16) 2048 Hz
00:00:05.659134 RTC: period=0x10 (16) 2048 Hz
00:00:05.682681 RTC: period=0x10 (16) 2048 Hz
00:00:05.686876 RTC: period=0x10 (16) 2048 Hz
00:00:05.707251 RTC: period=0x10 (16) 2048 Hz
00:00:05.707522 RTC: period=0x10 (16) 2048 Hz
00:00:05.729930 RTC: period=0x10 (16) 2048 Hz
00:00:05.730167 RTC: period=0x10 (16) 2048 Hz
00:00:05.745540 RTC: period=0x10 (16) 2048 Hz
00:00:05.751331 RTC: period=0x10 (16) 2048 Hz
00:00:05.773120 RTC: period=0x10 (16) 2048 Hz
00:00:05.774182 RTC: period=0x10 (16) 2048 Hz
00:00:05.812911 RTC: period=0x10 (16) 2048 Hz
00:00:05.817260 RTC: period=0x10 (16) 2048 Hz
00:00:05.836979 RTC: period=0x10 (16) 2048 Hz
00:00:05.837630 RTC: period=0x10 (16) 2048 Hz
00:00:05.837949 RTC: period=0x10 (16) 2048 Hz
00:00:05.873018 RTC: period=0x10 (16) 2048 Hz
00:00:05.879256 RTC: period=0x10 (16) 2048 Hz
00:00:05.882699 RTC: period=0x10 (16) 2048 Hz
00:00:05.905340 RTC: period=0x10 (16) 2048 Hz
00:00:05.921691 RTC: period=0x10 (16) 2048 Hz
00:00:05.927951 RTC: period=0x10 (16) 2048 Hz
00:00:05.965929 RTC: period=0x10 (16) 2048 Hz
00:00:05.969790 RTC: period=0x10 (16) 2048 Hz
00:00:29.412747 AHCI#0: Reset the HBA
00:00:29.413317 VD#0: Cancelling all active requests
00:00:29.473780 VMMDev: Guest Log: VBoxGuest: Windows version 10.0, build 22621
00:00:29.487113 VMMDev: Guest Additions information report: Version 7.0.0 r153872 '7.0.0_BETA3'
00:00:29.491468 VMMDev: Guest Additions information report: Interface = 0x00010004 osType = 0x0003E100 (Windows 11, 64-bit)
00:00:29.504536 VMMDev: Guest Additions capability report: (0x0 -> 0x0) seamless: no, hostWindowMapping: no, graphics: no
00:00:29.504623 VMMDev: vmmDevReqHandler_HeartbeatConfigure: No change (fHeartbeatActive=false)
00:00:29.519298 GUI: UISession::sltAdditionsChange: GA state change event came, notifying listeners
00:00:29.519371 GUI: UISession::sltAdditionsChange: GA state change event came, notifying listeners
00:00:29.536092 VMMDev: Heartbeat flatline timer set to trigger after 4 000 000 000 ns
00:00:29.548342 VMMDev: Guest Additions capability report: (0x0 -> 0x0) seamless: no, hostWindowMapping: no, graphics: no
00:00:29.566863 GUI: UISession::sltAdditionsChange: GA state really changed, notifying listeners
00:00:29.566905 GUI: UISession::sltAdditionsChange: GA state change event came, notifying listeners
00:00:29.566983 GUI: UISession::sltAdditionsChange: GA state change event came, notifying listeners
00:00:32.968953 VMMDev: Guest Log: VBoxSF: g_fHostFeatures=0x8000000f g_fSfFeatures=0x1 g_uSfLastFunction=29
00:00:33.258977 VMMDev: Guest Log: VBoxMouse::DriverEntry: DriverEntry:
00:00:33.335110 VMMDev: Guest Log: VBoxMP::DriverEntry: VBox WDDM Driver for Windows 8+ version 7.0.0r153872 rel, 64 bit; Built Sep 30 2022 17:57:18
00:00:33.335345 VMMDev: Guest Log: VBoxMP::DriverEntry: OsVersion(10, 0, 22621)
00:00:33.335494 VMMDev: Guest Log: VBoxMP::DriverEntry: WDDM: VGA configuration version 1
00:00:33.335599 VMMDev: Guest Log: VBoxMP::DriverEntry: WDDM: VGA configuration: 3D 0, hardware type 0, VGPU10 1
00:00:33.335671 VMMDev: Guest Log: VBoxMP::DriverEntry: WDDM: 3D is not supported, hardware type 0
00:00:33.335731 VMMDev: Guest Log: VBoxMP::DriverEntry: 3D is NOT supported by the host, falling back to display-only mode..
00:00:40.026695 xHCI: Hardware reset
00:00:40.037304 xHCI: Root hub-attached device reset completed with VINF_SUCCESS
00:00:40.041584 xHCI: USB Operational
00:00:40.058787 HDA: Codec reset
00:00:40.058818 HDA: Reset
00:00:40.080513 HDA: Codec reset
00:00:40.080544 HDA: Reset
00:00:40.220358 HDA: Codec reset
00:00:40.223915 Audio Mixer: MUTING sink 'HDA Mixer/PCM Output' -- channel volumes: 00 00 00 00 00 00 00 00 00 00 00 00
00:00:40.294905 Audio Mixer: MUTING sink 'HDA Mixer/Line In' -- channel volumes: 00 00 00 00 00 00 00 00 00 00 00 00
00:00:40.295572 Audio Mixer: MUTING sink 'HDA Mixer/Line In' -- channel volumes: 00 00 00 00 00 00 00 00 00 00 00 00
00:00:40.324031 Audio Mixer: MUTING sink 'HDA Mixer/PCM Output' -- channel volumes: 00 00 00 00 00 00 00 00 00 00 00 00
00:00:40.324178 Audio Mixer: Setting sink 'HDA Mixer/PCM Output' -- channel volumes: 01 01 01 01 01 01 01 01 01 01 01 01
00:00:40.324917 Audio Mixer: Setting sink 'HDA Mixer/PCM Output' -- channel volumes: 01 01 01 01 01 01 01 01 01 01 01 01
00:00:40.325030 Audio Mixer: Setting sink 'HDA Mixer/PCM Output' -- channel volumes: 01 01 01 01 01 01 01 01 01 01 01 01
00:00:40.325647 Audio Mixer: Setting sink 'HDA Mixer/PCM Output' -- channel volumes: ff ff ff ff ff ff ff ff ff ff ff ff
00:00:40.327741 Audio Mixer: Setting sink 'HDA Mixer/PCM Output' -- channel volumes: ef ff ff ff ff ff ff ff ff ff ff ff
00:00:40.328116 Audio Mixer: Setting sink 'HDA Mixer/PCM Output' -- channel volumes: ef ef ef ef ef ef ef ef ef ef ef ef
00:00:40.329815 Audio Mixer: Setting sink 'HDA Mixer/PCM Output' -- channel volumes: ef ef ef ef ef ef ef ef ef ef ef ef
00:00:40.330079 Audio Mixer: Setting sink 'HDA Mixer/PCM Output' -- channel volumes: ef ef ef ef ef ef ef ef ef ef ef ef
00:00:40.332380 Audio Mixer: MUTING sink 'HDA Mixer/Line In' -- channel volumes: 00 00 00 00 00 00 00 00 00 00 00 00
00:00:40.332504 Audio Mixer: Setting sink 'HDA Mixer/Line In' -- channel volumes: 01 01 01 01 01 01 01 01 01 01 01 01
00:00:40.332682 Audio Mixer: Setting sink 'HDA Mixer/Line In' -- channel volumes: ff 01 ff ff ff ff ff ff ff ff ff ff
00:00:40.332780 Audio Mixer: Setting sink 'HDA Mixer/Line In' -- channel volumes: ff ff ff ff ff ff ff ff ff ff ff ff
00:00:40.332881 Audio Mixer: Setting sink 'HDA Mixer/Line In' -- channel volumes: ff ff ff ff ff ff ff ff ff ff ff ff
00:00:40.332985 Audio Mixer: Setting sink 'HDA Mixer/Line In' -- channel volumes: ff ff ff ff ff ff ff ff ff ff ff ff
00:00:40.334603 Audio Mixer: Setting sink 'HDA Mixer/Line In' -- channel volumes: eb ff ff ff ff ff ff ff ff ff ff ff
00:00:40.334930 Audio Mixer: Setting sink 'HDA Mixer/Line In' -- channel volumes: eb eb eb eb eb eb eb eb eb eb eb eb
00:00:40.335195 Audio Mixer: Setting sink 'HDA Mixer/Line In' -- channel volumes: eb eb eb eb eb eb eb eb eb eb eb eb
00:00:40.335436 Audio Mixer: Setting sink 'HDA Mixer/Line In' -- channel volumes: eb eb eb eb eb eb eb eb eb eb eb eb
00:00:42.009988 NAT: Link up
00:00:42.051504 VMMDev: Guest Log: VBoxMP::vboxWddmPickResources: found the VBE card
00:00:42.051609 VMMDev: Guest Log: VBoxMP::DxgkDdiStartDevice: Handling complex topologies enabled
00:00:42.055653 VMMDev: Guest Log: VBoxMP::DxgkDdiStartDevice: using HGSMI
00:00:42.055939 GUI: UIFrameBufferPrivate::IsVideoModeSupported: Mode: BPP=32, Size=1152x864 is NOT supported
00:00:42.056021 VMMDev: Guest Log: VBoxMP::vboxWddmVModesAdd: WARNING! :resolution 1152x864 not accepted by the frontend
00:00:42.056121 GUI: UIFrameBufferPrivate::IsVideoModeSupported: Mode: BPP=32, Size=1280x960 is NOT supported
00:00:42.056297 VMMDev: Guest Log: VBoxMP::vboxWddmVModesAdd: WARNING! :resolution 1280x960 not accepted by the frontend
00:00:42.056324 GUI: UIFrameBufferPrivate::IsVideoModeSupported: Mode: BPP=32, Size=1280x1024 is NOT supported
00:00:42.056400 VMMDev: Guest Log: VBoxMP::vboxWddmVModesAdd: WARNING! :resolution 1280x1024 not accepted by the frontend
00:00:42.056421 GUI: UIFrameBufferPrivate::IsVideoModeSupported: Mode: BPP=32, Size=1400x1050 is NOT supported
00:00:42.056626 VMMDev: Guest Log: VBoxMP::vboxWddmVModesAdd: WARNING! :resolution 1400x1050 not accepted by the frontend
00:00:42.056653 GUI: UIFrameBufferPrivate::IsVideoModeSupported: Mode: BPP=32, Size=1600x1200 is NOT supported
00:00:42.056825 VMMDev: Guest Log: VBoxMP::vboxWddmVModesAdd: WARNING! :resolution 1600x1200 not accepted by the frontend
00:00:42.056851 GUI: UIFrameBufferPrivate::IsVideoModeSupported: Mode: BPP=32, Size=1920x1440 is NOT supported
00:00:42.056925 VMMDev: Guest Log: VBoxMP::vboxWddmVModesAdd: WARNING! :resolution 1920x1440 not accepted by the frontend
00:00:42.059066 VMMDev: Guest Log: VBoxMP::DxgkDdiQueryAdapterInfo: WARNING! :unsupported Type (47)
00:00:42.168121 Display::i_handleDisplayResize: uScreenId=0 pvVRAM=00007f3598000000 w=1366 h=651 bpp=32 cbLine=0x1558 flags=0x1 origin=0,0
00:00:42.479885 NAT: IPv6 not supported
00:00:44.885205 VMMDev: Guest Log: 13:00:20.016716 main VBoxService 7.0.0_BETA3 r153872 (verbosity: 0) win.amd64 (Sep 30 2022 17:57:14) release log
00:00:44.885205 VMMDev: Guest Log: 13:00:20.016716 main Log opened 2025-05-19T13:00:20.016716700Z
00:00:44.885205 VMMDev: Guest Log: 13:00:20.016716 main OS Product: Windows 11
00:00:44.885205 VMMDev: Guest Log: 13:00:20.016716 main OS Release: 10.0.22631
00:00:44.885205 VMMDev: Guest Log: 13:00:20.016716 main OS Service Pack:
00:00:44.885205 VMMDev: Guest Log: 13:00:20.016716 main Executable: C:\Windows\System32\VBoxService.exe
00:00:44.885205 VMMDev: Guest Log: 13:00:20.016716 main Process ID: 1736
00:00:44.885205 VMMDev: Guest Log: 13:00:20.016716 main Package type: WINDOWS_64BITS_GENERIC
00:00:44.890732 VMMDev: Guest Log: 13:00:20.016716 main 7.0.0_BETA3 r153872 started. Verbose level = 0
00:00:44.928832 GUI: UISession::sltAdditionsChange: GA state change event came, notifying listeners
00:00:44.930728 VMMDev: Guest Log: 13:00:20.069068 vbglR3GuestCtrlDetectPeekGetCancelSupport: Supported (#1)
00:00:44.930967 Guest Control: GUEST_MSG_REPORT_FEATURES: 0xf, 0x8000000000000000
00:00:44.937781 VMMDev: Guest Log: 13:00:20.069068 vgsvcTimeSyncInit: Initially 156250 (100ns) units per 156250 (100 ns) units interval, disabled=1
00:00:45.023323 VMMDev: Guest Log: VBOXNP: DLL loaded.
00:00:45.024546 GUI: UISession::sltAdditionsChange: GA state really changed, notifying listeners
00:00:45.024564 GUI: UISession::sltAdditionsChange: GA state change event came, notifying listeners
00:00:45.039708 VMMDev: Guest Log: 12:00:07.211751 automount vbsvcAutomounterMountIt: Successfully mounted 'SHARED' on 'Z:'
00:00:45.815225 Audio Mixer: Setting sink 'HDA Mixer/Line In' -- channel volumes: eb eb eb eb eb eb eb eb eb eb eb eb
00:00:45.858048 Audio Mixer: Setting sink 'HDA Mixer/Line In' -- channel volumes: eb eb eb eb eb eb eb eb eb eb eb eb
00:00:46.284853 NAT: resolv.conf: nameserver 192.168.3.1
00:00:46.284912 NAT: Adding domain name lan
00:00:46.284917 NAT: DNS#0: 192.168.3.1
00:00:46.284924 NAT: DHCP offered IP address 10.0.2.15
00:00:46.288694 NAT: DHCP offered IP address 10.0.2.15
00:00:47.319056 ALSA: Using output device "default"
00:00:54.987244 VMMDev: Guest Log: 12:00:17.171781 timesync vgsvcTimeSyncWorker: Radical guest time change: -3 602 936 688 100ns (GuestNow=1 747 656 017 163 511 200 ns GuestLast=1 747 659 620 100 199 300 ns fSetTimeLastLoop=true)
00:01:16.861442 VMMDev: Guest Log: VBOXNP: DLL loaded.
00:02:21.555577 VMMDev: Guest Log: Windows version 10.0 build 22631 (uNtVersion=0xa0000000005867)
00:02:21.556027 GUI: UISession::sltAdditionsChange: GA state change event came, notifying listeners
00:02:21.575684 VMMDev: Guest Log: Starting services ...
00:02:21.575771 VMMDev: Guest Log: Starting service 'display' ...
00:02:21.580605 VMMDev: Guest Log: Service 'display' started
00:02:21.580678 VMMDev: Guest Log: Starting service 'clipboard' ...
00:02:21.580932 VMMDev: Guest Log: Shared Clipboard: New Clipboard API enabled
00:02:21.589165 VMMDev: Guest Log: Service 'clipboard' started
00:02:21.589205 VMMDev: Guest Log: Starting service 'seamless' ...
00:02:21.589205 VMMDev: Guest Additions capability report: (0x0 -> 0x1) seamless: yes, hostWindowMapping: no, graphics: no
00:02:21.589205 VMMDev: Guest Log: Service 'seamless' started
00:02:21.589205 VMMDev: Guest Log: Starting service 'VRDP' ...
00:02:21.589205 VMMDev: Guest Log: Service 'VRDP' started
00:02:21.589205 VMMDev: Guest Log: Starting service 'IPC' ...
00:02:21.589205 VMMDev: Guest Log: VBoxIPCInit: Local IPC server now running at "\\.\pipe\VBoxTrayIPC-krist"
00:02:21.589205 VMMDev: Guest Log: Service 'IPC' started
00:02:21.593247 VMMDev: Guest Log: Starting service 'LA' ...
00:02:21.593385 VMMDev: Guest Log: LA: RegQueryValueExW: failed [SOFTWARE\Oracle\VirtualBox Guest Additions/VBoxTrayLog]
00:02:21.593465 VMMDev: Guest Log: LA: RegQueryValueExW: failed [SOFTWARE\Oracle\VirtualBox Guest Additions/VBoxTrayLA]
00:02:21.593510 VMMDev: Guest Log: LA: DetachOnDisconnect=true
00:02:21.594073 VMMDev: Guest Log: Service 'LA' started
00:02:21.594130 VMMDev: Guest Log: Starting service 'draganddrop' ...
00:02:21.596255 GUI: UISession::sltAdditionsChange: GA state really changed, notifying listeners
00:02:21.596281 GUI: UISession::sltAdditionsChange: GA state change event came, notifying listeners
00:02:21.608223 VMMDev: Guest Log: DnD: Drag and drop service successfully started
00:02:21.608458 VMMDev: Guest Log: Service 'draganddrop' started
00:02:21.608500 VMMDev: Guest Log: All services started
00:02:21.622761 VMMDev: Guest Additions capability report: (0x1 -> 0x5) seamless: yes, hostWindowMapping: no, graphics: yes
00:02:21.622994 VMMDev: Guest Log: Got multi resize request 1 displays
00:02:21.623092 VMMDev: Guest Log: [0]: 0 0x39 0,0 1366x651 0
00:02:21.625634 VMMDev: Guest Log: VBoxDispIfResizeDisplayWin7: VBoxTray: (WDDM) invalid bpp 0, using 32bpp instead
00:02:21.629333 GUI: UISession::sltAdditionsChange: GA state really changed, notifying listeners
00:02:21.629361 GUI: UISession::sltAdditionsChange: GA state change event came, notifying listeners
00:02:21.636021 GUI: UISession::sltAdditionsChange: GA state really changed, notifying listeners
00:02:21.636086 GUI: UISession::sltAdditionsChange: GA state change event came, notifying listeners
00:02:21.772720 Display::i_handleDisplayResize: uScreenId=0 pvVRAM=00007f3598000000 w=1366 h=651 bpp=32 cbLine=0x1558 flags=0xD origin=0,0
00:02:21.772905 GUI: UIFrameBufferPrivate::performResize: Size=1366x651, Using fallback buffer since no source bitmap is provided
00:02:55.259425 Display::i_handleDisplayResize: uScreenId=0 pvVRAM=00007f3598000000 w=1366 h=651 bpp=32 cbLine=0x1558 flags=0x1 origin=0,0
00:03:53.634474 Display::i_handleDisplayResize: uScreenId=0 pvVRAM=00007f3598000000 w=1366 h=651 bpp=32 cbLine=0x1558 flags=0xD origin=0,0
00:03:53.634757 GUI: UIFrameBufferPrivate::performResize: Size=1366x651, Using fallback buffer since no source bitmap is provided
00:04:16.034897 VMMDev: Guest Log: VBOXNP: DLL loaded.
00:04:25.016663 VMMDev: Guest Log: VBOXNP: DLL loaded.
00:04:59.118451 Display::i_handleDisplayResize: uScreenId=0 pvVRAM=00007f3598000000 w=1366 h=651 bpp=32 cbLine=0x1558 flags=0x1 origin=0,0
00:05:00.204557 VMMDev: Guest Additions capability report: (0x5 -> 0x0) seamless: no, hostWindowMapping: no, graphics: no
00:05:00.225316 GUI: UISession::sltAdditionsChange: GA state really changed, notifying listeners
00:05:00.225383 GUI: UISession::sltAdditionsChange: GA state change event came, notifying listeners
00:05:04.185156 VMMDev: Guest Additions capability report: (0x0 -> 0x1) seamless: yes, hostWindowMapping: no, graphics: no
00:05:04.185314 VMMDev: Guest Additions capability report: (0x1 -> 0x5) seamless: yes, hostWindowMapping: no, graphics: yes
00:05:04.192867 GUI: UISession::sltAdditionsChange: GA state really changed, notifying listeners
00:05:04.192932 GUI: UISession::sltAdditionsChange: GA state change event came, notifying listeners
00:05:04.193007 GUI: UISession::sltAdditionsChange: GA state change event came, notifying listeners
00:05:04.337338 VMMDev: Guest Log: 12:04:47.666681 vminfo Error: Could not get logon session data! rcNt=0xc000005f
00:05:40.542949 ALSA: Using output device "default"
00:05:49.598550 VMMDev: Guest Log: VBOXNP: DLL loaded.
00:07:04.843865 VMMDev: Guest Log: VBOXNP: DLL unloaded.
00:07:04.849587 VMMDev: Guest Log: VBOXNP: DLL loaded.
00:08:42.194926 VMMDev: Guest Log: VBOXNP: DLL loaded.
00:09:02.265106 VMMDev: Guest Log: VBOXNP: DLL unloaded.
00:09:02.268248 VMMDev: Guest Log: VBOXNP: DLL loaded.
00:11:28.731491 AHCI#0: Port 0 reset
00:11:28.732972 VD#0: Cancelling all active requests
00:12:05.278886 VMMDev: Guest Log: VBOXNP: DLL loaded.
00:12:11.937860 VMMDev: Guest Log: VBOXNP: DLL loaded.
00:12:25.504576 VMMDev: Guest Log: VBOXNP: DLL loaded.
00:12:25.506186 VMMDev: Guest Log: VBOXNP: DLL loaded.
00:12:28.969436 VMMDev: Guest Log: VBOXNP: DLL unloaded.
00:12:43.640069 VMMDev: Guest Log: VBOXNP: DLL unloaded.
00:12:43.648167 VMMDev: Guest Log: VBOXNP: DLL unloaded.
00:13:08.680099 VMMDev: Guest Log: VBOXNP: DLL unloaded.
00:13:21.070087 ALSA: Using output device "default"
00:16:18.325199 VMMDev: vmmDevHeartbeatFlatlinedTimer: Guest seems to be unresponsive. Last heartbeat received 6 seconds ago
00:17:23.907397 TM: Giving up catch-up attempt at a 66 254 441 341 ns lag; new total: 66 254 441 341 ns
00:18:26.369189 TM: Giving up catch-up attempt at a 64 473 489 283 ns lag; new total: 130 727 930 624 ns