aboutsummaryrefslogtreecommitdiff
path: root/documentation/content/en/books/faq/_index.adoc
blob: 97646295ab9b549a49cd3a97931043cf8581623b (plain) (blame)
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
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
---
title: Frequently Asked Questions for FreeBSD 12.X and 13.X
authors: 
  - author: The FreeBSD Documentation Project
copyright: 1995-2022 The FreeBSD Documentation Project
description: Frequently Asked Questions, and answers, covering all aspects of FreeBSD
trademarks: ["freebsd", "ibm", "ieee", "adobe", "intel", "linux", "microsoft", "opengroup", "sun", "netbsd", "general"] 
bookOrder: 5
tags: ["FAQ", "FreeBSD FAQ"]
---

= Frequently Asked Questions for FreeBSD {rel2-relx} and {rel-relx}
:doctype: book
:toc: macro
:toclevels: 1
:icons: font
:sectnums:
:sectnumlevels: 6
:partnums:
:source-highlighter: rouge
:experimental:
:images-path: books/faq/
:rel-numbranch: 4
:rel-head: 14-CURRENT
:rel-head-relx: 14.X
:rel-head-releng: head/
:rel-relx: 13.X
:rel-stable: 13-STABLE
:rel-releng: stable/13/
:rel-relengdate: December 2018
:rel2-relx: 12.X
:rel2-stable: 12-STABLE
:rel2-releng: stable/12/
:rel2-relengdate: December 2018

ifdef::env-beastie[]
ifdef::backend-html5[]
include::shared/authors.adoc[]
include::shared/mirrors.adoc[]
include::shared/releases.adoc[]
include::shared/attributes/attributes-{{% lang %}}.adoc[]
include::shared/{{% lang %}}/teams.adoc[]
include::shared/{{% lang %}}/mailing-lists.adoc[]
include::shared/{{% lang %}}/urls.adoc[]
endif::[]
ifdef::backend-pdf,backend-epub3[]
include::../../../../../shared/asciidoctor.adoc[]
endif::[]
endif::[]

ifndef::env-beastie[]
include::../../../../../shared/asciidoctor.adoc[]
endif::[]

[.abstract-title]
Abstract

This is the Frequently Asked Questions (FAQ) for FreeBSD versions {rel-relx} and {rel2-relx}.
Every effort has been made to make this FAQ as informative as possible; if you have any suggestions as to how it may be improved, send them to the {freebsd-doc}.

The latest version of this document is always available from the extref:{faq}[FreeBSD website].
It may also be downloaded as one large link:.[HTML] file with HTTP or as a variety of other formats from the https://download.freebsd.org/doc/[FreeBSD FTP server].

