summaryrefslogtreecommitdiffstats
path: root/doc/manual/en_US/user_BasicConcepts.xml
blob: 4667f112bb7ff764b0cbe78a8a88788b37496ece (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd"[
<!ENTITY % all.entities SYSTEM "all-entities.ent">
%all.entities;
]>
<chapter id="BasicConcepts">

  <title>Configuring Virtual Machines</title>

  <para>
    This chapter provides detailed steps for configuring an
    &product-name; virtual machine (VM). For an introduction to
    &product-name; and steps to get your first virtual machine running,
    see <xref linkend="Introduction" />.
  </para>

  <para>
    You have considerable latitude when deciding what virtual hardware
    to provide to the guest. Use virtual hardware to communicate with
    the host system or with other guests. For example, you can use
    virtual hardware in the following ways:
  </para>

  <itemizedlist>

    <listitem>
      <para>
        Have &product-name; present an ISO CD-ROM image to a guest
        system as if it were a physical CD-ROM.
      </para>
    </listitem>

    <listitem>
      <para>
        Provide a guest system access to the physical network through
        its virtual network card.
      </para>
    </listitem>

    <listitem>
      <para>
        Provide the host system, other guests, and computers on the
        Internet access to the guest system.
      </para>
    </listitem>

  </itemizedlist>

  <sect1 id="guestossupport">

    <title>Supported Guest Operating Systems</title>

    <para>
      Because &product-name; is designed to provide a generic
      virtualization environment for x86 systems, it can run operating
      systems (OSes) of any kind. However, &product-name; focuses on the
      following guest systems:
    </para>

    <itemizedlist>

      <listitem>
        <para>
          <emphasis role="bold">Windows NT 4.0:</emphasis>
        </para>

        <itemizedlist>

          <listitem>
            <para>
              Fully supports all versions, editions, and service packs.
              Note that you might encounter issues with some older
              service packs, so install at least service pack 6a.
            </para>
          </listitem>

          <listitem>
            <para>
              Guest Additions are available with a limited feature set.
            </para>
          </listitem>

        </itemizedlist>
      </listitem>

      <listitem>
        <para>
          <emphasis role="bold">Windows 2000, Windows XP, Windows Server
          2003, Windows Vista, Windows Server 2008, Windows 7, Windows
          Server 2008 R2, Windows 8, Windows Server 2012, Windows 8.1,
          Windows Server 2012 R2, Windows 10 (non-Insider Preview
          releases), Windows Server 2016, Windows Server
          2019:</emphasis>
        </para>

        <itemizedlist>

          <listitem>
            <para>
              Fully supports all versions, editions, and service packs,
              including 64-bit versions.
            </para>
          </listitem>

          <listitem>
            <para>
              Note that you must enable hardware virtualization when
              running at least Windows 8.
            </para>
          </listitem>

          <listitem>
            <para>
              Guest Additions are available.
            </para>
          </listitem>

        </itemizedlist>
      </listitem>

      <listitem>
        <para>
          <emphasis role="bold">MS-DOS, Windows 3.x, Windows 95, Windows
          98, Windows ME:</emphasis>
        </para>

        <itemizedlist>

          <listitem>
            <para>
              Limited testing has been performed.
            </para>
          </listitem>

          <listitem>
            <para>
              Use beyond legacy installation mechanisms is not
              recommended.
            </para>
          </listitem>

          <listitem>
            <para>
              Guest Additions are not available.
            </para>
          </listitem>

        </itemizedlist>
      </listitem>

      <listitem>
        <para>
          <emphasis role="bold">Linux 2.4:</emphasis>
        </para>

        <para>
          Limited support.
        </para>
      </listitem>

      <listitem>
        <para>
          <emphasis role="bold">Linux 2.6:</emphasis>
        </para>

        <itemizedlist>

          <listitem>
            <para>
              Fully supports all versions and editions, both 32-bit and
              64-bit.
            </para>
          </listitem>

          <listitem>
            <para>
              For best performance, use at least Linux kernel version
              2.6.13.
            </para>
          </listitem>

          <listitem>
            <para>
              Guest Additions are available.
            </para>
          </listitem>

        </itemizedlist>

        <note>
          <para>
            Certain Linux kernel releases have bugs that prevent them
            from executing in a virtual environment. See
            <xref linkend="ts_linux-buggy" />.
          </para>
        </note>
      </listitem>

      <listitem>
        <para>
          <emphasis role="bold">Linux 3.x and later:</emphasis>
        </para>

        <itemizedlist>

          <listitem>
            <para>
              Fully supports all versions and editions, both 32-bit and
              64-bit.
            </para>
          </listitem>

          <listitem>
            <para>
              Guest Additions are available.
            </para>
          </listitem>

        </itemizedlist>
      </listitem>

      <listitem>
        <para>
          <emphasis role="bold"> Oracle Solaris 10 and Oracle Solaris
          11:</emphasis>
        </para>

        <itemizedlist>

          <listitem>
            <para>
              Fully supports all versions starting with Oracle Solaris
              10 8/08 and Oracle Solaris 11.
            </para>
          </listitem>

          <listitem>
            <para>
              Supports 64-bit prior to Oracle Solaris 11 11/11, and
              32-bit.
            </para>
          </listitem>

          <listitem>
            <para>
              Guest Additions are available.
            </para>
          </listitem>

        </itemizedlist>
      </listitem>

      <listitem>
        <para>
          <emphasis role="bold">FreeBSD:</emphasis>
        </para>

        <itemizedlist>

          <listitem>
            <para>
              Limited support.
            </para>
          </listitem>

          <listitem>
            <para>
              Note that you must enable hardware virtualization when
              running FreeBSD.
            </para>
          </listitem>

          <listitem>
            <para>
              Guest Additions are not available.
            </para>
          </listitem>

        </itemizedlist>
      </listitem>

      <listitem>
        <para>
          <emphasis role="bold"> OpenBSD:</emphasis>
        </para>

        <itemizedlist>

          <listitem>
            <para>
              Supports at least version 3.7.
            </para>
          </listitem>

          <listitem>
            <para>
              Note that you must enable hardware virtualization when
              running OpenBSD.
            </para>
          </listitem>

          <listitem>
            <para>
              Guest Additions are not available.
            </para>
          </listitem>

        </itemizedlist>
      </listitem>

      <listitem>
        <para>
          <emphasis role="bold">OS/2 Warp 4.5:</emphasis>
        </para>

        <itemizedlist>

          <listitem>
            <para>
              Only MCP2 is supported. Other OS/2 versions might not
              work.
            </para>
          </listitem>

          <listitem>
            <para>
              Note that you must enable hardware virtualization when
              running OS/2 Warp 4.5.
            </para>
          </listitem>

          <listitem>
            <para>
              Guest Additions are available with a limited feature set.
              See <xref linkend="KnownIssues" />.
            </para>
          </listitem>

        </itemizedlist>
      </listitem>

      <listitem>
        <para>
          <emphasis role="bold">Mac OS X:</emphasis>
        </para>

        <itemizedlist>

          <listitem>
            <para>
              &product-name; 3.2 added experimental support for Mac OS X
              guests, with restrictions. See
              <xref linkend="intro-macosxguests"/> and
              <xref linkend="KnownIssues" />.
            </para>
          </listitem>

          <listitem>
            <para>
              Guest Additions are not available.
            </para>
          </listitem>

        </itemizedlist>
      </listitem>

    </itemizedlist>

    <sect2 id="intro-macosxguests">

      <title>Mac OS X Guests</title>

      <para>
        &product-name; enables you to install and execute unmodified
        versions of Mac OS X guests on supported host hardware. Note
        that this feature is experimental and thus unsupported.
      </para>

      <para>
        &product-name; is the first product to provide the modern PC
        architecture expected by OS X without requiring any of the
        modifications used by competing virtualization solutions. For
        example, some competing solutions perform modifications to the
        Mac OS X install DVDs, such as a different boot loader and
        replaced files.
      </para>

      <para>
        Be aware of the following important issues before you attempt to
        install a Mac OS X guest:
      </para>

      <itemizedlist>

        <listitem>
          <para>
            Mac OS X is commercial, licensed software and contains
            <emphasis role="bold">both license and technical
            restrictions</emphasis> that limit its use to certain
            hardware and usage scenarios. You must understand and comply
            with these restrictions.
          </para>

          <para>
            In particular, Apple prohibits the installation of most
            versions of Mac OS X on non-Apple hardware.
          </para>

          <para>
            These license restrictions are also enforced on a technical
            level. Mac OS X verifies that it is running on Apple
            hardware. Most DVDs that accompany Apple hardware check for
            the exact model. These restrictions are
            <emphasis>not</emphasis> circumvented by &product-name; and
            continue to apply.
          </para>
        </listitem>

        <listitem>
          <para>
            Only <emphasis role="bold">CPUs</emphasis> that are known
            and tested by Apple are supported. As a result, if your
            Intel CPU is newer than the Mac OS X build, or if you have a
            non-Intel CPU, you will likely encounter a panic during
            bootup with an "Unsupported CPU" exception.
          </para>

          <para>
            Ensure that you use the Mac OS X DVD that comes with your
            Apple hardware.
          </para>
        </listitem>

        <listitem>
          <para>
            The Mac OS X installer expects the hard disk to be
            <emphasis>partitioned</emphasis>. So, the installer will not
            offer a partition selection to you. Before you can install
            the software successfully, start the Disk Utility from the
            Tools menu and partition the hard disk. Close the Disk
            Utility and proceed with the installation.
          </para>
        </listitem>

        <listitem>
          <para>
            In addition, Mac OS X support in &product-name; is an
            experimental feature. See <xref linkend="KnownIssues" />.
          </para>
        </listitem>

      </itemizedlist>

    </sect2>

    <sect2 id="intro-64bitguests">

      <title>64-bit Guests</title>

      <para>
        &product-name; enables you to run 64-bit guest OSes even on a
        32-bit host OS. To run a 64-bit guest OS on a 32-bit host
        system, ensure that you meet the following conditions:
      </para>

      <itemizedlist>

        <listitem>
          <para>
            You need a 64-bit processor that has hardware virtualization
            support. See <xref linkend="hwvirt" />.
          </para>
        </listitem>

        <listitem>
          <para>
            You must enable hardware virtualization for the particular
            VM that requires 64-bit support. Software virtualization is
            not supported for 64-bit VMs.
          </para>
        </listitem>

        <listitem>
          <para>
            To use 64-bit guest support on a 32-bit host OS, you must
            select a 64-bit OS for the particular VM. Since supporting
            64 bits on 32-bit hosts incurs additional overhead,
            &product-name; only enables this support only upon explicit
            request.
          </para>

          <para>
            64-bit hosts typically come with hardware virtualization
            support. So, you can install a 64-bit guest OS in the guest
            regardless of the settings.
          </para>
        </listitem>

      </itemizedlist>

      <warning>
        <para>
          Be sure to enable <emphasis role="bold">I/O APIC</emphasis>
          for virtual machines that you intend to use in 64-bit mode.
          This is especially true for 64-bit Windows VMs. See
          <xref linkend="settings-general-advanced" />. For 64-bit
          Windows guests, ensure that the VM uses the
          <emphasis role="bold">Intel networking device</emphasis>
          because there is no 64-bit driver support for the AMD PCNet
          card. See <xref linkend="nichardware" />.
        </para>
      </warning>

      <para>
        If you use the <emphasis role="bold">Create VM</emphasis> wizard
        of the &product-name; graphical user interface (GUI),
        &product-name; automatically uses the correct settings for each
        selected 64-bit OS type. See <xref linkend="gui-createvm" />.
      </para>

    </sect2>

  </sect1>

  <sect1 id="basic-unattended">

    <title>Unattended Guest Installation</title>

    <para>
      &product-name; can install a guest OS automatically. You only need
      to provide the installation medium and a few other parameters,
      such as the name of the default user.
    </para>

    <para>
      Performing an unattended guest installation involves the following
      steps:
    </para>

    <itemizedlist>

      <listitem>
        <para>
          <emphasis role="bold">Create a new VM.</emphasis> Use one of
          the following methods:
        </para>

        <itemizedlist>

          <listitem>
            <para>
              The VirtualBox Manager, see
              <xref linkend="gui-createvm" />.
            </para>
          </listitem>

          <listitem>
            <para>
              The <command>VBoxManage createvm</command> command, see
              <xref linkend="vboxmanage-createvm" />.
            </para>
          </listitem>

        </itemizedlist>

        <para>
          For the new VM, choose the guest OS type and accept the
          default settings for that OS. The following sections in this
          chapter describe how to change the settings for a VM.
        </para>
      </listitem>

      <listitem>
        <para>
          <emphasis role="bold">Prepare the VM for unattended guest
          installation.</emphasis> Use the <command>VBoxManage
          unattended</command> command, see
          <xref linkend="vboxmanage-unattended" />.
        </para>

        <para>
          During this step, &product-name; scans the installation medium
          and changes certain parameters to ensure a seamless
          installation as a guest running on &product-name;.
        </para>
      </listitem>

      <listitem>
        <para>
          <emphasis role="bold">Start the VM.</emphasis> Use the
          VirtualBox Manager or the <command>VBoxManage
          startvm</command> command.
        </para>

        <para>
          When you start the VM, the unattended installation is
          performed automatically.
        </para>

        <para>
          The installation operation changes the boot device order to
          boot the virtual hard disk first and then the virtual DVD
          drive. If the virtual hard disk is empty prior to the
          automatic installation, the VM boots from the virtual DVD
          drive and begins the installation.
        </para>

        <para>
          If the virtual hard disk contains a bootable OS, the
          installation operation exits. In this case, change the boot
          device order manually by pressing F12 during the BIOS splash
          screen.
        </para>
      </listitem>

    </itemizedlist>

    <para>
      <xref linkend="unattended-guest-install-example"/> describes how
      to perform an unattended guest installation for an Oracle Linux
      guest.
    </para>

    <sect2 id="unattended-guest-install-example">

      <title>An Example of Unattended Guest Installation</title>

      <para>
        The following example shows how to perform an unattended guest
        installation for an Oracle Linux VM. The example uses various
        <command>VBoxManage</command> commands to prepare the guest VM.
        The <command>VBoxManage unattended install</command> command is
        then used to install and configure the guest OS.
      </para>

      <orderedlist>

        <listitem>
          <para>
            Create the virtual machine.
          </para>

