-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVBox.log
More file actions
2025 lines (2025 loc) · 146 KB
/
Copy pathVBox.log
File metadata and controls
2025 lines (2025 loc) · 146 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
VirtualBox VM 5.1.28 r117968 darwin.amd64 (Sep 13 2017 11:30:26) release log
00:00:01.848835 Log opened 2017-10-22T16:33:46.428046000Z
00:00:01.848837 Build Type: release
00:00:01.848863 OS Product: Darwin
00:00:01.848878 OS Release: 15.6.0
00:00:01.848892 OS Version: Darwin Kernel Version 15.6.0: Thu Jun 23 18:25:34 PDT 2016; root:xnu-3248.60.10~1/RELEASE_X86_64
00:00:01.849058 DMI Product Name: MacBookPro5,3
00:00:01.849164 DMI Product Version: 1.0
00:00:01.849180 Host RAM: 8192MB (8.0GB) total, 3369MB (3.2GB) available
00:00:01.849185 Executable: /Applications/VirtualBox.app/Contents/MacOS/VirtualBoxVM
00:00:01.849187 Process ID: 1321
00:00:01.849188 Package type: DARWIN_64BITS_GENERIC
00:00:01.872210 Installed Extension Packs:
00:00:01.872224 None installed!
00:00:01.874618 Console: Machine state changed to 'Restoring'
00:00:01.880967 Qt version: 5.6.2
00:00:01.934692 GUI: UIMediumEnumerator: Medium-enumeration finished!
00:00:02.000669 SUP: Loaded VMMR0.r0 (/Applications/VirtualBox.app/Contents/MacOS/VMMR0.r0) at 0xXXXXXXXXXXXXXXXX - ModuleInit at XXXXXXXXXXXXXXXX and ModuleTerm at XXXXXXXXXXXXXXXX
00:00:02.000704 SUP: VMMR0EntryEx located at XXXXXXXXXXXXXXXX and VMMR0EntryFast at XXXXXXXXXXXXXXXX
00:00:02.050070 Guest OS type: 'Debian_64'
00:00:02.075979 fHMForced=true - No raw-mode support in this build!
00:00:02.120937 File system of '/Users/lydiahellrung/VirtualBox/NeuroDebian 8.0.0 (64bit)/Snapshots' (snapshots) is hfs
00:00:02.120959 File system of '/Users/lydiahellrung/VirtualBox/NeuroDebian 8.0.0 (64bit)/NeuroDebian_8.0.0_amd64-disk1.vmdk' is hfs
00:00:02.182493 Shared clipboard service loaded
00:00:02.182529 Shared clipboard mode: Bidirectional
00:00:02.210663 Drag and drop service loaded
00:00:02.210679 Drag and drop mode: Off
00:00:02.211160 OpenGL: Offline rendering support is ON (pid=1321)
00:00:02.238964 OpenGL Info: 3D test passed
00:00:02.376084 OpenGL: Offline rendering support is ON (pid=1321)
00:00:02.378100 OpenGL Info: Render SPU: GL_VENDOR: NVIDIA Corporation
00:00:02.378120 OpenGL Info: Render SPU: GL_RENDERER: NVIDIA GeForce 9400M OpenGL Engine
00:00:02.378128 OpenGL Info: Render SPU: GL_VERSION: 2.1 NVIDIA-10.0.51 310.90.10.05b12
00:00:02.378138 OpenGL Info: Render SPU: GL_EXTENSIONS: GL_ARB_color_buffer_float GL_ARB_depth_buffer_float GL_ARB_depth_clamp GL_ARB_depth_texture GL_ARB_draw_buffers GL_ARB_draw_elements_base_vertex GL_ARB_draw_instanced GL_ARB_fragment_program GL_ARB_fragment_program_shadow GL_ARB_fragment_shader GL_ARB_framebuffer_object GL_ARB_framebuffer_sRGB GL_ARB_half_float_pixel GL_ARB_half_float_vertex GL_ARB_imaging GL_ARB_instanced_arrays GL_ARB_multisample GL_ARB_multitexture GL_ARB_occlusion_query GL_ARB_pixel_buffer_object GL_ARB_point_parameters GL_ARB_point_sprite GL_ARB_provoking_vertex GL_ARB_seamless_cube_map GL_ARB_shader_objects GL_ARB_shader_texture_lod GL_ARB_shading_language_100 GL_ARB_shadow GL_ARB_sync GL_ARB_texture_border_clamp GL_ARB_texture_compression GL_ARB_texture_compression_rgtc GL_ARB_texture_cube_map GL_ARB_texture_env_add GL_ARB_texture_env_combine GL_ARB_texture_env_crossbar GL_ARB_texture_env_dot3 GL_ARB_texture_float GL_ARB_texture_mirrored_repeat GL_ARB_texture_non_power_of_two GL_ARB_texture_rectangle GL_ARB_texture_rg GL_ARB_transpose_matrix GL_ARB_vertex_array_bgra GL_ARB_vertex_blend GL_ARB_vertex_buffer_object GL_ARB_vertex_program GL_ARB_vertex_shader GL_ARB_window_pos GL_EXT_abgr GL_EXT_bgra GL_EXT_bindable_uniform GL_EXT_blend_color GL_EXT_blend_equation_separate GL_EXT_blend_func_separate GL_EXT_blend_minmax GL_EXT_blend_subtract GL_EXT_clip_volume_hint GL_EXT_debug_label GL_EXT_debug_marker GL_EXT_depth_bounds_test GL_EXT_draw_buffers2 GL_EXT_draw_range_elements GL_EXT_fog_coord GL_EXT_framebuffer_blit GL_EXT_framebuffer_multisample GL_EXT_framebuffer_multisample_blit_scaled GL_EXT_framebuffer_object GL_EXT_framebuffer_sRGB GL_EXT_geometry_shader4 GL_EXT_gpu_program_parameters GL_EXT_gpu_shader4 GL_EXT_multi_draw_arrays GL_EXT_packed_depth_stencil GL_EXT_packed_float GL_EXT_provoking_vertex GL_EXT_rescale_normal GL_EXT_secondary_color GL_EXT_separate_specular_color GL_EXT_shadow_funcs GL_EXT_stencil_two_side GL_EXT_stencil_wrap GL_EXT_texture_array GL_EXT_texture_compression_dxt1 GL_EXT_texture_compression_s3tc GL_EXT_texture_env_add GL_EXT_texture_filter_anisotropic GL_EXT_texture_integer GL_EXT_texture_lod_bias GL_EXT_texture_mirror_clamp GL_EXT_texture_rectangle GL_EXT_texture_shared_exponent GL_EXT_texture_sRGB GL_EXT_texture_sRGB_decode GL_EXT_timer_query GL_EXT_transform_feedback GL_EXT_vertex_array_bgra GL_APPLE_aux_depth_stencil GL_APPLE_client_storage GL_APPLE_element_array GL_APPLE_fence GL_APPLE_float_pixels GL_APPLE_flush_buffer_range GL_APPLE_flush_render GL_APPLE_object_purgeable GL_APPLE_packed_pixels GL_APPLE_pixel_buffer GL_APPLE_rgb_422 GL_APPLE_row_bytes GL_APPLE_specular_vector GL_APPLE_texture_range GL_APPLE_transform_hint GL_APPLE_vertex_array_object GL_APPLE_vertex_array_range GL_APPLE_vertex_point_size GL_APPLE_vertex_program_evaluators GL_APPLE_ycbcr_422 GL_ATI_separate_stencil GL_ATI_texture_env_combine3 GL_ATI_texture_float GL_ATI_texture_mirror_once GL_IBM_rasterpos_clip GL_NV_blend_square GL_NV_conditional_render GL_NV_depth_clamp GL_NV_fog_distance GL_NV_fragment_program_option GL_NV_fragment_program2 GL_NV_light_max_exponent GL_NV_multisample_filter_hint GL_NV_point_sprite GL_NV_texgen_reflection GL_NV_texture_barrier GL_NV_vertex_program2_option GL_NV_vertex_program3 GL_SGIS_generate_mipmap GL_SGIS_texture_edge_clamp GL_SGIS_texture_lod
00:00:02.378200 OpenGL Info: Host does not support OpenGL extension(s):
00:00:02.378205 OpenGL Info: GL_EXT_compiled_vertex_array
00:00:02.378220 OpenGL Info: GL_ARB_shadow_ambient
00:00:02.378235 OpenGL Info: GL_EXT_texture_env_combine
00:00:02.378247 OpenGL Info: GL_EXT_texture_env_dot3
00:00:02.379598 OpenGL Info: GL_IBM_texture_mirrored_repeat
00:00:02.379639 OpenGL Info: GL_EXT_blend_logic_op
00:00:02.379666 OpenGL Info: GL_EXT_texture_cube_map
00:00:02.379676 OpenGL Info: GL_EXT_texture_edge_clamp
00:00:02.379691 OpenGL Info: GL_EXT_texture_object
00:00:02.379700 OpenGL Info: GL_EXT_texture3D
00:00:02.379718 OpenGL Info: GL_NV_fragment_program
00:00:02.379735 OpenGL Info: GL_NV_register_combiners
00:00:02.379745 OpenGL Info: GL_NV_register_combiners2
00:00:02.379759 OpenGL Info: GL_NV_texture_rectangle
00:00:02.379772 OpenGL Info: GL_NV_vertex_program
00:00:02.379782 OpenGL Info: GL_NV_vertex_program1_1
00:00:02.379791 OpenGL Info: GL_NV_vertex_program2
00:00:02.379814 OpenGL Info: GL_SGIS_texture_border_clamp
00:00:02.379842 OpenGL Info: GL_GREMEDY_string_marker
00:00:02.386704 OpenGL Info: Render SPU: GL_MAX_VERTEX_UNIFORM_COMPONENTS_ARB=4096
00:00:02.386767 OpenGL Info: Host supports version 2.1 [2.1 NVIDIA-10.0.51 310.90.10.05b12]
00:00:02.386774 OpenGL Info: Cfg: u32Caps(0x1f), fVisualBitsDefault(0x23)
00:00:02.398952 Shared OpenGL service loaded -- 3D enabled
00:00:02.451037 Guest Control service loaded
00:00:02.454839 ************************* CFGM dump *************************
00:00:02.454879 [/] (level 0)
00:00:02.454882 CpuExecutionCap <integer> = 0x0000000000000064 (100)
00:00:02.454888 EnablePAE <integer> = 0x0000000000000001 (1)
00:00:02.454890 HMEnabled <integer> = 0x0000000000000001 (1)
00:00:02.454891 MemBalloonSize <integer> = 0x0000000000000000 (0)
00:00:02.454892 Name <string> = "NeuroDebian 8.0.0 (64bit)" (cb=27)
00:00:02.454894 NumCPUs <integer> = 0x0000000000000002 (2)
00:00:02.454895 PageFusionAllowed <integer> = 0x0000000000000000 (0)
00:00:02.454896 RamHoleSize <integer> = 0x0000000020000000 (536 870 912, 512 MB)
00:00:02.454898 RamSize <integer> = 0x0000000100000000 (4 294 967 296, 4 096 MB, 4 GB)
00:00:02.454901 TimerMillies <integer> = 0x000000000000000a (10)
00:00:02.454902 UUID <bytes> = "22 c0 29 10 d1 93 68 4a 87 42 98 0a 8b e5 d9 87" (cb=16)
00:00:02.454907
00:00:02.454907 [/CPUM/] (level 1)
00:00:02.454909 GuestCpuName <string> = "host" (cb=5)
00:00:02.454910 PortableCpuIdLevel <integer> = 0x0000000000000000 (0)
00:00:02.454911
00:00:02.454912 [/DBGC/] (level 1)
00:00:02.454913 GlobalInitScript <string> = "/Users/lydiahellrung/Library/VirtualBox/dbgc-init" (cb=50)
00:00:02.454914 HistoryFile <string> = "/Users/lydiahellrung/Library/VirtualBox/dbgc-history" (cb=53)
00:00:02.454915 LocalInitScript <string> = "/Users/lydiahellrung/VirtualBox/NeuroDebian 8.0.0 (64bit)/dbgc-init" (cb=69)
00:00:02.454917
00:00:02.454917 [/DBGF/] (level 1)
00:00:02.454918 Path <string> = "/Users/lydiahellrung/VirtualBox/NeuroDebian 8.0.0 (64bit)/debug/;/Users/lydiahellrung/VirtualBox/NeuroDebian 8.0.0 (64bit)/;/Users/lydiahellrung/" (cb=148)
00:00:02.454920
00:00:02.454920 [/Devices/] (level 1)
00:00:02.454922
00:00:02.454922 [/Devices/8237A/] (level 2)
00:00:02.454923
00:00:02.454924 [/Devices/8237A/0/] (level 3)
00:00:02.454925 Trusted <integer> = 0x0000000000000001 (1)
00:00:02.454927
00:00:02.454927 [/Devices/VMMDev/] (level 2)
00:00:02.454928
00:00:02.454929 [/Devices/VMMDev/0/] (level 3)
00:00:02.454931 PCIBusNo <integer> = 0x0000000000000000 (0)
00:00:02.454932 PCIDeviceNo <integer> = 0x0000000000000004 (4)
00:00:02.454933 PCIFunctionNo <integer> = 0x0000000000000000 (0)
00:00:02.454934 Trusted <integer> = 0x0000000000000001 (1)
00:00:02.454935
00:00:02.454936 [/Devices/VMMDev/0/Config/] (level 4)
00:00:02.454938 GuestCoreDumpDir <string> = "/Users/lydiahellrung/VirtualBox/NeuroDebian 8.0.0 (64bit)/Snapshots" (cb=69)
00:00:02.454939
00:00:02.454940 [/Devices/VMMDev/0/LUN#0/] (level 4)
00:00:02.454941 Driver <string> = "HGCM" (cb=5)
00:00:02.454942
00:00:02.454943 [/Devices/VMMDev/0/LUN#0/Config/] (level 5)
00:00:02.454945 Object <integer> = 0x00007f8a5cb1e450 (140 232 237 376 592)
00:00:02.454946
00:00:02.454947 [/Devices/VMMDev/0/LUN#999/] (level 4)
00:00:02.454949 Driver <string> = "MainStatus" (cb=11)
00:00:02.454949
00:00:02.454950 [/Devices/VMMDev/0/LUN#999/Config/] (level 5)
00:00:02.454952 First <integer> = 0x0000000000000000 (0)
00:00:02.454953 Last <integer> = 0x0000000000000000 (0)
00:00:02.454954 papLeds <integer> = 0x00007f8a5b9af5a0 (140 232 219 096 480)
00:00:02.454956
00:00:02.454957 [/Devices/acpi/] (level 2)
00:00:02.454958
00:00:02.454958 [/Devices/acpi/0/] (level 3)
00:00:02.454960 PCIBusNo <integer> = 0x0000000000000000 (0)
00:00:02.454961 PCIDeviceNo <integer> = 0x0000000000000007 (7)
00:00:02.454962 PCIFunctionNo <integer> = 0x0000000000000000 (0)
00:00:02.454963 Trusted <integer> = 0x0000000000000001 (1)
00:00:02.454964
00:00:02.454965 [/Devices/acpi/0/Config/] (level 4)
00:00:02.454967 CpuHotPlug <integer> = 0x0000000000000000 (0)
00:00:02.454968 FdcEnabled <integer> = 0x0000000000000000 (0)
00:00:02.454969 HostBusPciAddress <integer> = 0x0000000000000000 (0)
00:00:02.454970 HpetEnabled <integer> = 0x0000000000000000 (0)
00:00:02.454972 IOAPIC <integer> = 0x0000000000000001 (1)
00:00:02.454973 IocPciAddress <integer> = 0x0000000000010000 (65 536)
00:00:02.454974 NumCPUs <integer> = 0x0000000000000002 (2)
00:00:02.454975 Parallel0IoPortBase <integer> = 0x0000000000000000 (0)
00:00:02.454976 Parallel0Irq <integer> = 0x0000000000000000 (0)
00:00:02.454978 Parallel1IoPortBase <integer> = 0x0000000000000000 (0)
00:00:02.454979 Parallel1Irq <integer> = 0x0000000000000000 (0)
00:00:02.454980 Serial0IoPortBase <integer> = 0x0000000000000000 (0)
00:00:02.454981 Serial0Irq <integer> = 0x0000000000000000 (0)
00:00:02.454982 Serial1IoPortBase <integer> = 0x0000000000000000 (0)
00:00:02.454983 Serial1Irq <integer> = 0x0000000000000000 (0)
00:00:02.454987 ShowCpu <integer> = 0x0000000000000001 (1)
00:00:02.454988 ShowRtc <integer> = 0x0000000000000000 (0)
00:00:02.454989 SmcEnabled <integer> = 0x0000000000000000 (0)
00:00:02.454991
00:00:02.454991 [/Devices/acpi/0/LUN#0/] (level 4)
00:00:02.454993 Driver <string> = "ACPIHost" (cb=9)
00:00:02.454994
00:00:02.454994 [/Devices/acpi/0/LUN#0/Config/] (level 5)
00:00:02.454996
00:00:02.454997 [/Devices/acpi/0/LUN#1/] (level 4)
00:00:02.454998 Driver <string> = "ACPICpu" (cb=8)
00:00:02.454999
00:00:02.455000 [/Devices/acpi/0/LUN#1/Config/] (level 5)
00:00:02.455002
00:00:02.455002 [/Devices/ahci/] (level 2)
00:00:02.455004
00:00:02.455004 [/Devices/ahci/0/] (level 3)
00:00:02.455006 PCIBusNo <integer> = 0x0000000000000000 (0)
00:00:02.455007 PCIDeviceNo <integer> = 0x000000000000000d (13)
00:00:02.455008 PCIFunctionNo <integer> = 0x0000000000000000 (0)
00:00:02.455009 Trusted <integer> = 0x0000000000000001 (1)
00:00:02.455010
00:00:02.455011 [/Devices/ahci/0/Config/] (level 4)
00:00:02.455013 Bootable <integer> = 0x0000000000000001 (1)
00:00:02.455014 PortCount <integer> = 0x000000000000001e (30)
00:00:02.455015
00:00:02.455016 [/Devices/ahci/0/Config/Port0/] (level 5)
00:00:02.455018 Hotpluggable <integer> = 0x0000000000000001 (1)
00:00:02.455019 NonRotationalMedium <integer> = 0x0000000000000000 (0)
00:00:02.455020
00:00:02.455020 [/Devices/ahci/0/LUN#0/] (level 4)
00:00:02.455022 Driver <string> = "VD" (cb=3)
00:00:02.455023
00:00:02.455024 [/Devices/ahci/0/LUN#0/Config/] (level 5)
00:00:02.455026 BlockCache <integer> = 0x0000000000000001 (1)
00:00:02.455027 Format <string> = "VMDK" (cb=5)
00:00:02.455029 Mountable <integer> = 0x0000000000000000 (0)
00:00:02.455030 Path <string> = "/Users/lydiahellrung/VirtualBox/NeuroDebian 8.0.0 (64bit)/NeuroDebian_8.0.0_amd64-disk1.vmdk" (cb=94)
00:00:02.455031 Type <string> = "HardDisk" (cb=9)
00:00:02.455032 UseNewIo <integer> = 0x0000000000000001 (1)
00:00:02.455033
00:00:02.455034 [/Devices/ahci/0/LUN#999/] (level 4)
00:00:02.455036 Driver <string> = "MainStatus" (cb=11)
00:00:02.455037
00:00:02.455037 [/Devices/ahci/0/LUN#999/Config/] (level 5)
00:00:02.455039 DeviceInstance <string> = "ahci/0" (cb=7)
00:00:02.455040 First <integer> = 0x0000000000000000 (0)
00:00:02.455042 Last <integer> = 0x000000000000001d (29)
00:00:02.455043 pConsole <integer> = 0x00007f8a5b9aee00 (140 232 219 094 528)
00:00:02.455046 papLeds <integer> = 0x00007f8a5b9af1a0 (140 232 219 095 456)
00:00:02.455048 pmapMediumAttachments <integer> = 0x00007f8a5b9af5c0 (140 232 219 096 512)
00:00:02.455049
00:00:02.455050 [/Devices/apic/] (level 2)
00:00:02.455051
00:00:02.455052 [/Devices/apic/0/] (level 3)
00:00:02.455053 Trusted <integer> = 0x0000000000000001 (1)
00:00:02.455054
00:00:02.455055 [/Devices/apic/0/Config/] (level 4)
00:00:02.455057 IOAPIC <integer> = 0x0000000000000001 (1)
00:00:02.455058 Mode <integer> = 0x0000000000000002 (2)
00:00:02.455059 NumCPUs <integer> = 0x0000000000000002 (2)
00:00:02.455060
00:00:02.455060 [/Devices/e1000/] (level 2)
00:00:02.455062
00:00:02.455062 [/Devices/e1000/0/] (level 3)
00:00:02.455064 PCIBusNo <integer> = 0x0000000000000000 (0)
00:00:02.455065 PCIDeviceNo <integer> = 0x0000000000000003 (3)
00:00:02.455066 PCIFunctionNo <integer> = 0x0000000000000000 (0)
00:00:02.455067 Trusted <integer> = 0x0000000000000001 (1)
00:00:02.455069
00:00:02.455069 [/Devices/e1000/0/Config/] (level 4)
00:00:02.455071 AdapterType <integer> = 0x0000000000000000 (0)
00:00:02.455072 CableConnected <integer> = 0x0000000000000001 (1)
00:00:02.455073 LineSpeed <integer> = 0x0000000000000000 (0)
00:00:02.455074 MAC <bytes> = "08 00 27 f7 af 66" (cb=6)
00:00:02.455076
00:00:02.455077 [/Devices/e1000/0/LUN#0/] (level 4)
00:00:02.455079 Driver <string> = "NAT" (cb=4)
00:00:02.455080
00:00:02.455080 [/Devices/e1000/0/LUN#0/Config/] (level 5)
00:00:02.455082 AliasMode <integer> = 0x0000000000000000 (0)
00:00:02.455083 BootFile <string> = "NeuroDebian 8.0.0 (64bit).pxe" (cb=31)
00:00:02.455085 DNSProxy <integer> = 0x0000000000000000 (0)
00:00:02.455086 Network <string> = "10.0.2.0/24" (cb=12)
00:00:02.455087 PassDomain <integer> = 0x0000000000000001 (1)
00:00:02.455088 TFTPPrefix <string> = "/Users/lydiahellrung/Library/VirtualBox/TFTP" (cb=45)
00:00:02.455089 UseHostResolver <integer> = 0x0000000000000000 (0)
00:00:02.455090
00:00:02.455091 [/Devices/e1000/0/LUN#999/] (level 4)
00:00:02.455093 Driver <string> = "MainStatus" (cb=11)
00:00:02.455094
00:00:02.455094 [/Devices/e1000/0/LUN#999/Config/] (level 5)
00:00:02.455096 First <integer> = 0x0000000000000000 (0)
00:00:02.455097 Last <integer> = 0x0000000000000000 (0)
00:00:02.455098 papLeds <integer> = 0x00007f8a5b9af480 (140 232 219 096 192)
00:00:02.455100
00:00:02.455101 [/Devices/i8254/] (level 2)
00:00:02.455102
00:00:02.455103 [/Devices/i8254/0/] (level 3)
00:00:02.455104
00:00:02.455105 [/Devices/i8254/0/Config/] (level 4)
00:00:02.455106
00:00:02.455107 [/Devices/i8259/] (level 2)
00:00:02.455108
00:00:02.455109 [/Devices/i8259/0/] (level 3)
00:00:02.455110 Trusted <integer> = 0x0000000000000001 (1)
00:00:02.455111
00:00:02.455112 [/Devices/i8259/0/Config/] (level 4)
00:00:02.455113
00:00:02.455114 [/Devices/ichac97/] (level 2)
00:00:02.455114
00:00:02.455114 [/Devices/ichac97/0/] (level 3)
00:00:02.455114 PCIBusNo <integer> = 0x0000000000000000 (0)
00:00:02.455114 PCIDeviceNo <integer> = 0x0000000000000005 (5)
00:00:02.455114 PCIFunctionNo <integer> = 0x0000000000000000 (0)
00:00:02.455114 Trusted <integer> = 0x0000000000000001 (1)
00:00:02.455114
00:00:02.455114 [/Devices/ichac97/0/AudioConfig/] (level 4)
00:00:02.455114
00:00:02.455114 [/Devices/ichac97/0/Config/] (level 4)
00:00:02.455114 Codec <string> = "STAC9700" (cb=9)
00:00:02.455114
00:00:02.455114 [/Devices/ichac97/0/LUN#0/] (level 4)
00:00:02.455114 Driver <string> = "AUDIO" (cb=6)
00:00:02.455114
00:00:02.455114 [/Devices/ichac97/0/LUN#0/AttachedDriver/] (level 5)
00:00:02.455114 Driver <string> = "CoreAudio" (cb=10)
00:00:02.455114
00:00:02.455114 [/Devices/ichac97/0/LUN#0/AttachedDriver/Config/] (level 6)
00:00:02.455114 StreamName <string> = "NeuroDebian 8.0.0 (64bit)" (cb=27)
00:00:02.455114
00:00:02.455114 [/Devices/ichac97/0/LUN#0/Config/] (level 5)
00:00:02.455114
00:00:02.455114 [/Devices/ichac97/0/LUN#1/] (level 4)
00:00:02.455114 Driver <string> = "AUDIO" (cb=6)
00:00:02.455114
00:00:02.455114 [/Devices/ichac97/0/LUN#1/AttachedDriver/] (level 5)
00:00:02.455114 Driver <string> = "AudioVRDE" (cb=10)
00:00:02.455114
00:00:02.455114 [/Devices/ichac97/0/LUN#1/AttachedDriver/Config/] (level 6)
00:00:02.455114 AudioDriver <string> = "AudioVRDE" (cb=10)
00:00:02.455114 Object <integer> = 0x00007f8a5b6a6480 (140 232 215 913 600)
00:00:02.455114 ObjectVRDPServer <integer> = 0x00007f8a5c0af400 (140 232 226 436 096)
00:00:02.455114 StreamName <string> = "NeuroDebian 8.0.0 (64bit)" (cb=27)
00:00:02.455114
00:00:02.455114 [/Devices/ioapic/] (level 2)
00:00:02.455114
00:00:02.455114 [/Devices/ioapic/0/] (level 3)
00:00:02.455114 Trusted <integer> = 0x0000000000000001 (1)
00:00:02.455114
00:00:02.455114 [/Devices/ioapic/0/Config/] (level 4)
00:00:02.455114 NumCPUs <integer> = 0x0000000000000002 (2)
00:00:02.455114
00:00:02.455114 [/Devices/mc146818/] (level 2)
00:00:02.455114
00:00:02.455114 [/Devices/mc146818/0/] (level 3)
00:00:02.455114
00:00:02.455114 [/Devices/mc146818/0/Config/] (level 4)
00:00:02.455114 UseUTC <integer> = 0x0000000000000001 (1)
00:00:02.455114
00:00:02.455114 [/Devices/parallel/] (level 2)
00:00:02.455114
00:00:02.455114 [/Devices/pcarch/] (level 2)
00:00:02.455114
00:00:02.455114 [/Devices/pcarch/0/] (level 3)
00:00:02.455114 Trusted <integer> = 0x0000000000000001 (1)
00:00:02.455114
00:00:02.455114 [/Devices/pcarch/0/Config/] (level 4)
00:00:02.455114
00:00:02.455114 [/Devices/pcbios/] (level 2)
00:00:02.455114
00:00:02.455114 [/Devices/pcbios/0/] (level 3)
00:00:02.455114 Trusted <integer> = 0x0000000000000001 (1)
00:00:02.455114
00:00:02.455114 [/Devices/pcbios/0/Config/] (level 4)
00:00:02.455114 APIC <integer> = 0x0000000000000001 (1)
00:00:02.455114 BootDevice0 <string> = "IDE" (cb=4)
00:00:02.455114 BootDevice1 <string> = "DVD" (cb=4)
00:00:02.455114 BootDevice2 <string> = "IDE" (cb=4)
00:00:02.455114 BootDevice3 <string> = "NONE" (cb=5)
00:00:02.455114 FloppyDevice <string> = "i82078" (cb=7)
00:00:02.455302 HardDiskDevice <string> = "piix3ide" (cb=9)
00:00:02.455303 IOAPIC <integer> = 0x0000000000000001 (1)
00:00:02.455305 McfgBase <integer> = 0x0000000000000000 (0)
00:00:02.455306 McfgLength <integer> = 0x0000000000000000 (0)
00:00:02.455308 NumCPUs <integer> = 0x0000000000000002 (2)
00:00:02.455309 PXEDebug <integer> = 0x0000000000000000 (0)
00:00:02.455312 SataHardDiskDevice <string> = "ahci" (cb=5)
00:00:02.455313 SataLUN1 <integer> = 0x0000000000000000 (0)
00:00:02.455315 UUID <bytes> = "22 c0 29 10 d1 93 68 4a 87 42 98 0a 8b e5 d9 87" (cb=16)
00:00:02.455319
00:00:02.455319 [/Devices/pcbios/0/Config/NetBoot/] (level 5)
00:00:02.455321
00:00:02.455322 [/Devices/pcbios/0/Config/NetBoot/0/] (level 6)
00:00:02.455324 NIC <integer> = 0x0000000000000000 (0)
00:00:02.455326 PCIBusNo <integer> = 0x0000000000000000 (0)
00:00:02.455327 PCIDeviceNo <integer> = 0x0000000000000003 (3)
00:00:02.455328 PCIFunctionNo <integer> = 0x0000000000000000 (0)
00:00:02.455329
00:00:02.455329 [/Devices/pci/] (level 2)
00:00:02.455331
00:00:02.455331 [/Devices/pci/0/] (level 3)
00:00:02.455333 Trusted <integer> = 0x0000000000000001 (1)
00:00:02.455334
00:00:02.455334 [/Devices/pci/0/Config/] (level 4)
00:00:02.455336 IOAPIC <integer> = 0x0000000000000001 (1)
00:00:02.455337
00:00:02.455338 [/Devices/pckbd/] (level 2)
00:00:02.455339
00:00:02.455340 [/Devices/pckbd/0/] (level 3)
00:00:02.455341 Trusted <integer> = 0x0000000000000001 (1)
00:00:02.455342
00:00:02.455343 [/Devices/pckbd/0/Config/] (level 4)
00:00:02.455344
00:00:02.455345 [/Devices/pckbd/0/LUN#0/] (level 4)
00:00:02.455346 Driver <string> = "KeyboardQueue" (cb=14)
00:00:02.455348
00:00:02.455348 [/Devices/pckbd/0/LUN#0/AttachedDriver/] (level 5)
00:00:02.455350 Driver <string> = "MainKeyboard" (cb=13)
00:00:02.455351
00:00:02.455352 [/Devices/pckbd/0/LUN#0/AttachedDriver/Config/] (level 6)
00:00:02.455354 Object <integer> = 0x00007f8a5c82a0d0 (140 232 234 279 120)
00:00:02.455355
00:00:02.455356 [/Devices/pckbd/0/LUN#0/Config/] (level 5)
00:00:02.455358 QueueSize <integer> = 0x0000000000000040 (64)
00:00:02.455359
00:00:02.455360 [/Devices/pckbd/0/LUN#1/] (level 4)
00:00:02.455361 Driver <string> = "MouseQueue" (cb=11)
00:00:02.455362
00:00:02.455363 [/Devices/pckbd/0/LUN#1/AttachedDriver/] (level 5)
00:00:02.455365 Driver <string> = "MainMouse" (cb=10)
00:00:02.455365
00:00:02.455366 [/Devices/pckbd/0/LUN#1/AttachedDriver/Config/] (level 6)
00:00:02.455368 Object <integer> = 0x00007f8a5b65bfe0 (140 232 215 609 312)
00:00:02.455370
00:00:02.455370 [/Devices/pckbd/0/LUN#1/Config/] (level 5)
00:00:02.455372 QueueSize <integer> = 0x0000000000000080 (128)
00:00:02.455373
00:00:02.455374 [/Devices/pcnet/] (level 2)
00:00:02.455375
00:00:02.455376 [/Devices/piix3ide/] (level 2)
00:00:02.455377
00:00:02.455378 [/Devices/piix3ide/0/] (level 3)
00:00:02.455380 PCIBusNo <integer> = 0x0000000000000000 (0)
00:00:02.455381 PCIDeviceNo <integer> = 0x0000000000000001 (1)
00:00:02.455382 PCIFunctionNo <integer> = 0x0000000000000001 (1)
00:00:02.455383 Trusted <integer> = 0x0000000000000001 (1)
00:00:02.455384
00:00:02.455385 [/Devices/piix3ide/0/Config/] (level 4)
00:00:02.455386 Type <string> = "PIIX4" (cb=6)
00:00:02.455387
00:00:02.455388 [/Devices/piix3ide/0/Config/PrimaryMaster/] (level 5)
00:00:02.455390 NonRotationalMedium <integer> = 0x0000000000000000 (0)
00:00:02.455391
00:00:02.455391 [/Devices/piix3ide/0/LUN#0/] (level 4)
00:00:02.455393 Driver <string> = "VD" (cb=3)
00:00:02.455394
00:00:02.455395 [/Devices/piix3ide/0/LUN#0/Config/] (level 5)
00:00:02.455396 EmptyDrive <integer> = 0x0000000000000001 (1)
00:00:02.455398 Mountable <integer> = 0x0000000000000001 (1)
00:00:02.455399 Type <string> = "DVD" (cb=4)
00:00:02.455400
00:00:02.455400 [/Devices/piix3ide/0/LUN#999/] (level 4)
00:00:02.455402 Driver <string> = "MainStatus" (cb=11)
00:00:02.455403
00:00:02.455403 [/Devices/piix3ide/0/LUN#999/Config/] (level 5)
00:00:02.455406 DeviceInstance <string> = "piix3ide/0" (cb=11)
00:00:02.455407 First <integer> = 0x0000000000000000 (0)
00:00:02.455408 Last <integer> = 0x0000000000000003 (3)
00:00:02.455410 pConsole <integer> = 0x00007f8a5b9aee00 (140 232 219 094 528)
00:00:02.455412 papLeds <integer> = 0x00007f8a5b9af180 (140 232 219 095 424)
00:00:02.455414 pmapMediumAttachments <integer> = 0x00007f8a5b9af5c0 (140 232 219 096 512)
00:00:02.455415
00:00:02.455416 [/Devices/serial/] (level 2)
00:00:02.455417
00:00:02.455418 [/Devices/usb-ohci/] (level 2)
00:00:02.455419
00:00:02.455420 [/Devices/usb-ohci/0/] (level 3)
00:00:02.455422 PCIBusNo <integer> = 0x0000000000000000 (0)
00:00:02.455423 PCIDeviceNo <integer> = 0x0000000000000006 (6)
00:00:02.455424 PCIFunctionNo <integer> = 0x0000000000000000 (0)
00:00:02.455425 Trusted <integer> = 0x0000000000000001 (1)
00:00:02.455426
00:00:02.455427 [/Devices/usb-ohci/0/Config/] (level 4)
00:00:02.455428
00:00:02.455429 [/Devices/usb-ohci/0/LUN#0/] (level 4)
00:00:02.455431 Driver <string> = "VUSBRootHub" (cb=12)
00:00:02.455432
00:00:02.455432 [/Devices/usb-ohci/0/LUN#0/Config/] (level 5)
00:00:02.455434
00:00:02.455435 [/Devices/usb-ohci/0/LUN#999/] (level 4)
00:00:02.455436 Driver <string> = "MainStatus" (cb=11)
00:00:02.455437
00:00:02.455438 [/Devices/usb-ohci/0/LUN#999/Config/] (level 5)
00:00:02.455440 First <integer> = 0x0000000000000000 (0)
00:00:02.455441 Last <integer> = 0x0000000000000000 (0)
00:00:02.455442 papLeds <integer> = 0x00007f8a5b9af5a8 (140 232 219 096 488)
00:00:02.455443
00:00:02.455444 [/Devices/vga/] (level 2)
00:00:02.455446
00:00:02.455446 [/Devices/vga/0/] (level 3)
00:00:02.455448 PCIBusNo <integer> = 0x0000000000000000 (0)
00:00:02.455449 PCIDeviceNo <integer> = 0x0000000000000002 (2)
00:00:02.455450 PCIFunctionNo <integer> = 0x0000000000000000 (0)
00:00:02.455451 Trusted <integer> = 0x0000000000000001 (1)
00:00:02.455452
00:00:02.455453 [/Devices/vga/0/Config/] (level 4)
00:00:02.455455 CustomVideoModes <integer> = 0x0000000000000000 (0)
00:00:02.455456 FadeIn <integer> = 0x0000000000000001 (1)
00:00:02.455457 FadeOut <integer> = 0x0000000000000001 (1)
00:00:02.455459 HeightReduction <integer> = 0x0000000000000000 (0)
00:00:02.455460 LogoFile <string> = "" (cb=1)
00:00:02.455461 LogoTime <integer> = 0x0000000000000000 (0)
00:00:02.455462 MonitorCount <integer> = 0x0000000000000001 (1)
00:00:02.455463 ShowBootMenu <integer> = 0x0000000000000002 (2)
00:00:02.455464 VRamSize <integer> = 0x0000000002000000 (33 554 432, 32 MB)
00:00:02.455466
00:00:02.455466 [/Devices/vga/0/LUN#0/] (level 4)
00:00:02.455468 Driver <string> = "MainDisplay" (cb=12)
00:00:02.455469
00:00:02.455470 [/Devices/vga/0/LUN#0/Config/] (level 5)
00:00:02.455471 Object <integer> = 0x00007f8a5b9c3e00 (140 232 219 180 544)
00:00:02.455473
00:00:02.455474 [/Devices/vga/0/LUN#999/] (level 4)
00:00:02.455476 Driver <string> = "MainStatus" (cb=11)
00:00:02.455477
00:00:02.455477 [/Devices/vga/0/LUN#999/Config/] (level 5)
00:00:02.455479 First <integer> = 0x0000000000000000 (0)
00:00:02.455480 Last <integer> = 0x0000000000000000 (0)
00:00:02.455481 papLeds <integer> = 0x00007f8a5b9af5b8 (140 232 219 096 504)
00:00:02.455483
00:00:02.455483 [/Devices/virtio-net/] (level 2)
00:00:02.455485
00:00:02.455485 [/EM/] (level 1)
00:00:02.455486 TripleFaultReset <integer> = 0x0000000000000000 (0)
00:00:02.455488
00:00:02.455488 [/GIM/] (level 1)
00:00:02.455489 Provider <string> = "None" (cb=5)
00:00:02.455490
00:00:02.455491 [/HM/] (level 1)
00:00:02.455492 64bitEnabled <integer> = 0x0000000000000001 (1)
00:00:02.455494 EnableLargePages <integer> = 0x0000000000000000 (0)
00:00:02.455495 EnableNestedPaging <integer> = 0x0000000000000001 (1)
00:00:02.455496 EnableUX <integer> = 0x0000000000000001 (1)
00:00:02.455497 EnableVPID <integer> = 0x0000000000000001 (1)
00:00:02.455498 Exclusive <integer> = 0x0000000000000000 (0)
00:00:02.455499 HMForced <integer> = 0x0000000000000001 (1)
00:00:02.455500
00:00:02.455501 [/MM/] (level 1)
00:00:02.455502 CanUseLargerHeap <integer> = 0x0000000000000000 (0)
00:00:02.455503
00:00:02.455504 [/PDM/] (level 1)
00:00:02.455505
00:00:02.455505 [/PDM/AsyncCompletion/] (level 2)
00:00:02.455507
00:00:02.455507 [/PDM/AsyncCompletion/File/] (level 3)
00:00:02.455509
00:00:02.455509 [/PDM/AsyncCompletion/File/BwGroups/] (level 4)
00:00:02.455511
00:00:02.455511 [/PDM/BlkCache/] (level 2)
00:00:02.455513 CacheSize <integer> = 0x0000000000500000 (5 242 880, 5 MB)
00:00:02.455515
00:00:02.455515 [/PDM/Devices/] (level 2)
00:00:02.455516
00:00:02.455517 [/PDM/Drivers/] (level 2)
00:00:02.455518
00:00:02.455519 [/PDM/Drivers/VBoxC/] (level 3)
00:00:02.455520 Path <string> = "/Applications/VirtualBox.app/Contents/MacOS/components/VBoxC" (cb=61)
00:00:02.455521
00:00:02.455522 [/PDM/NetworkShaper/] (level 2)
00:00:02.455523
00:00:02.455524 [/PDM/NetworkShaper/BwGroups/] (level 3)
00:00:02.455525
00:00:02.455526 [/TM/] (level 1)
00:00:02.455527 UTCOffset <integer> = 0x0000000000000000 (0)
00:00:02.455528
00:00:02.455529 [/USB/] (level 1)
00:00:02.455530
00:00:02.455530 [/USB/HidMouse/] (level 2)
00:00:02.455532
00:00:02.455532 [/USB/HidMouse/0/] (level 3)
00:00:02.455534
00:00:02.455534 [/USB/HidMouse/0/Config/] (level 4)
00:00:02.455536 Mode <string> = "absolute" (cb=9)
00:00:02.455537
00:00:02.455537 [/USB/HidMouse/0/LUN#0/] (level 4)
00:00:02.455539 Driver <string> = "MouseQueue" (cb=11)
00:00:02.455540
00:00:02.455541 [/USB/HidMouse/0/LUN#0/AttachedDriver/] (level 5)
00:00:02.455542 Driver <string> = "MainMouse" (cb=10)
00:00:02.455543
00:00:02.455544 [/USB/HidMouse/0/LUN#0/AttachedDriver/Config/] (level 6)
00:00:02.455546 Object <integer> = 0x00007f8a5b65bfe0 (140 232 215 609 312)
00:00:02.455548
00:00:02.455548 [/USB/HidMouse/0/LUN#0/Config/] (level 5)
00:00:02.455550 QueueSize <integer> = 0x0000000000000080 (128)
00:00:02.455552
00:00:02.455552 [/USB/USBProxy/] (level 2)
00:00:02.455554
00:00:02.455554 [/USB/USBProxy/GlobalConfig/] (level 3)
00:00:02.455556
00:00:02.455556 ********************* End of CFGM dump **********************
00:00:02.455558 VM: fHMEnabled=true (configured) fRecompileUser=false fRecompileSupervisor=false
00:00:02.455561 VM: fRawRing1Enabled=false CSAM=false PATM=false
00:00:02.455838 HM: HMR3Init: VT-x
00:00:02.455962 MM: cbHyperHeap=0x140000 (1310720)
00:00:02.480954 CPUM: fXStateHostMask=0x0; initial: 0x0; host XCR0=0x0
00:00:02.482650 CPUM: Matched host CPU INTEL 0x6/0x17/0xa Intel_Core2_Penryn with CPU DB entry 'Intel Xeon X5482 3.20GHz' (INTEL 0x6/0x17/0x6 Intel_Core2_Penryn)
00:00:02.484990 CPUM: MXCSR_MASK=0xffff (host: 0xffff)
00:00:02.485113 CPUM: Microcode revision 0x00000A0B
00:00:02.485256 CPUM: SetGuestCpuIdFeature: Enabled PAE
00:00:02.485279 CPUM: VCPU 0: Cached APIC base MSR = 0x0
00:00:02.485288 CPUM: VCPU 1: Cached APIC base MSR = 0x0
00:00:02.486757 PGM: HCPhysInterPD=000000001ffa5000 HCPhysInterPaePDPT=000000001ffa8000 HCPhysInterPaePML4=000000001ffaa000
00:00:02.486769 PGM: apInterPTs={000000001ffa6000,000000001ffa7000} apInterPaePTs={000000007230a000,00000001df50b000} apInterPaePDs={000000007210c000,00000001ab04d000,000000008c8ce000,0000000111bcf000} pInterPaePDPT64=000000001ffa9000
00:00:02.486778 PGM: Host paging mode: AMD64+NX
00:00:02.486797 PGM: PGMPool: cMaxPages=2096 (u64MaxPages=2084)
00:00:02.486803 PGM: pgmR3PoolInit: cMaxPages=0x830 cMaxUsers=0x1060 cMaxPhysExts=0x1060 fCacheEnable=true
00:00:02.519591 TM: GIP - u32Mode=1 (Synchronous) u32UpdateHz=100 u32UpdateIntervalNS=10000000 enmUseTscDelta=0 (Not Applicable) fGetGipCpu=0x5 cCpus=2
00:00:02.519724 TM: GIP - u64CpuHz=2 786 001 093 (0xa60f00c5) SUPGetCpuHzFromGip => 2 790 870 100
00:00:02.519734 TM: GIP - CPU: iCpuSet=0x0 idCpu=0x0 idApic=0x0 iGipCpu=0x1 i64TSCDelta=0 enmState=3 u64CpuHz=2786001093(*) cErrors=0
00:00:02.519741 TM: GIP - CPU: iCpuSet=0x1 idCpu=0x1 idApic=0x1 iGipCpu=0x0 i64TSCDelta=0 enmState=3 u64CpuHz=2790870100(*) cErrors=0
00:00:02.519860 TM: cTSCTicksPerSecond=2 786 001 093 (0xa60f00c5) enmTSCMode=1 (VirtTscEmulated)
00:00:02.519862 TM: TSCTiedToExecution=false TSCNotTiedToHalt=false
00:00:02.520672 IEM: TargetCpu=CURRENT, Microarch=Intel_Core2_Penryn
00:00:02.520857 GIM: Using provider 'None' (Implementation version: 0)
00:00:02.520950 AIOMgr: Default manager type is 'Async'
00:00:02.520957 AIOMgr: Default file backend is 'NonBuffered'
00:00:02.521105 BlkCache: Cache successfully initialized. Cache size is 5242880 bytes
00:00:02.521112 BlkCache: Cache commit interval is 10000 ms
00:00:02.521117 BlkCache: Cache commit threshold is 2621440 bytes
00:00:02.625066 PcBios: [SMP] BIOS with 2 CPUs
00:00:02.625746 PcBios: Using the 386+ BIOS image.
00:00:02.627010 PcBios: MPS table at 000e1300
00:00:02.629785 PcBios: fCheckShutdownStatusForSoftReset=true fClearShutdownStatusOnHardReset=true
00:00:02.634072 SUP: Loaded VBoxDDR0.r0 (/Applications/VirtualBox.app/Contents/MacOS/VBoxDDR0.r0) at 0xXXXXXXXXXXXXXXXX - ModuleInit at XXXXXXXXXXXXXXXX and ModuleTerm at XXXXXXXXXXXXXXXX
00:00:02.635435 CPUM: SetGuestCpuIdFeature: Enabled xAPIC
00:00:02.636903 IOAPIC: Using implementation 2.0!
00:00:02.637061 PIT: mode=3 count=0x10000 (65536) - 18.20 Hz (ch=0)
00:00:02.683990 Shared Folders service loaded
00:00:02.764889 VGA: Using the 386+ BIOS image.
00:00:02.825143 DrvVD: Flushes will be ignored
00:00:02.825163 DrvVD: Async flushes will be passed to the disk
00:00:02.833243 VD: VDInit finished
00:00:02.834233 AIOMgr: Endpoint for file '/Users/lydiahellrung/VirtualBox/NeuroDebian 8.0.0 (64bit)/NeuroDebian_8.0.0_amd64-disk1.vmdk' (flags 000c0723) created successfully
00:00:02.840262 VD: Opening the disk took 15069057 ns
00:00:02.840387 AHCI: LUN#0: disk, PCHS=16383/16/63, total number of sectors 83886080
00:00:02.840419 AHCI: LUN#0: using async I/O
00:00:02.840588 AHCI: Port1: No driver attached
00:00:02.840599 AHCI: Port2: No driver attached
00:00:02.840608 AHCI: Port3: No driver attached
00:00:02.840617 AHCI: Port4: No driver attached
00:00:02.840636 AHCI: Port5: No driver attached
00:00:02.840650 AHCI: Port6: No driver attached
00:00:02.840658 AHCI: Port7: No driver attached
00:00:02.840666 AHCI: Port8: No driver attached
00:00:02.840676 AHCI: Port9: No driver attached
00:00:02.840683 AHCI: Port10: No driver attached
00:00:02.840691 AHCI: Port11: No driver attached
00:00:02.840700 AHCI: Port12: No driver attached
00:00:02.840707 AHCI: Port13: No driver attached
00:00:02.840715 AHCI: Port14: No driver attached
00:00:02.840723 AHCI: Port15: No driver attached
00:00:02.840731 AHCI: Port16: No driver attached
00:00:02.840739 AHCI: Port17: No driver attached
00:00:02.840746 AHCI: Port18: No driver attached
00:00:02.840754 AHCI: Port19: No driver attached
00:00:02.840762 AHCI: Port20: No driver attached
00:00:02.840770 AHCI: Port21: No driver attached
00:00:02.840778 AHCI: Port22: No driver attached
00:00:02.840786 AHCI: Port23: No driver attached
00:00:02.840793 AHCI: Port24: No driver attached
00:00:02.840809 AHCI: Port25: No driver attached
00:00:02.840817 AHCI: Port26: No driver attached
00:00:02.840825 AHCI: Port27: No driver attached
00:00:02.840833 AHCI: Port28: No driver attached
00:00:02.840843 AHCI: Port29: No driver attached
00:00:02.840891 AHCI#0: Reset the HBA
00:00:02.841348 DrvVD: Flushes will be ignored
00:00:02.841357 DrvVD: Async flushes will be passed to the disk
00:00:02.841465 PIIX3 ATA: LUN#0: CD/DVD, total number of sectors 0, passthrough disabled
00:00:02.841478 PIIX3 ATA: LUN#1: no unit
00:00:02.841521 PIIX3 ATA: LUN#2: no unit
00:00:02.841530 PIIX3 ATA: LUN#3: no unit
00:00:02.841616 PIIX3 ATA: Ctl#0: finished processing RESET
00:00:02.841635 PIIX3 ATA: Ctl#1: finished processing RESET
00:00:02.841722 E1000#0 Chip=82540EM LinkUpDelay=5000ms EthernetCRC=on GSO=enabled Itr=enabled ItrRx=enabled R0=enabled GC=enabled
00:00:02.857859 NAT: Guest address guess set to 10.0.2.15 by initialization
00:00:02.886538 NAT: resolv.conf: nameserver 62.2.17.60
00:00:02.886561 NAT: resolv.conf: nameserver 62.2.24.162
00:00:02.886573 NAT: resolv.conf: nameserver 62.2.17.61
00:00:02.886585 NAT: resolv.conf: too many nameserver lines, ignoring 62.2.24.158
00:00:02.886618 NAT: Adding domain name home
00:00:02.886626 NAT: DNS#0: 62.2.17.60
00:00:02.886635 NAT: DNS#1: 62.2.24.162
00:00:02.886643 NAT: DNS#2: 62.2.17.61
00:00:02.888426 Audio: Initializing Core Audio driver
00:00:02.994710 Audio: Host audio backend supports 1 output streams and 2 input streams at once
00:00:02.994791 Audio: Initializing VRDE driver
00:00:02.994816 Audio: Host audio backend supports 1 output streams and 2 input streams at once
00:00:02.994856 AC97: Reset
00:00:03.043321 VUSB: Attached 'HidMouse' to port 1
00:00:03.043661 PGM: The CPU physical address width is 36 bits
00:00:03.043673 PGM: PGMR3InitFinalize: 4 MB PSE mask 0000000fffffffff
00:00:03.043798 TM: TMR3InitFinalize: fTSCModeSwitchAllowed=false
00:00:03.051857 VMM: Thread-context hooks unavailable
00:00:03.051947 HM: Using VT-x implementation 2.0
00:00:03.051949 HM: Host CR4 = 0x2660
00:00:03.051952 HM: Host EFER = 0xd01
00:00:03.051953 HM: MSR_IA32_SMM_MONITOR_CTL = 0x0
00:00:03.051954 HM: MSR_IA32_FEATURE_CONTROL = 0x7
00:00:03.051955 HM: MSR_IA32_VMX_BASIC_INFO = 0x5a08000000000d
00:00:03.051956 HM: VMCS id = 0xd
00:00:03.051957 HM: VMCS size = 2048 bytes
00:00:03.051958 HM: VMCS physical address limit = None
00:00:03.051960 HM: VMCS memory type = 0x6
00:00:03.051960 HM: Dual-monitor treatment support = true
00:00:03.051962 HM: OUTS & INS instruction-info = true
00:00:03.051963 HM: Max resume loops = 8192
00:00:03.051964 HM: MSR_IA32_VMX_PINBASED_CTLS = 0x3f00000016
00:00:03.051965 HM: EXT_INT_EXIT
00:00:03.051965 HM: NMI_EXIT
00:00:03.051966 HM: VIRTUAL_NMI
00:00:03.051966 HM: PREEMPT_TIMER (must be cleared)
00:00:03.051967 HM: POSTED_INTR (must be cleared)
00:00:03.051968 HM: MSR_IA32_VMX_PROCBASED_CTLS = 0xf7f9fffe0401e172
00:00:03.051969 HM: INT_WINDOW_EXIT
00:00:03.051969 HM: USE_TSC_OFFSETTING
00:00:03.051970 HM: HLT_EXIT
00:00:03.051971 HM: INVLPG_EXIT
00:00:03.051971 HM: MWAIT_EXIT
00:00:03.051972 HM: RDPMC_EXIT
00:00:03.051972 HM: RDTSC_EXIT
00:00:03.051987 HM: CR3_LOAD_EXIT (must be set)
00:00:03.051987 HM: CR3_STORE_EXIT (must be set)
00:00:03.051988 HM: CR8_LOAD_EXIT
00:00:03.051989 HM: CR8_STORE_EXIT
00:00:03.051989 HM: USE_TPR_SHADOW
00:00:03.051990 HM: NMI_WINDOW_EXIT
00:00:03.051990 HM: MOV_DR_EXIT
00:00:03.051991 HM: UNCOND_IO_EXIT
00:00:03.051991 HM: USE_IO_BITMAPS
00:00:03.051992 HM: MONITOR_TRAP_FLAG (must be cleared)
00:00:03.051993 HM: USE_MSR_BITMAPS
00:00:03.051993 HM: MONITOR_EXIT
00:00:03.051994 HM: PAUSE_EXIT
00:00:03.051994 HM: USE_SECONDARY_EXEC_CTRL
00:00:03.052008 HM: MSR_IA32_VMX_PROCBASED_CTLS2 = 0x4100000000
00:00:03.052010 HM: VIRT_APIC
00:00:03.052010 HM: EPT (must be cleared)
00:00:03.052011 HM: DESCRIPTOR_TABLE_EXIT (must be cleared)
00:00:03.052011 HM: RDTSCP (must be cleared)
00:00:03.052012 HM: VIRT_X2APIC (must be cleared)
00:00:03.052013 HM: VPID (must be cleared)
00:00:03.052013 HM: WBINVD_EXIT
00:00:03.052014 HM: UNRESTRICTED_GUEST (must be cleared)
00:00:03.052014 HM: APIC_REG_VIRT (must be cleared)
00:00:03.052015 HM: VIRT_INTR_DELIVERY (must be cleared)
00:00:03.052015 HM: PAUSE_LOOP_EXIT (must be cleared)
00:00:03.052016 HM: RDRAND_EXIT (must be cleared)
00:00:03.052017 HM: INVPCID (must be cleared)
00:00:03.052017 HM: VMFUNC (must be cleared)
00:00:03.052018 HM: VMCS_SHADOWING (must be cleared)
00:00:03.052018 HM: ENCLS_EXIT (must be cleared)
00:00:03.052019 HM: RDSEED_EXIT (must be cleared)
00:00:03.052020 HM: PML (must be cleared)
00:00:03.052020 HM: EPT_VE (must be cleared)
00:00:03.052021 HM: CONCEAL_FROM_PT (must be cleared)
00:00:03.052021 HM: XSAVES_XRSTORS (must be cleared)
00:00:03.052022 HM: TSC_SCALING (must be cleared)
00:00:03.052022 HM: MSR_IA32_VMX_ENTRY_CTLS = 0x3fff000011ff
00:00:03.052024 HM: LOAD_DEBUG (must be set)
00:00:03.052024 HM: IA32E_MODE_GUEST
00:00:03.052025 HM: ENTRY_SMM
00:00:03.052025 HM: DEACTIVATE_DUALMON
00:00:03.052026 HM: LOAD_GUEST_PERF_MSR
00:00:03.052026 HM: LOAD_GUEST_PAT_MSR (must be cleared)
00:00:03.052027 HM: LOAD_GUEST_EFER_MSR (must be cleared)
00:00:03.052028 HM: MSR_IA32_VMX_EXIT_CTLS = 0x3ffff00036dff
00:00:03.052043 HM: SAVE_DEBUG (must be set)
00:00:03.052043 HM: HOST_ADDR_SPACE_SIZE
00:00:03.052044 HM: LOAD_PERF_MSR
00:00:03.052045 HM: ACK_EXT_INT
00:00:03.052045 HM: SAVE_GUEST_PAT_MSR (must be cleared)
00:00:03.052046 HM: LOAD_HOST_PAT_MSR (must be cleared)
00:00:03.052046 HM: SAVE_GUEST_EFER_MSR (must be cleared)
00:00:03.052047 HM: LOAD_HOST_EFER_MSR (must be cleared)
00:00:03.052047 HM: SAVE_VMX_PREEMPT_TIMER (must be cleared)
00:00:03.052048 HM: MSR_IA32_VMX_MISC = 0x403c0
00:00:03.052049 HM: PREEMPT_TSC_BIT = 0x0
00:00:03.052050 HM: STORE_EFERLMA_VMEXIT = false
00:00:03.052051 HM: ACTIVITY_STATES = 0x7
00:00:03.052052 HM: CR3_TARGET = 0x4
00:00:03.052052 HM: MAX_MSR = 512
00:00:03.052053 HM: RDMSR_SMBASE_MSR_SMM = false
00:00:03.052054 HM: SMM_MONITOR_CTL_B2 = false
00:00:03.052054 HM: VMWRITE_VMEXIT_INFO = false
00:00:03.052055 HM: MSEG_ID = 0x0
00:00:03.052056 HM: MSR_IA32_VMX_CR0_FIXED0 = 0x80000021
00:00:03.052057 HM: MSR_IA32_VMX_CR0_FIXED1 = 0xffffffff
00:00:03.052058 HM: MSR_IA32_VMX_CR4_FIXED0 = 0x2000
00:00:03.052059 HM: MSR_IA32_VMX_CR4_FIXED1 = 0x467ff
00:00:03.052060 HM: MSR_IA32_VMX_VMCS_ENUM = 0x2c
00:00:03.052060 HM: HIGHEST_INDEX = 0x16
00:00:03.052061 HM: APIC-access page physaddr = 0x000000002062e000
00:00:03.052063 HM: VCPU 0: MSR bitmap physaddr = 0x0000000020634000
00:00:03.052064 HM: VCPU 0: VMCS physaddr = 0x0000000020630000
00:00:03.052065 HM: VCPU 1: MSR bitmap physaddr = 0x000000002063e000
00:00:03.052066 HM: VCPU 1: VMCS physaddr = 0x000000002063a000
00:00:03.052072 HM: Guest support: 32-bit and 64-bit
00:00:03.052082 HM: Supports VMCS EFER fields = false
00:00:03.052083 HM: Enabled VMX
00:00:03.052090 CPUM: SetGuestCpuIdFeature: Enabled SYSENTER/EXIT
00:00:03.052091 CPUM: SetGuestCpuIdFeature: Enabled PAE
00:00:03.052092 CPUM: SetGuestCpuIdFeature: Enabled LONG MODE
00:00:03.052093 CPUM: SetGuestCpuIdFeature: Enabled SYSCALL/RET
00:00:03.052108 CPUM: SetGuestCpuIdFeature: Enabled LAHF/SAHF
00:00:03.052109 CPUM: SetGuestCpuIdFeature: Enabled NX
00:00:03.052111 HM: Disabled VMX-preemption timer
00:00:03.052125 HM: VT-x/AMD-V init method: GLOBAL
00:00:03.052127 CPUM: VCPU 0: Cached APIC base MSR = 0xfee00900
00:00:03.052165 CPUM: VCPU 1: Cached APIC base MSR = 0xfee00800
00:00:03.086624 PcBios: SATA LUN#0 LCHS=1024/255/63
00:00:03.086671 APIC: fPostedIntrsEnabled=false fVirtApicRegsEnabled=false fSupportsTscDeadline=false
00:00:03.086685 VMM: fUsePeriodicPreemptionTimers=false
00:00:03.086845 CPUM: Logical host processors: 2 present, 2 max, 2 online, online mask: 0000000000000003
00:00:03.086852 CPUM: Physical host cores: 2
00:00:03.086853 ************************* CPUID dump ************************
00:00:03.086899 Raw Standard CPUID Leaves
00:00:03.086900 Leaf/sub-leaf eax ebx ecx edx
00:00:03.086902 Gst: 00000000/0000 0000000d 756e6547 6c65746e 49656e69
00:00:03.086905 Hst: 0000000d 756e6547 6c65746e 49656e69
00:00:03.086907 Gst: 00000001/0000 0001067a 00020800 00080201 178bfbff
00:00:03.086910 Hst: 0001067a 01020800 0408e3fd bfebfbff
00:00:03.086912 Gst: 00000002/0000 05b0b101 005657f0 00000000 2cb4304e
00:00:03.086915 Hst: 05b0b101 005657f0 00000000 2cb4304e
00:00:03.086917 Gst: 00000003/0000 00000000 00000000 00000000 00000000
00:00:03.086919 Hst: 00000000 00000000 00000000 00000000
00:00:03.086921 Gst: 00000004/0000 04000121 01c0003f 0000003f 00000001
00:00:03.086923 Hst: 04000121 01c0003f 0000003f 00000001
00:00:03.086925 Gst: 00000004/0001 04000122 01c0003f 0000003f 00000001
00:00:03.086927 Hst: 04000122 01c0003f 0000003f 00000001
00:00:03.086929 Gst: 00000004/0002 04000143 05c0003f 00000fff 00000001
00:00:03.086931 Hst: 04004143 05c0003f 00000fff 00000001
00:00:03.086933 Gst: 00000004/0003 04000000 00000000 00000000 00000000
00:00:03.086935 Hst: 00000000 00000000 00000000 00000000
00:00:03.086937 Gst: 00000005/0000 00000000 00000000 00000000 00000000
00:00:03.086939 Hst: 00000040 00000040 00000003 03122220
00:00:03.086941 Gst: 00000006/0000 00000000 00000000 00000000 00000000
00:00:03.086943 Hst: 00000001 00000002 00000003 00000000
00:00:03.086944 Gst: 00000007/0000 00000000 00000000 00000000 00000000
00:00:03.086946 Hst: 00000000 00000000 00000000 00000000
00:00:03.086947 Gst: 00000008/0000 00000000 00000000 00000000 00000000
00:00:03.086949 Hst: 00000400 00000000 00000000 00000000
00:00:03.086951 Gst: 00000009/0000 00000000 00000000 00000000 00000000
00:00:03.086953 Hst: 00000000 00000000 00000000 00000000
00:00:03.086954 Gst: 0000000a/0000 00000000 00000000 00000000 00000000
00:00:03.086956 Hst: 07280202 00000000 00000000 00000503
00:00:03.086958 Gst: 0000000b/0000 00000000 00000000 00000000 00000000
00:00:03.086959 Hst: 00000000 00000000 00000000 00000000
00:00:03.086961 Gst: 0000000c/0000 00000000 00000000 00000000 00000000
00:00:03.086963 Hst: 00000000 00000000 00000000 00000000
00:00:03.086964 Gst: 0000000d/0000 00000000 00000000 00000000 00000000
00:00:03.086966 Hst: 00000003 00000240 00000240 00000000
00:00:03.086968 Gst: 0000000d/0001 00000000 00000000 00000000 00000000
00:00:03.086969 Hst: 00000000 00000000 00000000 00000000
00:00:03.086989 Name: GenuineIntel
00:00:03.086992 Supports: 0x00000000-0x0000000d
00:00:03.086994 Family: 6 Extended: 0 Effective: 6
00:00:03.086997 Model: 7 Extended: 1 Effective: 23
00:00:03.086999 Stepping: 10
00:00:03.087001 Type: 0 (primary)
00:00:03.087003 APIC ID: 0x00
00:00:03.087005 Logical CPUs: 2
00:00:03.087006 CLFLUSH Size: 8
00:00:03.087008 Brand ID: 0x00
00:00:03.087010 Features
00:00:03.087011 Mnemonic - Description = guest (host)
00:00:03.087012 FPU - x87 FPU on Chip = 1 (1)
00:00:03.087015 VME - Virtual 8086 Mode Enhancements = 1 (1)
00:00:03.087017 DE - Debugging extensions = 1 (1)
00:00:03.087020 PSE - Page Size Extension = 1 (1)
00:00:03.087022 TSC - Time Stamp Counter = 1 (1)
00:00:03.087025 MSR - Model Specific Registers = 1 (1)
00:00:03.087027 PAE - Physical Address Extension = 1 (1)
00:00:03.087029 MCE - Machine Check Exception = 1 (1)
00:00:03.087032 CX8 - CMPXCHG8B instruction = 1 (1)
00:00:03.087034 APIC - APIC On-Chip = 1 (1)
00:00:03.087037 SEP - SYSENTER and SYSEXIT Present = 1 (1)
00:00:03.087039 MTRR - Memory Type Range Registers = 1 (1)
00:00:03.087041 PGE - PTE Global Bit = 1 (1)
00:00:03.087044 MCA - Machine Check Architecture = 1 (1)
00:00:03.087046 CMOV - Conditional Move instructions = 1 (1)
00:00:03.087048 PAT - Page Attribute Table = 1 (1)
00:00:03.087051 PSE-36 - 36-bit Page Size Extension = 1 (1)
00:00:03.087053 PSN - Processor Serial Number = 0 (0)
00:00:03.087055 CLFSH - CLFLUSH instruction = 1 (1)
00:00:03.087058 DS - Debug Store = 0 (1)
00:00:03.087060 ACPI - Thermal Mon. & Soft. Clock Ctrl. = 0 (1)
00:00:03.087063 MMX - Intel MMX Technology = 1 (1)
00:00:03.087065 FXSR - FXSAVE and FXRSTOR instructions = 1 (1)
00:00:03.087067 SSE - SSE support = 1 (1)
00:00:03.087070 SSE2 - SSE2 support = 1 (1)
00:00:03.087072 SS - Self Snoop = 0 (1)
00:00:03.087075 HTT - Hyper-Threading Technology = 1 (1)
00:00:03.087077 TM - Therm. Monitor = 0 (1)
00:00:03.087080 PBE - Pending Break Enabled = 0 (1)
00:00:03.087082 SSE3 - SSE3 support = 1 (1)
00:00:03.087085 PCLMUL - PCLMULQDQ support (for AES-GCM) = 0 (0)
00:00:03.087087 DTES64 - DS Area 64-bit Layout = 0 (1)
00:00:03.087090 MONITOR - MONITOR/MWAIT instructions = 0 (1)
00:00:03.087092 CPL-DS - CPL Qualified Debug Store = 0 (1)
00:00:03.087094 VMX - Virtual Machine Extensions = 0 (1)
00:00:03.087096 SMX - Safer Mode Extensions = 0 (1)
00:00:03.087099 EST - Enhanced SpeedStep Technology = 0 (1)
00:00:03.087101 TM2 - Terminal Monitor 2 = 0 (1)
00:00:03.087103 SSSE3 - Supplemental Streaming SIMD Extensions 3 = 1 (1)
00:00:03.087105 CNTX-ID - L1 Context ID = 0 (0)
00:00:03.087108 SDBG - Silicon Debug interface = 0 (0)
00:00:03.087110 FMA - Fused Multiply Add extensions = 0 (0)
00:00:03.087112 CX16 - CMPXCHG16B instruction = 0 (1)
00:00:03.087115 TPRUPDATE - xTPR Update Control = 0 (1)
00:00:03.087117 PDCM - Perf/Debug Capability MSR = 0 (1)
00:00:03.087119 PCID - Process Context Identifiers = 0 (0)
00:00:03.087121 DCA - Direct Cache Access = 0 (0)
00:00:03.087124 SSE4_1 - SSE4_1 support = 1 (1)
00:00:03.087126 SSE4_2 - SSE4_2 support = 0 (0)
00:00:03.087129 X2APIC - x2APIC support = 0 (0)
00:00:03.087131 MOVBE - MOVBE instruction = 0 (0)
00:00:03.087134 POPCNT - POPCNT instruction = 0 (0)
00:00:03.087136 TSCDEADL - Time Stamp Counter Deadline = 0 (0)
00:00:03.087138 AES - AES instructions = 0 (0)
00:00:03.087141 XSAVE - XSAVE instruction = 0 (1)
00:00:03.087143 OSXSAVE - OSXSAVE instruction = 0 (0)
00:00:03.087145 AVX - AVX support = 0 (0)
00:00:03.087148 F16C - 16-bit floating point conversion instructions = 0 (0)
00:00:03.087150 RDRAND - RDRAND instruction = 0 (0)
00:00:03.087152 HVP - Hypervisor Present (we're a guest) = 0 (0)
00:00:03.087155 Structured Extended Feature Flags Enumeration (leaf 7):
00:00:03.087156 Mnemonic - Description = guest (host)
00:00:03.087157 FSGSBASE - RDFSBASE/RDGSBASE/WRFSBASE/WRGSBASE instr. = 0 (0)
00:00:03.087159 TSCADJUST - Supports MSR_IA32_TSC_ADJUST = 0 (0)
00:00:03.087161 SGX - Supports Software Guard Extensions = 0 (0)
00:00:03.087163 BMI1 - Advanced Bit Manipulation extension 1 = 0 (0)
00:00:03.087165 HLE - Hardware Lock Elision = 0 (0)
00:00:03.087167 AVX2 - Advanced Vector Extensions 2 = 0 (0)
00:00:03.087170 FDP_EXCPTN_ONLY - FPU DP only updated on exceptions = 0 (0)
00:00:03.087171 SMEP - Supervisor Mode Execution Prevention = 0 (0)
00:00:03.087173 BMI2 - Advanced Bit Manipulation extension 2 = 0 (0)
00:00:03.087175 ERMS - Enhanced REP MOVSB/STOSB instructions = 0 (0)
00:00:03.087177 INVPCID - INVPCID instruction = 0 (0)
00:00:03.087180 RTM - Restricted Transactional Memory = 0 (0)
00:00:03.087182 PQM - Platform Quality of Service Monitoring = 0 (0)
00:00:03.087184 DEPFPU_CS_DS - Deprecates FPU CS, FPU DS values if set = 0 (0)
00:00:03.087186 MPE - Intel Memory Protection Extensions = 0 (0)
00:00:03.087188 PQE - Platform Quality of Service Enforcement = 0 (0)
00:00:03.087190 AVX512F - AVX512 Foundation instructions = 0 (0)
00:00:03.087192 RDSEED - RDSEED instruction = 0 (0)
00:00:03.087194 ADX - ADCX/ADOX instructions = 0 (0)
00:00:03.087197 SMAP - Supervisor Mode Access Prevention = 0 (0)
00:00:03.087199 CLFLUSHOPT - CLFLUSHOPT (Cache Line Flush) instruction = 0 (0)
00:00:03.087201 INTEL_PT - Intel Processor Trace = 0 (0)
00:00:03.087203 AVX512PF - AVX512 Prefetch instructions = 0 (0)
00:00:03.087205 AVX512ER - AVX512 Exponential & Reciprocal instructions = 0 (0)
00:00:03.087207 AVX512CD - AVX512 Conflict Detection instructions = 0 (0)
00:00:03.087209 SHA - Secure Hash Algorithm extensions = 0 (0)
00:00:03.087211 PREFETCHWT1 - PREFETCHWT1 instruction = 0 (0)
00:00:03.087213 PKU - Protection Key for Usermode pages = 0 (0)
00:00:03.087215 OSPKU - CR4.PKU mirror = 0 (0)
00:00:03.087218 Processor Extended State Enumeration (leaf 0xd):
00:00:03.087219 XSAVE area cur/max size by XCR0, guest: 0x0/0x0
00:00:03.087221 XSAVE area cur/max size by XCR0, host: 0x240/0x240
00:00:03.087243 Valid XCR0 bits, guest: 0x00000000`00000000
00:00:03.087245 Valid XCR0 bits, host: 0x00000000`00000003 ( x87 SSE )
00:00:03.087249 XSAVE features, guest:
00:00:03.087250 XSAVE features, host:
00:00:03.087252 XSAVE area cur size XCR0|XSS, guest: 0x0
00:00:03.087254 XSAVE area cur size XCR0|XSS, host: 0x0
00:00:03.087255 Valid IA32_XSS bits, guest: 0x00000000`00000000
00:00:03.087257 Valid IA32_XSS bits, host: 0x00000000`00000000
00:00:03.087268 Raw Extended CPUID Leaves
00:00:03.087269 Leaf/sub-leaf eax ebx ecx edx
00:00:03.087270 Gst: 80000000/0000 80000008 00000000 00000000 00000000
00:00:03.087272 Hst: 80000008 00000000 00000000 00000000
00:00:03.087274 Gst: 80000001/0000 00000000 00000000 00000001 20100800
00:00:03.087276 Hst: 00000000 00000000 00000001 20100800
00:00:03.087278 Gst: 80000002/0000 65746e49 2952286c 726f4320 4d542865
00:00:03.087281 Hst: 65746e49 2952286c 726f4320 4d542865
00:00:03.087283 Gst: 80000003/0000 44203229 43206f75 20205550 54202020
00:00:03.087286 Hst: 44203229 43206f75 20205550 54202020
00:00:03.087289 Gst: 80000004/0000 30303639 20402020 30382e32 007a4847
00:00:03.087291 Hst: 30303639 20402020 30382e32 007a4847
00:00:03.087294 Gst: 80000005/0000 00000000 00000000 00000000 00000000
00:00:03.087296 Hst: 00000000 00000000 00000000 00000000
00:00:03.087297 Gst: 80000006/0000 00000000 00000000 18008040 00000000
00:00:03.087300 Hst: 00000000 00000000 18008040 00000000
00:00:03.087301 Gst: 80000007/0000 00000000 00000000 00000000 00000000
00:00:03.087303 Hst: 00000000 00000000 00000000 00000000
00:00:03.087305 Gst: 80000008/0000 00003024 00000000 00000000 00000000
00:00:03.087307 Hst: 00003024 00000000 00000000 00000000
00:00:03.087309 Ext Name:
00:00:03.087310 Ext Supports: 0x80000000-0x80000008
00:00:03.087311 Family: 0 Extended: 0 Effective: 0
00:00:03.087313 Model: 0 Extended: 0 Effective: 0
00:00:03.087314 Stepping: 0
00:00:03.087315 Brand ID: 0x000
00:00:03.087316 Ext Features
00:00:03.087317 Mnemonic - Description = guest (host)
00:00:03.087318 FPU - x87 FPU on Chip = 0 (0)
00:00:03.087321 VME - Virtual 8086 Mode Enhancements = 0 (0)
00:00:03.087323 DE - Debugging extensions = 0 (0)
00:00:03.087325 PSE - Page Size Extension = 0 (0)
00:00:03.087328 TSC - Time Stamp Counter = 0 (0)
00:00:03.087330 MSR - K86 Model Specific Registers = 0 (0)
00:00:03.087333 PAE - Physical Address Extension = 0 (0)
00:00:03.087335 MCE - Machine Check Exception = 0 (0)
00:00:03.087337 CX8 - CMPXCHG8B instruction = 0 (0)
00:00:03.087340 APIC - APIC On-Chip = 0 (0)
00:00:03.087343 SEP - SYSCALL/SYSRET = 1 (1)
00:00:03.087345 MTRR - Memory Type Range Registers = 0 (0)
00:00:03.087347 PGE - PTE Global Bit = 0 (0)
00:00:03.087350 MCA - Machine Check Architecture = 0 (0)
00:00:03.087352 CMOV - Conditional Move instructions = 0 (0)
00:00:03.087354 PAT - Page Attribute Table = 0 (0)
00:00:03.087357 PSE-36 - 36-bit Page Size Extension = 0 (0)
00:00:03.087359 NX - No-Execute/Execute-Disable = 1 (1)
00:00:03.087361 AXMMX - AMD Extensions to MMX instructions = 0 (0)
00:00:03.087363 MMX - Intel MMX Technology = 0 (0)
00:00:03.087365 FXSR - FXSAVE and FXRSTOR Instructions = 0 (0)
00:00:03.087368 FFXSR - AMD fast FXSAVE and FXRSTOR instructions = 0 (0)
00:00:03.087369 Page1GB - 1 GB large page = 0 (0)
00:00:03.087372 RDTSCP - RDTSCP instruction = 0 (0)
00:00:03.087374 LM - AMD64 Long Mode = 1 (1)
00:00:03.087377 3DNOWEXT - AMD Extensions to 3DNow = 0 (0)
00:00:03.087379 3DNOW - AMD 3DNow = 0 (0)
00:00:03.087382 LahfSahf - LAHF/SAHF support in 64-bit mode = 1 (1)
00:00:03.087384 CmpLegacy - Core multi-processing legacy mode = 0 (0)
00:00:03.087386 SVM - AMD Secure Virtual Machine extensions = 0 (0)
00:00:03.087388 EXTAPIC - AMD Extended APIC registers = 0 (0)
00:00:03.087390 CR8L - AMD LOCK MOV CR0 means MOV CR8 = 0 (0)
00:00:03.087392 ABM - AMD Advanced Bit Manipulation = 0 (0)
00:00:03.087394 SSE4A - SSE4A instructions = 0 (0)
00:00:03.087397 MISALIGNSSE - AMD Misaligned SSE mode = 0 (0)
00:00:03.087399 3DNOWPRF - AMD PREFETCH and PREFETCHW instructions = 0 (0)
00:00:03.087401 OSVW - AMD OS Visible Workaround = 0 (0)
00:00:03.087403 IBS - Instruct Based Sampling = 0 (0)
00:00:03.087405 XOP - Extended Operation support = 0 (0)
00:00:03.087408 SKINIT - SKINIT, STGI, and DEV support = 0 (0)
00:00:03.087410 WDT - AMD Watchdog Timer support = 0 (0)
00:00:03.087412 LWP - Lightweight Profiling support = 0 (0)
00:00:03.087414 FMA4 - Four operand FMA instruction support = 0 (0)
00:00:03.087416 NodeId - NodeId in MSR C001_100C = 0 (0)
00:00:03.087418 TBM - Trailing Bit Manipulation instructions = 0 (0)
00:00:03.087420 TOPOEXT - Topology Extensions = 0 (0)
00:00:03.087423 Full Name: "Intel(R) Core(TM)2 Duo CPU T9600 @ 2.80GHz"
00:00:03.087424 TLB 2/4M Instr/Uni: res0 0 entries
00:00:03.087426 TLB 2/4M Data: res0 0 entries
00:00:03.087427 TLB 4K Instr/Uni: res0 0 entries
00:00:03.087428 TLB 4K Data: res0 0 entries