'''

toc::[]

[[introduction]]
== Introduction

[[what-is-FreeBSD]]
=== What is FreeBSD?

FreeBSD is a modern operating system for desktops, laptops, servers, and embedded systems with support for a large number of https://www.FreeBSD.org/platforms/[platforms].

It is based on U.C. Berkeley's "4.4BSD-Lite" release, with some "4.4BSD-Lite2" enhancements.
It is also based indirectly on William Jolitz's port of U.C. Berkeley's "Net/2" to the i386(TM), known as "386BSD",
though very little of the 386BSD code remains.

FreeBSD is used by companies, Internet Service Providers, researchers, computer professionals, students and home users all over the world in their work, education and recreation.

For more detailed information on FreeBSD, refer to the extref:{handbook}[FreeBSD Handbook].

[[FreeBSD-goals]]
=== What is the goal of the FreeBSD Project?

The goal of the FreeBSD Project is to provide a stable and fast general purpose operating system that may be used for any purpose without strings attached.

[[bsd-license-restrictions]]
=== Does the FreeBSD license have any restrictions?

Yes.
Those restrictions do not control how the code is used, but how to treat the FreeBSD Project itself.
The license itself is available at https://www.FreeBSD.org/copyright/freebsd-license/[license] and can be summarized like this:

* Do not claim that you wrote this.
* Do not sue us if it breaks.
* Do not remove or modify the license.

Many of us have a significant investment in the project and would certainly not mind a little financial compensation now and then,
but we definitely do not insist on it.
We believe that our first and foremost "mission" is to provide code to any and all comers, and for whatever purpose, so that the code gets the widest possible use and provides the widest possible benefit.
This, we believe, is one of the most fundamental goals of Free Software and one that we enthusiastically support.

Code in our source tree which falls under the https://www.FreeBSD.org/copyright/COPYING[GNU General Public License (GPL)] or https://www.FreeBSD.org/copyright/COPYING.LIB[GNU Library General Public License (LGPL)] comes with slightly more strings attached, though at least on the side of enforced access rather than the usual opposite.
Due to the additional complexities that can evolve in the commercial use of GPL software, we do, however, endeavor to replace such software with submissions under the more relaxed https://www.FreeBSD.org/copyright/freebsd-license/[FreeBSD license] whenever possible.

[[replace-current-OS]]
=== Can FreeBSD replace my current operating system?

For most people, yes.
But this question is not quite that cut-and-dried.

Most people do not actually use an operating system.
They use applications.
The applications are what really use the operating system.
FreeBSD is designed to provide a robust and full-featured environment for applications.
It supports a wide variety of web browsers, office suites, email readers, graphics programs, programming environments, network servers, and much more.
Most of these applications can be managed through the https://www.FreeBSD.org/ports/[Ports Collection].

If an application is only available on one operating system, that operating system cannot just be replaced.
Chances are, there is a very similar application on FreeBSD, however.
As a solid office or Internet server or a reliable workstation, FreeBSD will almost certainly do everything you need.
Many computer users across the world, including both novices and experienced UNIX(R) administrators, use FreeBSD as their only desktop operating system.

Users migrating to FreeBSD from another UNIX(R)-like environment will find FreeBSD to be similar.
Windows(R) and Mac OS(R) users may be interested in instead using https://www.ghostbsd.org/[GhostBSD], https://www.midnightbsd.org/[MidnightBSD] or  https://www.nomadbsd.org/[NomadBSD] three FreeBSD-based desktop distributions.
Non-UNIX(R) users should expect to invest some additional time learning the UNIX(R) way of doing things.
This FAQ and the extref:{handbook}[FreeBSD Handbook] are excellent places to start.

[[why-called-FreeBSD]]
=== Why is it called FreeBSD?

* It may be used free of charge, even by commercial users.
* Full source for the operating system is freely available, and the minimum possible restrictions have been placed upon its use, distribution and incorporation into other work (commercial or non-commercial).
* Anyone who has an improvement or bug fix is free to submit their code and have it added to the source tree (subject to one or two obvious provisions).

It is worth pointing out that the word "free" is being used in two ways here: one meaning "at no cost" and the other meaning "do whatever you like".
Apart from one or two things you _cannot_ do with the FreeBSD code, for example pretending you wrote it, you can really do whatever you like with it.

[[differences-to-other-bsds]]
=== What are the differences between FreeBSD and NetBSD, OpenBSD, and other open source BSD operating systems?

James Howard wrote a good explanation of the history and differences between the various projects,
called https://jameshoward.us/archive/bsd-family-tree/[The BSD Family Tree] which goes a fair way to answering this question.
Some of the information is out of date, but the history portion in particular remains accurate.

Most of the BSDs share patches and code, even today.
All of the BSDs have common ancestry.

The design goals of FreeBSD are described in <<FreeBSD-goals>>, above.
The design goals of the other most popular BSDs may be summarized as follows:

* OpenBSD aims for operating system security above all else.
The OpenBSD team wrote man:ssh[1] and man:pf[4], which have both been ported to FreeBSD.
* NetBSD aims to be easily ported to other hardware platforms.
* DragonFly BSD is a fork of FreeBSD 4.8 that has since developed many interesting features of its own, including the HAMMER file system and support for user-mode "vkernels".

[[latest-version]]
=== What is the latest version of FreeBSD?

At any point in the development of FreeBSD, there can be multiple parallel branches.
{rel-relx} releases are made from the {rel-stable} branch, and {rel2-relx} releases are made from the {rel2-stable} branch.

Up until the release of 12.0, the {rel2-relx} series was the one known as _-STABLE_.
However, as of {rel-head-relx}, the {rel2-relx} branch will be designated for an "extended support" status and receive only fixes for major problems, such as security-related fixes.

Releases are made <<release-freq,every few months>>.
While many people stay more up-to-date with the FreeBSD sources (see the questions on <<current,FreeBSD-CURRENT>> and <<stable,FreeBSD-STABLE>>) than that, doing so is more of a commitment, as the sources are a moving target.

More information on FreeBSD releases can be found on the https://www.FreeBSD.org/releng/#release-build[Release Engineering page] and in man:release[7].

[[current]]
=== What is _FreeBSD-CURRENT_?

extref:{handbook}cutting-edge/[FreeBSD-CURRENT, current] is the development version of the operating system, which will in due course become the new FreeBSD-STABLE branch.
As such, it is really only of interest to developers working on the system and die-hard hobbyists.
See the extref:{handbook}cutting-edge/[relevant section, current] in the extref:{handbook}[Handbook] for details on running _-CURRENT_.

Users not familiar with FreeBSD should not use FreeBSD-CURRENT.
This branch sometimes evolves quite quickly and due to mistake can be un-buildable at times.
People that use FreeBSD-CURRENT are expected to be able to analyze, debug, and report problems.

[[stable]]
=== What is the FreeBSD-STABLE concept?

_FreeBSD-STABLE_ is the development branch from which major releases are made.
Changes go into this branch at a slower pace and with the general assumption that they have first been tested in FreeBSD-CURRENT.
However, at any given time, the sources for FreeBSD-STABLE may or may not be suitable for general use,
as it may uncover bugs and corner cases that were not yet found in FreeBSD-CURRENT.
Users who do not have the resources to perform testing should instead run the most recent release of FreeBSD.
_FreeBSD-CURRENT_, on the other hand, has been one unbroken line since 2.0 was released.

For more detailed information on branches see "extref:{releng}[FreeBSD Release Engineering: Creating the Release Branch, rel-branch]",
the status of the branches and the upcoming release schedule can be found on the https://www.FreeBSD.org/releng[Release Engineering Information] page.

Version {u-rel123-announce}[{rel123-current}] is the latest release from the {rel2-stable} branch; it was released on {rel123-current-date}.
Version {u-rel131-announce}[{rel131-current}] is the latest release from the {rel-stable} branch; it was released on {rel131-current-date}.

[[release-freq]]
=== When are FreeBSD releases made?

The {re} releases a new major version of FreeBSD about every 18 months and a new minor version about every 8 months, on average.
Release dates are announced well in advance, so that the people working on the system know when their projects need to be finished and tested.
A testing period precedes each release, to ensure that the addition of new features does not compromise the stability of the release.
Many users regard this caution as one of the best things about FreeBSD, even though waiting for all the latest goodies to reach _-STABLE_ can be a little frustrating.

More information on the release engineering process (including a schedule of upcoming releases) can be found on the https://www.FreeBSD.org/releng/[release engineering] pages on the FreeBSD Web site.

For people who need or want a little more excitement, binary snapshots are made weekly as discussed above.

[[snapshot-freq]]
=== When are FreeBSD snapshots made?

FreeBSD link:https://www.FreeBSD.org/snapshots/[snapshot] releases are made based on the current state of the _-CURRENT_ and _-STABLE_ branches.
The goals behind each snapshot release are:

* To test the latest version of the installation software.
* To give people who would like to run _-CURRENT_ or _-STABLE_ but who do not have the time or bandwidth to follow it on a day-to-day basis an easy way of bootstrapping it onto their systems.
* To preserve a fixed reference point for the code in question, just in case we break something really badly later.
(Although Subversion normally prevents anything horrible like this happening.)
* To ensure that all new features and fixes in need of testing have the greatest possible number of potential testers.

No claims are made that any _-CURRENT_ snapshot can be considered "production quality" for any purpose.
If a stable and fully tested system is needed, stick to full releases.

Snapshot releases are directly available from link:https://www.FreeBSD.org/snapshots/[snapshot].

Official snapshots are generated on a regular basis for all actively developed branches.

[[responsible]]
=== Who is responsible for FreeBSD?

The key decisions concerning the FreeBSD project, such as the overall direction of the project and who is allowed to add code to the source tree,
are made by a link:https://www.FreeBSD.org/administration#t-core[core team] of 9 people.
There is a much larger team of more than 350 extref:{contributors}[committers, staff-committers] who are authorized to make changes directly to the FreeBSD source tree.

However, most non-trivial changes are discussed in advance in the <<mailing,mailing lists>>,
and there are no restrictions on who may take part in the discussion.

[[where-get]]
=== Where can I get FreeBSD?

Every supported release of FreeBSD is available from the https://www.freebsd.org/where/[FreeBSD release locator page]:

* For the latest {rel-stable} release, {rel131-current}-RELEASE, follow the link for link:https://www.freebsd.org/where/#download-rel131[the appropriate architecture and installation mode for {rel131-current}-RELEASE].
* For the latest {rel2-stable} release, {rel123-current}-RELEASE, follow the link for link:https://www.freebsd.org/where/#download-rel123[the appropriate architecture and installation mode for {rel123-current}-RELEASE].
* link:https://www.FreeBSD.org/snapshots/[Snapshot] releases are made monthly for the <<current,-CURRENT>> and <<stable,-STABLE>> branches, these being of service purely to bleeding-edge testers and developers.

Information about obtaining FreeBSD on CD, DVD, and other media can be found in extref:{handbook}mirrors/[the Handbook, mirrors].

[[access-pr]]
=== How do I access the Problem Report database?

The Problem Report database of all user change requests may be queried by using our web-based PR https://bugs.FreeBSD.org/search/[query] interface.

The link:https://www.FreeBSD.org/support/bugreports[web-based problem report submission interface] can be used to submit problem reports through a web browser.

Before submitting a problem report, read extref:{problem-reports}[Writing FreeBSD Problem Reports], an article on how to write good problem reports.

[[support]]
== Documentation and Support

[[books]]
=== What good books are there about FreeBSD?

The project produces a wide range of documentation, available online from this link: https://www.FreeBSD.org/docs/[https://www.FreeBSD.org/docs/].

[[doc-formats]]
=== Is the documentation available in other formats, such as PDF?

Yes.
link:https://download.freebsd.org/doc/[The documentation is also available in several formats] on the FreeBSD download site.

Documentation directories are categorized according to:

* The document's name, such as `faq`, or `handbook`.
* The document's language, based on the locale names found under [.filename]#/usr/share/locale# on a FreeBSD system, with the encodings removed as all documentation now uses UTF-8.
The current languages are:
+
[.informaltable]
[cols="1,1", frame="none", options="header"]
|===
| Name
| Meaning

|`en`
|English

|`bn-bd`
|Bengali or Bangla (Bangladesh)

|`da`
|Danish

|`de`
|German

|`el`
|Greek

|`es`
|Spanish

|`fr`
|French

|`hu`
|Hungarian

|`it`
|Italian

|`ja`
|Japanese

|`ko`
|Korean

|`mn`
|Mongolian

|`nl`
|Dutch

|`pl`
|Polish

|`pt-br`
|Portuguese (Brazil)

|`ru`
|Russian

|`tr`
|Turkish

|`zh-cn`
|Simplified Chinese (China)

|`zh-tw`
|Traditional Chinese (Taiwan)
|===
+
[NOTE]
====
Some documents may not be available in all languages.
====

* The document's format.
We produce the documentation in a number of different output formats.
Each format has its own advantages and disadvantages.
Some formats are better suited for online reading, while others are meant to be aesthetically pleasing when printed on paper.
Having the documentation available in any of these formats ensures that our readers will be able to read the parts they are interested in, either on their monitor, or on paper after printing the documents.
The currently available formats are:
+
[.informaltable]
[cols="1,1", frame="none", options="header"]
|===
| Format
| Meaning

|`html`
|Depending on the document: one large HTML file containing the entire document or a collection of small linked HTML files, both together with images, stylesheets, and JavaScript

|`pdf`
|Adobe's Portable Document Format
|===
* The compression and packaging scheme.
.. Where the format is `html`, the files are bundled up using man:tar[1].
The resulting [.filename]#.tar# is then compressed using man:gzip[1].
.. The PDF format generates one file.
For example, [.filename]#explaining-bsd_en.pdf#, [.filename]#faq_en.pdf#, and so on.

After choosing the format, download the files, uncompress them if necessary, then copy the appropriate documents into place.

For example, the HTML version of the FAQ can be found in [.filename]#doc/en/books/faq/faq_en.tar.gz# To download and uncompress that file, type:

[source,shell]
....
% fetch https://download.freebsd.org/doc/en/books/faq/faq_en.tar.gz
% tar xvf faq_en.tar.gz
....

If the file is compressed, tar will automatically detect the appropriate format and decompress it correctly,
resulting in a collection of files.
The main one is called [.filename]#index.html#, which will contain the whole document, starting with the table of contents linking to the other parts of the document.

[[mailing]]
=== Where do I find info on the FreeBSD mailing lists? What FreeBSD news groups are available?

Refer to the extref:{handbook}eresources/[Handbook entry on mailing-lists, eresources-mail] and the extref:{handbook}eresources/[Handbook entry on newsgroups, eresources-news].

[[irc]]
=== Are there FreeBSD IRC (Internet Relay Chat) channels?

Yes, most major IRC networks host a FreeBSD chat channel and the FreeBSD wiki holds an up to date https://wiki.freebsd.org/IRC/Channels[list of IRC channels].

Each of these channels are distinct and are not connected to each other.
Since their chat styles differ, try each to find one suited to your chat style.

[[forums]]
=== Are there any web based forums to discuss FreeBSD?

The official FreeBSD forums are located at https://forums.FreeBSD.org/[https://forums.FreeBSD.org/].

[[training]]
=== Where can I get commercial FreeBSD training and support?

http://www.ixsystems.com[iXsystems, Inc.], parent company of the http://www.freebsdmall.com/[FreeBSD Mall],
provides commercial FreeBSD and TrueOS software http://www.ixsystems.com/support[support],
in addition to FreeBSD development and tuning solutions.

BSD Certification Group, Inc. provides system administration certifications for DragonFly BSD, FreeBSD, NetBSD, and OpenBSD.
Refer to http://www.BSDCertification.org[their site] for more information.

Any other organizations providing training and support should contact the Project to be listed here.

[[install]]
== Installation

[[which-architecture]]
=== Which platform should I download? I have a 64 bit capable Intel(R) CPU, but I only see amd64.

amd64 is the term FreeBSD uses for 64-bit compatible x86 architectures (also known as "x86-64" or "x64").
Most modern computers should use amd64.
Older hardware should use i386.
When installing on a non-x86-compatible architecture, select the platform which best matches the hardware.

[[floppy-download]]
=== Which file do I download to get FreeBSD?

On the https://www.freebsd.org/where/[Getting FreeBSD] page, select `[iso]` next to the architecture that matches the hardware.

Any of the following can be used:

[.informaltable]
[cols="1,1", frame="none", options="header"]
|===
| file
| description

|[.filename]#disc1.iso#
|Contains enough to install FreeBSD and a minimal set of packages.

|[.filename]#dvd1.iso#
|Similar to [.filename]#disc1.iso# but with additional packages.

|[.filename]#memstick.img#
|A bootable image sufficient for writing to a USB stick.

|[.filename]#bootonly.iso#
|A minimal image that requires network access during installation to completely install FreeBSD.
|===

Full instructions on this procedure and a little bit more about installation issues in general can be found in the extref:{handbook}bsdinstall[Handbook entry on installing FreeBSD].

[[floppy-image-too-large]]
=== What do I do if the install image does not boot?

This can be caused by not downloading the image in _binary_ mode when using FTP.

Some FTP clients default their transfer mode to _ascii_ and attempt to change any end-of-line characters received to match the conventions used by the client's system.
This will almost invariably corrupt the boot image.
Check the SHA-256 checksum of the downloaded boot image: if it is not _exactly_ that on the server, then the download process is suspect.

When using a command line FTP client, type _binary_ at the FTP command prompt after getting connected to the server and before starting the download of the image.

[[install-instructions-location]]
=== Where are the instructions for installing FreeBSD?

Installation instructions can be found at extref:{handbook}bsdinstall/[Handbook entry on installing FreeBSD].

[[custom-boot-floppy]]
=== How can I make my own custom release or install disk?

Customized FreeBSD installation media can be created by building a custom release.
Follow the instructions in the extref:{releng}[Release Engineering] article.

[[windows-coexist]]
=== Can Windows(R) co-exist with FreeBSD? (x86-specific)

If Windows(R) is installed first, then yes.
FreeBSD's boot manager will then manage to boot Windows(R) and FreeBSD.
If Windows(R) is installed afterwards, it will overwrite the boot manager.
If that happens, see the next section.

[[bootmanager-restore]]
=== Another operating system destroyed my Boot Manager. How do I get it back? (x86-specific)

This depends upon the boot manager.
The FreeBSD boot selection menu can be reinstalled using man:boot0cfg[8].
For example, to restore the boot menu onto the disk _ada0_:

[source,shell]
....
# boot0cfg -B ada0
....

The non-interactive MBR bootloader can be installed using man:gpart[8]:

[source,shell]
....
# gpart bootcode -b /boot/mbr ada0
....

For more complex situations, including GPT disks, see man:gpart[8].

[[need-complete-sources]]
=== Do I need to install the source?

In general, no.
There is nothing in the base system which requires the presence of the source to operate.
Some ports, like package:sysutils/lsof[], will not build unless the source is installed.
In particular, if the port builds a kernel module or directly operates on kernel structures, the source must be installed.

[[need-kernel]]
=== Do I need to build a kernel?

Usually not.
The supplied `GENERIC` kernel contains the drivers an ordinary computer will need.
man:freebsd-update[8], the FreeBSD binary upgrade tool, cannot upgrade custom kernels,
another reason to stick with the `GENERIC` kernel when possible.
For computers with very limited RAM, such as embedded systems,
it may be worthwhile to build a smaller custom kernel containing just the required drivers.

[[password-encryption]]
=== Should I use DES, Blowfish, or MD5 passwords and how do I specify which form my users receive?

FreeBSD uses _SHA512_ by default.
DES passwords are still available for backwards compatibility with operating systems that still use the less secure password format.
FreeBSD also supports the Blowfish and MD5 password formats.
Which password format to use for new passwords is controlled by the `passwd_format` login capability in [.filename]#/etc/login.conf#,
which takes values of `des`, `blf` (if these are available) or `md5`.
See the man:login.conf[5] manual page for more information about login capabilities.

[[ffs-limits]]
=== What are the limits for FFS file systems?

For FFS file systems, the largest file system is practically limited by the amount of memory required to man:fsck[8] the file system.
man:fsck[8] requires one bit per fragment, which with the default fragment size of 4 KB equates to 32 MB of memory per TB of disk.
This does mean that on architectures which limit userland processes to 2 GB (e.g., i386(TM)), the maximum man:fsck[8]'able filesystem is ~60 TB.

If there was not a man:fsck[8] memory limit the maximum filesystem size would be 2 ^ 64 (blocks) * 32 KB => 16 Exa * 32 KB => 512 ZettaBytes.

The maximum size of a single FFS file is approximately 2 PB with the default block size of 32 KB.
Each 32 KB block can point to 4096 blocks.
With triple indirect blocks, the calculation is 32 KB * 12 + 32 KB * 4096 + 32 KB * 4096^2 + 32 KB * 4096^3.
Increasing the block size to 64 KB will increase the max file size by a factor of 16.

[[archsw-readin-failed-error]]
=== Why do I get an error message, readin failed after compiling and booting a new kernel?

The world and kernel are out of sync.
This is not supported.
Be sure to use `make buildworld` and `make buildkernel` to update the kernel.

Boot the system by specifying the kernel directly at the second stage, pressing any key when the `|` shows up before loader is started.

[[general-configuration-tool]]
=== Is there a tool to perform post-installation configuration tasks?

Yes.
bsdconfig provides a nice interface to configure FreeBSD post-installation.

[[hardware]]
== Hardware Compatibility

[[compatibility-general]]
=== General

[[which-hardware-to-get]]
==== I want to get a piece of hardware for my FreeBSD system. Which model/brand/type is best?

This is discussed continually on the FreeBSD mailing lists but is to be expected since hardware changes so quickly.
Read through the Hardware Notes for FreeBSD link:{u-rel123-hardware}[{rel123-current}] or link:{u-rel131-hardware}[{rel131-current}] and search the https://www.FreeBSD.org/search/#mailinglists[mailing list archives] before asking about the latest and greatest hardware.
Chances are a discussion about that type of hardware took place just last week.

Before purchasing a laptop, check the archives for {freebsd-questions},
or possibly a specific mailing list for a particular hardware type.

[[memory-upper-limitation]]
==== What are the limits for memory?

FreeBSD as an operating system generally supports as much physical memory (RAM) as the platform it is running on does.
Keep in mind that different platforms have different limits for memory;
for example i386(TM) without PAE supports at most 4 GB of memory (and usually less than that because of PCI address space) and i386(TM) with PAE supports at most 64 GB memory.
As of FreeBSD 10, AMD64 platforms support up to 4 TB of physical memory.

[[memory-i386-over-4gb]]
==== Why does FreeBSD report less than 4 GB memory when installed on an i386(TM) machine?

The total address space on i386(TM) machines is 32-bit, meaning that at most 4 GB of memory is addressable (can be accessed).
Furthermore, some addresses in this range are reserved by hardware for different purposes,
for example for using and controlling PCI devices, for accessing video memory, and so on.
Therefore, the total amount of memory usable by the operating system for its kernel and applications is limited to significantly less than 4 GB.
Usually, 3.2 GB to 3.7 GB is the maximum usable physical memory in this configuration.

To access more than 3.2 GB to 3.7 GB of installed memory (meaning up to 4 GB but also more than 4 GB),
a special tweak called PAE must be used.
PAE stands for Physical Address Extension and is a way for 32-bit x86 CPUs to address more than 4 GB of memory.
It remaps the memory that would otherwise be overlaid by address reservations for hardware devices above the 4 GB range and uses it as additional physical memory (see man:pae[4]).
Using PAE has some drawbacks; this mode of memory access is a little bit slower than the normal (without PAE) mode and loadable modules (see man:kld[4]) are not supported.
This means all drivers must be compiled into the kernel.

The most common way to enable PAE is to build a new kernel with the special ready-provided kernel configuration file called [.filename]#PAE#,
which is already configured to build a safe kernel.
Note that some entries in this kernel configuration file are too conservative and some drivers marked as unready to be used with PAE are actually usable.
A rule of thumb is that if the driver is usable on 64-bit architectures (like AMD64), it is also usable with PAE.
When creating a custom kernel configuration file, PAE can be enabled by adding the following line:

[.programlisting]
....
options       PAE
....

PAE is not much used nowadays because most new x86 hardware also supports running in 64-bit mode, known as AMD64 or Intel(R) 64.
It has a much larger address space and does not need such tweaks.
FreeBSD supports AMD64 and it is recommended that this version of FreeBSD be used instead of the i386(TM) version if 4 GB or more memory is required.

[[compatibility-processors]]
=== Architectures and Processors

[[architectures]]
==== Does FreeBSD support architectures other than the x86?

Yes.
FreeBSD divides support into multiple tiers.
Tier 1 architectures, such as i386 or amd64; are fully supported.
Tiers 2 and 3 are supported on a best-effort basis.
A full explanation of the tier system is available in the extref:{committers-guide}[Committer's Guide., archs]

A complete list of supported architectures can be found on the https://www.FreeBSD.org/platforms/[platforms page.]

[[smp-support]]
==== Does FreeBSD support Symmetric Multiprocessing (SMP)?

FreeBSD supports symmetric multi-processor (SMP) on all non-embedded platforms (e.g, i386, amd64, etc.).
SMP is also supported in arm and MIPS kernels, although some CPUs may not support this.
FreeBSD's SMP implementation uses fine-grained locking, and performance scales nearly linearly with number of CPUs.

man:smp[4] has more details.

[[microcode]]
==== What is microcode? How do I install Intel(R) CPU microcode updates?

Microcode is a method of programmatically implementing hardware level instructions.
This allows for CPU bugs to be fixed without replacing the on board chip.

Install package:sysutils/devcpu-data[], then add:

[.programlisting]
....
microcode_update_enable="YES"
....

to [.filename]#/etc/rc.conf#

[[compatibility-peripherals]]
=== Peripherals

[[supported-peripherals]]
==== What kind of peripherals does FreeBSD support?

See a list of hardware known to work and any applicable restrictions in the Hardware Notes for FreeBSD link:{u-rel123-hardware}[{rel123-current}] or link:{u-rel131-hardware}[{rel131-current}].

[[compatibility-kbd-mice]]
=== Keyboards and Mice

[[moused]]
==== Is it possible to use a mouse outside the X Window system?

The default console driver, man:vt[4], provides the ability to use a mouse pointer in text consoles to cut & paste text.
Run the mouse daemon, man:moused[8], and turn on the mouse pointer in the virtual console:

[source,shell]
....
# moused -p /dev/xxxx -t yyyy
# vidcontrol -m on
....

Where _xxxx_ is the mouse device name and _yyyy_ is a protocol type for the mouse.
The mouse daemon can automatically determine the protocol type of most mice, except old serial mice.
Specify the `auto` protocol to invoke automatic detection.
If automatic detection does not work, see the man:moused[8] manual page for a list of supported protocol types.

For a PS/2 mouse, add `moused_enable="YES"` to [.filename]#/etc/rc.conf# to start the mouse daemon at boot time.
Additionally, to use the mouse daemon on all virtual terminals instead of just the console, add `allscreens_flags="-m on"` to [.filename]#/etc/rc.conf#.

When the mouse daemon is running, access to the mouse must be coordinated between the mouse daemon and other programs such as X Windows.
Refer to the FAQ <<x-and-moused,Why does my mouse not work with X?>> for more details on this issue.

[[text-mode-cut-paste]]
==== How do I cut and paste text with a mouse in the text console?

It is not possible to remove data using the mouse.
However, it is possible to copy and paste.
Once the mouse daemon is running as described in the <<moused,previous question>>, 
hold down button 1 (left button) and move the mouse to select a region of text.
Then, press button 2 (middle button) to paste it at the text cursor.
Pressing button 3 (right button) will "extend" the selected region of text.

If the mouse does not have a middle button, it is possible to emulate one or remap buttons using mouse daemon options.
See the man:moused[8] manual page for details.

[[mouse-wheel-buttons]]
==== My mouse has a fancy wheel and buttons. Can I use them in FreeBSD?

The answer is, unfortunately, "It depends".
These mice with additional features require specialized driver in most cases.
Unless the mouse device driver or the user program has specific support for the mouse,
it will act just like a standard two, or three button mouse.

For the possible usage of wheels in the X Window environment, refer to <<x-and-wheel,that section>>.

[[keyboard-delete-key]]
==== How do I use my delete key in sh and csh?

For the Bourne Shell, add the following lines to [.filename]#~/.shrc#.
See man:sh[1] and man:editrc[5].

[.programlisting]
....
bind ^[[3~ ed-delete-next-char # for xterm
....

For the C Shell, add the following lines to [.filename]#~/.cshrc#.
See man:csh[1].

[.programlisting]
....
bindkey ^[[3~ delete-char # for xterm
....

[[compatibility-other]]
=== Other Hardware

[[es1370-silent-pcm]]
==== Workarounds for no sound from my man:pcm[4] sound card?

Some sound cards set their output volume to 0 at every boot.
On FreeBSD 13 and earlier, run the following command every time the machine boots:

[source,shell]
....
# mixer pcm 100 vol 100 cd 100
....

Use the following command on FreeBSD 14 and later:

[source,shell]
....
# mixer pcm.volume=100 vol.volume=100 cd.volume=100
....

[[power-management-support]]
==== Does FreeBSD support power management on my laptop?

FreeBSD supports the ACPI features found in modern hardware.
Further information can be found in man:acpi[4].

[[troubleshoot]]
== Troubleshooting

[[pae]]
=== Why is FreeBSD finding the wrong amount of memory on i386(TM) hardware?

The most likely reason is the difference between physical memory addresses and virtual addresses.

The convention for most PC hardware is to use the memory area between 3.5 GB and 4 GB for a special purpose (usually for PCI).
This address space is used to access PCI hardware.
As a result real, physical memory cannot be accessed by that address space.

What happens to the memory that should appear in that location is hardware dependent.
Unfortunately, some hardware does nothing and the ability to use that last 500 MB of RAM is entirely lost.

Luckily, most hardware remaps the memory to a higher location so that it can still be used.
However, this can cause some confusion when watching the boot messages.

On a 32-bit version of FreeBSD, the memory appears lost, since it will be remapped above 4 GB, which a 32-bit kernel is unable to access.
In this case, the solution is to build a PAE enabled kernel.
See the entry on memory limits for more information.

On a 64-bit version of FreeBSD, or when running a PAE-enabled kernel, FreeBSD will correctly detect and remap the memory so it is usable.
During boot, however, it may seem as if FreeBSD is detecting more memory than the system really has, due to the described remapping.
This is normal and the available memory will be corrected as the boot process completes.

[[signal11]]
=== Why do my programs occasionally die with Signal 11 errors?

Signal 11 errors are caused when a process has attempted to access memory which the operating system has not granted it access to.
If something like this is happening at seemingly random intervals, start investigating the cause.

These problems can usually be attributed to either:

. If the problem is occurring only in a specific custom application, it is probably a bug in the code.
. If it is a problem with part of the base FreeBSD system, it may also be buggy code, but more often than not these problems are found and fixed long before us general FAQ readers get to use these bits of code (that is what -CURRENT is for).

It is probably not a FreeBSD bug if the problem occurs compiling a program, but the activity that the compiler is carrying out changes each time.

For example, if `make buildworld` fails while trying to compile [.filename]#ls.c# into [.filename]#ls.o# and, when run again, it fails in the same place, this is a broken build.
Try updating source and try again.
If the compile fails elsewhere, it is almost certainly due to hardware.

In the first case, use a debugger such as man:gdb[1] to find the point in the program which is attempting to access a bogus address and fix it.

In the second case, verify which piece of hardware is at fault.

Common causes of this include:

. The hard disks might be overheating: Check that the fans are still working, as the disk and other hardware might be overheating.
. The processor running is overheating: This might be because the processor has been overclocked, or the fan on the processor might have died.
In either case, ensure that the hardware is running at what it is specified to run at, at least while trying to solve this problem.
If it is not, clock it back to the default settings.)
+
Regarding overclocking, it is far cheaper to have a slow system than a fried system that needs replacing!
Also the community is not sympathetic to problems on overclocked systems.
. Dodgy memory: if multiple memory SIMMS/DIMMS are installed, pull them all out and try running the machine with each SIMM or DIMM individually to narrow the problem down to either the problematic DIMM/SIMM or perhaps even a combination.
. Over-optimistic motherboard settings: the BIOS settings, and some motherboard jumpers, provide options to set various timings.
The defaults are often sufficient, but sometimes setting the wait states on RAM too low, or setting the "RAM Speed: Turbo" option will cause strange behavior.
A possible idea is to set to BIOS defaults, after noting the current settings first.
. Unclean or insufficient power to the motherboard.
Remove any unused I/O boards, hard disks, or CD-ROMs, or disconnect the power cable from them, to see if the power supply can manage a smaller load.
Or try another power supply, preferably one with a little more power.
For instance, if the current power supply is rated at 250 Watts, try one rated at 300 Watts.

Read the section on <<signal11,Signal 11>> for a further explanation and a discussion on how memory testing software or hardware can still pass faulty memory.
There is an extensive FAQ on this at http://www.bitwizard.nl/sig11/[the SIG11 problem FAQ].

Finally, if none of this has helped, it is possibly a bug in FreeBSD.
Follow <<access-pr,these instructions>> to send a problem report.

[[trap-12-panic]]
=== My system crashes with either Fatal trap 12: page fault in kernel mode, or panic:, and spits out a bunch of information. What should I do?

The FreeBSD developers are interested in these errors, but need more information than just the error message.
Copy the full crash message.
Then consult the FAQ section on <<kernel-panic-troubleshooting,kernel panics>>, build a debugging kernel, and get a backtrace.
This might sound difficult, but does not require any programming skills.
Just follow the instructions.

[[proc-table-full]]
=== What is the meaning of the error maxproc limit exceeded by uid %i, please see tuning(7) and login.conf(5)?

The FreeBSD kernel will only allow a certain number of processes to exist at one time.
The number is based on the `kern.maxusers` man:sysctl[8] variable.
`kern.maxusers` also affects various other in-kernel limits, such as network buffers.
If the machine is heavily loaded, increase `kern.maxusers`.
This will increase these other system limits in addition to the maximum number of processes.

To adjust the `kern.maxusers` value, see the extref:{handbook}config/[File/Process Limits, kern-maxfiles] section of the Handbook.
While that section refers to open files, the same limits apply to processes.

If the machine is lightly loaded but running a very large number of processes, adjust the `kern.maxproc` tunable by defining it in [.filename]#/boot/loader.conf#.
The tunable will not get adjusted until the system is rebooted.
For more information about tuning tunables, see man:loader.conf[5].
If these processes are being run by a single user, adjust `kern.maxprocperuid` to be one less than the new `kern.maxproc` value.
It must be at least one less because one system program, man:init[8], must always be running.

[[remote-fullscreen]]
=== Why do full screen applications on remote machines misbehave?

The remote machine may be setting the terminal type to something other than `xterm` which is required by the FreeBSD console.
Alternatively the kernel may have the wrong values for the width and height of the terminal.

Check the value of the `TERM` environment variable is `xterm`.
If the remote machine does not support that try `vt100`.

Run `stty -a` to check what the kernel thinks the terminal dimensions are.
If they are incorrect, they can be changed by running `stty rows _RR_ cols _CC_`.

Alternatively, if the client machine has package:x11/xterm[] installed,
then running `resize` will query the terminal for the correct dimensions and set them.

[[connection-delay]]
=== Why does it take so long to connect to my computer via ssh or telnet?

The symptom: there is a long delay between the time the TCP connection is established and the time when the client software asks for a password (or, in man:telnet[1]'s case, when a login prompt appears).

The problem: more likely than not, the delay is caused by the server software trying to resolve the client's IP address into a hostname.
Many servers, including the Telnet and SSH servers that come with FreeBSD,
do this to store the hostname in a log file for future reference by the administrator.

The remedy: if the problem occurs whenever connecting the client computer to any server, the problem is with the client.
If the problem only occurs when someone connects to the server computer, the problem is with the server.

If the problem is with the client, the only remedy is to fix the DNS so the server can resolve it.
If this is on a local network, consider it a server problem and keep reading.
If this is on the Internet, contact your ISP.

If the problem is with the server on a local network, configure the server to resolve address-to-hostname queries for the local address range.
See man:hosts[5] and man:named[8] for more information.
If this is on the Internet, the problem may be that the local server's resolver is not functioning correctly.
To check, try to look up another host such as `www.yahoo.com`.
If it does not work, that is the problem.

Following a fresh install of FreeBSD, it is also possible that domain and name server information is missing from [.filename]#/etc/resolv.conf#.
This will often cause a delay in SSH, as the option `UseDNS` is set to `yes` by default in [.filename]#/etc/ssh/sshd_config#.
If this is causing the problem, either fill in the missing information in [.filename]#/etc/resolv.conf# or set `UseDNS` to `no` in [.filename]#sshd_config# as a temporary workaround.

[[file-table-full]]
=== Why does file: table is full show up repeatedly in man:dmesg[8]?

This error message indicates that the number of available file descriptors have been exhausted on the system.
Refer to the extref:{handbook}config/[kern.maxfiles, kern-maxfiles] section of the extref:{handbook}config/[Tuning Kernel Limits, configtuning-kernel-limits] section of the Handbook for a discussion and solution.

[[computer-clock-skew]]
=== Why does the clock on my computer keep incorrect time?

The computer has two or more clocks, and FreeBSD has chosen to use the wrong one.

Run man:dmesg[8], and check for lines that contain `Timecounter`.
The one with the highest quality value that FreeBSD chose.

[source,shell]
....
# dmesg | grep Timecounter
Timecounter "i8254" frequency 1193182 Hz quality 0
Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000
Timecounter "TSC" frequency 2998570050 Hz quality 800
Timecounters tick every 1.000 msec
....

Confirm this by checking the `kern.timecounter.hardware` man:sysctl[3].

[source,shell]
....
# sysctl kern.timecounter.hardware
kern.timecounter.hardware: ACPI-fast
....

It may be a broken ACPI timer.
The simplest solution is to disable the ACPI timer in [.filename]#/boot/loader.conf#:

[.programlisting]
....
debug.acpi.disabled="timer"
....

Or the BIOS may modify the TSC clock-perhaps to change the speed of the processor when running from batteries,
or going into a power saving mode, but FreeBSD is unaware of these adjustments, and appears to gain or lose time.

In this example, the `i8254` clock is also available, and can be selected by writing its name to the `kern.timecounter.hardware` man:sysctl[3].

[source,shell]
....
# sysctl kern.timecounter.hardware=i8254
kern.timecounter.hardware: TSC -> i8254
....

The computer should now start keeping more accurate time.

To have this change automatically run at boot time, add the following line to [.filename]#/etc/sysctl.conf#:

[.programlisting]
....
kern.timecounter.hardware=i8254
....

[[indefinite-wait-buffer]]
=== What does the error swap_pager: indefinite wait buffer: mean?

This means that a process is trying to page memory from disk, and the page attempt has hung trying to access the disk for more than 20 seconds.
It might be caused by bad blocks on the disk drive, disk wiring, cables, or any other disk I/O-related hardware.
If the drive itself is bad, disk errors will appear in [.filename]#/var/log/messages# and in the output of `dmesg`.
Otherwise, check the cables and connections.

[[lock-order-reversal]]
=== What is a lock order reversal?

The FreeBSD kernel uses a number of resource locks to arbitrate contention for certain resources.
When multiple kernel threads try to obtain multiple resource locks, there's always the potential for a deadlock,
where two threads have each obtained one of the locks and blocks forever waiting for the other thread to release one of the other locks.
This sort of locking problem can be avoided if all threads obtain the locks in the same order.

A run-time lock diagnostic system called man:witness[4], enabled in FreeBSD-CURRENT and disabled by default for stable branches and releases,
detects the potential for deadlocks due to locking errors, including errors caused by obtaining multiple resource locks with a different order from different parts of the kernel.
The man:witness[4] framework tries to detect this problem as it happens,
and reports it by printing a message to the system console about a `lock order reversal` (often referred to also as LOR).

It is possible to get false positives, as man:witness[4] is conservative.
A true positive report _does not_ mean that a system is dead-locked;
instead it should be understood as a warning that a deadlock could have happened here.

[NOTE]
====
Problematic LORs tend to get fixed quickly, so check the {freebsd-current} before posting to it.
====

[[called-with-non-sleepable-locks-held]]
=== What does 'Called ... with the following non-sleepable locks held' mean?

This means that a function that may sleep was called while a mutex (or other unsleepable) lock was held.

The reason this is an error is because mutexes are not intended to be held for long periods of time;
they are supposed to only be held to maintain short periods of synchronization.
This programming contract allows device drivers to use mutexes to synchronize with the rest of the kernel during interrupts.
Interrupts (under FreeBSD) may not sleep.
Hence it is imperative that no subsystem in the kernel block for an extended period while holding a mutex.

To catch such errors, assertions may be added to the kernel that interact with the man:witness[4] subsystem to emit a warning or fatal error (depending on the system configuration) when a potentially blocking call is made while holding a mutex.

In summary, such warnings are non-fatal,
however with unfortunate timing they could cause undesirable effects ranging from a minor blip in the system's responsiveness to a complete system lockup.

For additional information about locking in FreeBSD see man:locking[9].

[[touch-not-found]]
=== Why does buildworld/installworld die with the message touch: not found?

This error does not mean that the man:touch[1] utility is missing.
The error is instead probably due to the dates of the files being set sometime in the future.
If the CMOS clock is set to local time, run `adjkerntz -i` to adjust the kernel clock when booting into single-user mode.

[[applications]]
== User Applications

[[user-apps]]
=== Where are all the user applications?

Refer to link:https://www.FreeBSD.org/ports/[the ports page] for info on software packages ported to FreeBSD.

Most ports should work on all supported versions of FreeBSD.
Those that do not are specifically marked as such.
Each time a FreeBSD release is made, a snapshot of the ports tree at the time of release is also included in the [.filename]#ports/# directory.

FreeBSD supports compressed binary packages to easily install and uninstall ports.
Use man:pkg[7] to control the installation of packages.

[[how-do-download-ports-tree]]
=== How do I download the Ports tree? Should I be using Git?

See extref:{handbook}ports/[Installing the Ports Collection, ports-using-installation-methods]

[[ports-4x]]
=== Why can I not build this port on my {rel2-relx} -, or {rel-relx} -STABLE machine?

If the installed FreeBSD version lags significantly behind _-CURRENT_ or _-STABLE_, update the Ports Collection using the instructions in extref:{handbook}ports/[Using the Ports Collection, ports-using].
If the system is up-to-date, someone might have committed a change to the port which works for _-CURRENT_ but which broke the port for _-STABLE_.
https://bugs.FreeBSD.org/submit/[Submit] a bug report, since the Ports Collection is supposed to work for both the _-CURRENT_ and _-STABLE_ branches.

[[make-index]]
=== I just tried to build INDEX using make index, and it failed. Why?

First, make sure that the Ports Collection is up-to-date.
Errors that affect building [.filename]#INDEX# from an up-to-date copy of the Ports Collection are high-visibility and are thus almost always fixed immediately.

There are rare cases where [.filename]#INDEX# will not build due to odd cases involving `OPTIONS_SET` being set in [.filename]#make.conf#.
If you suspect that this is the case, try to make [.filename]#INDEX# with those variables turned off before reporting it to {freebsd-ports}.

[[ports-update]]
=== I updated the sources, now how do I update my installed ports?

FreeBSD does not include a port upgrading tool, but it does have some tools to make the upgrade process somewhat easier.
Additional tools are available to simplify port handling and are described the extref:{handbook}ports/[Upgrading Ports, ports-using] section in the FreeBSD Handbook.

[[ports-major-upgrade]]
=== Do I need to recompile every port each time I perform a major version update?

Yes!
While a recent system will run with software compiled under an older release,
things will randomly crash and fail to work once other ports are installed or updated.

When the system is upgraded, various shared libraries, loadable modules, and other parts of the system will be replaced with newer versions.
Applications linked against the older versions may fail to start or, in other cases, fail to function properly.

For more information, see extref:{handbook}cutting-edge/[the section on upgrades, freebsdupdate-upgrade] in the FreeBSD Handbook.

[[ports-minor-upgrade]]
=== Do I need to recompile every port each time I perform a minor version update?

In general, no.
FreeBSD developers do their utmost to guarantee binary compatibility across all releases with the same major version number.
Any exceptions will be documented in the Release Notes, and advice given there should be followed.

[[minimal-sh]]
=== Why is /bin/sh so minimal? Why does FreeBSD not use bash or another shell?

Many people need to write shell scripts which will be portable across many systems.
That is why POSIX(R) specifies the shell and utility commands in great detail.
Most scripts are written in Bourne shell (man:sh[1]), and because several important programming interfaces (man:make[1], man:system[3], man:popen[3], and analogues in higher-level scripting languages like Perl and Tcl) are specified to use the Bourne shell to interpret commands.
As the Bourne shell is so often and widely used, it is important for it to be quick to start, be deterministic in its behavior, and have a small memory footprint.

The existing implementation is our best effort at meeting as many of these requirements simultaneously as we can.
To keep `/bin/sh` small, we have not provided many of the convenience features that other shells have.
That is why other more featureful shells like `bash`, `scsh`, man:tcsh[1], and `zsh` are available.
Compare the memory utilization of these shells by looking at the "VSZ" and "RSS" columns in a `ps -u` listing.

[[kernelconfig]]
== Kernel Configuration

[[make-kernel]]
=== I would like to customize my kernel. Is it difficult?

Not at all!
Check out the extref:{handbook}kernelconfig/[kernel config section of the Handbook].

[NOTE]
====
The new [.filename]#kernel# will be installed to the [.filename]#/boot/kernel# directory along with its modules,
while the old kernel and its modules will be moved to the [.filename]#/boot/kernel.old# directory.
If a mistake is made in the configuration, simply boot the previous version of the kernel.
====

[[why-kernel-big]]
=== Why is my kernel so big?

`GENERIC` kernels shipped with FreeBSD are compiled in _debug mode_.
Kernels built in debug mode contain debug data in separate files that are used for debugging.
FreeBSD releases prior to 11.0 store these debug files in the same directory as the kernel itself, [.filename]#/boot/kernel/#.
In FreeBSD 11.0 and later the debug files are stored in [.filename]#/usr/lib/debug/boot/kernel/#.
Note that there will be little or no performance loss from running a debug kernel, and it is useful to keep one around in case of a system panic.

When running low on disk space, there are different options to reduce the size of [.filename]#/boot/kernel/# and [.filename]#/usr/lib/debug/#.

To not install the symbol files, make sure the following line exists in [.filename]#/etc/src.conf#:

[.programlisting]
....
WITHOUT_KERNEL_SYMBOLS=yes
....

For more information see man:src.conf[5].

If you want to avoid building debug files altogether, make sure that both of the following are true:

* This line does not exist in the kernel configuration file:
+
[.programlisting]
....
makeoptions DEBUG=-g
....

* Do not run man:config[8] with `-g`.

Either of the above settings will cause the kernel to be built in debug mode.

To build and install only the specified modules, list them in [.filename]#/etc/make.conf#:

[.programlisting]
....
MODULES_OVERRIDE= accf_http ipfw
....

Replace _accf_httpd ipfw_ with a list of needed modules.
Only the listed modules will be built.
This reduces the size of the kernel directory and decreases the amount of time needed to build the kernel.
For more information, read [.filename]#/usr/share/examples/etc/make.conf#.

Unneeded devices can be removed from the kernel to further reduce the size.
See <<make-kernel>> for more information.

To put any of these options into effect, follow the instructions to extref:{handbook}kernelconfig/[build and install, kernelconfig-building] the new kernel.

For reference, the FreeBSD 11 amd64 kernel ([.filename]#/boot/kernel/kernel#) is approximately 25 MB.

[[generic-kernel-build-failure]]
=== Why does every kernel I try to build fail to compile, even GENERIC?

There are a number of possible causes for this problem:

* The source tree is different from the one used to build the currently running system.
When attempting an upgrade, read [.filename]#/usr/src/UPDATING#, paying particular attention to the "COMMON ITEMS" section at the end.
* The `make buildkernel` did not complete successfully.
The `make buildkernel` target relies on files generated by the `make buildworld` target to complete its job correctly.
* Even when building <<stable,FreeBSD-STABLE>>, it is possible that the source tree was fetched at a time when it was either being modified or it was broken.
Only releases are guaranteed to be buildable, although <<stable,FreeBSD-STABLE>> builds fine the majority of the time.
Try re-fetching the source tree and see if the problem goes away.
Try using a different mirror in case the previous one is having problems.

[[scheduler-in-use]]
=== Which scheduler is in use on a running system?

The name of the scheduler currently being used is directly available as the value of the `kern.sched.name` sysctl:

[source,shell]
....
% sysctl kern.sched.name
kern.sched.name: ULE
....

[[scheduler-kern-quantum]]
=== What is kern.sched.quantum?

`kern.sched.quantum` is the maximum number of ticks a process can run without being preempted in the 4BSD scheduler.

[[disks]]
== Disks, File Systems, and Boot Loaders

[[adding-disks]]
=== How can I add my new hard disk to my FreeBSD system?

See the extref:{handbook}disks/[Adding Disks, disks-adding] section in the FreeBSD Handbook.

[[new-huge-disk]]
=== How do I move my system over to my huge new disk?

The best way is to reinstall the operating system on the new disk, then move the user data over.
This is highly recommended when tracking _-STABLE_ for more than one release or when updating a release instead of installing a new one.
Install booteasy on both disks with man:boot0cfg[8] and dual boot until you are happy with the new configuration.
Skip the next paragraph to find out how to move the data after doing this.

Alternatively, partition and label the new disk with either man:sade[8] or man:gpart[8].
If the disks are MBR-formatted, booteasy can be installed on both disks with man:boot0cfg[8] so that the computer can dual boot to the old or new system after the copying is done.

Once the new disk set up, the data cannot just be copied.
Instead, use tools that understand device files and system flags, such as man:dump[8].
Although it is recommended to move the data while in single-user mode, it is not required.

When the disks are formatted with UFS, never use anything but man:dump[8] and man:restore[8] to move the root file system.
These commands should also be used when moving a single partition to another empty partition.
The sequence of steps to use `dump` to move the data from one UFS partitions to a new partition is:

[.procedure]
====
. `newfs` the new partition.
. `mount` it on a temporary mount point.
. `cd` to that directory.
. `dump` the old partition, piping output to the new one.
====

For example, to move [.filename]#/dev/ada1s1a# with [.filename]#/mnt# as the temporary mount point, type:

[source,shell]
....
# newfs /dev/ada1s1a
# mount /dev/ada1s1a /mnt
# cd /mnt
# dump 0af - / | restore rf -
....

Rearranging partitions with `dump` takes a bit more work.
To merge a partition like [.filename]#/var# into its parent, create the new partition large enough for both, move the parent partition as described above, then move the child partition into the empty directory that the first move created:

[source,shell]
....
# newfs /dev/ada1s1a
# mount /dev/ada1s1a /mnt
# cd /mnt
# dump 0af - / | restore rf -
# cd var
# dump 0af - /var | restore rf -
....

To split a directory from its parent, say putting [.filename]#/var# on its own partition when it was not before, create both partitions, then mount the child partition on the appropriate directory in the temporary mount point, then move the old single partition:

[source,shell]
....
# newfs /dev/ada1s1a
# newfs /dev/ada1s1d
# mount /dev/ada1s1a /mnt
# mkdir /mnt/var
# mount /dev/ada1s1d /mnt/var
# cd /mnt
# dump 0af - / | restore rf -
....

The man:cpio[1] and man:pax[1] utilities are also available for moving user data.
These are known to lose file flag information, so use them with caution.

[[safe-softupdates]]
=== Which partitions can safely use Soft Updates? I have heard that Soft Updates on / can cause problems. What about Journaled Soft Updates?

Short answer: Soft Updates can usually be safely used on all partitions.

Long answer: Soft Updates has two characteristics that may be undesirable on certain partitions.
First, a Soft Updates partition has a small chance of losing data during a system crash.
The partition will not be corrupted as the data will simply be lost.
Second, Soft Updates can cause temporary space shortages.

When using Soft Updates, the kernel can take up to thirty seconds to write changes to the physical disk.
When a large file is deleted the file still resides on disk until the kernel actually performs the deletion.
This can cause a very simple race condition.
Suppose one large file is deleted and another large file is immediately created.
The first large file is not yet actually removed from the physical disk, so the disk might not have enough room for the second large file.
This will produce an error that the partition does not have enough space, even though a large chunk of space has just been released.
A few seconds later, the file creation works as expected.

If a system should crash after the kernel accepts a chunk of data for writing to disk, but before that data is actually written out, data could be lost.
This risk is extremely small, but generally manageable.

These issues affect all partitions using Soft Updates.
So, what does this mean for the root partition?

Vital information on the root partition changes very rarely.
If the system crashed during the thirty-second window after such a change is made, it is possible that data could be lost.
This risk is negligible for most applications, but be aware that it exists.
If the system cannot tolerate this much risk, do not use Soft Updates on the root file system!

[.filename]#/# is traditionally one of the smallest partitions.
If [.filename]#/tmp# is on [.filename]#/#, there may be intermittent space problems.
Symlinking [.filename]#/tmp# to [.filename]#/var/tmp# will solve this problem.

Finally, man:dump[8] does not work in live mode (-L) on a filesystem, with Journaled Soft Updates (SU+J).

[[mount-foreign-fs]]
=== Can I mount other foreign file systems under FreeBSD?

FreeBSD supports a variety of other file systems.

UFS::
UFS CD-ROMs can be mounted directly on FreeBSD.
Mounting disk partitions from Digital UNIX and other systems that support UFS may be more complex,
depending on the details of the disk partitioning for the operating system in question.

ext2/ext3::
FreeBSD supports `ext2fs`, `ext3fs`, and `ext4fs` partitions.
See man:ext2fs[5] for more information.

NTFS::
FUSE based NTFS support is available as a port (package:sysutils/fusefs-ntfs[]).
For more information, see man:ntfs-3g[8].

FAT::
FreeBSD includes a read-write FAT driver.
For more information, see man:mount_msdosfs[8].

ZFS::
FreeBSD includes a port of Sun(TM)'s ZFS driver.
The current recommendation is to use it only on amd64 platforms with sufficient memory.
For more information, see man:zfs[8].

FreeBSD includes the Network File System NFS and the FreeBSD Ports Collection provides several FUSE applications to support many other file systems.

[[mount-dos]]
=== How do I mount a secondary DOS partition?

The secondary DOS partitions are found after _all_ the primary partitions.
For example, if `E` is the second DOS partition on the second SCSI drive, there will be a device file for "slice 5" in [.filename]#/dev#.
To mount it:

[source,shell]
....
# mount -t msdosfs /dev/da1s5 /dos/e
....

[[crypto-file-system]]
=== Is there a cryptographic file system for FreeBSD?

Yes, man:gbde[8] and man:geli[8].
See the extref:{handbook}disks/[Encrypting Disk Partitions, disks-encrypting] section of the FreeBSD Handbook.

[[grub-loader]]
=== How do I boot FreeBSD and Linux(R) using GRUB?

To boot FreeBSD using GRUB, add the following to either [.filename]#/boot/grub/menu.lst# or [.filename]#/boot/grub/grub.conf#,
depending upon which is used by the Linux(R) distribution.

[.programlisting]
....
title FreeBSD 9.1
	root (hd0,a)
	kernel /boot/loader
....

Where _hd0,a_ points to the root partition on the first disk.
To specify the slice number, use something like this _(hd0,2,a)_.
By default, if the slice number is omitted, GRUB searches the first slice which has the `a` partition.

[[booteasy-loader]]
=== How do I boot FreeBSD and Linux(R) using BootEasy?

Install LILO at the start of the Linux(R) boot partition instead of in the Master Boot Record.
Then boot LILO from BootEasy.

This is recommended when running Windows(R) and Linux(R) as it makes it simpler to get Linux(R) booting again if Windows(R) is reinstalled.

[[changing-bootprompt]]
=== How do I change the boot prompt from ??? to something more meaningful?

This cannot be accomplished with the standard boot manager without rewriting it.
There are a number of other boot managers in the [.filename]#sysutils# category of the Ports Collection.

[[removable-drives]]
=== How do I use a new removable drive?

If the drive already has a file system on it, use a command like this:

[source,shell]
....
# mount -t msdosfs /dev/da0s1 /mnt
....

If the drive will only be used with FreeBSD systems, partition it with UFS or ZFS.
This will provide long filename support, improvement in performance, and stability.
If the drive will be used by other operating systems, a more portable choice, such as msdosfs, is better.

[source,shell]
....
# dd if=/dev/zero of=/dev/da0 count=2
# gpart create -s GPT /dev/da0
# gpart add -t freebsd-ufs /dev/da0
....

Finally, create a new file system:

[source,shell]
....
# newfs /dev/da0p1
....

and mount it:

[source,shell]
....
# mount /dev/da0s1 /mnt
....

It is a good idea to add a line to [.filename]#/etc/fstab# (see man:fstab[5]) so you can just type `mount /mnt` in the future:

[.programlisting]
....
/dev/da0p1 /mnt ufs rw,noauto 0 0
....

[[mount-cd-superblock]]
=== Why do I get Incorrect super block when mounting a CD?

The type of device to mount must be specified.
This is described in the Handbook section on extref:{handbook}disks/[Using Data CDs, mounting-cd].

[[cdrom-not-configured]]
=== Why do I get Device not configured when mounting a CD?

This generally means that there is no CD in the drive, or the drive is not visible on the bus.
Refer to the extref:{handbook}disks/[Using Data CDs, mounting-cd] section of the Handbook for a detailed discussion of this issue.

[[cdrom-unicode-filenames]]
=== Why do all non-English characters in filenames show up as ? on my CDs when mounted in FreeBSD?

The CD probably uses the "Joliet" extension for storing information about files and directories.
This is discussed in the Handbook section on extref:{handbook}disks/[Using Data CD-ROMs, mounting-cd].

[[burncd-isofs]]
=== A CD burned under FreeBSD cannot be read under any other operating system. Why?

This means a raw file was burned to the CD, rather than creating an ISO 9660 file system.
Take a look at the Handbook section on extref:{handbook}disks/[Using Data CDs].

[[copy-cd]]
=== How can I create an image of a data CD?

This is discussed in the Handbook section on extref:{handbook}disks/[Writing Data to an ISO File System, mkisofs].
For more on working with CD-ROMs, see the extref:{handbook}disks/[Creating CDs Section, creating-cds] in the Storage chapter in the Handbook.

[[mount-audio-CD]]
=== Why can I not mount an audio CD?

Trying to mount an audio CD will produce an error like `cd9660: /dev/cd0: Invalid argument`.
This is because `mount` only works on file systems.
Audio CDs do not have file systems; they just have data.
Instead, use a program that reads audio CDs, such as the package:audio/xmcd[] package or port.

[[multi-session-CD]]
=== How do I mount a multi-session CD?

By default, man:mount[8] will attempt to mount the last data track (session) of a CD.
To load an earlier session, use the `-s` command line argument.
Refer to man:mount_cd9660[8] for specific examples.

[[user-floppymount]]
=== How do I let ordinary users mount CD-ROMs, DVDs, USB drives, and other removable media?

As `root` set the sysctl variable `vfs.usermount` to `1`.

[source,shell]
....
# sysctl vfs.usermount=1
....

To make this persist across reboots, add the line `vfs.usermount=1` to [.filename]#/etc/sysctl.conf# so that it is reset at system boot time.

Users can only mount devices they have read permissions to.
To allow users to mount a device permissions must be set in [.filename]#/etc/devfs.conf#.

For example, to allow users to mount the first USB drive add:

[.programlisting]
....
# Allow all users to mount a USB drive.
	    own       /dev/da0       root:operator
	    perm      /dev/da0       0666
....

All users can now mount devices they could read onto a directory that they own:

[source,shell]
....
% mkdir ~/my-mount-point
% mount -t msdosfs /dev/da0 ~/my-mount-point
....

Unmounting the device is simple:

[source,shell]
....
% umount ~/my-mount-point
....

Enabling `vfs.usermount`, however, has negative security implications.
A better way to access MS-DOS(R) formatted media is to use the package:emulators/mtools[] package in the Ports Collection.

[NOTE]
====
The device name used in the previous examples must be changed according to the configuration.
====

[[du-vs-df]]
=== The du and df commands show different amounts of disk space available. What is going on?

This is due to how these commands actually work.
`du` goes through the directory tree, measures how large each file is, and presents the totals.
`df` just asks the file system how much space it has left.
They seem to be the same thing, but a file without a directory entry will affect `df` but not `du`.

When a program is using a file, and the file is deleted, the file is not really removed from the file system until the program stops using it.
The file is immediately deleted from the directory listing, however.
As an example, consider a file large enough to affect the output of `du` and `df`.
A file being viewed with `more` can be deleted without causing an error.
The entry is removed from the directory so no other program or user can access it.
However, `du` shows that it is gone as it has walked the directory tree and the file is not listed.
`df` shows that it is still there, as the file system knows that `more` is still using that space.
Once the `more` session ends, `du` and `df` will agree.

This situation is common on web servers.
Many people set up a FreeBSD web server and forget to rotate the log files.
The access log fills up [.filename]#/var#.
The new administrator deletes the file, but the system still complains that the partition is full.
Stopping and restarting the web server program would free the file, allowing the system to release the disk space.
To prevent this from happening, set up man:newsyslog[8].

Note that Soft Updates can delay the freeing of disk space and it can take up to 30 seconds for the change to be visible.

[[add-swap-space]]
=== How can I add more swap space?

This section extref:{handbook}config/[of the Handbook, adding-swap-space] describes how to do this.

[[manufacturer-disk-size]]
=== Why does FreeBSD see my disk as smaller than the manufacturer says it is?

Disk manufacturers calculate gigabytes as a billion bytes each, whereas FreeBSD calculates them as 1,073,741,824 bytes each.
This explains why, for example, FreeBSD's boot messages will report a disk that supposedly has 80 GB as holding 76,319 MB.

Also note that FreeBSD will (by default) <<disk-more-than-full,reserve>> 8% of the disk space.

[[disk-more-than-full]]
=== How is it possible for a partition to be more than 100% full?

A portion of each UFS partition (8%, by default) is reserved for use by the operating system and the `root` user.
man:df[1] does not count that space when calculating the `Capacity` column, so it can exceed 100%.
Notice that the `Blocks` column is always greater than the sum of the `Used` and `Avail` columns, usually by a factor of 8%.

For more details, look up `-m` in man:tunefs[8].

[[all-about-zfs]]
== ZFS

[[how-much-ram-for-zfs]]
=== What is the minimum amount of RAM one should have to run ZFS?

A minimum of 4GB of RAM is required for comfortable usage, but individual workloads can vary widely.

[[what-is-zil]]
=== What is the ZIL and when does it get used?

The ZIL (ZFS intent log) is a write log used to implement posix write commitment semantics across crashes.
Normally writes are bundled up into transaction groups and written to disk when filled ("Transaction Group Commit").
However syscalls like man:fsync[2] require a commitment that the data is written to stable storage before returning.
The ZIL is needed for writes that have been acknowledged as written but which are not yet on disk as part of a transaction.
The transaction groups are timestamped.
In the event of a crash the last valid timestamp is found and missing data is merged in from the ZIL.

[[need-ssd-for-zil]]
=== Do I need a SSD for ZIL?

By default, ZFS stores the ZIL in the pool with all the data.
If an application has a heavy write load, storing the ZIL in a separate device that has very fast synchronous, sequential write performance can improve overall system performance.
For other workloads, a SSD is unlikely to make much of an improvement.

[[what-is-l2arc]]
=== What is the L2ARC?

The L2ARC is a read cache stored on a fast device such as an SSD.
This cache is not persistent across reboots.
Note that RAM is used as the first layer of cache and the L2ARC is only needed if there is insufficient RAM.

L2ARC needs space in the ARC to index it.
So, perversely, a working set that fits perfectly in the ARC will not fit perfectly any more if a L2ARC is used because part of the ARC is holding the L2ARC index,
pushing part of the working set into the L2ARC which is slower than RAM.

[[should-enable-dedup]]
=== Is enabling deduplication advisable?

Generally speaking, no.

Deduplication takes up a significant amount of RAM and may slow down read and write disk access times.
Unless one is storing data that is very heavily duplicated, such as virtual machine images or user backups,
it is possible that deduplication will do more harm than good.
Another consideration is the inability to revert deduplication status.
If data is written when deduplication is enabled, disabling dedup will not cause those blocks which were deduplicated to be replicated until they are next modified.

Deduplication can also lead to some unexpected situations.
In particular, deleting files may become much slower.

[[zpool-fully-full]]
=== I cannot delete or create files on my ZFS pool. How can I fix this?

This could happen because the pool is 100% full.
ZFS requires space on the disk to write transaction metadata.
To restore the pool to a usable state, truncate the file to delete:

[source,shell]
....
% truncate -s 0 unimportant-file
....

File truncation works because a new transaction is not started, new spare blocks are created instead.

[NOTE]
====
On systems with additional ZFS dataset tuning, such as deduplication, the space may not be immediately available.
====

[[zfs-ssd-trim]]
=== Is there TRIM support for ZFS on solid state drives?

ZFS in FreeBSD 12.3 and 12.4: TRIM is enabled by default.
To disable TRIM: add the line below to [.filename]#/etc/sysctl.conf#, then restart the system.

[.programlisting]
....
vfs.zfs.trim.enabled=0
....

OpenZFS in FreeBSD 13.0 and greater: see man:zpool-trim[8], and `autotrim` in man:zpoolprops[7].

[[admin]]
== System Administration

[[startup-config-files]]
=== Where are the system start-up configuration files?

The primary configuration file is [.filename]#/etc/defaults/rc.conf# which is described in man:rc.conf[5].
System startup scripts such as [.filename]#/etc/rc# and [.filename]#/etc/rc.d#, which are described in man:rc[8], include this file.
_Do not edit this file!_ Instead, to edit an entry in [.filename]#/etc/defaults/rc.conf#, copy the line into [.filename]#/etc/rc.conf# and change it there.

For example, to start man:sshd[8], the included OpenSSH daemon:

[source,shell]
....
# echo 'sshd_enable="YES"' >> /etc/rc.conf
....

Alternatively, use man:sysrc[8] to modify [.filename]#/etc/rc.conf#:

[source,shell]
....
# sysrc sshd_enable="YES"
....

To start up local services, place shell scripts in the [.filename]#/usr/local/etc/rc.d# directory.
These shell scripts should be set executable, the default file mode is `555`.

[[adding-users]]
=== How do I add a user easily?

Use the man:adduser[8] command, or the man:pw[8] command for more complicated situations.

To remove the user, use the man:rmuser[8] command or, if necessary, man:pw[8].

[[root-not-found-cron-errors]]
=== Why do I keep getting messages like root: not found after editing /etc/crontab?

This is normally caused by editing the system crontab.
This is not the correct way to do things as the system crontab has a different format to the per-user crontabs.
The system crontab has an extra field, specifying which user to run the command as.
man:cron[8] assumes this user is the first word of the command to execute.
Since no such command exists, this error message is displayed.

To delete the extra, incorrect crontab:

[source,shell]
....
# crontab -r
....

[[su-wheel-group]]
=== Why do I get the error, you are not in the correct group to su root when I try to su to root?

This is a security feature.
In order to `su` to `root`, or any other account with superuser privileges, the user account must be a member of the `wheel` group.
If this feature were not there, anybody with an account on a system who also found out ``root``'s password would be able to gain superuser level access to the system.

To allow someone to `su` to `root`, put them in the `wheel` group using `pw`:

[source,shell]
....
# pw groupmod wheel -m lisa
....

The above example will add user `lisa` to the group `wheel`.

[[rcconf-readonly]]
=== I made a mistake in rc.conf, or another startup file, and now I cannot edit it because the file system is read-only. What should I do?

Restart the system using `boot -s` at the loader prompt to enter single-user mode.
When prompted for a shell pathname, press kbd:[Enter] and run `mount -urw /` to re-mount the root file system in read/write mode.
You may also need to run `mount -a -t ufs` to mount the file system where your favorite editor is defined.
If that editor is on a network file system, either configure the network manually before mounting the network file systems,
or use an editor which resides on a local file system, such as man:ed[1].

In order to use a full screen editor such as man:vi[1] or man:emacs[1],
run `export TERM=xterm` so that these editors can load the correct data from the man:termcap[5] database.

After performing these steps, edit [.filename]#/etc/rc.conf# to fix the syntax error.
The error message displayed immediately after the kernel boot messages should indicate the number of the line in the file which is at fault.

[[printer-setup]]
=== Why am I having trouble setting up my printer?

See the extref:{handbook}printing/[Handbook entry on printing] for troubleshooting tips.

[[keyboard-mappings]]
=== How can I correct the keyboard mappings for my system?

Refer to the Handbook section on extref:{handbook}l10n/[using localization, using-localization],
specifically the section on extref:{handbook}l10n/[console setup, setting-console].

[[user-quotas]]
=== Why can I not get user quotas to work properly?

. It is possible that the kernel is not configured to use quotas.
In this case, add the following line to the kernel configuration file and recompile the kernel:
+
[.programlisting]
....
options QUOTA
....
+
Refer to the extref:{handbook}disks/[Handbook entry on quotas, quotas] for full details.
. Do not turn on quotas on [.filename]#/#.
. Put the quota file on the file system that the quotas are to be enforced on:
+
[.informaltable]
[cols="1,1", frame="none", options="header"]
|===
| File System
| Quota file

|[.filename]#/usr#
|[.filename]#/usr/admin/quotas#

|[.filename]#/home#
|[.filename]#/home/admin/quotas#

|...
|...
|===

[[sysv-ipc]]
=== Does FreeBSD support System V IPC primitives?

Yes, FreeBSD supports System V-style IPC, including shared memory, messages and semaphores, in the [.filename]#GENERIC# kernel.
With a custom kernel, support may be loaded with the [.filename]#sysvshm.ko#, [.filename]#sysvsem.ko# and [.filename]#sysvmsg.ko# kernel modules,
or enabled in the custom kernel by adding the following lines to the kernel configuration file:

[.programlisting]
....
options    SYSVSHM          # enable shared memory
options    SYSVSEM          # enable for semaphores
options    SYSVMSG          # enable for messaging
....

Recompile and install the kernel.

[[sendmail-alternative]]
=== What other mail-server software can I use instead of Sendmail?

The http://www.sendmail.org/[Sendmail] server is the default mail-server software for FreeBSD, but it can be replaced with another MTA installed from the Ports Collection.
Available ports include package:mail/exim[], package:mail/postfix[], and package:mail/qmail[].
Search the mailing lists for discussions regarding the advantages and disadvantages of the available MTAs.

[[forgot-root-pw]]
=== I have forgotten the root password! What do I do?

Do not panic!
Restart the system, type `boot -s` at the `Boot:` prompt to enter single-user mode.
At the question about the shell to use, hit kbd:[Enter] which will display a # prompt.
Enter `mount -urw /` to remount the root file system read/write, then run `mount -a` to remount all the file systems.
Run `passwd root` to change the `root` password then run man:exit[1] to continue booting.

[NOTE]
====
If you are still prompted to give the `root` password when entering the single-user mode, it means that the console has been marked as `insecure` in [.filename]#/etc/ttys#.
In this case, it will be required to boot from a FreeBSD installation disk, choose the [.guimenuitem]#Live CD# or [.guimenuitem]#Shell# at the beginning of the install process and issue the commands mentioned above.
Mount the specific partition in this case and then chroot to it.
For example, replace `mount -urw /` with `mount /dev/ada0p1 /mnt; chroot /mnt` for a system on _ada0p1_.
====

[NOTE]
====
If the root partition cannot be mounted from single-user mode,
it is possible that the partitions are encrypted and it is impossible to mount them without the access keys.
For more information see the section about encrypted disks in the FreeBSD extref:{handbook}disks/[Handbook, disks-encrypting].
====

[[CAD-reboot]]
=== How do I keep kbd:[Control] + kbd:[Alt] + kbd:[Delete] from rebooting the system?

When using man:vt[4], the default console driver, this can be done by setting the following man:sysctl[8]:

[source,shell]
....
# sysctl kern.vt.kbd_reboot=0
....

[[dos-to-unix-txt]]
=== How do I reformat DOS text files to UNIX(R) ones?

Use this man:perl[1] command:

[source,shell]
....
% perl -i.bak -npe 's/\r\n/\n/g' file(s)
....

where _file(s)_ is one or more files to process.
The modification is done in-place, with the original file stored with a [.filename]#.bak# extension.

Alternatively, use man:tr[1]:

[source,shell]
....
% tr -d '\r' < dos-text-file > unix-file
....

_dos-text-file_ is the file containing DOS text while _unix-file_ will contain the converted output.
This can be quite a bit faster than using `perl`.

Yet another way to reformat DOS text files is to use the package:converters/dosunix[] port from the Ports Collection.
Consult its documentation about the details.

[[reread-rc]]
=== How do I re-read [.filename]#/etc/rc.conf# and re-start [.filename]#/etc/rc# without a reboot?

Go into single-user mode and then back to multi-user mode:

[source,shell]
....
# shutdown now
# return
# exit
....

[[release-candidate]]
=== I tried to update my system to the latest _-STABLE_, but got _-BETAx_, _-RC_ or __-PRERELEASE__! What is going on?

Short answer: it is just a name.
_RC_ stands for "Release Candidate".
It signifies that a release is imminent.
In FreeBSD, _-PRERELEASE_ is typically synonymous with the code freeze before a release.
(For some releases, the _-BETA_ label was used in the same way as _-PRERELEASE_.)

Long answer: FreeBSD derives its releases from one of two places.
Major, dot-zero, releases, such as 9.0-RELEASE are branched from the head of the development stream, commonly referred to as <<current,-CURRENT>>.
Minor releases, such as 6.3-RELEASE or 5.2-RELEASE, have been snapshots of the active <<stable,-STABLE>> branch.
Starting with 4.3-RELEASE, each release also now has its own branch which can be tracked by people requiring an extremely conservative rate of development (typically only security advisories).

When a release is about to be made, the branch from which it will be derived from has to undergo a certain process.
Part of this process is a code freeze.
When a code freeze is initiated, the name of the branch is changed to reflect that it is about to become a release.
For example, if the branch used to be called 6.2-STABLE, its name will be changed to 6.3-PRERELEASE to signify the code freeze and signify that extra pre-release testing should be happening.
Bug fixes can still be committed to be part of the release.
When the source code is in shape for the release the name will be changed to 6.3-RC to signify that a release is about to be made from it.
Once in the RC stage, only the most critical bugs found can be fixed.
Once the release (6.3-RELEASE in this example) and release branch have been made, the branch will be renamed to 6.3-STABLE.

For more information on version numbers and the various Subversion branches, refer to the extref:{releng}[Release Engineering] article.

[[kernel-chflag-failure]]
=== I tried to install a new kernel, and the man:chflags[1] failed. How do I get around this?

Short answer: the security level is greater than 0.
Reboot directly to single-user mode to install the kernel.

Long answer: FreeBSD disallows changing system flags at security levels greater than 0.
To check the current security level:

[source,shell]
....
# sysctl kern.securelevel
....

The security level cannot be lowered in multi-user mode, so boot to single-user mode to install the kernel, or change the security level in [.filename]#/etc/rc.conf# then reboot.
See the man:init[8] manual page for details on `securelevel`, and see [.filename]#/etc/defaults/rc.conf# and the man:rc.conf[5] manual page for more information on [.filename]#rc.conf#.

[[kernel-securelevel-time]]
=== I cannot change the time on my system by more than one second! How do I get around this?

Short answer: the system is at a security level greater than 1.
Reboot directly to single-user mode to change the date.

Long answer: FreeBSD disallows changing the time by more that one second at security levels greater than 1.
To check the security level:

[source,shell]
....
# sysctl kern.securelevel
....

The security level cannot be lowered in multi-user mode.
Either boot to single-user mode to change the date or change the security level in [.filename]#/etc/rc.conf# and reboot.
See the man:init[8] manual page for details on `securelevel`, and see [.filename]#/etc/defaults/rc.conf# and the man:rc.conf[5] manual page for more information on [.filename]#rc.conf#.

[[statd-mem-leak]]
=== Why is rpc.statd using 256 MB of memory?

No, there is no memory leak, and it is not using 256 MB of memory.
For convenience, `rpc.statd` maps a large amount of memory into its address space.
There is nothing terribly wrong with this from a technical standpoint; it just throws off things like man:top[1] and man:ps[1].

man:rpc.statd[8] maps its status file ([.filename]#/var/db/statd.status#) into its address space;
to save worrying about remapping the status file later when it needs to grow, it maps the status file with a generous size.

[[unsetting-schg]]
=== Why can I not unset the schg file flag?

The system is running at securelevel greater than 0.
Lower the securelevel and try again.
For more information, see <<securelevel,the FAQ entry on securelevel>> and the man:init[8] manual page.

[[vnlru]]
=== What is vnlru?

`vnlru` flushes and frees vnodes when the system hits the `kern.maxvnodes` limit.
This kernel thread sits mostly idle, and only activates when there is a huge amount of RAM and users are accessing tens of thousands of tiny files.

[[top-memory-states]]
=== What do the various memory states displayed by top mean?

* `Active`: pages recently statistically used.
* `Inactive`: pages recently statistically unused.
* `Laundry`: pages recently statistically unused but known to be dirty, that is, whose contents needs to be paged out before they can be reused.
* `Free`: pages without data content, which can be immediately reused.
* `Wired`: pages that are fixed into memory, usually for kernel purposes, but also sometimes for special use in processes.

Pages are most often written to disk (sort of a VM sync) when they are in the laundry state, but active or inactive pages can also be synced.
This depends upon the CPU tracking of the modified bit being available,
and in certain situations there can be an advantage for a block of VM pages to be synced, regardless of the queue they belong to.
In most common cases, it is best to think of the laundry queue as a queue of relatively unused pages that might or might not be in the process of being written to disk.
The inactive queue contains a mix of clean and dirty pages;
clean pages near the head of the queue are reclaimed immediately to alleviate a free page shortage,
and dirty pages are moved to the laundry queue for deferred processing.

There are some other flags (e.g., busy flag or busy count) that might modify some of the described rules.

[[free-memory-amount]]
=== How much free memory is available?

There are a couple of kinds of "free memory".
The most common is the amount of memory immediately available without reclaiming memory already in use.
That is the size of the free pages queue plus some other reserved pages.
This amount is exported by the `vm.stats.vm.v_free_count` man:sysctl[8], shown, for instance, by man:top[1].
Another kind of "free memory" is the total amount of virtual memory available to userland processes,
which depends on the sum of swap space and usable memory.
Other kinds of "free memory" descriptions are also possible, but it is relatively useless to define these,
but rather it is important to make sure that the paging rate is kept low, and to avoid running out of swap space.

[[var-empty]]
=== What is [.filename]#/var/empty#?

[.filename]#/var/empty# is a directory that the man:sshd[8] program uses when performing privilege separation.
The [.filename]#/var/empty# directory is empty, owned by `root` and has the `schg` flag set.
This directory should not be deleted.

[[newsyslog-expectations]]
=== I just changed [.filename]#/etc/newsyslog.conf#. How can I check if it does what I expect?

To see what man:newsyslog[8] will do, use the following:

[source,shell]
....
% newsyslog -nrvv
....

[[timezone]]
=== My time is wrong, how can I change the timezone?

Use man:tzsetup[8].

[[X11]]
== The X Window System and Virtual Consoles

[[whatis-X]]
=== What is the X Window System?

The X Window System (commonly `X11`) is the most widely available windowing system capable of running on UNIX(R) or UNIX(R) like systems, including FreeBSD.
http://www.x.org/wiki/[The X.Org Foundation] administers the http://en.wikipedia.org/wiki/X_Window_System_core_protocol[X protocol standards], with the current reference implementation, version 11 release 7.7, so references are often shortened to `X11`.

Many implementations are available for different architectures and operating systems.
An implementation of the server-side code is properly known as an `X server`.

[[running-X]]
=== I want to run Xorg, how do I go about it?

To install Xorg do one of the following:

Use the package:x11/xorg[] meta-port, which builds and installs every Xorg component.

Use package:x11/xorg-minimal[], which builds and installs only the necessary Xorg components.

Install Xorg from FreeBSD packages:

[source,shell]
....
# pkg install xorg
....

After the installation of Xorg, follow the instructions from the extref:{handbook}x11/[X11 Configuration, x-config] section of the FreeBSD Handbook.

[[running-X-securelevels]]
=== I tried to run X, but I get a 'No devices detected' error when I type startx. What do I do now?

The system is probably running at a raised `securelevel`.
It is not possible to start X at a raised `securelevel` because X requires write access to man:io[4].
For more information, see at the man:init[8] manual page.

There are two solutions to the problem:
set the `securelevel` back down to zero or run man:xdm[8] (or an alternative display manager) at boot time before the `securelevel` is raised.

See <<xdm-boot>> for more information about running man:xdm[8] at boot time.

[[x-and-moused]]
=== Why does my mouse not work with X?

When using man:vt[4], the default console driver, FreeBSD can be configured to support a mouse pointer on each virtual screen.
To avoid conflicting with X, man:vt[4] supports a virtual device called [.filename]#/dev/sysmouse#.
All mouse events received from the real mouse device are written to the man:sysmouse[4] device via man:moused[8].
To use the mouse on one or more virtual consoles, _and_ use X, see <<moused>> and set up man:moused[8].

Then edit [.filename]#/etc/X11/xorg.conf# and make sure the following lines exist:

[.programlisting]
....
Section "InputDevice"
   Option          "Protocol" "SysMouse"
   Option          "Device" "/dev/sysmouse"
.....
....

Starting with Xorg version 7.4, the `InputDevice` sections in [.filename]#xorg.conf# are ignored in favor of autodetected devices.
To restore the old behavior, add the following line to the `ServerLayout` or `ServerFlags` section:

[.programlisting]
....
Option "AutoAddDevices" "false"
....

Some people prefer to use [.filename]#/dev/mouse# under X.
To make this work, [.filename]#/dev/mouse# should be linked to [.filename]#/dev/sysmouse# (see man:sysmouse[4]) by adding the following line to [.filename]#/etc/devfs.conf# (see man:devfs.conf[5]):

[.programlisting]
....
link    sysmouse    mouse
....

This link can be created by restarting man:devfs[5] with the following command (as `root`):

[source,shell]
....
# service devfs restart
....

[[x-and-wheel]]
=== My mouse has a fancy wheel. Can I use it in X?

Yes, if X is configured for a 5 button mouse.
To do this, add the lines `Buttons 5` and `ZAxisMapping 4 5` to the "InputDevice" section of [.filename]#/etc/X11/xorg.conf#, as seen in this example:

[.programlisting]
....
Section "InputDevice"
   Identifier      "Mouse1"
   Driver          "mouse"
   Option          "Protocol" "auto"
   Option          "Device" "/dev/sysmouse"
   Option          "Buttons" "5"
   Option          "ZAxisMapping" "4 5"
EndSection
....

The mouse can be enabled in Emacs by adding these lines to [.filename]#~/.emacs#:

[.programlisting]
....
;; wheel mouse
(global-set-key [mouse-4] 'scroll-down)
(global-set-key [mouse-5] 'scroll-up)
....

[[x-and-synaptic]]
=== My laptop has a Synaptics touchpad. Can I use it in X?

Yes, after configuring a few things to make it work.

In order to use the Xorg synaptics driver, first remove `moused_enable` from [.filename]#rc.conf#.

To enable synaptics, add the following line to [.filename]#/boot/loader.conf#:

[.programlisting]
....
hw.psm.synaptics_support="1"
....

Add the following to [.filename]#/etc/X11/xorg.conf#:

[.programlisting]
....
Section "InputDevice"
Identifier  "Touchpad0"
Driver      "synaptics"
Option      "Protocol" "psm"
Option      "Device" "/dev/psm0"
EndSection
....

And be sure to add the following into the "ServerLayout" section:

[.programlisting]
....
InputDevice    "Touchpad0" "SendCoreEvents"
....

[[no-remote-x11]]
=== How do I use remote X displays?

For security reasons, the default setting is to not allow a machine to remotely open a window.

To enable this feature, start X with the optional `-listen_tcp` argument:

[source,shell]
....
% startx -listen_tcp
....

[[virtual-console]]
=== What is a virtual console and how do I make more?

Virtual consoles provide several simultaneous sessions on the same machine without doing anything complicated like setting up a network or running X.

When the system starts, it will display a login prompt on the monitor after displaying all the boot messages.
Type in your login name and password to start working on the first virtual console.

To start another session, perhaps to look at documentation for a program or to read mail while waiting for an FTP transfer to finish, hold down kbd:[Alt] and press kbd:[F2].
This will display the login prompt for the second virtual console.
To go back to the original session, press kbd:[Alt+F1].

The default FreeBSD installation has eight virtual consoles enabled.
kbd:[Alt+F1], kbd:[Alt+F2], kbd:[Alt+F3], and so on will switch between these virtual consoles.

To enable more of virtual consoles, edit [.filename]#/etc/ttys# (see man:ttys[5]) and add entries for [.filename]#ttyv8# to [.filename]#ttyvc#, after the comment on "Virtual terminals":

[.programlisting]
....
# Edit the existing entry for ttyv8 in /etc/ttys and change
# "off" to "on".
ttyv8   "/usr/libexec/getty Pc"         xterm  on secure
ttyv9   "/usr/libexec/getty Pc"         xterm  on secure
ttyva   "/usr/libexec/getty Pc"         xterm  on secure
ttyvb   "/usr/libexec/getty Pc"         xterm  on secure
....

The more virtual terminals, the more resources that are used.
This can be problematic on systems with 8 MB RAM or less.
Consider changing `secure` to `insecure`.

[IMPORTANT]
====
In order to run an X server, at least one virtual terminal must be left to `off` for it to use.
This means that only eleven of the Alt-function keys can be used as virtual consoles so that one is left for the X server.
====

For example, to run X and eleven virtual consoles, the setting for virtual terminal 12 should be:

[.programlisting]
....
ttyvb   "/usr/libexec/getty Pc"         xterm  off secure
....

The easiest way to activate the virtual consoles is to reboot.

[[vty-from-x]]
=== How do I access the virtual consoles from X?

Use kbd:[Ctrl+Alt+Fn] to switch back to a virtual console.
Press kbd:[Ctrl+Alt+F1] to return to the first virtual console.

Once at a text console, use kbd:[Alt+Fn] to move between them.

To return to the X session, switch to the virtual console running X.
If X was started from the command line using `startx`,
the X session will attach to the next unused virtual console,
not the text console from which it was invoked.
For eight active virtual terminals, X will run on the ninth, so use kbd:[Alt+F9].

[[xdm-boot]]
=== How do I start XDM on boot?

There are two schools of thought on how to start man:xdm[8].
One school starts `xdm` from [.filename]#/etc/ttys# (see man:ttys[5]) using the supplied example, while the other sets `xdm_enable=yes` in [.filename]#/etc/rc.conf#.
Both are equally valid, and one may work in situations where the other does not.
In both cases the result is the same: X will pop up a graphical login prompt.

The man:ttys[5] method has the advantage of documenting which vty X will start on and passing the responsibility of restarting the X server on logout to man:init[8].
The man:rc[8] method makes it easy to `kill xdm` if there is a problem starting the X server.

When using the man:rc[8] method, `xdm_tty` (default `ttyv8`) can be set in [.filename]#/etc/rc.conf# to choose which vty man:xdm[8] opens on.

[[xconsole-failure]]
=== Why do I get Couldn't open console when I run xconsole?

When X is started with `startx`, the permissions on [.filename]#/dev/console# will _not_ get changed, resulting in things like `xterm -C` and `xconsole` not working.

This is because of the way console permissions are set by default.
On a multi-user system, one does not necessarily want just any user to be able to write on the system console.
For users who are logging directly onto a machine with a VTY, the man:fbtab[5] file exists to solve such problems.

In a nutshell, make sure an uncommented line of the form is in [.filename]#/etc/fbtab# (see man:fbtab[5]):

[.programlisting]
....
/dev/ttyv0 0600 /dev/console
....

It will ensure that whomever logs in on [.filename]#/dev/ttyv0# will own the console.

[[ps2-x]]
=== Why does my PS/2 mouse misbehave under X?

The mouse and the mouse driver may have become out of synchronization.
In rare cases, the driver may also erroneously report synchronization errors:

[.programlisting]
....
psmintr: out of sync (xxxx != yyyy)
....

If this happens, disable the synchronization check code by setting the driver flags for the PS/2 mouse driver to `0x100`.
This can be easiest achieved by adding `hint.psm.0.flags="0x100"` to [.filename]#/boot/loader.conf# and rebooting.

[[mouse-button-reverse]]
=== How do I reverse the mouse buttons?

Type `xmodmap -e "pointer = 3 2 1"`.
Add this command to [.filename]#~/.xinitrc# or [.filename]#~/.xsession# to make it happen automatically.

[[install-splash]]
=== How do I install a splash screen and where do I find them?

The detailed answer for this question can be found in the extref:{handbook}[Boot Time Splash Screens, boot-splash] section of the FreeBSD Handbook.

[[windows-keys]]
=== Can I use the kbd:[Windows] keys on my keyboard in X?

Yes.
Use man:xmodmap[1] to define which functions the keys should perform.

Assuming all Windows keyboards are standard, the keycodes for these three keys are the following:

* 115 - kbd:[Windows] key, between the left-hand kbd:[Ctrl] and kbd:[Alt] keys
* 116 - kbd:[Windows] key, to the right of kbd:[AltGr]
* 117 - kbd:[Menu], to the left of the right-hand kbd:[Ctrl]

To have the left kbd:[Windows] key print a comma, try this.

[source,shell]
....
# xmodmap -e "keycode 115 = comma"
....

To have the kbd:[Windows] key-mappings enabled automatically every time X is started,
either put the `xmodmap` commands in [.filename]#~/.xinitrc# or, preferably,
create a [.filename]#~/.xmodmaprc# and include the `xmodmap` options,
one per line, then add the following line to [.filename]#~/.xinitrc#:

[.programlisting]
....
xmodmap $HOME/.xmodmaprc
....

For example, to map the 3 keys to be kbd:[F13], kbd:[F14], and kbd:[F15], respectively.
This would make it easy to map them to useful functions within applications or the window manager.

To do this, put the following in [.filename]#~/.xmodmaprc#.

[.programlisting]
....
keycode 115 = F13
keycode 116 = F14
keycode 117 = F15
....

For the package:x11-wm/fvwm2[] desktop manager,
one could map the keys so that kbd:[F13] iconifies or de-iconifies the window the cursor is in,
kbd:[F14] brings the window the cursor is in to the front or, if it is already at the front, pushes it to the back,
and kbd:[F15] pops up the main Workplace menu even if the cursor is not on the desktop,
which is useful when no part of the desktop is visible.

The following entries in [.filename]#~/.fvwmrc# implement the aforementioned setup:

[.programlisting]
....
Key F13        FTIWS    A        Iconify
Key F14        FTIWS    A        RaiseLower
Key F15        A        A        Menu Workplace Nop
....

[[x-3d-acceleration]]
=== How can I get 3D hardware acceleration for OpenGL(R)?

The availability of 3D acceleration depends on the version of Xorg and the type of video chip.
For an nVidia chip, use the binary drivers provided for FreeBSD by installing one of the following ports:

The latest versions of nVidia cards are supported by the package:x11/nvidia-driver[] port.

Older drivers are available as:

* package:x11/nvidia-driver-390[]
* package:x11/nvidia-driver-340[]
* package:x11/nvidia-driver-304[]

nVidia provides detailed information on which card is supported by which driver on their web site: http://www.nvidia.com/object/IO_32667.html[http://www.nvidia.com/object/IO_32667.html].

For Matrox G200/G400, check the package:x11-drivers/xf86-video-mga[] port.

For ATI Rage 128 and Radeon see man:ati[4], man:r128[4] and man:radeon[4].

[[networking]]
== Networking

[[diskless-booting]]
=== Where can I get information on diskless booting?

"Diskless booting" means that the FreeBSD box is booted over a network, and reads the necessary files from a server instead of its hard disk.
For full details, see extref:{handbook}advanced-networking/[the Handbook entry on diskless booting, network-diskless].

[[router]]
=== Can a FreeBSD box be used as a dedicated network router?

Yes.
Refer to the Handbook entry on extref:{handbook}advanced-networking/[advanced networking, advanced-networking],
specifically the section on extref:{handbook}advanced-networking/[routing and gateways, network-routing].

[[natd]]
=== Does FreeBSD support NAT or Masquerading?

Yes.
For instructions on how to use NAT over a PPP connection, see the extref:{handbook}ppp-and-slip/[Handbook entry on PPP, userppp].
To use NAT over some other sort of network connection, look at the extref:{handbook}[natd, network-natd] section of the Handbook.

[[ethernet-aliases]]
=== How can I set up Ethernet aliases?

If the alias is on the same subnet as an address already configured on the interface, add `netmask 0xffffffff` to this command:

[source,shell]
....
# ifconfig ed0 alias 192.0.2.2 netmask 0xffffffff
....

Otherwise, specify the network address and netmask as usual:

[source,shell]
....
# ifconfig ed0 alias 172.16.141.5 netmask 0xffffff00
....

More information can be found in the FreeBSD extref:{handbook}config/[Handbook, configtuning-virtual-hosts].

[[nfs-linux]]
=== Why can I not NFS-mount from a Linux(R) box?

Some versions of the Linux(R) NFS code only accept mount requests from a privileged port; try to issue the following command:

[source,shell]
....
# mount -o -P linuxbox:/blah /mnt
....

[[exports-errors]]
=== Why does mountd keep telling me it can't change attributes and that I have a bad exports list on my FreeBSD NFS server?

The most frequent problem is not understanding the correct format of [.filename]#/etc/exports#.
Review man:exports[5] and the extref:{handbook}network-servers/[NFS, network-nfs] entry in the Handbook,
especially the section on extref:{handbook}[configuring NFS, configuring-nfs].

[[ip-multicast]]
=== How do I enable IP multicast support?

Install the package:net/mrouted[] package or port and add `mrouted_enable="YES"` to [.filename]#/etc/rc.conf# start this service at boot time.

[[fqdn-hosts]]
=== Why do I have to use the FQDN for hosts on my site?

See the answer in the FreeBSD extref:{handbook}mail/[Handbook, mail-trouble].

[[network-permission-denied]]
=== Why do I get an error, Permission denied, for all networking operations?

If the kernel is compiled with the `IPFIREWALL` option,
be aware that the default policy is to deny all packets that are not explicitly allowed.

If the firewall is unintentionally misconfigured, restore network operability by typing the following as `root`:

[source,shell]
....
# ipfw add 65534 allow all from any to any
....

Consider setting `firewall_type="open"` in [.filename]#/etc/rc.conf#.

For further information on configuring this firewall, see the extref:{handbook}firewalls/[Handbook chapter, firewalls-ipfw].

[[ipfw-fwd]]
=== Why is my `ipfw` “fwd” rule to redirect a service to another machine not working?

Possibly because network address translation (NAT) is needed instead of just forwarding packets.
A "fwd" rule only forwards packets, it does not actually change the data inside the packet.
Consider this rule:

[source,shell]
....
01000 fwd 10.0.0.1 from any to foo 21
....

When a packet with a destination address of _foo_ arrives at the machine with this rule,
the packet is forwarded to _10.0.0.1_, but it still has the destination address of _foo_.
The destination address of the packet is not changed to _10.0.0.1_.
Most machines would probably drop a packet that they receive with a destination address that is not their own.
Therefore, using a "fwd" rule does not often work the way the user expects.
This behavior is a feature and not a bug.

See the <<service-redirect,FAQ about redirecting services>>, the man:natd[8] manual,
or one of the several port redirecting utilities in the link:https://www.FreeBSD.org/ports/[Ports Collection] for a correct way to do this.

[[service-redirect]]
=== How can I redirect service requests from one machine to another?

FTP and other service requests can be redirected with the package:sysutils/socket[] package or port.
Replace the entry for the service in [.filename]#/etc/inetd.conf# to call `socket`, as seen in this example for ftpd:

[.programlisting]
....
ftp stream tcp nowait nobody /usr/local/bin/socket socket ftp.example.com ftp
....

where _ftp.example.com_ and _ftp_ are the host and port to redirect to, respectively.

[[bandwidth-mgr-tool]]
=== Where can I get a bandwidth management tool?

There are three bandwidth management tools available for FreeBSD.
man:dummynet[4] is integrated into FreeBSD as part of man:ipfw[4].
http://www.sonycsl.co.jp/person/kjc/programs.html[ALTQ] has been integrated into FreeBSD as part of man:pf[4].
Bandwidth Manager from http://www.etinc.com/[Emerging Technologies] is a commercial product.

[[bpf-not-configured]]
=== Why do I get /dev/bpf0: device not configured?

The running application requires the Berkeley Packet Filter (man:bpf[4]), but it was removed from a custom kernel.
Add this to the kernel config file and build a new kernel:

[.programlisting]
....
device bpf        # Berkeley Packet Filter
....

[[mount-smb-share]]
=== How do I mount a disk from a Windows(R) machine that is on my network, like smbmount in Linux(R)?

Use the SMBFS toolset.
It includes a set of kernel modifications and a set of userland programs.
The programs and information are available as man:mount_smbfs[8] in the base system.

[[icmp-response-bw-limit]]
=== What are these messages about: Limiting icmp/open port/closed port response in my log files?

This kernel message indicates that some activity is provoking it to send a large amount of ICMP or TCP reset (RST) responses.
ICMP responses are often generated as a result of attempted connections to unused UDP ports.
TCP resets are generated as a result of attempted connections to unopened TCP ports.
Among others, these are the kinds of activities which may cause these messages:

* Brute-force denial of service (DoS) attacks (as opposed to single-packet attacks which exploit a specific vulnerability).
* Port scans which attempt to connect to a large number of ports (as opposed to only trying a few well-known ports).

The first number in the message indicates how many packets the kernel would have sent if the limit was not in place, and the second indicates the limit.
This limit is controlled using `net.inet.icmp.icmplim`.
This example sets the limit to `300` packets per second:

[source,shell]
....
# sysctl net.inet.icmp.icmplim=300
....

To disable these messages without disabling response limiting, use `net.inet.icmp.icmplim_output` to disable the output:

[source,shell]
....
# sysctl net.inet.icmp.icmplim_output=0
....

Finally, to disable response limiting completely, set `net.inet.icmp.icmplim` to `0`.
Disabling response limiting is discouraged for the reasons listed above.

[[unknown-hw-addr-format]]
=== What are these arp: unknown hardware address format error messages?

This means that some device on the local Ethernet is using a MAC address in a format that FreeBSD does not recognize.
This is probably caused by someone experimenting with an Ethernet card somewhere else on the network.
This is most commonly seen on cable modem networks.
It is harmless, and should not affect the performance of the FreeBSD system.

[[arp-wrong-iface]]
=== Why do I keep seeing messages like: 192.168.0.10 is on fxp1 but got reply from 00:15:17:67:cf:82 on rl0, and how do I disable it?

A packet is coming from outside the network unexpectedly.
To disable them, set `net.link.ether.inet.log_arp_wrong_iface` to `0`.

[[ipv6-only]]
=== How do I compile an IPv6 only kernel?

Configure your kernel with these settings: 

[source,shell]
....
include GENERIC
ident GENERIC-IPV6ONLY
makeoptions MKMODULESENV+="WITHOUT_INET_SUPPORT="
nooptions INET
nodevice gre
....

[[security]]
== Security

[[sandbox]]
=== What is a sandbox?

"Sandbox" is a security term.
It can mean two things:

* A process which is placed inside a set of virtual walls that are designed to prevent someone who breaks into the process from being able to break into the wider system.
+
The process is only able to run inside the walls.
Since nothing the process does in regards to executing code is supposed to be able to breach the walls,
a detailed audit of its code is not needed in order to be able to say certain things about its security.
+
The walls might be a user ID, for example.
This is the definition used in the man:security[7] and man:named[8] man pages.
+
Take the `ntalk` service, for example (see man:inetd[8]).
This service used to run as user ID `root`.
Now it runs as user ID `tty`.
The `tty` user is a sandbox designed to make it more difficult for someone who has successfully hacked into the system via `ntalk` from being able to hack beyond that user ID.
* A process which is placed inside a simulation of the machine.
It means that someone who is able to break into the process may believe that he can break into the wider machine but is, in fact, only breaking into a simulation of that machine and not modifying any real data.
+
The most common way to accomplish this is to build a simulated environment in a subdirectory and then run the processes in that directory chrooted so that [.filename]#/# for that process is this directory, not the real [.filename]#/# of the system).
+
Another common use is to mount an underlying file system read-only and then create a file system layer on top of it that gives a process a seemingly writeable view into that file system.
The process may believe it is able to write to those files, but only the process sees the effects - other processes in the system do not, necessarily.
+
An attempt is made to make this sort of sandbox so transparent that the user (or hacker) does not realize that he is sitting in it.

UNIX(R) implements two core sandboxes.
One is at the process level, and one is at the userid level.

Every UNIX(R) process is completely firewalled off from every other UNIX(R) process.
One process cannot modify the address space of another.

A UNIX(R) process is owned by a particular userid.
If the user ID is not the `root` user, it serves to firewall the process off from processes owned by other users.
The user ID is also used to firewall off on-disk data.

[[securelevel]]
=== What is securelevel?

`securelevel` is a security mechanism implemented in the kernel.
When the securelevel is positive, the kernel restricts certain tasks;
not even the superuser (`root`) is allowed to do them.
The securelevel mechanism limits the ability to:

* Unset certain file flags, such as `schg` (the system immutable flag).
* Write to kernel memory via [.filename]#/dev/mem# and [.filename]#/dev/kmem#.
* Load kernel modules.
* Alter firewall rules.

To check the status of the securelevel on a running system:

[source,shell]
....
# sysctl -n kern.securelevel
....

The output contains the current value of the securelevel.
If it is greater than 0, at least some of the securelevel's protections are enabled.

The securelevel of a running system cannot be lowered as this would defeat its purpose.
If a task requires that the securelevel be non-positive,
change the `kern_securelevel` and `kern_securelevel_enable` variables in [.filename]#/etc/rc.conf# and reboot.

For more information on securelevel and the specific things all the levels do, consult man:init[8].

[WARNING]
====
Securelevel is not a silver bullet; it has many known deficiencies.
More often than not, it provides a false sense of security.

One of its biggest problems is that in order for it to be at all effective, all files used in the boot process up until the securelevel is set must be protected.
If an attacker can get the system to execute their code prior to the securelevel being set (which happens quite late in the boot process since some things the system must do at start-up cannot be done at an elevated securelevel), its protections are invalidated.
While this task of protecting all files used in the boot process is not technically impossible, if it is achieved,
system maintenance will become a nightmare since one would have to take the system down, at least to single-user mode, to modify a configuration file.

This point and others are often discussed on the mailing lists, particularly the {freebsd-security}.
Search the archives link:https://www.FreeBSD.org/search/[here] for an extensive discussion.
A more fine-grained mechanism is preferred.
====

[[toor-account]]
=== What is this UID 0 toor account? Have I been compromised?

Do not worry.
`toor` is an "alternative" superuser account, where toor is root spelled backwards.
It is intended to be used with a non-standard shell so the default shell for `root` does not need to change.
This is important as shells which are not part of the base distribution, but are instead installed from ports or packages, are installed in [.filename]#/usr/local/bin# which, by default, resides on a different file system.
If ``root``'s shell is located in [.filename]#/usr/local/bin# and the file system containing [.filename]#/usr/local/bin#) is not mounted,
`root` will not be able to log in to fix a problem and will have to reboot into single-user mode in order to enter the path to a shell.

Some people use `toor` for day-to-day `root` tasks with a non-standard shell, leaving `root`,
with a standard shell, for single-user mode or emergencies.
By default, a user cannot log in using `toor` as it does not have a password,
so log in as `root` and set a password for `toor` before using it to login.

[[serial]]
== Serial Communications

This section answers common questions about serial communications with FreeBSD.

[[serial-console-prompt]]
=== How do I get the boot: prompt to show on the serial console?

See extref:{handbook}serialcomms/[this section of the Handbook, serialconsole-setup].

[[found-serial]]
=== How do I tell if FreeBSD found my serial ports or modem cards?

As the FreeBSD kernel boots, it will probe for the serial ports for which the kernel is configured.
Either watch the boot messages closely or run this command after the system is up and running:

[source,shell]
....
% grep -E '^(sio|uart)[0-9]' < /var/run/dmesg.boot
uart0: <16550 or compatible> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0
uart0: console (115200,n,8,1)
uart1: <16550 or compatible> port 0x2f8-2x3ff irq 3 on acpi0
....

This example shows two serial ports.
The first is on IRQ4, port address `0x3f8`, and has a 16550-type UART chip.
The second uses the same kind of chip but is on IRQ3 and is at port address `0x2f8`.
Internal modem cards are treated just like serial ports, except that they always have a modem attached to the port.

The [.filename]#GENERIC# kernel includes support for two serial ports using the same IRQ and port address settings in the above example.
If these settings are not right for the system, or if there are more modem cards or serial ports than the kernel is configured for, reconfigure using the instructions in <<make-kernel,building a kernel>> for more details.

[[access-serial-ports]]
=== How do I access the serial ports on FreeBSD? (x86-specific)

The third serial port, [.filename]#sio2#, or [.filename]#COM3#, is on [.filename]#/dev/cuad2# for dial-out devices, and on [.filename]#/dev/ttyd2# for dial-in devices.
What is the difference between these two classes of devices?

When opening [.filename]#/dev/ttydX# in blocking mode, a process will wait for the corresponding [.filename]#cuadX# device to become inactive, and then wait for the carrier detect line to go active.
When the [.filename]#cuadX# device is opened, it makes sure the serial port is not already in use by the [.filename]#ttydX# device.
If the port is available, it steals it from the [.filename]#ttydX# device.
Also, the [.filename]#cuadX# device does not care about carrier detect.
With this scheme and an auto-answer modem, remote users can log in and local users can still dial out with the same modem and the system will take care of all the conflicts.

[[enable-multiport-serial]]
=== How do I enable support for a multi-port serial card?

The section on kernel configuration provides information about configuring the kernel.
For a multi-port serial card, place an man:sio[4] line for each serial port on the card in the man:device.hints[5] file.
But place the IRQ specifiers on only one of the entries.
All of the ports on the card should share one IRQ.
For consistency, use the last serial port to specify the IRQ.
Also, specify the following option in the kernel configuration file:

[.programlisting]
....
options COM_MULTIPORT
....

The following [.filename]#/boot/device.hints# example is for an AST 4-port serial card on IRQ 12:

[.programlisting]
....
hint.sio.4.at="isa"
hint.sio.4.port="0x2a0"
hint.sio.4.flags="0x701"
hint.sio.5.at="isa"
hint.sio.5.port="0x2a8"
hint.sio.5.flags="0x701"
hint.sio.6.at="isa"
hint.sio.6.port="0x2b0"
hint.sio.6.flags="0x701"
hint.sio.7.at="isa"
hint.sio.7.port="0x2b8"
hint.sio.7.flags="0x701"
hint.sio.7.irq="12"
....

The flags indicate that the master port has minor number `7` (`0x700`), and all the ports share an IRQ (`0x001`).

[[default-serial-params]]
=== Can I set the default serial parameters for a port?

See the extref:{handbook}serialcomms/[Serial Communications, serial-hw-config] section in the FreeBSD Handbook.

[[cannot-tip]]
=== Why can I not run tip or cu?

The built-in man:tip[1] and man:cu[1] utilities can only access the [.filename]#/var/spool/lock# directory via user `uucp` and group `dialer`.
Use the `dialer` group to control who has access to the modem or remote systems by adding user accounts to `dialer`.

Alternatively, everyone can be configured to run man:tip[1] and man:cu[1] by typing:

[source,shell]
....
# chmod 4511 /usr/bin/cu
# chmod 4511 /usr/bin/tip
....

[[misc]]
== Miscellaneous Questions

[[more-swap]]
=== FreeBSD uses a lot of swap space even when the computer has free memory left. Why?

FreeBSD will proactively move entirely idle, unused pages of main memory into swap in order to make more main memory available for active use.
This heavy use of swap is balanced by using the extra free memory for caching.

Note that while FreeBSD is proactive in this regard, it does not arbitrarily decide to swap pages when the system is truly idle.
Thus, the system will not be all paged out after leaving it idle overnight.

[[top-freemem]]
=== Why does top show very little free memory even when I have very few programs running?

The simple answer is that free memory is wasted memory.
Any memory that programs do not actively allocate is used within the FreeBSD kernel as disk cache.
The values shown by man:top[1] labeled as `Inact` and `Laundry` are cached data at different aging levels.
This cached data means the system does not have to access a slow disk again for data it has accessed recently, thus increasing overall performance.
In general, a low value shown for `Free` memory in man:top[1] is good, provided it is not _very_ low.

[[chmod-symlinks]]
=== Why will `chmod` not change the permissions on symlinks?

Symlinks do not have permissions, and by default, man:chmod[1] will follow symlinks to change the permissions on the source file, if possible.
For the file, [.filename]#foo# with a symlink named [.filename]#bar#, this command will always succeed.

[source,shell]
....
% chmod g-w bar
....

However, the permissions on [.filename]#bar# will not have changed.

When changing modes of the file hierarchies rooted in the files instead of the files themselves, use either `-H` or `-L` together with `-R` to make this work.
See man:chmod[1] and man:symlink[7] for more information.

[WARNING]
====
`-R` does a _recursive_ man:chmod[1].
Be careful about specifying directories or symlinks to directories to man:chmod[1].
To change the permissions of a directory referenced by a symlink, use man:chmod[1] without any options and follow the symlink with a trailing slash ([.filename]#/#).
For example, if [.filename]#foo# is a symlink to directory [.filename]#bar#, to change the permissions of [.filename]#foo# (actually [.filename]#bar#), do something like:

[source,shell]
....
% chmod 555 foo/
....

With the trailing slash, man:chmod[1] will follow the symlink, [.filename]#foo#, to change the permissions of the directory, [.filename]#bar#.
====

[[dos-binaries]]
=== Can I run DOS binaries under FreeBSD?

Yes.
A DOS emulation program, package:emulators/doscmd[], is available in the FreeBSD Ports Collection.

If doscmd will not suffice, package:emulators/pcemu[] emulates an 8088 and enough BIOS services to run many DOS text-mode applications.
It requires the X Window System.

The Ports Collection also has package:emulators/dosbox[].
The main focus of this application is emulating old DOS games using the local file system for files.

[[translation]]
=== What do I need to do to translate a FreeBSD document into my native language?

See the extref:{fdp-primer}[Translation FAQ, translations] in the FreeBSD Documentation Project Primer.

[[freebsd-mail-bounces]]
=== Why does my email to any address at FreeBSD.org bounce?

The `FreeBSD.org` mail system implements some Postfix checks on incoming mail and rejects mail that is either from misconfigured relays or otherwise appears likely to be spam.
Some of the specific requirements are:

* The IP address of the SMTP client must "reverse-resolve" to a forward confirmed hostname.
* The fully-qualified hostname given in the SMTP conversation (either HELO or EHLO) must resolve to the IP address of the client.

Other advice to help mail reach its destination include:

* Mail should be sent in plain text, and messages sent to mailing lists should generally be no more than 200KB in length.
* Avoid excessive cross posting.
Choose _one_ mailing list which seems most relevant and send it there.

If you still have trouble with email infrastructure at `FreeBSD.org`, send a note with the details to mailto:postmaster@freebsd.org[postmaster@freebsd.org];
Include a date/time interval so that logs may be reviewed - and note that we only keep one week's worth of mail logs.
(Be sure to specify the time zone or offset from UTC.)

[[free-account]]
=== Where can I find a free FreeBSD account?

While FreeBSD does not provide open access to any of their servers, others do provide open access UNIX(R) systems.
The charge varies and limited services may be available.

http://www.arbornet.org/[Arbornet, Inc], also known as _M-Net_, has been providing open access to UNIX(R) systems since 1983.
Starting on an Altos running System III, the site switched to BSD/OS in 1991.
In June of 2000, the site switched again to FreeBSD.
_M-Net_ can be accessed via telnet and SSH and provides basic access to the entire FreeBSD software suite.
However, network access is limited to members and patrons who donate to the system, which is run as a non-profit organization.
_M-Net_ also provides an bulletin board system and interactive chat.

[[daemon-name]]
=== What is the cute little red guy's name?

He does not have one, and is just called "the BSD daemon".
If you insist upon using a name, call him "beastie".
Note that "beastie" is pronounced "BSD".

More about the BSD daemon is available on his http://www.mckusick.com/beastie/index.html[home page].

[[use-beastie]]
=== Can I use the BSD daemon image?

Perhaps.
The BSD daemon is copyrighted by Marshall Kirk McKusick.
Check his http://www.mckusick.com/beastie/mainpage/copyright.html[Statement on the Use of the BSD Daemon Figure] for detailed usage terms.

In summary, the image can be used in a tasteful manner, for personal use, so long as appropriate credit is given.
Before using the logo commercially, contact {mckusick} for permission.
More details are available on the http://www.mckusick.com/beastie/index.html[BSD Daemon's home page].

[[daemon-images]]
=== Do you have any BSD daemon images I could use?

Xfig and eps drawings are available under [.filename]#/usr/share/examples/BSD_daemon/#.

[[glossary]]
=== I have seen an acronym or other term on the mailing lists and I do not understand what it means. Where should I look?

Refer to the extref:{handbook}glossary/[FreeBSD Glossary].

[[bikeshed-painting]]
=== Why should I care what color the bikeshed is?

The really, really short answer is that you should not.
The somewhat longer answer is that just because you are capable of building a bikeshed does not mean you should stop others from building one just because you do not like the color they plan to paint it.
This is a metaphor indicating that you need not argue about every little feature just because you know enough to do so.
Some people have commented that the amount of noise generated by a change is inversely proportional to the complexity of the change.

The longer and more complete answer is that after a very long argument about whether man:sleep[1] should take fractional second arguments, {phk} posted a long message entitled link:http://www.bikeshed.com[A bike shed (any color will do) on greener grass...].
The appropriate portions of that message are quoted below.

****
“What is it about this bike shed?” Some of you have asked me.

It is a long story, or rather it is an old story, but it is quite short actually.
C. Northcote Parkinson wrote a book in the early 1960s, called “Parkinson's Law”,
which contains a lot of insight into the dynamics of management.

[snip a bit of commentary on the book]

In the specific example involving the bike shed, the other vital component is an atomic power-plant, I guess that illustrates the age of the book.

Parkinson shows how you can go into the board of directors and get approval for building a multi-million or even billion dollar atomic power plant, but if you want to build a bike shed you will be tangled up in endless discussions.

Parkinson explains that this is because an atomic plant is so vast, so expensive and so complicated that people cannot grasp it, and rather than try, they fall back on the assumption that somebody else checked all the details before it got this far.
Richard P. Feynmann gives a couple of interesting, and very much to the point, examples relating to Los Alamos in his books.

A bike shed on the other hand.
Anyone can build one of those over a weekend, and still have time to watch the game on TV.
So no matter how well prepared, no matter how reasonable you are with your proposal,
somebody will seize the chance to show that he is doing his job, that he is paying attention, that he is here.

In Denmark we call it “setting your fingerprint”.
It is about personal pride and prestige, it is about being able to point somewhere and say “There! I did that.”.
It is a strong trait in politicians, but present in most people given the chance.
Just think about footsteps in wet cement.

--Poul-Henning Kamp <phk@FreeBSD.org> on freebsd-hackers, October 2, 1999
****

[[funnies]]
== The FreeBSD Funnies

[[very-very-cool]]
=== How cool is FreeBSD?

_Q._ Has anyone done any temperature testing while running FreeBSD? I know Linux(R) runs cooler than DOS, but have never seen a mention of FreeBSD.
It seems to run really hot.

_A._ No, but we have done numerous taste tests on blindfolded volunteers who have also had 250 micrograms of LSD-25 administered beforehand.
35% of the volunteers said that FreeBSD tasted sort of orange, whereas Linux(R) tasted like purple haze.
Neither group mentioned any significant variances in temperature.
We eventually had to throw the results of this survey out entirely anyway when we found that too many volunteers were wandering out of the room during the tests, thus skewing the results.
We think most of the volunteers are at Apple now, working on their new "scratch and sniff" GUI.
It is a funny old business we are in!

Seriously, FreeBSD uses the HLT (halt) instruction when the system is idle thus lowering its energy consumption and therefore the heat it generates.
Also if you have ACPI (Advanced Configuration and Power Interface) configured, then FreeBSD can also put the CPU into a low power mode.

[[letmeoutofhere]]
=== Who is scratching in my memory banks??

_Q._ Is there anything "odd" that FreeBSD does when compiling the kernel which would cause the memory to make a scratchy sound? When compiling (and for a brief moment after recognizing the floppy drive upon startup, as well), a strange scratchy sound emanates from what appears to be the memory banks.

_A._ Yes!
You will see frequent references to "daemons" in the BSD documentation, and what most people do not know is that this refers to genuine, non-corporeal entities that now possess your computer.
The scratchy sound coming from your memory is actually high-pitched whispering exchanged among the daemons as they best decide how to deal with various system administration tasks.

If the noise gets to you, a good `fdisk /mbr` from DOS will get rid of them, but do not be surprised if they react adversely and try to stop you.
In fact, if at any point during the exercise you hear the satanic voice of Bill Gates coming from the built-in speaker, take off running and do not ever look back!
Freed from the counterbalancing influence of the BSD daemons, the twin demons of DOS and Windows(R) are often able to re-assert total control over your machine to the eternal damnation of your soul.
Now that you know, given a choice you would probably prefer to get used to the scratchy noises, no?

[[changing-lightbulbs]]
=== How many FreeBSD hackers does it take to change a lightbulb?

One thousand, one hundred and sixty-nine:

Twenty-three to complain to -CURRENT about the lights being out;

Four to claim that it is a configuration problem, and that such matters really belong on -questions;

Three to submit PRs about it, one of which is misfiled under doc and consists only of "it's dark";

One to commit an untested lightbulb which breaks buildworld, then back it out five minutes later;

Eight to flame the PR originators for not including patches in their PRs;

Five to complain about buildworld being broken;

Thirty-one to answer that it works for them, and they must have updated at a bad time;

One to post a patch for a new lightbulb to -hackers;

One to complain that he had patches for this three years ago, but when he sent them to -CURRENT they were just ignored, and he has had bad experiences with the PR system; besides, the proposed new lightbulb is non-reflexive;

Thirty-seven to scream that lightbulbs do not belong in the base system, that committers have no right to do things like this without consulting the Community, and WHAT IS -CORE DOING ABOUT IT!?

Two hundred to complain about the color of the bicycle shed;

Three to point out that the patch breaks man:style[9];

Seventeen to complain that the proposed new lightbulb is under GPL;

Five hundred and eighty-six to engage in a flame war about the comparative advantages of the GPL, the BSD license, the MIT license, the NPL, and the personal hygiene of unnamed FSF founders;

Seven to move various portions of the thread to -chat and -advocacy;

One to commit the suggested lightbulb, even though it shines dimmer than the old one;

Two to back it out with a furious flame of a commit message, arguing that FreeBSD is better off in the dark than with a dim lightbulb;

Forty-six to argue vociferously about the backing out of the dim lightbulb and demanding a statement from -core;

Eleven to request a smaller lightbulb so it will fit their Tamagotchi if we ever decide to port FreeBSD to that platform;

Seventy-three to complain about the SNR on -hackers and -chat and unsubscribe in protest;

Thirteen to post "unsubscribe", "How do I unsubscribe?", or "Please remove me from the list", followed by the usual footer;

One to commit a working lightbulb while everybody is too busy flaming everybody else to notice;

Thirty-one to point out that the new lightbulb would shine 0.364% brighter if compiled with TenDRA (although it will have to be reshaped into a cube), and that FreeBSD should therefore switch to TenDRA instead of GCC;

One to complain that the new lightbulb lacks fairings;

Nine (including the PR originators) to ask "what is MFC?";

Fifty-seven to complain about the lights being out two weeks after the bulb has been changed.

_{nik} adds:_

_I was laughing quite hard at this._

_And then I thought, "Hang on, shouldn't there be '1 to document it.' in that list somewhere?"_

_And then I was enlightened :-)_

_{tabthorpe}_ says: "None, _real_ FreeBSD hackers are not afraid of the dark!"

[[dev-null]]
=== Where does data written to [.filename]#/dev/null# go?

It goes into a special data sink in the CPU where it is converted to heat which is vented through the heatsink / fan assembly.
This is why CPU cooling is increasingly important; as people get used to faster processors, they become careless with their data and more and more of it ends up in [.filename]#/dev/null#, overheating their CPUs.
If you delete [.filename]#/dev/null# (which effectively disables the CPU data sink) your CPU may run cooler but your system will quickly become constipated with all that excess data and start to behave erratically.
If you have a fast network connection you can cool down your CPU by reading data out of [.filename]#/dev/random# and sending it off somewhere; however you run the risk of overheating your network connection and [.filename]#/# or angering your ISP, as most of the data will end up getting converted to heat by their equipment, but they generally have good cooling, so if you do not overdo it you should be OK.

_Paul Robinson adds:_

There are other methods.
As every good sysadmin knows, it is part of standard practice to send data to the screen of interesting variety to keep all the pixies that make up your picture happy.
Screen pixies (commonly mis-typed or re-named as "pixels") are categorized by the type of hat they wear (red, green or blue) and will hide or appear (thereby showing the color of their hat) whenever they receive a little piece of food.
Video cards turn data into pixie-food, and then send them to the pixies - the more expensive the card, the better the food, so the better behaved the pixies are.
They also need constant stimulation - this is why screen savers exist.

To take your suggestions further, you could just throw the random data to console, thereby letting the pixies consume it.
This causes no heat to be produced at all, keeps the pixies happy and gets rid of your data quite quickly,
even if it does make things look a bit messy on your screen.

Incidentally, as an ex-admin of a large ISP who experienced many problems attempting to maintain a stable temperature in a server room,
I would strongly discourage people sending the data they do not want out to the network.
The fairies who do the packet switching and routing get annoyed by it as well.

[[punk-my-friend]]
=== My colleague sits at the computer too much, how can I prank her?

Install package:games/sl[] and wait for her to mistype `sl` for `ls`.

[[advanced]]
== Advanced Topics

[[learn-advanced]]
=== How can I learn more about FreeBSD's internals?

See the extref:{arch-handbook}[FreeBSD Architecture Handbook].

Additionally, much general UNIX(R) knowledge is directly applicable to FreeBSD.

[[how-to-contribute]]
=== How can I contribute to FreeBSD? What can I do to help?

We accept all types of contributions: documentation, code, and even art.
See the article on extref:{contributing}[Contributing to FreeBSD] for specific advice on how to do this.

And thanks for the thought!

[[define-snap-release]]
=== What are snapshots and releases?

There are currently {rel-numbranch} active/semi-active branches in the FreeBSD http://svnweb.FreeBSD.org/base/[Subversion Repository].
(Earlier branches are only changed very rarely, which is why there are only {rel-numbranch} active branches of development):

* {rel2-releng} AKA {rel2-stable}
* {rel-releng} AKA {rel-stable}
* {rel-head-releng} AKA _-CURRENT_ AKA {rel-head}

`HEAD` is not an actual branch tag.
It is a symbolic constant for the current, non-branched development stream known as _-CURRENT_.

Right now, _-CURRENT_ is the {rel-head-relx} development stream; the {rel-stable} branch, {rel-releng}, forked off from _-CURRENT_ in {rel-relengdate} and the {rel2-stable} branch, {rel2-releng}, forked off from _-CURRENT_ in {rel2-relengdate}.

[[kernel-panic-troubleshooting]]
=== How can I make the most of the data I see when my kernel panics?

Here is typical kernel panic:

[.programlisting]
....
Fatal trap 12: page fault while in kernel mode
fault virtual address   = 0x40
fault code              = supervisor read, page not present
instruction pointer     = 0x8:0xf014a7e5
stack pointer           = 0x10:0xf4ed6f24
frame pointer           = 0x10:0xf4ed6f28
code segment            = base 0x0, limit 0xfffff, type 0x1b
                        = DPL 0, pres 1, def32 1, gran 1
processor eflags        = interrupt enabled, resume, IOPL = 0
current process         = 80 (mount)
interrupt mask          =
trap number             = 12
panic: page fault
....

This message is not enough.
While the instruction pointer value is important, it is also configuration dependent as it varies depending on the kernel image.
If it is a [.filename]#GENERIC# kernel image from one of the snapshots,
it is possible for somebody else to track down the offending function, but for a custom kernel, only you can tell us where the fault occurred.

To proceed:

[.procedure]
====
. Write down the instruction pointer value.
Note that the `0x8:` part at the beginning is not significant in this case: it is the `0xf0xxxxxx` part that we want.
. When the system reboots, do the following:
+
[source,shell]
....
% nm -n kernel.that.caused.the.panic | grep f0xxxxxx
....
+
where `f0xxxxxx` is the instruction pointer value.
The odds are you will not get an exact match since the symbols in the kernel symbol table are for the entry points of functions and the instruction pointer address will be somewhere inside a function, not at the start.
If you do not get an exact match, omit the last digit from the instruction pointer value and try again:
+
[source,shell]
....
% nm -n kernel.that.caused.the.panic | grep f0xxxxx
....
+
If that does not yield any results, chop off another digit.
Repeat until there is some sort of output.
The result will be a possible list of functions which caused the panic.
This is a less than exact mechanism for tracking down the point of failure, but it is better than nothing.
====

However, the best way to track down the cause of a panic is by capturing a crash dump,
then using man:kgdb[1] to generate a stack trace on the crash dump.

In any case, the method is this:

[.procedure]
====
. Make sure that the following line is included in the kernel configuration file:
+
[.programlisting]
....
makeoptions     DEBUG=-g          # Build kernel with gdb(1) debug symbols
....

. Change to the [.filename]#/usr/src# directory:
+
[source,shell]
....
# cd /usr/src
....

. Compile the kernel:
+
[source,shell]
....
# make buildkernel KERNCONF=MYKERNEL
....

. Wait for man:make[1] to finish compiling.
+
[source,shell]
....
# make installkernel KERNCONF=MYKERNEL
....

. Reboot.
====

[NOTE]
====
If `KERNCONF` is not included, the [.filename]#GENERIC# kernel will instead be built and installed.
====

The man:make[1] process will have built two kernels.
[.filename]#/usr/obj/usr/src/sys/MYKERNEL/kernel# and [.filename]#/usr/obj/usr/src/sys/MYKERNEL/kernel.debug#. [.filename]#kernel# was installed as [.filename]#/boot/kernel/kernel#, while [.filename]#kernel.debug# can be used as the source of debugging symbols for man:kgdb[1].

To capture a crash dump, edit [.filename]#/etc/rc.conf# and set `dumpdev` to point to either the swap partition or `AUTO`.
This will cause the man:rc[8] scripts to use the man:dumpon[8] command to enable crash dumps.
This command can also be run manually.
After a panic, the crash dump can be recovered using man:savecore[8]; if `dumpdev` is set in [.filename]#/etc/rc.conf#,
the man:rc[8] scripts will run man:savecore[8] automatically and put the crash dump in [.filename]#/var/crash#.

[NOTE]
====
FreeBSD crash dumps are usually the same size as physical RAM.
Therefore, make sure there is enough space in [.filename]#/var/crash# to hold the dump.
Alternatively, run man:savecore[8] manually and have it recover the crash dump to another directory with more room.
It is possible to limit the size of the crash dump by using `options MAXMEM=N` where _N_ is the size of kernel's memory usage in KBs.
For example, for 1 GB of RAM, limit the kernel's memory usage to 128 MB, so that the crash dump size will be 128 MB instead of 1 GB.
====

Once the crash dump has been recovered , get a stack trace as follows:

[source,shell]
....
% kgdb /usr/obj/usr/src/sys/MYKERNEL/kernel.debug /var/crash/vmcore.0
(kgdb) backtrace
....

Note that there may be several screens worth of information.
Ideally, use man:script[1] to capture all of them.
Using the unstripped kernel image with all the debug symbols should show the exact line of kernel source code where the panic occurred.
The stack trace is usually read from the bottom up to trace the exact sequence of events that lead to the crash.
man:kgdb[1] can also be used to print out the contents of various variables or structures to examine the system state at the time of the crash.

[TIP]
====
If a second computer is available, man:kgdb[1] can be configured to do remote debugging,
including setting breakpoints and single-stepping through the kernel code.
====

[NOTE]
====
If `DDB` is enabled and the kernel drops into the debugger, a panic and a crash dump can be forced by typing `panic` at the `ddb` prompt.
It may stop in the debugger again during the panic phase.
If it does, type `continue` and it will finish the crash dump.
====

[[dlsym-failure]]
=== Why has dlsym() stopped working for ELF executables?

The ELF toolchain does not, by default, make the symbols defined in an executable visible to the dynamic linker.
Consequently `dlsym()` searches on handles obtained from calls to `dlopen(NULL, flags)` will fail to find such symbols.

To search, using `dlsym()`, for symbols present in the main executable of a process, link the executable using the `--export-dynamic` option to the ELF linker (man:ld[1]).

[[change-kernel-address-space]]
=== How can I increase or reduce the kernel address space on i386?

By default, the kernel address space is 1 GB (2 GB for PAE) for i386.
When running a network-intensive server or using ZFS, this will probably not be enough.

Add the following line to the kernel configuration file to increase available space and rebuild the kernel:

[.programlisting]
....
options KVA_PAGES=N
....

To find the correct value of _N_, divide the desired address space size (in megabytes) by four.
(For example, it is `512` for 2 GB.)

[[acknowledgments]]
== Acknowledgments

This innocent little Frequently Asked Questions document has been written, rewritten, edited, folded, spindled, mutilated, eviscerated, contemplated, discombobulated, cogitated, regurgitated, rebuilt, castigated, and reinvigorated over the last decade, by a cast of hundreds if not thousands.
Repeatedly.

We wish to thank every one of the people responsible, and we encourage you to extref:{contributing}[join them] in making this FAQ even better.