<screen># VM="ol7-autoinstall"
# VBoxManage list ostypes
# VBoxManage createvm --name $VM --ostype "Oracle_64" --register</screen>

          <para>
            Note the following:
          </para>

          <itemizedlist>

            <listitem>
              <para>
                The $VM variable represents the name of the VM.
              </para>
            </listitem>

            <listitem>
              <para>
                The <command>VBoxManage list ostypes</command> command
                lists the guest OSes supported by &product-name;,
                including the name used for each OS in the
                <command>VBoxManage</command> commands.
              </para>
            </listitem>

            <listitem>
              <para>
                A 64-bit Oracle Linux 7 VM is created and registered
                with &product-name;.
              </para>
            </listitem>

            <listitem>
              <para>
                The VM has a unique UUID.
              </para>
            </listitem>

            <listitem>
              <para>
                An XML settings file is generated.
              </para>
            </listitem>

          </itemizedlist>
        </listitem>

        <listitem>
          <para>
            Create a virtual hard disk and storage devices for the VM.
          </para>

<screen># VBoxManage createhd --filename /VirtualBox/$VM/$VM.vdi --size 32768
# VBoxManage storagectl $VM --name "SATA Controller" --add sata --controller IntelAHCI
# VBoxManage storageattach $VM --storagectl "SATA Controller" --port 0 --device 0 \
--type hdd --medium /VirtualBox/$VM/$VM.vdi
# VBoxManage storagectl $VM --name "IDE Controller" --add ide
# VBoxManage storageattach $VM --storagectl "IDE Controller" --port 0 --device 0 \
--type dvddrive --medium /u01/Software/OL/OracleLinux-R7-U6-Server-x86_64-dvd.iso</screen>

          <para>
            The previous commands do the following:
          </para>

          <itemizedlist>

            <listitem>
              <para>
                Create a 32768 MB virtual hard disk.
              </para>
            </listitem>

            <listitem>
              <para>
                Create a SATA storage controller and attach the virtual
                hard disk.
              </para>
            </listitem>

            <listitem>
              <para>
                Create an IDE storage controller for a virtual DVD drive
                and attach an Oracle Linux installation ISO.
              </para>
            </listitem>

          </itemizedlist>
        </listitem>

        <listitem>
          <para>
            (Optional) Configure some settings for the VM.
          </para>

<screen># VBoxManage modifyvm $VM --ioapic on
# VBoxManage modifyvm $VM --boot1 dvd --boot2 disk --boot3 none --boot4 none
# VBoxManage modifyvm $VM --memory 8192 --vram 128</screen>

          <para>
            The previous commands do the following:
          </para>

          <itemizedlist>

            <listitem>
              <para>
                Enable I/O APIC for the motherboard of the VM.
              </para>
            </listitem>

            <listitem>
              <para>
                Configure the boot device order for the VM.
              </para>
            </listitem>

            <listitem>
              <para>
                Allocate 8192 MB of RAM and 128 MB of video RAM to the
                VM.
              </para>
            </listitem>

          </itemizedlist>
        </listitem>

        <listitem>
          <para>
            Perform an unattended install of the OS.
          </para>

<screen># VBoxManage unattended install $VM \
--iso=/u01/Software/OL/OracleLinux-R7-U6-Server-x86_64-dvd.iso \
--user=<replaceable>login</replaceable> --full-user-name=<replaceable>name</replaceable> --password <replaceable>password</replaceable> \
--install-additions --time-zone=CET</screen>

          <para>
            The previous command does the following:
          </para>

          <itemizedlist>

            <listitem>
              <para>
                Specifies an Oracle Linux ISO as the installation ISO.
              </para>
            </listitem>

            <listitem>
              <para>
                Specifies a login name, full name, and login password
                for a default user on the guest OS.
              </para>

              <para>
                Note that the specified password is also used for the
                root user account on the guest.
              </para>
            </listitem>

            <listitem>
              <para>
                Installs the Guest Additions on the VM.
              </para>
            </listitem>

            <listitem>
              <para>
                Sets the time zone for the guest OS to Central European
                Time (CET).
              </para>
            </listitem>

          </itemizedlist>
        </listitem>

        <listitem>
          <para>
            Start the virtual machine.
          </para>

          <para>
            This step completes the unattended installation process.
          </para>

<screen># VBoxManage startvm $VM --type headless</screen>

          <para>
            The VM starts in headless mode, which means that the
            VirtualBox Manager window does not open.
          </para>
        </listitem>

        <listitem>
          <para>
            (Optional) Update the guest OS to use the latest Oracle
            Linux packages.
          </para>

          <para>
            On the guest VM, run the following command:
          </para>

<screen># yum update</screen>
        </listitem>

      </orderedlist>

    </sect2>

  </sect1>

  <sect1 id="emul-hardware">

    <title>Emulated Hardware</title>

    <para>
      &product-name; virtualizes nearly all hardware of the host.
      Depending on a VM's configuration, the guest will see the
      following virtual hardware:
    </para>

    <itemizedlist>

      <listitem>
        <para>
          <emphasis role="bold">Input devices.</emphasis> By default,
          &product-name; emulates a standard PS/2 keyboard and mouse.
          These devices are supported by almost all past and present
          OSes.
        </para>

        <para>
          In addition, &product-name; can provide virtual USB input
          devices to avoid having to capture mouse and keyboard, as
          described in <xref
          linkend="keyb_mouse_normal" />.
        </para>
      </listitem>

      <listitem>
        <para>
          <emphasis role="bold">Graphics.</emphasis> The &product-name;
          graphics device, sometimes referred to as a VGA device, is not
          based on any physical counterpart. This is unlike nearly all
          other emulated devices. It is a simple, synthetic device which
          provides compatibility with standard VGA and several extended
          registers used by the VESA BIOS Extensions (VBE).
        </para>
      </listitem>

      <listitem>
        <para>
          <emphasis role="bold">Storage.</emphasis> &product-name;
          currently emulates the standard ATA interface found on Intel
          PIIX3/PIIX4 chips, the SATA (AHCI) interface, and two SCSI
          adapters (LSI Logic and BusLogic). See
          <xref linkend="harddiskcontrollers" /> for details. Whereas
          providing one of these would be enough for &product-name; by
          itself, this multitude of storage adapters is required for
          compatibility with other hypervisors. Windows is particularly
          picky about its boot devices, and migrating VMs between
          hypervisors is very difficult or impossible if the storage
          controllers are different.
        </para>
      </listitem>

      <listitem>
        <para>
          <emphasis role="bold">Networking.</emphasis> See
          <xref
          linkend="nichardware" />.
        </para>
      </listitem>

      <listitem>
        <para>
          <emphasis role="bold">USB.</emphasis> &product-name; emulates
          three USB host controllers: xHCI, EHCI, and OHCI. While xHCI
          handles all USB transfer speeds, only guest OSes released
          approximately after 2011 support xHCI. Note that for Windows 7
          guests, 3rd party drivers must be installed for xHCI support.
        </para>

        <para>
          Older OSes typically support OHCI and EHCI. The two
          controllers are needed because OHCI only handles USB low-speed
          and full-speed devices (both USB 1.x and 2.0), while EHCI only
          handles high-speed devices (USB 2.0 only).
        </para>

        <para>
          The emulated USB controllers do not communicate directly with
          devices on the host but rather with a virtual USB layer which
          abstracts the USB protocol and enables the use of remote USB
          devices.
        </para>
      </listitem>

      <listitem>
        <para>
          <emphasis role="bold">Audio.</emphasis> See
          <xref linkend="settings-audio" />.
        </para>
      </listitem>

    </itemizedlist>

  </sect1>

  <sect1 id="generalsettings">

    <title>General Settings</title>

    <para>
      In the <emphasis role="bold">Settings</emphasis> window, under
      <emphasis role="bold">General</emphasis>, you can configure the
      most fundamental aspects of the virtual machine such as memory and
      essential hardware. The following tabs are available.
    </para>

    <sect2 id="settings-basic">

      <title>Basic Tab</title>

      <para>
        In the <emphasis role="bold">Basic</emphasis> tab of the
        <emphasis role="bold">General</emphasis> settings category, you
        can find these settings:
      </para>

      <itemizedlist>

        <listitem>
          <para>
            <emphasis role="bold">Name:</emphasis> The name under which
            the VM is shown in the list of VMs in the main window. Under
            this name, &product-name; also saves the VM's configuration
            files. By changing the name, &product-name; renames these
            files as well. As a result, you can only use characters
            which are allowed in your host OS's file names.
          </para>

          <para>
            Note that internally, &product-name; uses unique identifiers
            (UUIDs) to identify virtual machines. You can display these
            with <command>VBoxManage</command>.
          </para>
        </listitem>

        <listitem>
          <para>
            <emphasis role="bold">Type:</emphasis> The type of the guest
            OS for the VM. This is the same setting that is specified in
            the <emphasis role="bold">New Virtual Machine</emphasis>
            wizard. See <xref linkend="gui-createvm" />.
          </para>

          <para>
            Whereas the default settings of a newly created VM depend on
            the selected OS type, changing the type later has no effect
            on VM settings. This value is purely informational and
            decorative.
          </para>
        </listitem>

        <listitem>
          <para>
            <emphasis role="bold">Version:</emphasis> The version of the
            guest OS for the VM. This is the same setting that is
            specified in the <emphasis role="bold">New Virtual
            Machine</emphasis> wizard. See
            <xref linkend="gui-createvm" />.
          </para>
        </listitem>

      </itemizedlist>

    </sect2>

    <sect2 id="settings-general-advanced">

      <title>Advanced Tab</title>

      <para>
        The following settings are available in the
        <emphasis role="bold">Advanced</emphasis> tab:
      </para>

      <itemizedlist>

        <listitem>
          <para>
            <emphasis role="bold">Snapshot Folder:</emphasis> By
            default, &product-name; saves snapshot data together with
            your other &product-name; configuration data. See
            <xref linkend="vboxconfigdata" />. With this setting, you
            can specify any other folder for each VM.
          </para>
        </listitem>

        <listitem>
          <para>
            <emphasis role="bold">Shared Clipboard:</emphasis> You can
            select here whether the clipboard of the guest OS should be
            shared with that of your host. If you select
            <emphasis role="bold">Bidirectional</emphasis>, then
            &product-name; will always make sure that both clipboards
            contain the same data. If you select
            <emphasis role="bold">Host to Guest</emphasis> or
            <emphasis role="bold">Guest to Host</emphasis>, then
            &product-name; will only ever copy clipboard data in one
            direction.
          </para>

          <para>
            Clipboard sharing requires that the &product-name; Guest
            Additions be installed. In such a case, this setting has no
            effect. See <xref linkend="guestadditions" />.
          </para>

          <para>
            For security reasons, the shared clipboard is disabled by
            default. This setting can be changed at any time using the
            <emphasis role="bold">Shared Clipboard</emphasis> menu item
            in the <emphasis role="bold">Devices</emphasis> menu of the
            virtual machine.
          </para>
        </listitem>

        <listitem>
          <para>
            <emphasis role="bold">Drag and Drop:</emphasis> This setting
            enables support for drag and drop. Select an object, such as
            a file, from the host or guest and directly copy or open it
            on the guest or host. Multiple per-VM drag and drop modes
            allow restricting access in either direction.
          </para>

          <para>
            For drag and drop to work the Guest Additions need to be
            installed on the guest.
          </para>

          <note>
            <para>
              Drag and drop is disabled by default. This setting can be
              changed at any time using the <emphasis role="bold">Drag
              and Drop</emphasis> menu item in the
              <emphasis role="bold">Devices</emphasis> menu of the
              virtual machine.
            </para>
          </note>

          <para>
            See <xref linkend="guestadd-dnd"/>.
          </para>
        </listitem>

      </itemizedlist>

    </sect2>

    <sect2 id="settings-description">

      <title>Description Tab</title>

      <para>
        On the <emphasis role="bold">Description</emphasis> tab you can
        enter a description for your virtual machine. This has no effect
        on the functionality of the machine, but you may find this space
        useful to note down things such as the configuration of a
        virtual machine and the software that has been installed into
        it.
      </para>

      <para>
        To insert a line break into the
        <emphasis role="bold">Description</emphasis> text field, press
        Shift+Enter.
      </para>

    </sect2>

    <sect2 id="settings-disk-encryption">

      <title>Disk Encryption Tab</title>

      <para>
        The <emphasis role="bold">Disk Encryption</emphasis> tab enables
        you to encrypt disks that are attached to the virtual machine.
      </para>

      <para>
        To enable disk encryption, select the
        <emphasis role="bold">Enable Disk Encryption</emphasis> check
        box.
      </para>

      <para>
        Settings are available to configure the cipher used for
        encryption and the encryption password.
      </para>

    </sect2>

  </sect1>

  <sect1 id="settings-system">

    <title>System Settings</title>

    <para>
      The <emphasis role="bold">System</emphasis> category groups
      various settings that are related to the basic hardware that is
      presented to the virtual machine.
    </para>

    <note>
      <para>
        As the activation mechanism of Microsoft Windows is sensitive to
        hardware changes, if you are changing hardware settings for a
        Windows guest, some of these changes may trigger a request for
        another activation with Microsoft.
      </para>
    </note>

    <para>
      The following tabs are available.
    </para>

    <sect2 id="settings-motherboard">

      <title>Motherboard Tab</title>

      <para>
        On the <emphasis role="bold">Motherboard</emphasis> tab, you can
        configure virtual hardware that would normally be on the
        motherboard of a real computer.
      </para>

      <itemizedlist>

        <listitem>
          <para>
            <emphasis role="bold">Base Memory:</emphasis> Sets the
            amount of RAM that is allocated and given to the VM when it
            is running. The specified amount of memory will be requested
            from the host OS, so it must be available or made available
            as free memory on the host when attempting to start the VM
            and will not be available to the host while the VM is
            running. This is the same setting that was specified in the
            <emphasis role="bold">New Virtual Machine</emphasis> wizard,
            as described in <xref linkend="gui-createvm" />.
          </para>

          <para>
            Generally, it is possible to change the memory size after
            installing the guest OS. But you must not reduce the memory
            to an amount where the OS would no longer boot.
          </para>
        </listitem>

        <listitem>
          <para>
            <emphasis role="bold">Boot Order:</emphasis> Determines the
            order in which the guest OS will attempt to boot from the
            various virtual boot devices. Analogous to a real PC's BIOS
            setting, &product-name; can tell a guest OS to start from
            the virtual floppy, the virtual CD/DVD drive, the virtual
            hard drive (each of these as defined by the other VM
            settings), the network, or none of these.
          </para>

          <para>
            If you select <emphasis role="bold">Network</emphasis>, the
            VM will attempt to boot from a network using the PXE
            mechanism. This needs to be configured in detail on the
            command line. See <xref linkend="vboxmanage-modifyvm" />.
          </para>
        </listitem>

        <listitem>
          <para>
            <emphasis role="bold">Chipset:</emphasis> You can select
            which chipset will be presented to the virtual machine. In
            legacy versions of &product-name;, PIIX3 was the only
            available option. For modern guest OSes such as Mac OS X,
            that old chipset is no longer well supported. As a result,
            &product-name; supports an emulation of the more modern ICH9
            chipset, which supports PCI express, three PCI buses,
            PCI-to-PCI bridges and Message Signaled Interrupts (MSI).
            This enables modern OSes to address more PCI devices and no
            longer requires IRQ sharing. Using the ICH9 chipset it is
            also possible to configure up to 36 network cards, up to 8
            network adapters with PIIX3. Note that the ICH9 support is
            experimental and not recommended for guest OSes which do not
            require it.
          </para>
        </listitem>

        <listitem>
          <para>
            <emphasis role="bold">Pointing Device:</emphasis> The
            default virtual pointing devices for older guests is the
            traditional PS/2 mouse. If set to <emphasis>USB
            tablet</emphasis>, &product-name; reports to the virtual
            machine that a USB tablet device is present and communicates
            mouse events to the virtual machine through this device. The
            third setting is a <emphasis>USB Multi-Touch
            Tablet</emphasis> which is suited for recent Windows guests.
          </para>

          <para>
            Using the virtual USB tablet has the advantage that
            movements are reported in absolute coordinates, instead of
            as relative position changes. This enables &product-name; to
            translate mouse events over the VM window into tablet events
            without having to "capture" the mouse in the guest as
            described in <xref linkend="keyb_mouse_normal" />. This
            makes using the VM less tedious even if Guest Additions are
            not installed.
          </para>
        </listitem>

        <listitem>
          <para>
            <emphasis role="bold">Enable I/O APIC:</emphasis> Advanced
            Programmable Interrupt Controllers (APICs) are a newer x86
            hardware feature that have replaced old-style Programmable
            Interrupt Controllers (PICs) in recent years. With an I/O
            APIC, OSes can use more than 16 interrupt requests (IRQs)
            and therefore avoid IRQ sharing for improved reliability.
          </para>

          <note>
            <para>
              Enabling the I/O APIC is <emphasis>required</emphasis> for
              64-bit guest OSes, especially Windows Vista. It is also
              required if you want to use more than one virtual CPU in a
              virtual machine.
            </para>
          </note>

          <para>
            However, software support for I/O APICs has been unreliable
            with some OSes other than Windows. Also, the use of an I/O
            APIC slightly increases the overhead of virtualization and
            therefore slows down the guest OS a little.
          </para>

          <warning>
            <para>
              All Windows OSes starting with Windows 2000 install
              different kernels, depending on whether an I/O APIC is
              available. As with ACPI, the I/O APIC therefore
              <emphasis>must not be turned off after
              installation</emphasis> of a Windows guest OS. Turning it
              on after installation will have no effect however.
            </para>
          </warning>
        </listitem>

        <listitem>
          <para>
            <emphasis role="bold">Enable EFI:</emphasis> Enables
            Extensible Firmware Interface (EFI), which replaces the
            legacy BIOS and may be useful for certain advanced use
            cases. See <xref linkend="efi" />.
          </para>
        </listitem>

        <listitem>
          <para>
            <emphasis role="bold">Hardware Clock in UTC Time:</emphasis>
            If selected, &product-name; will report the system time in
            UTC format to the guest instead of the local (host) time.
            This affects how the virtual real-time clock (RTC) operates
            and may be useful for UNIX-like guest OSes, which typically
            expect the hardware clock to be set to UTC.
          </para>
        </listitem>

      </itemizedlist>

      <para>
        In addition, you can turn off the <emphasis role="bold">Advanced
        Configuration and Power Interface (ACPI)</emphasis> which
        &product-name; presents to the guest OS by default.
      </para>

      <para>
        ACPI is the current industry standard to allow OSes to recognize
        hardware, configure motherboards and other devices and manage
        power. As all modern PCs contain this feature and Windows and
        Linux have been supporting it for years, it is also enabled by
        default in &product-name;. ACPI can only be turned off using the
        command line. See <xref linkend="vboxmanage-modifyvm" />.
      </para>

      <warning>
        <para>
          All Windows OSes starting with Windows 2000 install different
          kernels, depending on whether ACPI is available. This means
          that ACPI <emphasis>must not be turned off</emphasis> after
          installation of a Windows guest OS. However, turning it on
          after installation will have no effect.
        </para>
      </warning>

    </sect2>

    <sect2 id="settings-processor">

      <title>Processor Tab</title>

      <para>
        On the <emphasis role="bold">Processor</emphasis> tab, you can
        configure settings for the CPU used by the virtual machine.
      </para>

      <itemizedlist>

        <listitem>
          <para>
            <emphasis role="bold">Processor(s):</emphasis> Sets the
            number of virtual CPU cores the guest OSes can see.
            &product-name; supports symmetrical multiprocessing (SMP)
            and can present up to 32 virtual CPU cores to each virtual
            machine.
          </para>

          <para>
            You should not configure virtual machines to use more CPU
            cores than are available physically. This includes real
            cores, with no hyperthreads.
          </para>
        </listitem>

        <listitem>
          <para>
            <emphasis role="bold">Execution Cap:</emphasis> Configures
            the CPU execution cap. This limits the amount of time a host
            CPU spends to emulate a virtual CPU. The default setting is
            100%, meaning that there is no limitation. A setting of 50%
            implies a single virtual CPU can use up to 50% of a single
            host CPU. Note that limiting the execution time of the
            virtual CPUs may cause guest timing problems.
          </para>

          <para>
            A warning is displayed at the bottom of the Processor tab if
            an Execution Cap setting is made that may affect system
            performance.
          </para>
        </listitem>

        <listitem>
          <para>
            <emphasis role="bold">Enable PAE/NX:</emphasis> Determines
            whether the PAE and NX capabilities of the host CPU will be
            exposed to the virtual machine.
          </para>

          <para>
            PAE stands for Physical Address Extension. Normally, if
            enabled and supported by the OS, then even a 32-bit x86 CPU
            can access more than 4 GB of RAM. This is made possible by
            adding another 4 bits to memory addresses, so that with 36
            bits, up to 64 GB can be addressed. Some OSes, such as
            Ubuntu Server, require PAE support from the CPU and cannot
            be run in a virtual machine without it.
          </para>
        </listitem>

        <listitem>
          <para>
            <emphasis role="bold">Enable Nested VT-x/AMD-V</emphasis>:
            Enables nested virtualization, with passthrough of hardware
            virtualization functions to the guest VM.
          </para>

          <para>
            This feature is available on host systems that use an AMD
            CPU. For Intel CPUs, the option is grayed out.
          </para>
        </listitem>

      </itemizedlist>

      <para>
        With virtual machines running modern server OSes, &product-name;
        also supports CPU hot-plugging. For details, see
        <xref linkend="cpuhotplug" />.
      </para>

    </sect2>

    <sect2 id="settings-acceleration">

      <title>Acceleration Tab</title>

      <para>
        On this tab, you can configure &product-name; to use hardware
        virtualization extensions that your host CPU supports.
      </para>

      <itemizedlist>

        <listitem>
          <para>
            <emphasis role="bold">Paravirtualization
            Interface:</emphasis> &product-name; provides
            paravirtualization interfaces to improve time-keeping
            accuracy and performance of guest OSes. The options
            available are documented under the
            <computeroutput>paravirtprovider</computeroutput> option in
            <xref linkend="vboxmanage-modifyvm" />. For further details
            on the paravirtualization providers, see
            <xref linkend="gimproviders" />.
          </para>
        </listitem>

        <listitem>
          <para>
            <emphasis role="bold">Hardware Virtualization:</emphasis>
            You can select for each virtual machine individually whether
            &product-name; should use software or hardware
            virtualization.
          </para>

          <itemizedlist>

            <listitem>
              <para>
                <emphasis role="bold">Enable VT-x/AMD-V:</emphasis>
                Enables Intel VT-x and AMD-V hardware extensions if the
                host CPU supports them.
              </para>
            </listitem>

            <listitem>
              <para>
                <emphasis role="bold">Enable Nested Paging:</emphasis>
                If the host CPU supports the nested paging (AMD-V) or
                EPT (Intel VT-x) features, then you can expect a
                significant performance increase by enabling nested
                paging in addition to hardware virtualization. For
                technical details, see <xref linkend="nestedpaging" />.
                For Intel EPT security recommendations, see
                <xref linkend="sec-rec-cve-2018-3646" />.
              </para>
            </listitem>

          </itemizedlist>

          <para>
            Advanced users may be interested in technical details about
            software versus hardware virtualization. See
            <xref linkend="hwvirt" />.
          </para>
        </listitem>

      </itemizedlist>

      <para>
        In most cases, the default settings on the
        <emphasis role="bold">Acceleration</emphasis> tab will work
        well. &product-name; selects sensible defaults, depending on the
        OS that you selected when you created the virtual machine. In
        certain situations, however, you may want to change the
        preconfigured defaults.
      </para>

    </sect2>

  </sect1>

  <sect1 id="settings-display">

    <title>Display Settings</title>

    <para>
      The following tabs are available for configuring the display for a
      virtual machine.
    </para>

    <sect2 id="settings-screen">

      <title>Screen Tab</title>

      <itemizedlist>

        <listitem>
          <para>
            <emphasis role="bold">Video Memory:</emphasis> Sets the size
            of the memory provided by the virtual graphics card
            available to the guest, in MB. As with the main memory, the
            specified amount will be allocated from the host's resident
            memory. Based on the amount of video memory, higher
            resolutions and color depths may be available.
          </para>

          <para>
            The GUI will show a warning if the amount of video memory is
            too small to be able to switch the VM into full screen mode.
            The minimum value depends on the number of virtual monitors,
            the screen resolution and the color depth of the host
            display as well as on the use of <emphasis>3D
            acceleration</emphasis> and <emphasis>2D video
            acceleration</emphasis>. A rough estimate is
            (<emphasis>color depth</emphasis> / 8) x <emphasis>vertical
            pixels</emphasis> x <emphasis>horizontal pixels</emphasis> x
            <emphasis>number of screens</emphasis> = <emphasis>number of
            bytes</emphasis>. Extra memory may be required if display
            acceleration is used.
          </para>
        </listitem>

        <listitem>
          <para>
            <emphasis role="bold">Monitor Count:</emphasis> With this
            setting, &product-name; can provide more than one virtual
            monitor to a virtual machine. If a guest OS supports
            multiple attached monitors, &product-name; can pretend that
            multiple virtual monitors are present. Up to eight such
            virtual monitors are supported.
          </para>

          <para>
            The output of the multiple monitors are displayed on the
            host in multiple VM windows which are running side by side.
            However, in full screen and seamless mode, they use the
            available physical monitors attached to the host. As a
            result, for full screen and seamless modes to work with
            multiple monitors, you will need at least as many physical
            monitors as you have virtual monitors configured, or
            &product-name; will report an error.
          </para>

          <para>
            You can configure the relationship between guest and host
            monitors using the <emphasis role="bold">View</emphasis>
            menu by pressing Host key + Home when you are in full screen
            or seamless mode.
          </para>

          <para>
            See also <xref linkend="KnownIssues" />.
          </para>
        </listitem>

        <listitem>
          <para>
            <emphasis role="bold">Scale Factor:</emphasis> Enables
            scaling of the display size. For multiple monitor displays,
            you can set the scale factor for individual monitors, or
            globally for all of the monitors. Use the slider to select a
            scaling factor up to 200%.
          </para>

          <para>
            You can set a default scale factor for all VMs. Use the
            <emphasis role="bold">Display</emphasis> tab in the Global
            Settings dialogs.
          </para>
        </listitem>

        <listitem>
          <para>
            <emphasis role="bold">Enable 3D Acceleration:</emphasis> If
            a virtual machine has Guest Additions installed, you can
            select here whether the guest should support accelerated 3D
            graphics. See <xref linkend="guestadd-3d" />.
          </para>
        </listitem>

        <listitem>
          <para>
            <emphasis role="bold">Enable 2D Video
            Acceleration:</emphasis> If a virtual machine with Microsoft
            Windows has Guest Additions installed, you can select here
            whether the guest should support accelerated 2D video
            graphics. See <xref linkend="guestadd-2d" />.
          </para>
        </listitem>

        <listitem>
          <para>
            <emphasis role="bold">Graphics Controller:</emphasis>
            Specifies the graphics adapter type used by the guest VM.
            Note that you must install the Guest Additions on the guest
            VM to specify the VBoxSVGA or VMSVGA graphics controller.
            The following options are available:
          </para>

          <itemizedlist>

            <listitem>
              <para>
                <emphasis role="bold">VBoxSVGA:</emphasis> The default
                graphics controller for new VMs that use Linux or
                Windows 7 or later.
              </para>

              <para>
                This graphics controller improves performance and 3D
                support when compared to the legacy VBoxVGA option.
              </para>
            </listitem>

            <listitem>
              <para>
                <emphasis role="bold">VBoxVGA:</emphasis> Use this
                graphics controller for legacy guest OSes. This is the
                default graphics controller for Windows versions before
                Windows 7.
              </para>
            </listitem>

            <listitem>
              <para>
                <emphasis role="bold">VMSVGA:</emphasis> Use this
                graphics controller to emulate a VMware SVGA graphics
                device.
              </para>
            </listitem>

            <listitem>
              <para>
                <emphasis role="bold">None:</emphasis> Does not emulate
                a graphics adapter type.
              </para>
            </listitem>

          </itemizedlist>
        </listitem>

      </itemizedlist>

    </sect2>

    <sect2 id="settings-remote-display">

      <title>Remote Display Tab</title>

      <para>
        On the <emphasis role="bold">Remote Display</emphasis> tab, if
        the VirtualBox Remote Display Extension (VRDE) is installed, you
        can enable the VRDP server that is built into &product-name;.
        This enables you to connect to the console of the virtual
        machine remotely with any standard RDP viewer, such as
        <command>mstsc.exe</command> that comes with Microsoft Windows.
        On Linux and Oracle Solaris systems you can use the standard
        open source <command>rdesktop</command> program. These features
        are described in <xref linkend="vrde" />.
      </para>

      <itemizedlist>

        <listitem>
          <para>
            <emphasis role="bold">Enable Server:</emphasis> Select this
            check box and configure settings for the remote display
            connection.
          </para>
        </listitem>

      </itemizedlist>

    </sect2>

    <sect2 id="settings-capture">

      <title>Recording Tab</title>

      <para>
        On the <emphasis role="bold">Recording</emphasis> tab you can
        enable video and audio recording for a virtual machine and
        change related settings. Note that these features can be enabled
        and disabled while a VM is running.
      </para>

      <itemizedlist>

        <listitem>
          <para>
            <emphasis role="bold">Enable Recording:</emphasis> Select
            this check box and select a <emphasis role="bold">Recording
            Mode</emphasis> option.
          </para>
        </listitem>

        <listitem>
          <para>
            <emphasis role="bold">Recording Mode:</emphasis> You can
            choose to record video, audio, or both video and audio.
          </para>

          <para>
            Some settings on the
            <emphasis role="bold">Recording</emphasis> tab may be grayed
            out, depending on the <emphasis role="bold">Recording
            Mode</emphasis> setting.
          </para>
        </listitem>

        <listitem>
          <para>
            <emphasis role="bold">File Path:</emphasis> The file where
            the recording is saved.
          </para>
        </listitem>

        <listitem>
          <para>
            <emphasis role="bold">Frame Size:</emphasis> The video
            resolution of the recorded video, in pixels. The drop-down
            list enables you to select from common frame sizes.
          </para>
        </listitem>

        <listitem>
          <para>
            <emphasis role="bold">Frame Rate:</emphasis> Use the slider
            to set the maximum number of video frames per second (FPS)
            to record. Frames that have a higher frequency are skipped.
            Increasing this value reduces the number of skipped frames
            and increases the file size.
          </para>
        </listitem>

        <listitem>
          <para>
            <emphasis role="bold">Quality:</emphasis> Use the slider to
            set the the bit rate of the video in kilobits per second.
            Increasing this value improves the appearance of the video
            at the cost of an increased file size.
          </para>
        </listitem>

        <listitem>
          <para>
            <emphasis role="bold">Audio Quality:</emphasis> Use the
            slider to set the quality of the audio recording. Increasing
            this value improves the audio quality at the cost of an
            increased file size.
          </para>
        </listitem>

        <listitem>
          <para>
            <emphasis role="bold">Screens:</emphasis> For a multiple
            monitor display, you can select which screens to record
            video from.
          </para>
        </listitem>

      </itemizedlist>

      <para>
        As you adjust the video and audio recording settings, the
        approximate output file size for a five minute video is shown.
      </para>

    </sect2>

  </sect1>

  <sect1 id="settings-storage">

    <title>Storage Settings</title>

    <para>
      The <emphasis role="bold">Storage</emphasis> category in the VM
      settings enables you to connect virtual hard disk, CD/DVD, and
      floppy images and drives to your virtual machine.
    </para>

    <para>
      In a real PC, so-called <emphasis>storage controllers</emphasis>
      connect physical disk drives to the rest of the computer.
      Similarly, &product-name; presents virtual storage controllers to
      a virtual machine. Under each controller, the virtual devices,
      such as hard disks, CD/DVD or floppy drives, attached to the
      controller are shown.
    </para>

    <note>
      <para>
        This section gives a quick introduction to the &product-name;
        storage settings. See <xref linkend="storage" /> for a full
        description of the available storage settings in &product-name;.
      </para>
    </note>

    <para>
      If you have used the <emphasis role="bold">Create VM</emphasis>
      wizard to create a machine, you will normally see something like
      the following:
    </para>

    <figure id="fig-storage-settings">
      <title>Storage Settings for a Virtual Machine</title>
      <mediaobject>
        <imageobject>
          <imagedata align="center" fileref="images/vm-settings-harddisk.png"
                     width="10cm" />
        </imageobject>
      </mediaobject>
    </figure>

    <para>
      Depending on the guest OS type that you selected when you created
      the VM, a new VM includes the following storage devices:
    </para>

    <itemizedlist>

      <listitem>
        <para>
          <emphasis role="bold">IDE controller.</emphasis> A virtual
          CD/DVD drive is attached to the secondary master port of the
          IDE controller.
        </para>
      </listitem>

      <listitem>
        <para>
          <emphasis role="bold">SATA controller.</emphasis> This is a
          modern type of storage controller for higher hard disk data
          throughput, to which the virtual hard disks are attached.
          Initially you will normally have one such virtual disk, but as
          shown in the previous screenshot, you can have more than one.
          Each is represented by a disk image file, such as a VDI file
          in this example.
        </para>
      </listitem>

    </itemizedlist>

    <para>
      If you created your VM with an older version of &product-name;,
      the default storage layout may differ. You might then only have an
      IDE controller to which both the CD/DVD drive and the hard disks
      have been attached. This might also apply if you selected an older
      OS type when you created the VM. Since older OSes do not support
      SATA without additional drivers, &product-name; will make sure
      that no such devices are present initially. See
      <xref linkend="harddiskcontrollers" />.
    </para>

    <para>
      &product-name; also provides a <emphasis>floppy
      controller</emphasis>. You cannot add devices other than floppy
      drives to this controller. Virtual floppy drives, like virtual
      CD/DVD drives, can be connected to either a host floppy drive, if
      you have one, or a disk image, which in this case must be in RAW
      format.
    </para>

    <para>
      You can modify these media attachments freely. For example, if you
      wish to copy some files from another virtual disk that you
      created, you can connect that disk as a second hard disk, as in
      the above screenshot. You could also add a second virtual CD/DVD
      drive, or change where these items are attached. The following
      options are available:
    </para>

    <itemizedlist>

      <listitem>
        <para>
          To <emphasis role="bold">add another virtual hard disk, or a
          CD/DVD or floppy drive</emphasis>, select the storage
          controller to which it should be added (IDE, SATA, SCSI, SAS,
          floppy controller) and then click the
          <emphasis role="bold">Add Disk</emphasis> button below the
          tree. You can then either select <emphasis role="bold">Add
          CD/DVD Device</emphasis> or <emphasis role="bold">Add Hard
          Disk</emphasis>. If you clicked on a floppy controller, you
          can add a floppy drive instead. Alternatively, right-click on
          the storage controller and select a menu item there.
        </para>

        <para>
          On the right part of the window, you can then set the
          following:
        </para>

        <orderedlist>

          <listitem>
            <para>
              The <emphasis role="bold">device slot</emphasis> of the
              controller that the virtual disk is connected to. IDE
              controllers have four slots which have traditionally been
              called primary master, primary slave, secondary master,
              and secondary slave. By contrast, SATA and SCSI
              controllers offer you up to 30 slots for attaching virtual
              devices.
            </para>
          </listitem>

          <listitem>
            <para>
              The <emphasis role="bold">image file</emphasis> to use.
            </para>

            <itemizedlist>

              <listitem>
                <para>
                  For virtual hard disks, a button with a drop-down list
                  appears on the right, offering you to either select a
                  <emphasis role="bold">virtual hard disk
                  file</emphasis> using a standard file dialog or to
                  <emphasis role="bold">create a new hard
                  disk</emphasis> (image file). The latter option
                  displays the <emphasis role="bold">Create New
                  Disk</emphasis> wizard, described in
                  <xref linkend="gui-createvm" />.
                </para>

                <para>
                  For virtual floppy drives, a dialog enables you to
                  create and format a new floppy disk image
                  automatically.
                </para>

                <para>
                  For details on the image file types that are
                  supported, see <xref linkend="vdidetails" />.
                </para>
              </listitem>

              <listitem>
                <para>
                  For virtual CD/DVD drives, the image files will
                  typically be in the standard ISO format instead. Most
                  commonly, you will select this option when installing
                  an OS from an ISO file that you have obtained from the
                  Internet. For example, most Linux distributions are
                  available in this way.
                </para>

                <para>
                  For virtual CD/DVD drives, the following additional
                  options are available:
                </para>

                <itemizedlist>

                  <listitem>
                    <para>
                      If you select <emphasis role="bold">Host
                      Drive</emphasis> from the list, then the physical
                      device of the host computer is connected to the
                      VM, so that the guest OS can read from and write
                      to your physical device. This is, for instance,
                      useful if you want to install Windows from a real
                      installation CD. In this case, select your host
                      drive from the drop-down list presented.
                    </para>

                    <para>
                      If you want to write, or burn, CDs or DVDs using
                      the host drive, you need to also enable the
                      <emphasis role="bold">Passthrough</emphasis>
                      option. See <xref linkend="storage-cds" />.
                    </para>
                  </listitem>

                  <listitem>
                    <para>
                      If you select <emphasis role="bold">Remove Disk
                      from Virtual Drive</emphasis>, &product-name; will
                      present an empty CD/DVD drive to the guest into
                      which no media has been inserted.
                    </para>
                  </listitem>

                </itemizedlist>
              </listitem>

            </itemizedlist>
          </listitem>

        </orderedlist>
      </listitem>

      <listitem>
        <para>
          To <emphasis role="bold">remove an attachment</emphasis>,
          either select it and click on the
          <emphasis role="bold">Remove</emphasis> icon at the bottom, or
          right-click on it and select the menu item.
        </para>
      </listitem>

    </itemizedlist>

    <para>
      Removable media, such as CD/DVDs and floppies, can be changed
      while the guest is running. Since the
      <emphasis role="bold">Settings</emphasis> dialog is not available
      at that time, you can also access these settings from the
      <emphasis role="bold">Devices</emphasis> menu of your virtual
      machine window.
    </para>

  </sect1>

  <sect1 id="settings-audio">

    <title>Audio Settings</title>

    <para>
      The <emphasis role="bold">Audio</emphasis> section in a virtual
      machine's <emphasis role="bold">Settings</emphasis> window
      determines whether the VM will detect a connected sound card, and
      if the audio output should be played on the host system.
    </para>

    <para>
      To enable audio for a guest, select the
      <emphasis role="bold">Enable Audio</emphasis> check box. The
      following settings are available:
    </para>

    <itemizedlist>

      <listitem>
        <para>
          <emphasis role="bold">Host Audio Driver:</emphasis> The audio
          driver that &product-name; uses on the host. On a Linux host,
          depending on your host configuration, you can select between
          the OSS, ALSA, or the PulseAudio subsystem. On newer Linux
          distributions, the PulseAudio subsystem is preferred.
        </para>

        <para>
          Only OSS is supported on Oracle Solaris hosts. The Oracle
          Solaris Audio audio backend is no longer supported on Oracle
          Solaris hosts.
        </para>
      </listitem>

      <listitem>
        <para>
          <emphasis role="bold">Audio Controller:</emphasis> You can
          choose between the emulation of an Intel AC'97 controller, an
          Intel HD Audio controller, or a SoundBlaster 16 card.
        </para>
      </listitem>

      <listitem>
        <para>
          <emphasis role="bold">Enable Audio Output:</emphasis> Enables
          audio output only for the VM.
        </para>
      </listitem>

      <listitem>
        <para>
          <emphasis role="bold">Enable Audio Input:</emphasis> Enables
          audio input only for the VM.
        </para>
      </listitem>

    </itemizedlist>

  </sect1>

  <sect1 id="settings-network">

    <title>Network Settings</title>

    <para>
      The <emphasis role="bold">Network</emphasis> section in a virtual
      machine's <emphasis role="bold">Settings</emphasis> window enables
      you to configure how &product-name; presents virtual network cards
      to your VM, and how they operate.
    </para>

    <para>
      When you first create a virtual machine, &product-name; by default
      enables one virtual network card and selects the Network Address
      Translation (NAT) mode for it. This way the guest can connect to
      the outside world using the host's networking and the outside
      world can connect to services on the guest which you choose to
      make visible outside of the virtual machine.
    </para>

    <para>
      This default setup is good for the majority of &product-name;
      users. However, &product-name; is extremely flexible in how it can
      virtualize networking. It supports many virtual network cards per
      virtual machine. The first four virtual network cards can be
      configured in detail in the VirtualBox Manager window. Additional
      network cards can be configured using the
      <command>VBoxManage</command> command.
    </para>

    <para>
      Many networking options are available. See
      <xref linkend="networkingdetails" /> for more information.
    </para>

  </sect1>

  <sect1 id="serialports">

    <title>Serial Ports</title>

    <para>
      &product-name; supports the use of virtual serial ports in a
      virtual machine.
    </para>

    <para>
      Ever since the original IBM PC, personal computers have been
      equipped with one or two serial ports, also called COM ports by
      DOS and Windows. Serial ports were commonly used with modems, and
      some computer mice used to be connected to serial ports before USB
      became commonplace.
    </para>

    <para>
      While serial ports are no longer as common as they used to be,
      there are still some important uses left for them. For example,
      serial ports can be used to set up a primitive network over a
      null-modem cable, in case Ethernet is not available. Also, serial
      ports are indispensable for system programmers needing to do
      kernel debugging, since kernel debugging software usually
      interacts with developers over a serial port. With virtual serial
      ports, system programmers can do kernel debugging on a virtual
      machine instead of needing a real computer to connect to.
    </para>

    <para>
      If a virtual serial port is enabled, the guest OS sees a standard
      16550A compatible UART device. Other UART types can be configured
      using the <command>VBoxManage modifyvm</command> command. Both
      receiving and transmitting data is supported. How this virtual
      serial port is then connected to the host is configurable, and the
      details depend on your host OS.
    </para>

    <para>
      You can use either the Settings tabs or the
      <command>VBoxManage</command> command to set up virtual serial
      ports. For the latter, see <xref linkend="vboxmanage-modifyvm" />
      for information on the <computeroutput>--uart</computeroutput>,
      <computeroutput>--uartmode</computeroutput> and
      <computeroutput>--uarttype</computeroutput> options.
    </para>

    <para>
      You can configure up to four virtual serial ports per virtual
      machine. For each device, you must set the following:
    </para>

    <orderedlist>

      <listitem>
        <para>
          <emphasis role="bold">Port Number:</emphasis> This determines
          the serial port that the virtual machine should see. For best
          results, use the traditional values as follows:
        </para>

        <itemizedlist>

          <listitem>
            <para>
              COM1: I/O base 0x3F8, IRQ 4
            </para>
          </listitem>

          <listitem>
            <para>
              COM2: I/O base 0x2F8, IRQ 3
            </para>
          </listitem>

          <listitem>
            <para>
              COM3: I/O base 0x3E8, IRQ 4
            </para>
          </listitem>

          <listitem>
            <para>
              COM4: I/O base 0x2E8, IRQ 3
            </para>
          </listitem>

        </itemizedlist>

        <para>
          You can also configure a user-defined serial port. Enter an
          I/O base address and interrupt (IRQ).
        </para>

        <para>
          See also
          <ulink
              url="http://en.wikipedia.org/wiki/COM_(hardware_interface)">http://en.wikipedia.org/wiki/COM_(hardware_interface)</ulink>.
        </para>
      </listitem>

      <listitem>
        <para>
          <emphasis role="bold">Port Mode:</emphasis> What the virtual
          port is connected to. For each virtual serial port, you have
          the following options:
        </para>

        <itemizedlist>

          <listitem>
            <para>
              <emphasis role="bold">Disconnected:</emphasis> The guest
              will see the device, but it will behave as if no cable had
              been connected to it.
            </para>
          </listitem>

          <listitem>
            <para>
              <emphasis role="bold">Host Device:</emphasis> Connects the
              virtual serial port to a physical serial port on your
              host. On a Windows host, this will be a name like
              <computeroutput>COM1</computeroutput>. On Linux or Oracle
              Solaris hosts, it will be a device node like
              <computeroutput>/dev/ttyS0</computeroutput>.
              &product-name; will then simply redirect all data received
              from and sent to the virtual serial port to the physical
              device.
            </para>
          </listitem>

          <listitem>
            <para>
              <emphasis role="bold">Host Pipe:</emphasis> Configure
              &product-name; to connect the virtual serial port to a
              software pipe on the host. This depends on your host OS,
              as follows:
            </para>

            <itemizedlist>

              <listitem>
                <para>
                  On a Windows host, data will be sent and received
                  through a named pipe. The pipe name must be in the
                  format
                  <computeroutput>\\.\pipe\&lt;name&gt;</computeroutput>
                  where <computeroutput>&lt;name&gt;</computeroutput>
                  should identify the virtual machine but may be freely
                  chosen.
                </para>
              </listitem>

              <listitem>
                <para>
                  On a Mac, Linux, or Oracle Solaris host, a local
                  domain socket is used instead. The socket filename
                  must be chosen such that the user running
                  &product-name; has sufficient privileges to create and
                  write to it. The <computeroutput>/tmp</computeroutput>
                  directory is often a good candidate.
                </para>

                <para>
                  On Linux there are various tools which can connect to
                  a local domain socket or create one in server mode.
                  The most flexible tool is
                  <computeroutput>socat</computeroutput> and is
                  available as part of many distributions.
                </para>
              </listitem>

            </itemizedlist>

            <para>
              In this case, you can configure whether &product-name;
              should create the named pipe, or the local domain socket
              non-Windows hosts, itself or whether &product-name; should
              assume that the pipe or socket exists already. With the
              <command>VBoxManage</command> command-line options, this
              is referred to as server mode or client mode,
              respectively.
            </para>

            <para>
              For a direct connection between two virtual machines,
              corresponding to a null-modem cable, simply configure one
              VM to create a pipe or socket and another to attach to it.
            </para>
          </listitem>

          <listitem>
            <para>
              <emphasis role="bold">Raw File:</emphasis> Send the
              virtual serial port output to a file. This option is very
              useful for capturing diagnostic output from a guest. Any
              file may be used for this purpose, as long as the user
              running &product-name; has sufficient privileges to create
              and write to the file.
            </para>
          </listitem>

          <listitem>
            <para>
              <emphasis role="bold">TCP Socket:</emphasis> Useful for
              forwarding serial traffic over TCP/IP, acting as a server,
              or it can act as a TCP client connecting to other servers.
              This option enables a remote machine to directly connect
              to the guest's serial port using TCP.
            </para>

            <itemizedlist>

              <listitem>
                <para>
                  <emphasis role="bold">TCP Server:</emphasis> Deselect
                  the <emphasis role="bold">Connect to Existing
                  Pipe/Socket</emphasis> check box and specify the port
                  number in the
                  <emphasis role="bold">Path/Address</emphasis> field.
                  This is typically 23 or 2023. Note that on UNIX-like
                  systems you will have to use a port a number greater
                  than 1024 for regular users.
                </para>

                <para>
                  The client can use software such as
                  <command>PuTTY</command> or the
                  <command>telnet</command> command line tool to access
                  the TCP Server.
                </para>
              </listitem>

              <listitem>
                <para>
                  <emphasis role="bold">TCP Client:</emphasis> To create
                  a virtual null-modem cable over the Internet or LAN,
                  the other side can connect using TCP by specifying
                  <computeroutput>hostname:port</computeroutput> in the
                  <emphasis role="bold">Path/Address</emphasis> field.
                  The TCP socket will act in client mode if you select
                  the <emphasis role="bold">Connect to Existing
                  Pipe/Socket</emphasis> check box.
                </para>
              </listitem>

            </itemizedlist>
          </listitem>

        </itemizedlist>
      </listitem>

    </orderedlist>

    <para>
      Up to four serial ports can be configured per virtual machine, but
      you can pick any port numbers out of the above. However, serial
      ports cannot reliably share interrupts. If both ports are to be
      used at the same time, they must use different interrupt levels,
      for example COM1 and COM2, but not COM1 and COM3.
    </para>

  </sect1>

  <sect1 id="usb-support">

    <title>USB Support</title>

    <sect2 id="settings-usb">

      <title>USB Settings</title>

      <para>
        The <emphasis role="bold">USB</emphasis> section in a virtual
        machine's <emphasis role="bold">Settings</emphasis> window
        enables you to configure &product-name;'s sophisticated USB
        support.
      </para>

      <para>
        &product-name; can enable virtual machines to access the USB
        devices on your host directly. To achieve this, &product-name;
        presents the guest OS with a virtual USB controller. As soon as
        the guest system starts using a USB device, it will appear as
        unavailable on the host.
      </para>

      <note>
        <itemizedlist>

          <listitem>
            <para>
              Be careful with USB devices that are currently in use on
              the host. For example, if you allow your guest to connect
              to your USB hard disk that is currently mounted on the
              host, when the guest is activated, it will be disconnected
              from the host without a proper shutdown. This may cause
              data loss.
            </para>
          </listitem>

          <listitem>
            <para>
              Oracle Solaris hosts have a few known limitations
              regarding USB support. See <xref linkend="KnownIssues" />.
            </para>
          </listitem>

        </itemizedlist>
      </note>

      <para>
        In addition to allowing a guest access to your local USB
        devices, &product-name; even enables your guests to connect to
        remote USB devices by use of the VirtualBox Remote Desktop
        Extension (VRDE). See <xref linkend="usb-over-rdp" />.
      </para>

      <para>
        To enable USB for a VM, select the <emphasis role="bold">Enable
        USB Controller</emphasis> check box. The following settings are
        available:
      </para>

      <itemizedlist>

        <listitem>
          <para>
            <emphasis role="bold">USB Controller:</emphasis> Selects a
            controller with the specified level of USB support, as
            follows:
          </para>

          <itemizedlist>

            <listitem>
              <para>
                OHCI for USB 1.1
              </para>
            </listitem>

            <listitem>
              <para>
                EHCI for USB 2.0. This also enables OHCI.
              </para>
            </listitem>

            <listitem>
              <para>
                xHCI for USB 3.0. This supports all USB speeds.
              </para>
            </listitem>

          </itemizedlist>

          <note>
            <para>
              The xHCI and EHCI controllers are shipped as an
              &product-name; extension package, which must be installed
              separately. See <xref linkend="intro-installing" />.
            </para>
          </note>
        </listitem>

        <listitem>
          <para>
            <emphasis role="bold">USB Device Filters:</emphasis> When
            USB support is enabled for a VM, you can determine in detail
            which devices will be automatically attached to the guest.
            For this, you can create filters by specifying certain
            properties of the USB device. USB devices with a matching
            filter will be automatically passed to the guest once they
            are attached to the host. USB devices without a matching
            filter can be passed manually to the guest, for example by
            using the <emphasis role="bold">Devices</emphasis>,
            <emphasis role="bold">USB</emphasis> menu.
          </para>

          <para>
            Clicking on the <emphasis role="bold">+</emphasis> button to
            the right of the <emphasis role="bold">USB Device
            Filters</emphasis> window creates a new filter. You can give
            the filter a name, for later reference, and specify the
            filter criteria. The more criteria you specify, the more
            precisely devices will be selected. For instance, if you
            specify only a vendor ID of 046d, all devices produced by
            Logitech will be available to the guest. If you fill in all
            fields, on the other hand, the filter will only apply to a
            particular device model from a particular vendor, and not
            even to other devices of the same type with a different
            revision and serial number.
          </para>

          <para>
            In detail, the following criteria are available:
          </para>

          <itemizedlist>

            <listitem>
              <para>
                <emphasis role="bold">Vendor and Product ID.</emphasis>
                With USB, each vendor of USB products carries an
                identification number that is unique world-wide, called
                the <emphasis>vendor ID</emphasis>. Similarly, each line
                of products is assigned a <emphasis>product
                ID</emphasis> number. Both numbers are commonly written
                in hexadecimal, and a colon separates the vendor from
                the product ID. For example,
                <computeroutput>046d:c016</computeroutput> stands for
                Logitech as a vendor, and the M-UV69a Optical Wheel
                Mouse product.
              </para>

              <para>
                Alternatively, you can also specify
                <emphasis role="bold">Manufacturer</emphasis> and
                <emphasis role="bold">Product</emphasis> by name.
              </para>

              <para>
                To list all the USB devices that are connected to your
                host machine with their respective vendor IDs and
                product IDs, use the following command:
              </para>

<screen>VBoxManage list usbhost</screen>

              <para>
                On Windows, you can also see all USB devices that are
                attached to your system in the Device Manager. On Linux,
                you can use the <command>lsusb</command> command.
              </para>
            </listitem>

            <listitem>
              <para>
                <emphasis role="bold">Serial Number.</emphasis> While
                vendor ID and product ID are quite specific to identify
                USB devices, if you have two identical devices of the
                same brand and product line, you will also need their
                serial numbers to filter them out correctly.
              </para>
            </listitem>

            <listitem>
              <para>
                <emphasis role="bold">Remote.</emphasis> This setting
                specifies whether the device will be local only, remote
                only, such as over VRDP, or either.
              </para>
            </listitem>

          </itemizedlist>

          <para>
            On a Windows host, you will need to unplug and reconnect a
            USB device to use it after creating a filter for it.
          </para>

          <para>
            As an example, you could create a new USB filter and specify
            a vendor ID of 046d for Logitech, Inc, a manufacturer index
            of 1, and "not remote". Then any USB devices on the host
            system produced by Logitech, Inc with a manufacturer index
            of 1 will be visible to the guest system.
          </para>

          <para>
            Several filters can select a single device. For example, a
            filter which selects all Logitech devices, and one which
            selects a particular webcam.
          </para>

          <para>
            You can deactivate filters without deleting them by
            deselecting the check box next to the filter name.
          </para>
        </listitem>

      </itemizedlist>

    </sect2>

    <sect2 id="usb-implementation-notes">

      <title>Implementation Notes for Windows and Linux Hosts</title>

      <para>
        On Windows hosts, a kernel mode device driver provides USB proxy
        support. It implements both a USB monitor, which enables
        &product-name; to capture devices when they are plugged in, and
        a USB device driver to claim USB devices for a particular
        virtual machine. As opposed to &product-name; versions before
        1.4.0, system reboots are no longer necessary after installing
        the driver. Also, you no longer need to replug devices for
        &product-name; to claim them.
      </para>

      <para>
        On newer Linux hosts, &product-name; accesses USB devices
        through special files in the file system. When &product-name; is
        installed, these are made available to all users in the
        <computeroutput>vboxusers</computeroutput> system group. In
        order to be able to access USB from guest systems, make sure
        that you are a member of this group.
      </para>

      <para>
        On older Linux hosts, USB devices are accessed using the
        <computeroutput>usbfs</computeroutput> file system. Therefore,
        the user executing &product-name; needs read and write
        permission to the USB file system. Most distributions provide a
        group, such as <computeroutput>usbusers</computeroutput>, which
        the &product-name; user needs to be added to. Also,
        &product-name; can only proxy to virtual machines USB devices
        which are not claimed by a Linux host USB driver. The
        <computeroutput>Driver=</computeroutput> entry in
        <computeroutput>/proc/bus/usb/devices</computeroutput> will show
        you which devices are currently claimed. See also
        <xref
      linkend="ts_usb-linux" /> for details about
        <computeroutput>usbfs</computeroutput>.
      </para>

    </sect2>

  </sect1>

  <sect1 id="shared-folders">

    <title>Shared Folders</title>

    <para>
      Shared folders enable you to easily exchange data between a
      virtual machine and your host. This feature requires that the
      &product-name; Guest Additions be installed in a virtual machine
      and is described in detail in <xref linkend="sharedfolders" />.
    </para>

  </sect1>

  <sect1 id="user-interface">

    <title>User Interface</title>

    <para>
      The <emphasis role="bold">User Interface</emphasis> section
      enables you to change certain aspects of the user interface of
      this VM.
    </para>

    <itemizedlist>

      <listitem>
        <para>
          <emphasis role="bold">Menu Bar:</emphasis> This widget enables
          you to disable menus by clicking on the menu to release it,
          menu entries by deselecting the check box of the entry to
          disable it and the complete menu bar by deselecting the
          rightmost check box.
        </para>
      </listitem>

      <listitem>
        <para>
          <emphasis role="bold">Mini ToolBar:</emphasis> In full screen
          or seamless mode, &product-name; can display a small toolbar
          that contains some of the items that are normally available
          from the virtual machine's menu bar. This toolbar reduces
          itself to a small gray line unless you move the mouse over it.
          With the toolbar, you can return from full screen or seamless
          mode, control machine execution or enable certain devices. If
          you do not want to see the toolbar, disable this setting.
        </para>

        <para>
          The second setting enables you to show the toolbar at the top
          of the screen, instead of showing it at the bottom.
        </para>
      </listitem>

      <listitem>
        <para>
          <emphasis role="bold">Status Bar:</emphasis> This widget
          enables you to disable icons on the status bar by deselecting
          the check box of an icon to disable it, to rearrange icons by
          dragging and dropping the icon, and to disable the complete
          status bar by deselecting the leftmost check box.
        </para>
      </listitem>

    </itemizedlist>

  </sect1>

  <sect1 id="efi">

    <title>Alternative Firmware (EFI)</title>

    <para>
      &product-name; includes experimental support for the Extensible
      Firmware Interface (EFI), which is a new industry standard
      intended to eventually replace the legacy BIOS as the primary
      interface for bootstrapping computers and certain system services
      later.
    </para>

    <para>
      By default, &product-name; uses the BIOS firmware for virtual
      machines. To use EFI for a given virtual machine, you can enable
      EFI in the machine's <emphasis role="bold">Settings</emphasis>
      dialog. See <xref linkend="settings-motherboard"/>. Alternatively,
      use the <command>VBoxManage</command> command line interface as
      follows:
    </para>

<screen>VBoxManage modifyvm "VM name" --firmware efi</screen>

    <para>
      To switch back to using the BIOS:
    </para>

<screen>VBoxManage modifyvm "VM name" --firmware bios</screen>

    <para>
      One notable user of EFI is Apple Mac OS X. More recent Linux
      versions and Windows releases, starting with Vista, also offer
      special versions that can be booted using EFI.
    </para>

    <para>
      Another possible use of EFI in &product-name; is development and
      testing of EFI applications, without booting any OS.
    </para>

    <para>
      Note that the &product-name; EFI support is experimental and will
      be enhanced as EFI matures and becomes more widespread. Mac OS X,
      Linux, and newer Windows guests are known to work fine. Windows 7
      guests are unable to boot with the &product-name; EFI
      implementation.
    </para>

    <sect2 id="efividmode">

      <title>Video Modes in EFI</title>

      <para>
        EFI provides two distinct video interfaces: GOP (Graphics Output
        Protocol) and UGA (Universal Graphics Adapter). Modern OSes,
        such as Mac OS X, generally use GOP, while some older ones still
        use UGA. &product-name; provides a configuration option to
        control the graphics resolution for both interfaces, making the
        difference mostly irrelevant for users.
      </para>

      <para>
        The default resolution is 1024x768. To select a graphics
        resolution for EFI, use the following
        <command>VBoxManage</command> command:
      </para>

<screen>VBoxManage setextradata "VM name" VBoxInternal2/EfiGraphicsResolution HxV</screen>

      <para>
        Determine the horizontal resolution H and the vertical
        resolution V from the following list of default resolutions:
      </para>

      <variablelist>

        <varlistentry>
          <term>
            VGA
          </term>

          <listitem>
            <para>
              640x480, 32bpp, 4:3
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>
            SVGA
          </term>

          <listitem>
            <para>
              800x600, 32bpp, 4:3
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>
            XGA
          </term>

          <listitem>
            <para>
              1024x768, 32bpp, 4:3
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>
            XGA+
          </term>

          <listitem>
            <para>
              1152x864, 32bpp, 4:3
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>
            HD
          </term>

          <listitem>
            <para>
              1280x720, 32bpp, 16:9
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>
            WXGA
          </term>

          <listitem>
            <para>
              1280x800, 32bpp, 16:10
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>
            SXGA
          </term>

          <listitem>
            <para>
              1280x1024, 32bpp, 5:4
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>
            SXGA+
          </term>

          <listitem>
            <para>
              1400x1050, 32bpp, 4:3
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>
            WXGA+
          </term>

          <listitem>
            <para>
              1440x900, 32bpp, 16:10
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>
            HD+
          </term>

          <listitem>
            <para>
              1600x900, 32bpp, 16:9
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>
            UXGA
          </term>

          <listitem>
            <para>
              1600x1200, 32bpp, 4:3
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>
            WSXGA+
          </term>

          <listitem>
            <para>
              1680x1050, 32bpp, 16:10
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>
            Full HD
          </term>

          <listitem>
            <para>
              1920x1080, 32bpp, 16:9
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>
            WUXGA
          </term>

          <listitem>
            <para>
              1920x1200, 32bpp, 16:10
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>
            DCI 2K
          </term>

          <listitem>
            <para>
              2048x1080, 32bpp, 19:10
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>
            Full HD+
          </term>

          <listitem>
            <para>
              2160x1440, 32bpp, 3:2
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>
            Unnamed
          </term>

          <listitem>
            <para>
              2304x1440, 32bpp, 16:10
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>
            QHD
          </term>

          <listitem>
            <para>
              2560x1440, 32bpp, 16:9
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>
            WQXGA
          </term>

          <listitem>
            <para>
              2560x1600, 32bpp, 16:10
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>
            QWXGA+
          </term>

          <listitem>
            <para>
              2880x1800, 32bpp, 16:10
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>
            QHD+
          </term>

          <listitem>
            <para>
              3200x1800, 32bpp, 16:9
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>
            WQSXGA
          </term>

          <listitem>
            <para>
              3200x2048, 32bpp, 16:10
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>
            4K UHD
          </term>

          <listitem>
            <para>
              3840x2160, 32bpp, 16:9
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>
            WQUXGA
          </term>

          <listitem>
            <para>
              3840x2400, 32bpp, 16:10
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>
            DCI 4K
          </term>

          <listitem>
            <para>
              4096x2160, 32bpp, 19:10
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>
            HXGA
          </term>

          <listitem>
            <para>
              4096x3072, 32bpp, 4:3
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>
            UHD+
          </term>

          <listitem>
            <para>
              5120x2880, 32bpp, 16:9
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>
            WHXGA
          </term>

          <listitem>
            <para>
              5120x3200, 32bpp, 16:10
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>
            WHSXGA
          </term>

          <listitem>
            <para>
              6400x4096, 32bpp, 16:10
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>
            HUXGA
          </term>

          <listitem>
            <para>
              6400x4800, 32bpp, 4:3
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>
            8K UHD2
          </term>

          <listitem>
            <para>
              7680x4320, 32bpp, 16:9
            </para>
          </listitem>
        </varlistentry>

      </variablelist>

      <para>
        If this list of default resolution does not cover your needs,
        see <xref linkend="customvesa" />. Note that the color depth
        value specified in a custom video mode must be specified. Color
        depths of 8, 16, 24, and 32 are accepted. EFI assumes a color
        depth of 32 by default.
      </para>

      <para>
        The EFI default video resolution settings can only be changed
        when the VM is powered off.
      </para>

    </sect2>

    <sect2 id="efibootargs">

      <title>Specifying Boot Arguments</title>

      <para>
        It is currently not possible to manipulate EFI variables from
        within a running guest. For example, setting the "boot-args"
        variable by running the <computeroutput>nvram</computeroutput>
        tool in a Mac OS X guest will not work. As an alternative way,
        "VBoxInternal2/EfiBootArgs" extradata can be passed to a VM in
        order to set the "boot-args" variable. To change the "boot-args"
        EFI variable, use the following command:
      </para>

<screen>VBoxManage setextradata "VM name" VBoxInternal2/EfiBootArgs &lt;value&gt;</screen>

    </sect2>

  </sect1>

</chapter>