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
|
'\" t
.TH "SYSTEMD\&.INDEX" "7" "" "systemd 241" "systemd.index"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.\" http://bugs.debian.org/507673
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
.SH "NAME"
systemd.index \- List all manpages from the systemd project
.SH "3"
.PP
\fB30-systemd-environment-d-generator\fR(8)
\(em Load variables specified by
.br
.SH "B"
.PP
\fBbinfmt.d\fR(5)
\(em Configure additional binary formats for executables at boot
.br
\fBbootctl\fR(1)
\(em Control the firmware and boot manager settings
.br
\fBbootup\fR(7)
\(em System bootup process
.br
\fBbusctl\fR(1)
\(em Introspect the bus
.br
.SH "C"
.PP
\fBcoredump.conf\fR(5)
\(em Core dump storage configuration files
.br
\fBcoredump.conf.d\fR(5)
\(em Core dump storage configuration files
.br
\fBcoredumpctl\fR(1)
\(em Retrieve and process saved core dumps and metadata
.br
\fBcrypttab\fR(5)
\(em Configuration for encrypted block devices
.br
.SH "D"
.PP
\fBdaemon\fR(7)
\(em Writing and packaging system daemons
.br
\fBdnssec-trust-anchors.d\fR(5)
\(em DNSSEC trust anchor configuration files
.br
.SH "E"
.PP
\fBenvironment.d\fR(5)
\(em Definition of user session environment
.br
.SH "F"
.PP
\fBfile-hierarchy\fR(7)
\(em File system hierarchy overview
.br
.SH "H"
.PP
\fBhalt\fR(8)
\(em Halt, power\-off or reboot the machine
.br
\fBhostname\fR(5)
\(em Local hostname configuration file
.br
\fBhostnamectl\fR(1)
\(em Control the system hostname
.br
\fBhwdb\fR(7)
\(em Hardware Database
.br
.SH "I"
.PP
\fBinit\fR(1)
\(em systemd system and service manager
.br
.SH "J"
.PP
\fBjournal-remote.conf\fR(5)
\(em Configuration files for the service accepting remote journal uploads
.br
\fBjournal-remote.conf.d\fR(5)
\(em Configuration files for the service accepting remote journal uploads
.br
\fBjournal-upload.conf\fR(5)
\(em Configuration files for the journal upload service
.br
\fBjournal-upload.conf.d\fR(5)
\(em Configuration files for the journal upload service
.br
\fBjournalctl\fR(1)
\(em Query the systemd journal
.br
\fBjournald.conf\fR(5)
\(em Journal service configuration files
.br
\fBjournald.conf.d\fR(5)
\(em Journal service configuration files
.br
.SH "K"
.PP
\fBkernel-command-line\fR(7)
\(em Kernel command line parameters
.br
\fBkernel-install\fR(8)
\(em Add and remove kernel and initramfs images to and from /boot
.br
.SH "L"
.PP
\fBlibnss_myhostname.so.2\fR(8)
\(em Provide hostname resolution for the locally configured system hostname\&.
.br
\fBlibnss_mymachines.so.2\fR(8)
\(em Provide hostname resolution for local container instances\&.
.br
\fBlibnss_resolve.so.2\fR(8)
\(em Provide hostname resolution via
.br
\fBlibnss_systemd.so.2\fR(8)
\(em Provide UNIX user and group name resolution for dynamic users and groups\&.
.br
\fBlibudev\fR(3)
\(em API for enumerating and introspecting local devices
.br
\fBloader.conf\fR(5)
\(em Configuration file for systemd\-boot
.br
\fBlocale.conf\fR(5)
\(em Configuration file for locale settings
.br
\fBlocalectl\fR(1)
\(em Control the system locale and keyboard layout settings
.br
\fBlocaltime\fR(5)
\(em Local timezone configuration file
.br
\fBloginctl\fR(1)
\(em Control the systemd login manager
.br
\fBlogind.conf\fR(5)
\(em Login manager configuration files
.br
\fBlogind.conf.d\fR(5)
\(em Login manager configuration files
.br
.SH "M"
.PP
\fBmachine-id\fR(5)
\(em Local machine ID configuration file
.br
\fBmachine-info\fR(5)
\(em Local machine information file
.br
\fBmachinectl\fR(1)
\(em Control the systemd machine manager
.br
\fBmodules-load.d\fR(5)
\(em Configure kernel modules to load at boot
.br
.SH "N"
.PP
\fBnetworkctl\fR(1)
\(em Query the status of network links
.br
\fBnetworkd.conf\fR(5)
\(em Global Network configuration files
.br
\fBnetworkd.conf.d\fR(5)
\(em Global Network configuration files
.br
\fBnss-myhostname\fR(8)
\(em Provide hostname resolution for the locally configured system hostname\&.
.br
\fBnss-mymachines\fR(8)
\(em Provide hostname resolution for local container instances\&.
.br
\fBnss-resolve\fR(8)
\(em Provide hostname resolution via
.br
\fBnss-systemd\fR(8)
\(em Provide UNIX user and group name resolution for dynamic users and groups\&.
.br
.SH "O"
.PP
\fBos-release\fR(5)
\(em Operating system identification
.br
.SH "P"
.PP
\fBpam_systemd\fR(8)
\(em Register user sessions in the systemd login manager
.br
\fBpoweroff\fR(8)
\(em Halt, power\-off or reboot the machine
.br
.SH "R"
.PP
\fBreboot\fR(8)
\(em Halt, power\-off or reboot the machine
.br
\fBresolvconf\fR(1)
\(em Resolve domain names, IPV4 and IPv6 addresses, DNS resource records, and services; introspect and reconfigure the DNS resolver
.br
\fBresolvectl\fR(1)
\(em Resolve domain names, IPV4 and IPv6 addresses, DNS resource records, and services; introspect and reconfigure the DNS resolver
.br
\fBresolved.conf\fR(5)
\(em Network Name Resolution configuration files
.br
\fBresolved.conf.d\fR(5)
\(em Network Name Resolution configuration files
.br
\fBrunlevel\fR(8)
\(em Print previous and current SysV runlevel
.br
.SH "S"
.PP
\fBsd-boot\fR(7)
\(em A simple UEFI boot manager
.br
\fBsd-bus\fR(3)
\(em A lightweight D\-Bus IPC client library
.br
\fBsd-bus-errors\fR(3)
\(em Standard D\-Bus error names
.br
\fBsd-daemon\fR(3)
\(em APIs for new\-style daemons
.br
\fBsd-event\fR(3)
\(em A generic event loop implementation
.br
\fBsd-id128\fR(3)
\(em APIs for processing 128\-bit IDs
.br
\fBsd-journal\fR(3)
\(em APIs for submitting and querying log entries to and from the journal
.br
\fBsd-login\fR(3)
\(em APIs for tracking logins
.br
\fBSD_ALERT\fR(3)
\(em APIs for new\-style daemons
.br
\fBsd_booted\fR(3)
\(em Test whether the system is running the systemd init system
.br
\fBsd_bus_add_match\fR(3)
\(em Add a match rule for incoming message dispatching
.br
\fBsd_bus_add_match_async\fR(3)
\(em Add a match rule for incoming message dispatching
.br
\fBsd_bus_attach_event\fR(3)
\(em Attach a bus connection object to an event loop
.br
\fBsd_bus_close\fR(3)
\(em Close and flush a bus connection
.br
\fBsd_bus_close_unref\fR(3)
\(em Create a new bus object and create or destroy references to it
.br
\fBsd_bus_close_unrefp\fR(3)
\(em Create a new bus object and create or destroy references to it
.br
\fBsd_bus_creds_get_audit_login_uid\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_get_audit_session_id\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_get_augmented_mask\fR(3)
\(em Retrieve credentials object for the specified PID
.br
\fBsd_bus_creds_get_cgroup\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_get_cmdline\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_get_comm\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_get_description\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_get_egid\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_get_euid\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_get_exe\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_get_fsgid\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_get_fsuid\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_get_gid\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_get_mask\fR(3)
\(em Retrieve credentials object for the specified PID
.br
\fBsd_bus_creds_get_owner_uid\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_get_pid\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_get_ppid\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_get_selinux_context\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_get_session\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_get_sgid\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_get_slice\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_get_suid\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_get_supplementary_gids\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_get_tid\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_get_tid_comm\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_get_tty\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_get_uid\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_get_unique_name\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_get_unit\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_get_user_slice\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_get_user_unit\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_get_well_known_names\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_has_bounding_cap\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_has_effective_cap\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_has_inheritable_cap\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_has_permitted_cap\fR(3)
\(em Retrieve fields from a credentials object
.br
\fBsd_bus_creds_new_from_pid\fR(3)
\(em Retrieve credentials object for the specified PID
.br
\fBsd_bus_creds_ref\fR(3)
\(em Retrieve credentials object for the specified PID
.br
\fBsd_bus_creds_unref\fR(3)
\(em Retrieve credentials object for the specified PID
.br
\fBsd_bus_creds_unrefp\fR(3)
\(em Retrieve credentials object for the specified PID
.br
\fBsd_bus_default\fR(3)
\(em Acquire a connection to a system or user bus
.br
\fBsd_bus_default_system\fR(3)
\(em Acquire a connection to a system or user bus
.br
\fBsd_bus_default_user\fR(3)
\(em Acquire a connection to a system or user bus
.br
\fBsd_bus_destroy_t\fR(3)
\(em Define the callback function for resource cleanup\&.
.br
\fBsd_bus_detach_event\fR(3)
\(em Attach a bus connection object to an event loop
.br
\fBsd_bus_error\fR(3)
\(em sd\-bus error handling
.br
\fBSD_BUS_ERROR_ACCESS_DENIED\fR(3)
\(em Standard D\-Bus error names
.br
\fBsd_bus_error_add_map\fR(3)
\(em Additional sd\-dbus error mappings
.br
\fBSD_BUS_ERROR_ADDRESS_IN_USE\fR(3)
\(em Standard D\-Bus error names
.br
\fBSD_BUS_ERROR_AUTH_FAILED\fR(3)
\(em Standard D\-Bus error names
.br
\fBSD_BUS_ERROR_BAD_ADDRESS\fR(3)
\(em Standard D\-Bus error names
.br
\fBsd_bus_error_copy\fR(3)
\(em sd\-bus error handling
.br
\fBSD_BUS_ERROR_DISCONNECTED\fR(3)
\(em Standard D\-Bus error names
.br
\fBSD_BUS_ERROR_END\fR(3)
\(em Additional sd\-dbus error mappings
.br
\fBSD_BUS_ERROR_FAILED\fR(3)
\(em Standard D\-Bus error names
.br
\fBSD_BUS_ERROR_FILE_EXISTS\fR(3)
\(em Standard D\-Bus error names
.br
\fBSD_BUS_ERROR_FILE_NOT_FOUND\fR(3)
\(em Standard D\-Bus error names
.br
\fBsd_bus_error_free\fR(3)
\(em sd\-bus error handling
.br
\fBsd_bus_error_get_errno\fR(3)
\(em sd\-bus error handling
.br
\fBsd_bus_error_has_name\fR(3)
\(em sd\-bus error handling
.br
\fBSD_BUS_ERROR_INCONSISTENT_MESSAGE\fR(3)
\(em Standard D\-Bus error names
.br
\fBSD_BUS_ERROR_INTERACTIVE_AUTHORIZATION_REQUIRED\fR(3)
\(em Standard D\-Bus error names
.br
\fBSD_BUS_ERROR_INVALID_ARGS\fR(3)
\(em Standard D\-Bus error names
.br
\fBSD_BUS_ERROR_INVALID_SIGNATURE\fR(3)
\(em Standard D\-Bus error names
.br
\fBSD_BUS_ERROR_IO_ERROR\fR(3)
\(em Standard D\-Bus error names
.br
\fBsd_bus_error_is_set\fR(3)
\(em sd\-bus error handling
.br
\fBSD_BUS_ERROR_LIMITS_EXCEEDED\fR(3)
\(em Standard D\-Bus error names
.br
\fBSD_BUS_ERROR_MAKE_CONST\fR(3)
\(em sd\-bus error handling
.br
\fBsd_bus_error_map\fR(3)
\(em Additional sd\-dbus error mappings
.br
\fBSD_BUS_ERROR_MAP\fR(3)
\(em Additional sd\-dbus error mappings
.br
\fBSD_BUS_ERROR_MATCH_RULE_INVALID\fR(3)
\(em Standard D\-Bus error names
.br
\fBSD_BUS_ERROR_MATCH_RULE_NOT_FOUND\fR(3)
\(em Standard D\-Bus error names
.br
\fBsd_bus_error_move\fR(3)
\(em sd\-bus error handling
.br
\fBSD_BUS_ERROR_NAME_HAS_NO_OWNER\fR(3)
\(em Standard D\-Bus error names
.br
\fBSD_BUS_ERROR_NO_MEMORY\fR(3)
\(em Standard D\-Bus error names
.br
\fBSD_BUS_ERROR_NO_NETWORK\fR(3)
\(em Standard D\-Bus error names
.br
\fBSD_BUS_ERROR_NO_REPLY\fR(3)
\(em Standard D\-Bus error names
.br
\fBSD_BUS_ERROR_NO_SERVER\fR(3)
\(em Standard D\-Bus error names
.br
\fBSD_BUS_ERROR_NOT_SUPPORTED\fR(3)
\(em Standard D\-Bus error names
.br
\fBSD_BUS_ERROR_NULL\fR(3)
\(em sd\-bus error handling
.br
\fBSD_BUS_ERROR_PROPERTY_READ_ONLY\fR(3)
\(em Standard D\-Bus error names
.br
\fBSD_BUS_ERROR_SERVICE_UNKNOWN\fR(3)
\(em Standard D\-Bus error names
.br
\fBsd_bus_error_set\fR(3)
\(em sd\-bus error handling
.br
\fBsd_bus_error_set_const\fR(3)
\(em sd\-bus error handling
.br
\fBsd_bus_error_set_errno\fR(3)
\(em sd\-bus error handling
.br
\fBsd_bus_error_set_errnof\fR(3)
\(em sd\-bus error handling
.br
\fBsd_bus_error_set_errnofv\fR(3)
\(em sd\-bus error handling
.br
\fBsd_bus_error_setf\fR(3)
\(em sd\-bus error handling
.br
\fBSD_BUS_ERROR_TIMEOUT\fR(3)
\(em Standard D\-Bus error names
.br
\fBSD_BUS_ERROR_UNIX_PROCESS_ID_UNKNOWN\fR(3)
\(em Standard D\-Bus error names
.br
\fBSD_BUS_ERROR_UNKNOWN_INTERFACE\fR(3)
\(em Standard D\-Bus error names
.br
\fBSD_BUS_ERROR_UNKNOWN_METHOD\fR(3)
\(em Standard D\-Bus error names
.br
\fBSD_BUS_ERROR_UNKNOWN_OBJECT\fR(3)
\(em Standard D\-Bus error names
.br
\fBSD_BUS_ERROR_UNKNOWN_PROPERTY\fR(3)
\(em Standard D\-Bus error names
.br
\fBsd_bus_flush\fR(3)
\(em Close and flush a bus connection
.br
\fBsd_bus_flush_close_unref\fR(3)
\(em Create a new bus object and create or destroy references to it
.br
\fBsd_bus_flush_close_unrefp\fR(3)
\(em Create a new bus object and create or destroy references to it
.br
\fBsd_bus_get_allow_interactive_authorization\fR(3)
\(em Set or query properties of a bus object
.br
\fBsd_bus_get_close_on_exit\fR(3)
\(em Control whether to close the bus connection during the event loop exit phase
.br
\fBsd_bus_get_connected_signal\fR(3)
\(em Control emmission of local connection establishment signal on bus connections
.br
\fBsd_bus_get_description\fR(3)
\(em Set or query properties of a bus object
.br
\fBsd_bus_get_event\fR(3)
\(em Attach a bus connection object to an event loop
.br
\fBsd_bus_get_events\fR(3)
\(em Get the file descriptor, I/O events and time\-out to wait for from a message bus object
.br
\fBsd_bus_get_fd\fR(3)
\(em Get the file descriptor, I/O events and time\-out to wait for from a message bus object
.br
\fBsd_bus_get_n_queued_read\fR(3)
\(em Get the number of pending bus messages in the read and write queues of a bus connection object
.br
\fBsd_bus_get_n_queued_write\fR(3)
\(em Get the number of pending bus messages in the read and write queues of a bus connection object
.br
\fBsd_bus_get_sender\fR(3)
\(em Configure default sender for outgoing messages
.br
\fBsd_bus_get_timeout\fR(3)
\(em Get the file descriptor, I/O events and time\-out to wait for from a message bus object
.br
\fBsd_bus_get_watch_bind\fR(3)
\(em Control socket binding watching on bus connections
.br
\fBsd_bus_is_open\fR(3)
\(em Check whether the a bus connection is open or ready\&.
.br
\fBsd_bus_is_ready\fR(3)
\(em Check whether the a bus connection is open or ready\&.
.br
\fBsd_bus_match_signal\fR(3)
\(em Add a match rule for incoming message dispatching
.br
\fBsd_bus_match_signal_async\fR(3)
\(em Add a match rule for incoming message dispatching
.br
\fBsd_bus_message_append\fR(3)
\(em Attach fields to a D\-Bus message based on a type string
.br
\fBsd_bus_message_append_array\fR(3)
\(em Append an array of fields to a D\-Bus message
.br
\fBsd_bus_message_append_array_iovec\fR(3)
\(em Append an array of fields to a D\-Bus message
.br
\fBsd_bus_message_append_array_memfd\fR(3)
\(em Append an array of fields to a D\-Bus message
.br
\fBsd_bus_message_append_array_space\fR(3)
\(em Append an array of fields to a D\-Bus message
.br
\fBsd_bus_message_append_basic\fR(3)
\(em Attach a single field to a message
.br
\fBsd_bus_message_append_string_iovec\fR(3)
\(em Attach a string to a message
.br
\fBsd_bus_message_append_string_memfd\fR(3)
\(em Attach a string to a message
.br
\fBsd_bus_message_append_string_space\fR(3)
\(em Attach a string to a message
.br
\fBsd_bus_message_append_strv\fR(3)
\(em Attach an array of strings to a message
.br
\fBsd_bus_message_appendv\fR(3)
\(em Attach fields to a D\-Bus message based on a type string
.br
\fBsd_bus_message_copy\fR(3)
\(em Copy the contents of one message to another
.br
\fBsd_bus_message_get_auto_start\fR(3)
\(em Set and query bus message metadata
.br
\fBsd_bus_message_get_bus\fR(3)
\(em Create a new bus message object and create or destroy references to it
.br
\fBsd_bus_message_get_cookie\fR(3)
\(em Returns the transaction cookie of a message
.br
\fBsd_bus_message_get_destination\fR(3)
\(em Set and query bus message addressing information
.br
\fBsd_bus_message_get_expect_reply\fR(3)
\(em Set and query bus message metadata
.br
\fBsd_bus_message_get_interface\fR(3)
\(em Set and query bus message addressing information
.br
\fBsd_bus_message_get_member\fR(3)
\(em Set and query bus message addressing information
.br
\fBsd_bus_message_get_monotonic_usec\fR(3)
\(em Retrieve the sender timestamps and sequence number of a message
.br
\fBsd_bus_message_get_path\fR(3)
\(em Set and query bus message addressing information
.br
\fBsd_bus_message_get_realtime_usec\fR(3)
\(em Retrieve the sender timestamps and sequence number of a message
.br
\fBsd_bus_message_get_reply_cookie\fR(3)
\(em Returns the transaction cookie of a message
.br
\fBsd_bus_message_get_sender\fR(3)
\(em Set and query bus message addressing information
.br
\fBsd_bus_message_get_seqnum\fR(3)
\(em Retrieve the sender timestamps and sequence number of a message
.br
\fBsd_bus_message_get_signature\fR(3)
\(em Query bus message signature
.br
\fBsd_bus_message_get_type\fR(3)
\(em Query bus message addressing metadata
.br
\fBsd_bus_message_has_signature\fR(3)
\(em Query bus message signature
.br
\fBsd_bus_message_is_empty\fR(3)
\(em Query bus message signature
.br
\fBsd_bus_message_is_method_call\fR(3)
\(em Query bus message addressing metadata
.br
\fBsd_bus_message_is_method_error\fR(3)
\(em Query bus message addressing metadata
.br
\fBsd_bus_message_is_signal\fR(3)
\(em Query bus message addressing metadata
.br
\fBSD_BUS_MESSAGE_METHOD_CALL\fR(3)
\(em Create a new bus message object and create or destroy references to it
.br
\fBSD_BUS_MESSAGE_METHOD_ERROR\fR(3)
\(em Create a new bus message object and create or destroy references to it
.br
\fBSD_BUS_MESSAGE_METHOD_RETURN\fR(3)
\(em Create a new bus message object and create or destroy references to it
.br
\fBsd_bus_message_new\fR(3)
\(em Create a new bus message object and create or destroy references to it
.br
\fBsd_bus_message_new_method_call\fR(3)
\(em Create a method call message
.br
\fBsd_bus_message_new_method_errno\fR(3)
\(em Create a an error reply for a method call
.br
\fBsd_bus_message_new_method_errnof\fR(3)
\(em Create a an error reply for a method call
.br
\fBsd_bus_message_new_method_error\fR(3)
\(em Create a an error reply for a method call
.br
\fBsd_bus_message_new_method_errorf\fR(3)
\(em Create a an error reply for a method call
.br
\fBsd_bus_message_new_method_return\fR(3)
\(em Create a method call message
.br
\fBsd_bus_message_new_signal\fR(3)
\(em Create a signal message
.br
\fBsd_bus_message_read\fR(3)
\(em Read a sequence of values from a message
.br
\fBsd_bus_message_read_array\fR(3)
\(em Access an array of elements in a message
.br
\fBsd_bus_message_read_basic\fR(3)
\(em Read a basic type from a message
.br
\fBsd_bus_message_readv\fR(3)
\(em Read a sequence of values from a message
.br
\fBsd_bus_message_ref\fR(3)
\(em Create a new bus message object and create or destroy references to it
.br
\fBsd_bus_message_rewind\fR(3)
\(em Return to begining of message or current container
.br
\fBsd_bus_message_set_auto_start\fR(3)
\(em Set and query bus message metadata
.br
\fBsd_bus_message_set_destination\fR(3)
\(em Set and query bus message addressing information
.br
\fBsd_bus_message_set_expect_reply\fR(3)
\(em Set and query bus message metadata
.br
\fBsd_bus_message_set_sender\fR(3)
\(em Set and query bus message addressing information
.br
\fBSD_BUS_MESSAGE_SIGNAL\fR(3)
\(em Create a new bus message object and create or destroy references to it
.br
\fBsd_bus_message_skip\fR(3)
\(em Skip elements in a bus message
.br
\fBsd_bus_message_unref\fR(3)
\(em Create a new bus message object and create or destroy references to it
.br
\fBsd_bus_message_unrefp\fR(3)
\(em Create a new bus message object and create or destroy references to it
.br
\fBsd_bus_message_verify_type\fR(3)
\(em Check if the message has specified type at the current location
.br
\fBsd_bus_negotiate_creds\fR(3)
\(em Control feature negotiation on bus connections
.br
\fBsd_bus_negotiate_fds\fR(3)
\(em Control feature negotiation on bus connections
.br
\fBsd_bus_negotiate_timestamp\fR(3)
\(em Control feature negotiation on bus connections
.br
\fBsd_bus_new\fR(3)
\(em Create a new bus object and create or destroy references to it
.br
\fBsd_bus_open\fR(3)
\(em Acquire a connection to a system or user bus
.br
\fBsd_bus_open_system\fR(3)
\(em Acquire a connection to a system or user bus
.br
\fBsd_bus_open_system_machine\fR(3)
\(em Acquire a connection to a system or user bus
.br
\fBsd_bus_open_system_remote\fR(3)
\(em Acquire a connection to a system or user bus
.br
\fBsd_bus_open_system_with_description\fR(3)
\(em Acquire a connection to a system or user bus
.br
\fBsd_bus_open_user\fR(3)
\(em Acquire a connection to a system or user bus
.br
\fBsd_bus_open_user_with_description\fR(3)
\(em Acquire a connection to a system or user bus
.br
\fBsd_bus_open_with_description\fR(3)
\(em Acquire a connection to a system or user bus
.br
\fBsd_bus_path_decode\fR(3)
\(em Convert an external identifier into an object path and back
.br
\fBsd_bus_path_decode_many\fR(3)
\(em Convert an external identifier into an object path and back
.br
\fBsd_bus_path_encode\fR(3)
\(em Convert an external identifier into an object path and back
.br
\fBsd_bus_path_encode_many\fR(3)
\(em Convert an external identifier into an object path and back
.br
\fBsd_bus_process\fR(3)
\(em Drive the connection
.br
\fBsd_bus_ref\fR(3)
\(em Create a new bus object and create or destroy references to it
.br
\fBsd_bus_release_name\fR(3)
\(em Request or release a well\-known service name on a bus
.br
\fBsd_bus_release_name_async\fR(3)
\(em Request or release a well\-known service name on a bus
.br
\fBsd_bus_reply_method_errno\fR(3)
\(em Reply with an error to a method call
.br
\fBsd_bus_reply_method_errnof\fR(3)
\(em Reply with an error to a method call
.br
\fBsd_bus_reply_method_error\fR(3)
\(em Reply with an error to a method call
.br
\fBsd_bus_reply_method_errorf\fR(3)
\(em Reply with an error to a method call
.br
\fBsd_bus_request_name\fR(3)
\(em Request or release a well\-known service name on a bus
.br
\fBsd_bus_request_name_async\fR(3)
\(em Request or release a well\-known service name on a bus
.br
\fBsd_bus_set_allow_interactive_authorization\fR(3)
\(em Set or query properties of a bus object
.br
\fBsd_bus_set_anonymous\fR(3)
\(em Set or query properties of a bus object
.br
\fBsd_bus_set_close_on_exit\fR(3)
\(em Control whether to close the bus connection during the event loop exit phase
.br
\fBsd_bus_set_connected_signal\fR(3)
\(em Control emmission of local connection establishment signal on bus connections
.br
\fBsd_bus_set_description\fR(3)
\(em Set or query properties of a bus object
.br
\fBsd_bus_set_sender\fR(3)
\(em Configure default sender for outgoing messages
.br
\fBsd_bus_set_trusted\fR(3)
\(em Set or query properties of a bus object
.br
\fBsd_bus_set_watch_bind\fR(3)
\(em Control socket binding watching on bus connections
.br
\fBsd_bus_slot_get_bus\fR(3)
\(em Create and destroy references to a bus slot object
.br
\fBsd_bus_slot_get_description\fR(3)
\(em Set or query the description of bus slot objects
.br
\fBsd_bus_slot_get_destroy_callback\fR(3)
\(em Define the callback function for resource cleanup\&.
.br
\fBsd_bus_slot_get_floating\fR(3)
\(em Control whether a bus slot object is "floating"\&.
.br
\fBsd_bus_slot_get_userdata\fR(3)
\(em Set and query the value in the "userdata" field
.br
\fBsd_bus_slot_ref\fR(3)
\(em Create and destroy references to a bus slot object
.br
\fBsd_bus_slot_set_description\fR(3)
\(em Set or query the description of bus slot objects
.br
\fBsd_bus_slot_set_destroy_callback\fR(3)
\(em Define the callback function for resource cleanup\&.
.br
\fBsd_bus_slot_set_floating\fR(3)
\(em Control whether a bus slot object is "floating"\&.
.br
\fBsd_bus_slot_set_userdata\fR(3)
\(em Set and query the value in the "userdata" field
.br
\fBsd_bus_slot_unref\fR(3)
\(em Create and destroy references to a bus slot object
.br
\fBsd_bus_slot_unrefp\fR(3)
\(em Create and destroy references to a bus slot object
.br
\fBsd_bus_track_add_name\fR(3)
\(em Add, remove and retrieve bus peers tracked in a bus peer tracking object
.br
\fBsd_bus_track_add_sender\fR(3)
\(em Add, remove and retrieve bus peers tracked in a bus peer tracking object
.br
\fBsd_bus_track_contains\fR(3)
\(em Add, remove and retrieve bus peers tracked in a bus peer tracking object
.br
\fBsd_bus_track_count\fR(3)
\(em Add, remove and retrieve bus peers tracked in a bus peer tracking object
.br
\fBsd_bus_track_count_name\fR(3)
\(em Add, remove and retrieve bus peers tracked in a bus peer tracking object
.br
\fBsd_bus_track_count_sender\fR(3)
\(em Add, remove and retrieve bus peers tracked in a bus peer tracking object
.br
\fBsd_bus_track_first\fR(3)
\(em Add, remove and retrieve bus peers tracked in a bus peer tracking object
.br
\fBsd_bus_track_get_bus\fR(3)
\(em Track bus peers
.br
\fBsd_bus_track_get_destroy_callback\fR(3)
\(em Define the callback function for resource cleanup\&.
.br
\fBsd_bus_track_get_recursive\fR(3)
\(em Track bus peers
.br
\fBsd_bus_track_get_userdata\fR(3)
\(em Track bus peers
.br
\fBsd_bus_track_new\fR(3)
\(em Track bus peers
.br
\fBsd_bus_track_next\fR(3)
\(em Add, remove and retrieve bus peers tracked in a bus peer tracking object
.br
\fBsd_bus_track_ref\fR(3)
\(em Track bus peers
.br
\fBsd_bus_track_remove_name\fR(3)
\(em Add, remove and retrieve bus peers tracked in a bus peer tracking object
.br
\fBsd_bus_track_remove_sender\fR(3)
\(em Add, remove and retrieve bus peers tracked in a bus peer tracking object
.br
\fBsd_bus_track_set_destroy_callback\fR(3)
\(em Define the callback function for resource cleanup\&.
.br
\fBsd_bus_track_set_recursive\fR(3)
\(em Track bus peers
.br
\fBsd_bus_track_set_userdata\fR(3)
\(em Track bus peers
.br
\fBsd_bus_track_unref\fR(3)
\(em Track bus peers
.br
\fBsd_bus_track_unrefp\fR(3)
\(em Track bus peers
.br
\fBsd_bus_unref\fR(3)
\(em Create a new bus object and create or destroy references to it
.br
\fBsd_bus_unrefp\fR(3)
\(em Create a new bus object and create or destroy references to it
.br
\fBsd_bus_wait\fR(3)
\(em Wait for I/O on a bus connection
.br
\fBSD_CRIT\fR(3)
\(em APIs for new\-style daemons
.br
\fBSD_DEBUG\fR(3)
\(em APIs for new\-style daemons
.br
\fBSD_EMERG\fR(3)
\(em APIs for new\-style daemons
.br
\fBSD_ERR\fR(3)
\(em APIs for new\-style daemons
.br
\fBsd_event\fR(3)
\(em Acquire and release an event loop object
.br
\fBsd_event_add_child\fR(3)
\(em Add a child process state change event source to an event loop
.br
\fBsd_event_add_defer\fR(3)
\(em Add static event sources to an event loop
.br
\fBsd_event_add_exit\fR(3)
\(em Add static event sources to an event loop
.br
\fBsd_event_add_inotify\fR(3)
\(em Add an "inotify" file system inode event source to an event loop
.br
\fBsd_event_add_io\fR(3)
\(em Add an I/O event source to an event loop
.br
\fBsd_event_add_post\fR(3)
\(em Add static event sources to an event loop
.br
\fBsd_event_add_signal\fR(3)
\(em Add a UNIX process signal event source to an event loop
.br
\fBsd_event_add_time\fR(3)
\(em Add a timer event source to an event loop
.br
\fBSD_EVENT_ARMED\fR(3)
\(em Low\-level event loop operations
.br
\fBsd_event_child_handler_t\fR(3)
\(em Add a child process state change event source to an event loop
.br
\fBsd_event_default\fR(3)
\(em Acquire and release an event loop object
.br
\fBsd_event_destroy_t\fR(3)
\(em Define the callback function for resource cleanup\&.
.br
\fBsd_event_dispatch\fR(3)
\(em Low\-level event loop operations
.br
\fBsd_event_exit\fR(3)
\(em Ask the event loop to exit
.br
\fBSD_EVENT_EXITING\fR(3)
\(em Low\-level event loop operations
.br
\fBSD_EVENT_FINISHED\fR(3)
\(em Low\-level event loop operations
.br
\fBsd_event_get_exit_code\fR(3)
\(em Ask the event loop to exit
.br
\fBsd_event_get_fd\fR(3)
\(em Obtain a file descriptor to poll for event loop events
.br
\fBsd_event_get_iteration\fR(3)
\(em Low\-level event loop operations
.br
\fBsd_event_get_state\fR(3)
\(em Low\-level event loop operations
.br
\fBsd_event_get_tid\fR(3)
\(em Acquire and release an event loop object
.br
\fBsd_event_get_watchdog\fR(3)
\(em Enable event loop watchdog support
.br
\fBsd_event_handler_t\fR(3)
\(em Add static event sources to an event loop
.br
\fBSD_EVENT_INITIAL\fR(3)
\(em Low\-level event loop operations
.br
\fBsd_event_inotify_handler_t\fR(3)
\(em Add an "inotify" file system inode event source to an event loop
.br
\fBsd_event_io_handler_t\fR(3)
\(em Add an I/O event source to an event loop
.br
\fBsd_event_loop\fR(3)
\(em Run an event loop
.br
\fBsd_event_new\fR(3)
\(em Acquire and release an event loop object
.br
\fBsd_event_now\fR(3)
\(em Retrieve current event loop iteration timestamp
.br
\fBSD_EVENT_OFF\fR(3)
\(em Enable or disable event sources
.br
\fBSD_EVENT_ON\fR(3)
\(em Enable or disable event sources
.br
\fBSD_EVENT_ONESHOT\fR(3)
\(em Enable or disable event sources
.br
\fBSD_EVENT_PENDING\fR(3)
\(em Low\-level event loop operations
.br
\fBsd_event_prepare\fR(3)
\(em Low\-level event loop operations
.br
\fBSD_EVENT_PREPARING\fR(3)
\(em Low\-level event loop operations
.br
\fBSD_EVENT_PRIORITY_IDLE\fR(3)
\(em Set or retrieve the priority of event sources
.br
\fBSD_EVENT_PRIORITY_IMPORTANT\fR(3)
\(em Set or retrieve the priority of event sources
.br
\fBSD_EVENT_PRIORITY_NORMAL\fR(3)
\(em Set or retrieve the priority of event sources
.br
\fBsd_event_ref\fR(3)
\(em Acquire and release an event loop object
.br
\fBsd_event_run\fR(3)
\(em Run an event loop
.br
\fBSD_EVENT_RUNNING\fR(3)
\(em Low\-level event loop operations
.br
\fBsd_event_set_watchdog\fR(3)
\(em Enable event loop watchdog support
.br
\fBsd_event_signal_handler_t\fR(3)
\(em Add a UNIX process signal event source to an event loop
.br
\fBsd_event_source\fR(3)
\(em Add an I/O event source to an event loop
.br
\fBsd_event_source_get_child_pid\fR(3)
\(em Add a child process state change event source to an event loop
.br
\fBsd_event_source_get_description\fR(3)
\(em Set or retrieve descriptive names of event sources
.br
\fBsd_event_source_get_destroy_callback\fR(3)
\(em Define the callback function for resource cleanup\&.
.br
\fBsd_event_source_get_enabled\fR(3)
\(em Enable or disable event sources
.br
\fBsd_event_source_get_event\fR(3)
\(em Retrieve the event loop of an event source
.br
\fBsd_event_source_get_inotify_mask\fR(3)
\(em Add an "inotify" file system inode event source to an event loop
.br
\fBsd_event_source_get_io_events\fR(3)
\(em Add an I/O event source to an event loop
.br
\fBsd_event_source_get_io_fd\fR(3)
\(em Add an I/O event source to an event loop
.br
\fBsd_event_source_get_io_fd_own\fR(3)
\(em Add an I/O event source to an event loop
.br
\fBsd_event_source_get_io_revents\fR(3)
\(em Add an I/O event source to an event loop
.br
\fBsd_event_source_get_pending\fR(3)
\(em Determine pending state of event sources
.br
\fBsd_event_source_get_priority\fR(3)
\(em Set or retrieve the priority of event sources
.br
\fBsd_event_source_get_signal\fR(3)
\(em Add a UNIX process signal event source to an event loop
.br
\fBsd_event_source_get_time\fR(3)
\(em Add a timer event source to an event loop
.br
\fBsd_event_source_get_time_accuracy\fR(3)
\(em Add a timer event source to an event loop
.br
\fBsd_event_source_get_time_clock\fR(3)
\(em Add a timer event source to an event loop
.br
\fBsd_event_source_get_userdata\fR(3)
\(em Set or retrieve user data pointer of event sources
.br
\fBsd_event_source_ref\fR(3)
\(em Increase or decrease event source reference counters
.br
\fBsd_event_source_set_description\fR(3)
\(em Set or retrieve descriptive names of event sources
.br
\fBsd_event_source_set_destroy_callback\fR(3)
\(em Define the callback function for resource cleanup\&.
.br
\fBsd_event_source_set_enabled\fR(3)
\(em Enable or disable event sources
.br
\fBsd_event_source_set_io_events\fR(3)
\(em Add an I/O event source to an event loop
.br
\fBsd_event_source_set_io_fd\fR(3)
\(em Add an I/O event source to an event loop
.br
\fBsd_event_source_set_io_fd_own\fR(3)
\(em Add an I/O event source to an event loop
.br
\fBsd_event_source_set_prepare\fR(3)
\(em Set a preparation callback for event sources
.br
\fBsd_event_source_set_priority\fR(3)
\(em Set or retrieve the priority of event sources
.br
\fBsd_event_source_set_time\fR(3)
\(em Add a timer event source to an event loop
.br
\fBsd_event_source_set_time_accuracy\fR(3)
\(em Add a timer event source to an event loop
.br
\fBsd_event_source_set_userdata\fR(3)
\(em Set or retrieve user data pointer of event sources
.br
\fBsd_event_source_unref\fR(3)
\(em Increase or decrease event source reference counters
.br
\fBsd_event_source_unrefp\fR(3)
\(em Increase or decrease event source reference counters
.br
\fBsd_event_time_handler_t\fR(3)
\(em Add a timer event source to an event loop
.br
\fBsd_event_unref\fR(3)
\(em Acquire and release an event loop object
.br
\fBsd_event_unrefp\fR(3)
\(em Acquire and release an event loop object
.br
\fBsd_event_wait\fR(3)
\(em Low\-level event loop operations
.br
\fBsd_get_machine_names\fR(3)
\(em Determine available seats, sessions, logged in users and virtual machines/containers
.br
\fBsd_get_seats\fR(3)
\(em Determine available seats, sessions, logged in users and virtual machines/containers
.br
\fBsd_get_sessions\fR(3)
\(em Determine available seats, sessions, logged in users and virtual machines/containers
.br
\fBsd_get_uids\fR(3)
\(em Determine available seats, sessions, logged in users and virtual machines/containers
.br
\fBSD_ID128_CONST_STR\fR(3)
\(em APIs for processing 128\-bit IDs
.br
\fBsd_id128_equal\fR(3)
\(em APIs for processing 128\-bit IDs
.br
\fBSD_ID128_FORMAT_STR\fR(3)
\(em APIs for processing 128\-bit IDs
.br
\fBSD_ID128_FORMAT_VAL\fR(3)
\(em APIs for processing 128\-bit IDs
.br
\fBsd_id128_from_string\fR(3)
\(em Format or parse 128\-bit IDs as strings
.br
\fBsd_id128_get_boot\fR(3)
\(em Retrieve 128\-bit IDs
.br
\fBsd_id128_get_boot_app_specific\fR(3)
\(em Retrieve 128\-bit IDs
.br
\fBsd_id128_get_invocation\fR(3)
\(em Retrieve 128\-bit IDs
.br
\fBsd_id128_get_machine\fR(3)
\(em Retrieve 128\-bit IDs
.br
\fBsd_id128_get_machine_app_specific\fR(3)
\(em Retrieve 128\-bit IDs
.br
\fBsd_id128_is_null\fR(3)
\(em APIs for processing 128\-bit IDs
.br
\fBSD_ID128_MAKE\fR(3)
\(em APIs for processing 128\-bit IDs
.br
\fBSD_ID128_MAKE_STR\fR(3)
\(em APIs for processing 128\-bit IDs
.br
\fBSD_ID128_NULL\fR(3)
\(em APIs for processing 128\-bit IDs
.br
\fBsd_id128_randomize\fR(3)
\(em Generate 128\-bit IDs
.br
\fBsd_id128_t\fR(3)
\(em APIs for processing 128\-bit IDs
.br
\fBsd_id128_to_string\fR(3)
\(em Format or parse 128\-bit IDs as strings
.br
\fBSD_INFO\fR(3)
\(em APIs for new\-style daemons
.br
\fBsd_is_fifo\fR(3)
\(em Check the type of a file descriptor
.br
\fBsd_is_mq\fR(3)
\(em Check the type of a file descriptor
.br
\fBsd_is_socket\fR(3)
\(em Check the type of a file descriptor
.br
\fBsd_is_socket_inet\fR(3)
\(em Check the type of a file descriptor
.br
\fBsd_is_socket_sockaddr\fR(3)
\(em Check the type of a file descriptor
.br
\fBsd_is_socket_unix\fR(3)
\(em Check the type of a file descriptor
.br
\fBsd_is_special\fR(3)
\(em Check the type of a file descriptor
.br
\fBsd_journal\fR(3)
\(em Open the system journal for reading
.br
\fBsd_journal_add_conjunction\fR(3)
\(em Add or remove entry matches
.br
\fBsd_journal_add_disjunction\fR(3)
\(em Add or remove entry matches
.br
\fBsd_journal_add_match\fR(3)
\(em Add or remove entry matches
.br
\fBSD_JOURNAL_APPEND\fR(3)
\(em Journal change notification interface
.br
\fBsd_journal_close\fR(3)
\(em Open the system journal for reading
.br
\fBSD_JOURNAL_CURRENT_USER\fR(3)
\(em Open the system journal for reading
.br
\fBsd_journal_enumerate_data\fR(3)
\(em Read data fields from the current journal entry
.br
\fBsd_journal_enumerate_fields\fR(3)
\(em Read used field names from the journal
.br
\fBsd_journal_enumerate_unique\fR(3)
\(em Read unique data fields from the journal
.br
\fBsd_journal_flush_matches\fR(3)
\(em Add or remove entry matches
.br
\fBSD_JOURNAL_FOREACH\fR(3)
\(em Advance or set back the read pointer in the journal
.br
\fBSD_JOURNAL_FOREACH_BACKWARDS\fR(3)
\(em Advance or set back the read pointer in the journal
.br
\fBSD_JOURNAL_FOREACH_DATA\fR(3)
\(em Read data fields from the current journal entry
.br
\fBSD_JOURNAL_FOREACH_FIELD\fR(3)
\(em Read used field names from the journal
.br
\fBSD_JOURNAL_FOREACH_UNIQUE\fR(3)
\(em Read unique data fields from the journal
.br
\fBsd_journal_get_catalog\fR(3)
\(em Retrieve message catalog entry
.br
\fBsd_journal_get_catalog_for_message_id\fR(3)
\(em Retrieve message catalog entry
.br
\fBsd_journal_get_cursor\fR(3)
\(em Get cursor string for or test cursor string against the current journal entry
.br
\fBsd_journal_get_cutoff_monotonic_usec\fR(3)
\(em Read cut\-off timestamps from the current journal entry
.br
\fBsd_journal_get_cutoff_realtime_usec\fR(3)
\(em Read cut\-off timestamps from the current journal entry
.br
\fBsd_journal_get_data\fR(3)
\(em Read data fields from the current journal entry
.br
\fBsd_journal_get_data_threshold\fR(3)
\(em Read data fields from the current journal entry
.br
\fBsd_journal_get_events\fR(3)
\(em Journal change notification interface
.br
\fBsd_journal_get_fd\fR(3)
\(em Journal change notification interface
.br
\fBsd_journal_get_monotonic_usec\fR(3)
\(em Read timestamps from the current journal entry
.br
\fBsd_journal_get_realtime_usec\fR(3)
\(em Read timestamps from the current journal entry
.br
\fBsd_journal_get_timeout\fR(3)
\(em Journal change notification interface
.br
\fBsd_journal_get_usage\fR(3)
\(em Journal disk usage
.br
\fBsd_journal_has_persistent_files\fR(3)
\(em Query availability of runtime or persistent journal files\&.
.br
\fBsd_journal_has_runtime_files\fR(3)
\(em Query availability of runtime or persistent journal files\&.
.br
\fBSD_JOURNAL_INVALIDATE\fR(3)
\(em Journal change notification interface
.br
\fBSD_JOURNAL_LOCAL_ONLY\fR(3)
\(em Open the system journal for reading
.br
\fBsd_journal_next\fR(3)
\(em Advance or set back the read pointer in the journal
.br
\fBsd_journal_next_skip\fR(3)
\(em Advance or set back the read pointer in the journal
.br
\fBSD_JOURNAL_NOP\fR(3)
\(em Journal change notification interface
.br
\fBsd_journal_open\fR(3)
\(em Open the system journal for reading
.br
\fBsd_journal_open_directory\fR(3)
\(em Open the system journal for reading
.br
\fBsd_journal_open_directory_fd\fR(3)
\(em Open the system journal for reading
.br
\fBsd_journal_open_files\fR(3)
\(em Open the system journal for reading
.br
\fBsd_journal_open_files_fd\fR(3)
\(em Open the system journal for reading
.br
\fBSD_JOURNAL_OS_ROOT\fR(3)
\(em Open the system journal for reading
.br
\fBsd_journal_perror\fR(3)
\(em Submit log entries to the journal
.br
\fBsd_journal_previous\fR(3)
\(em Advance or set back the read pointer in the journal
.br
\fBsd_journal_previous_skip\fR(3)
\(em Advance or set back the read pointer in the journal
.br
\fBsd_journal_print\fR(3)
\(em Submit log entries to the journal
.br
\fBsd_journal_printv\fR(3)
\(em Submit log entries to the journal
.br
\fBsd_journal_process\fR(3)
\(em Journal change notification interface
.br
\fBsd_journal_query_unique\fR(3)
\(em Read unique data fields from the journal
.br
\fBsd_journal_reliable_fd\fR(3)
\(em Journal change notification interface
.br
\fBsd_journal_restart_data\fR(3)
\(em Read data fields from the current journal entry
.br
\fBsd_journal_restart_fields\fR(3)
\(em Read used field names from the journal
.br
\fBsd_journal_restart_unique\fR(3)
\(em Read unique data fields from the journal
.br
\fBSD_JOURNAL_RUNTIME_ONLY\fR(3)
\(em Open the system journal for reading
.br
\fBsd_journal_seek_cursor\fR(3)
\(em Seek to a position in the journal
.br
\fBsd_journal_seek_head\fR(3)
\(em Seek to a position in the journal
.br
\fBsd_journal_seek_monotonic_usec\fR(3)
\(em Seek to a position in the journal
.br
\fBsd_journal_seek_realtime_usec\fR(3)
\(em Seek to a position in the journal
.br
\fBsd_journal_seek_tail\fR(3)
\(em Seek to a position in the journal
.br
\fBsd_journal_send\fR(3)
\(em Submit log entries to the journal
.br
\fBsd_journal_sendv\fR(3)
\(em Submit log entries to the journal
.br
\fBsd_journal_set_data_threshold\fR(3)
\(em Read data fields from the current journal entry
.br
\fBsd_journal_stream_fd\fR(3)
\(em Create log stream file descriptor to the journal
.br
\fBSD_JOURNAL_SUPPRESS_LOCATION\fR(3)
\(em Submit log entries to the journal
.br
\fBSD_JOURNAL_SYSTEM\fR(3)
\(em Open the system journal for reading
.br
\fBsd_journal_test_cursor\fR(3)
\(em Get cursor string for or test cursor string against the current journal entry
.br
\fBsd_journal_wait\fR(3)
\(em Journal change notification interface
.br
\fBsd_listen_fds\fR(3)
\(em Check for file descriptors passed by the system manager
.br
\fBSD_LISTEN_FDS_START\fR(3)
\(em Check for file descriptors passed by the system manager
.br
\fBsd_listen_fds_with_names\fR(3)
\(em Check for file descriptors passed by the system manager
.br
\fBsd_login_monitor\fR(3)
\(em Monitor login sessions, seats, users and virtual machines/containers
.br
\fBsd_login_monitor_flush\fR(3)
\(em Monitor login sessions, seats, users and virtual machines/containers
.br
\fBsd_login_monitor_get_events\fR(3)
\(em Monitor login sessions, seats, users and virtual machines/containers
.br
\fBsd_login_monitor_get_fd\fR(3)
\(em Monitor login sessions, seats, users and virtual machines/containers
.br
\fBsd_login_monitor_get_timeout\fR(3)
\(em Monitor login sessions, seats, users and virtual machines/containers
.br
\fBsd_login_monitor_new\fR(3)
\(em Monitor login sessions, seats, users and virtual machines/containers
.br
\fBsd_login_monitor_unref\fR(3)
\(em Monitor login sessions, seats, users and virtual machines/containers
.br
\fBsd_login_monitor_unrefp\fR(3)
\(em Monitor login sessions, seats, users and virtual machines/containers
.br
\fBsd_machine_get_class\fR(3)
\(em Determine the class and network interface indices of a locally running virtual machine or container\&.
.br
\fBsd_machine_get_ifindices\fR(3)
\(em Determine the class and network interface indices of a locally running virtual machine or container\&.
.br
\fBSD_NOTICE\fR(3)
\(em APIs for new\-style daemons
.br
\fBsd_notify\fR(3)
\(em Notify service manager about start\-up completion and other service status changes
.br
\fBsd_notifyf\fR(3)
\(em Notify service manager about start\-up completion and other service status changes
.br
\fBsd_peer_get_cgroup\fR(3)
\(em Determine the owner uid of the user unit or session, or the session, user unit, system unit, container/VM or slice that a specific PID or socket peer belongs to\&.
.br
\fBsd_peer_get_machine_name\fR(3)
\(em Determine the owner uid of the user unit or session, or the session, user unit, system unit, container/VM or slice that a specific PID or socket peer belongs to\&.
.br
\fBsd_peer_get_owner_uid\fR(3)
\(em Determine the owner uid of the user unit or session, or the session, user unit, system unit, container/VM or slice that a specific PID or socket peer belongs to\&.
.br
\fBsd_peer_get_session\fR(3)
\(em Determine the owner uid of the user unit or session, or the session, user unit, system unit, container/VM or slice that a specific PID or socket peer belongs to\&.
.br
\fBsd_peer_get_slice\fR(3)
\(em Determine the owner uid of the user unit or session, or the session, user unit, system unit, container/VM or slice that a specific PID or socket peer belongs to\&.
.br
\fBsd_peer_get_unit\fR(3)
\(em Determine the owner uid of the user unit or session, or the session, user unit, system unit, container/VM or slice that a specific PID or socket peer belongs to\&.
.br
\fBsd_peer_get_user_slice\fR(3)
\(em Determine the owner uid of the user unit or session, or the session, user unit, system unit, container/VM or slice that a specific PID or socket peer belongs to\&.
.br
\fBsd_peer_get_user_unit\fR(3)
\(em Determine the owner uid of the user unit or session, or the session, user unit, system unit, container/VM or slice that a specific PID or socket peer belongs to\&.
.br
\fBsd_pid_get_cgroup\fR(3)
\(em Determine the owner uid of the user unit or session, or the session, user unit, system unit, container/VM or slice that a specific PID or socket peer belongs to\&.
.br
\fBsd_pid_get_machine_name\fR(3)
\(em Determine the owner uid of the user unit or session, or the session, user unit, system unit, container/VM or slice that a specific PID or socket peer belongs to\&.
.br
\fBsd_pid_get_owner_uid\fR(3)
\(em Determine the owner uid of the user unit or session, or the session, user unit, system unit, container/VM or slice that a specific PID or socket peer belongs to\&.
.br
\fBsd_pid_get_session\fR(3)
\(em Determine the owner uid of the user unit or session, or the session, user unit, system unit, container/VM or slice that a specific PID or socket peer belongs to\&.
.br
\fBsd_pid_get_slice\fR(3)
\(em Determine the owner uid of the user unit or session, or the session, user unit, system unit, container/VM or slice that a specific PID or socket peer belongs to\&.
.br
\fBsd_pid_get_unit\fR(3)
\(em Determine the owner uid of the user unit or session, or the session, user unit, system unit, container/VM or slice that a specific PID or socket peer belongs to\&.
.br
\fBsd_pid_get_user_slice\fR(3)
\(em Determine the owner uid of the user unit or session, or the session, user unit, system unit, container/VM or slice that a specific PID or socket peer belongs to\&.
.br
\fBsd_pid_get_user_unit\fR(3)
\(em Determine the owner uid of the user unit or session, or the session, user unit, system unit, container/VM or slice that a specific PID or socket peer belongs to\&.
.br
\fBsd_pid_notify\fR(3)
\(em Notify service manager about start\-up completion and other service status changes
.br
\fBsd_pid_notify_with_fds\fR(3)
\(em Notify service manager about start\-up completion and other service status changes
.br
\fBsd_pid_notifyf\fR(3)
\(em Notify service manager about start\-up completion and other service status changes
.br
\fBsd_seat_can_graphical\fR(3)
\(em Determine state of a specific seat
.br
\fBsd_seat_can_multi_session\fR(3)
\(em Determine state of a specific seat
.br
\fBsd_seat_can_tty\fR(3)
\(em Determine state of a specific seat
.br
\fBsd_seat_get_active\fR(3)
\(em Determine state of a specific seat
.br
\fBsd_seat_get_sessions\fR(3)
\(em Determine state of a specific seat
.br
\fBsd_session_get_class\fR(3)
\(em Determine state of a specific session
.br
\fBsd_session_get_desktop\fR(3)
\(em Determine state of a specific session
.br
\fBsd_session_get_display\fR(3)
\(em Determine state of a specific session
.br
\fBsd_session_get_remote_host\fR(3)
\(em Determine state of a specific session
.br
\fBsd_session_get_remote_user\fR(3)
\(em Determine state of a specific session
.br
\fBsd_session_get_seat\fR(3)
\(em Determine state of a specific session
.br
\fBsd_session_get_service\fR(3)
\(em Determine state of a specific session
.br
\fBsd_session_get_state\fR(3)
\(em Determine state of a specific session
.br
\fBsd_session_get_tty\fR(3)
\(em Determine state of a specific session
.br
\fBsd_session_get_type\fR(3)
\(em Determine state of a specific session
.br
\fBsd_session_get_uid\fR(3)
\(em Determine state of a specific session
.br
\fBsd_session_get_vt\fR(3)
\(em Determine state of a specific session
.br
\fBsd_session_is_active\fR(3)
\(em Determine state of a specific session
.br
\fBsd_session_is_remote\fR(3)
\(em Determine state of a specific session
.br
\fBsd_uid_get_display\fR(3)
\(em Determine login state of a specific Unix user ID
.br
\fBsd_uid_get_seats\fR(3)
\(em Determine login state of a specific Unix user ID
.br
\fBsd_uid_get_sessions\fR(3)
\(em Determine login state of a specific Unix user ID
.br
\fBsd_uid_get_state\fR(3)
\(em Determine login state of a specific Unix user ID
.br
\fBsd_uid_is_on_seat\fR(3)
\(em Determine login state of a specific Unix user ID
.br
\fBSD_WARNING\fR(3)
\(em APIs for new\-style daemons
.br
\fBsd_watchdog_enabled\fR(3)
\(em Check whether the service manager expects watchdog keep\-alive notifications from a service
.br
\fBshutdown\fR(8)
\(em Halt, power\-off or reboot the machine
.br
\fBsleep.conf.d\fR(5)
\(em Suspend and hibernation configuration file
.br
\fBsysctl.d\fR(5)
\(em Configure kernel parameters at boot
.br
\fBsystem.conf.d\fR(5)
\(em System and session service manager configuration files
.br
\fBsystemctl\fR(1)
\(em Control the systemd system and service manager
.br
\fBsystemd\fR(1)
\(em systemd system and service manager
.br
\fBsystemd-analyze\fR(1)
\(em Analyze and debug system manager
.br
\fBsystemd-ask-password\fR(1)
\(em Query the user for a system password
.br
\fBsystemd-ask-password-console.path\fR(8)
\(em Query the user for system passwords on the console and via wall
.br
\fBsystemd-ask-password-console.service\fR(8)
\(em Query the user for system passwords on the console and via wall
.br
\fBsystemd-ask-password-wall.path\fR(8)
\(em Query the user for system passwords on the console and via wall
.br
\fBsystemd-ask-password-wall.service\fR(8)
\(em Query the user for system passwords on the console and via wall
.br
\fBsystemd-backlight\fR(8)
\(em Load and save the display backlight brightness at boot and shutdown
.br
\fBsystemd-backlight@.service\fR(8)
\(em Load and save the display backlight brightness at boot and shutdown
.br
\fBsystemd-binfmt\fR(8)
\(em Configure additional binary formats for executables at boot
.br
\fBsystemd-binfmt.service\fR(8)
\(em Configure additional binary formats for executables at boot
.br
\fBsystemd-bless-boot-generator\fR(8)
\(em Pull
.br
\fBsystemd-bless-boot.service\fR(8)
\(em Mark current boot process as successful
.br
\fBsystemd-boot\fR(7)
\(em A simple UEFI boot manager
.br
\fBsystemd-boot-check-no-failures.service\fR(8)
\(em verify that the system booted up cleanly
.br
\fBsystemd-cat\fR(1)
\(em Connect a pipeline or program\*(Aqs output with the journal
.br
\fBsystemd-cgls\fR(1)
\(em Recursively show control group contents
.br
\fBsystemd-cgtop\fR(1)
\(em Show top control groups by their resource usage
.br
\fBsystemd-coredump\fR(8)
\(em Acquire, save and process core dumps
.br
\fBsystemd-coredump.socket\fR(8)
\(em Acquire, save and process core dumps
.br
\fBsystemd-coredump@.service\fR(8)
\(em Acquire, save and process core dumps
.br
\fBsystemd-cryptsetup\fR(8)
\(em Full disk decryption logic
.br
\fBsystemd-cryptsetup-generator\fR(8)
\(em Unit generator for
.br
\fBsystemd-cryptsetup@.service\fR(8)
\(em Full disk decryption logic
.br
\fBsystemd-debug-generator\fR(8)
\(em Generator for enabling a runtime debug shell and masking specific units at boot
.br
\fBsystemd-delta\fR(1)
\(em Find overridden configuration files
.br
\fBsystemd-detect-virt\fR(1)
\(em Detect execution in a virtualized environment
.br
\fBsystemd-environment-d-generator\fR(8)
\(em Load variables specified by
.br
\fBsystemd-escape\fR(1)
\(em Escape strings for usage in systemd unit names
.br
\fBsystemd-fsck\fR(8)
\(em File system checker logic
.br
\fBsystemd-fsck-root.service\fR(8)
\(em File system checker logic
.br
\fBsystemd-fsck@.service\fR(8)
\(em File system checker logic
.br
\fBsystemd-fsckd\fR(8)
\(em File system check progress reporting
.br
\fBsystemd-fsckd.service\fR(8)
\(em File system check progress reporting
.br
\fBsystemd-fsckd.socket\fR(8)
\(em File system check progress reporting
.br
\fBsystemd-fstab-generator\fR(8)
\(em Unit generator for /etc/fstab
.br
\fBsystemd-getty-generator\fR(8)
\(em Generator for enabling getty instances on the console
.br
\fBsystemd-gpt-auto-generator\fR(8)
\(em Generator for automatically discovering and mounting root,
.br
\fBsystemd-growfs\fR(8)
\(em Creating and growing file systems on demand
.br
\fBsystemd-growfs@.service\fR(8)
\(em Creating and growing file systems on demand
.br
\fBsystemd-halt.service\fR(8)
\(em System shutdown logic
.br
\fBsystemd-hibernate-resume\fR(8)
\(em Resume from hibernation
.br
\fBsystemd-hibernate-resume-generator\fR(8)
\(em Unit generator for resume= kernel parameter
.br
\fBsystemd-hibernate-resume@.service\fR(8)
\(em Resume from hibernation
.br
\fBsystemd-hibernate.service\fR(8)
\(em System sleep state logic
.br
\fBsystemd-hostnamed\fR(8)
\(em Host name bus mechanism
.br
\fBsystemd-hostnamed.service\fR(8)
\(em Host name bus mechanism
.br
\fBsystemd-hwdb\fR(8)
\(em hardware database management tool
.br
\fBsystemd-hybrid-sleep.service\fR(8)
\(em System sleep state logic
.br
\fBsystemd-id128\fR(1)
\(em Generate and print sd\-128 identifiers
.br
\fBsystemd-importd\fR(8)
\(em VM and container image import and export service
.br
\fBsystemd-importd.service\fR(8)
\(em VM and container image import and export service
.br
\fBsystemd-inhibit\fR(1)
\(em Execute a program with an inhibition lock taken
.br
\fBsystemd-initctl\fR(8)
\(em /dev/initctl compatibility
.br
\fBsystemd-initctl.service\fR(8)
\(em /dev/initctl compatibility
.br
\fBsystemd-initctl.socket\fR(8)
\(em /dev/initctl compatibility
.br
\fBsystemd-journal-gatewayd\fR(8)
\(em HTTP server for journal events
.br
\fBsystemd-journal-gatewayd.service\fR(8)
\(em HTTP server for journal events
.br
\fBsystemd-journal-gatewayd.socket\fR(8)
\(em HTTP server for journal events
.br
\fBsystemd-journal-remote\fR(8)
\(em Receive journal messages over the network
.br
\fBsystemd-journal-remote.service\fR(8)
\(em Receive journal messages over the network
.br
\fBsystemd-journal-remote.socket\fR(8)
\(em Receive journal messages over the network
.br
\fBsystemd-journal-upload\fR(8)
\(em Send journal messages over the network
.br
\fBsystemd-journal-upload.service\fR(8)
\(em Send journal messages over the network
.br
\fBsystemd-journald\fR(8)
\(em Journal service
.br
\fBsystemd-journald-audit.socket\fR(8)
\(em Journal service
.br
\fBsystemd-journald-dev-log.socket\fR(8)
\(em Journal service
.br
\fBsystemd-journald.service\fR(8)
\(em Journal service
.br
\fBsystemd-journald.socket\fR(8)
\(em Journal service
.br
\fBsystemd-kexec.service\fR(8)
\(em System shutdown logic
.br
\fBsystemd-localed\fR(8)
\(em Locale bus mechanism
.br
\fBsystemd-localed.service\fR(8)
\(em Locale bus mechanism
.br
\fBsystemd-logind\fR(8)
\(em Login manager
.br
\fBsystemd-logind.service\fR(8)
\(em Login manager
.br
\fBsystemd-machine-id-commit.service\fR(8)
\(em Commit a transient machine ID to disk
.br
\fBsystemd-machine-id-setup\fR(1)
\(em Initialize the machine ID in /etc/machine\-id
.br
\fBsystemd-machined\fR(8)
\(em Virtual machine and container registration manager
.br
\fBsystemd-machined.service\fR(8)
\(em Virtual machine and container registration manager
.br
\fBsystemd-makefs\fR(8)
\(em Creating and growing file systems on demand
.br
\fBsystemd-makefs@.service\fR(8)
\(em Creating and growing file systems on demand
.br
\fBsystemd-makeswap@.service\fR(8)
\(em Creating and growing file systems on demand
.br
\fBsystemd-modules-load\fR(8)
\(em Load kernel modules at boot
.br
\fBsystemd-modules-load.service\fR(8)
\(em Load kernel modules at boot
.br
\fBsystemd-mount\fR(1)
\(em Establish and destroy transient mount or auto\-mount points
.br
\fBsystemd-networkd\fR(8)
\(em Network manager
.br
\fBsystemd-networkd-wait-online\fR(8)
\(em Wait for network to come online
.br
\fBsystemd-networkd-wait-online.service\fR(8)
\(em Wait for network to come online
.br
\fBsystemd-networkd.service\fR(8)
\(em Network manager
.br
\fBsystemd-notify\fR(1)
\(em Notify service manager about start\-up completion and other daemon status changes
.br
\fBsystemd-nspawn\fR(1)
\(em Spawn a command or OS in a light\-weight container
.br
\fBsystemd-path\fR(1)
\(em List and query system and user paths
.br
\fBsystemd-poweroff.service\fR(8)
\(em System shutdown logic
.br
\fBsystemd-quotacheck\fR(8)
\(em File system quota checker logic
.br
\fBsystemd-quotacheck.service\fR(8)
\(em File system quota checker logic
.br
\fBsystemd-random-seed\fR(8)
\(em Load and save the system random seed at boot and shutdown
.br
\fBsystemd-random-seed.service\fR(8)
\(em Load and save the system random seed at boot and shutdown
.br
\fBsystemd-rc-local-generator\fR(8)
\(em Compatibility generator for starting
.br
\fBsystemd-reboot.service\fR(8)
\(em System shutdown logic
.br
\fBsystemd-remount-fs\fR(8)
\(em Remount root and kernel file systems
.br
\fBsystemd-remount-fs.service\fR(8)
\(em Remount root and kernel file systems
.br
\fBsystemd-resolved\fR(8)
\(em Network Name Resolution manager
.br
\fBsystemd-resolved.service\fR(8)
\(em Network Name Resolution manager
.br
\fBsystemd-rfkill\fR(8)
\(em Load and save the RF kill switch state at boot and change
.br
\fBsystemd-rfkill.service\fR(8)
\(em Load and save the RF kill switch state at boot and change
.br
\fBsystemd-rfkill.socket\fR(8)
\(em Load and save the RF kill switch state at boot and change
.br
\fBsystemd-run\fR(1)
\(em Run programs in transient scope units, service units, or path\-, socket\-, or timer\-triggered service units
.br
\fBsystemd-run-generator\fR(8)
\(em Generator for invoking commands specified on the kernel command line as system service
.br
\fBsystemd-shutdown\fR(8)
\(em System shutdown logic
.br
\fBsystemd-sleep\fR(8)
\(em System sleep state logic
.br
\fBsystemd-sleep.conf\fR(5)
\(em Suspend and hibernation configuration file
.br
\fBsystemd-socket-activate\fR(1)
\(em Test socket activation of daemons
.br
\fBsystemd-socket-proxyd\fR(8)
\(em Bidirectionally proxy local sockets to another (possibly remote) socket\&.
.br
\fBsystemd-suspend-then-hibernate.service\fR(8)
\(em System sleep state logic
.br
\fBsystemd-suspend.service\fR(8)
\(em System sleep state logic
.br
\fBsystemd-sysctl\fR(8)
\(em Configure kernel parameters at boot
.br
\fBsystemd-sysctl.service\fR(8)
\(em Configure kernel parameters at boot
.br
\fBsystemd-system-update-generator\fR(8)
\(em Generator for redirecting boot to offline update mode
.br
\fBsystemd-system.conf\fR(5)
\(em System and session service manager configuration files
.br
\fBsystemd-sysusers\fR(8)
\(em Allocate system users and groups
.br
\fBsystemd-sysusers.service\fR(8)
\(em Allocate system users and groups
.br
\fBsystemd-sysv-generator\fR(8)
\(em Unit generator for SysV init scripts
.br
\fBsystemd-time-wait-sync\fR(8)
\(em Wait Until Kernel Time Synchronized
.br
\fBsystemd-time-wait-sync.service\fR(8)
\(em Wait Until Kernel Time Synchronized
.br
\fBsystemd-timedated\fR(8)
\(em Time and date bus mechanism
.br
\fBsystemd-timedated.service\fR(8)
\(em Time and date bus mechanism
.br
\fBsystemd-timesyncd\fR(8)
\(em Network Time Synchronization
.br
\fBsystemd-timesyncd.service\fR(8)
\(em Network Time Synchronization
.br
\fBsystemd-tmpfiles\fR(8)
\(em Creates, deletes and cleans up volatile and temporary files and directories
.br
\fBsystemd-tmpfiles-clean.service\fR(8)
\(em Creates, deletes and cleans up volatile and temporary files and directories
.br
\fBsystemd-tmpfiles-clean.timer\fR(8)
\(em Creates, deletes and cleans up volatile and temporary files and directories
.br
\fBsystemd-tmpfiles-setup-dev.service\fR(8)
\(em Creates, deletes and cleans up volatile and temporary files and directories
.br
\fBsystemd-tmpfiles-setup.service\fR(8)
\(em Creates, deletes and cleans up volatile and temporary files and directories
.br
\fBsystemd-tty-ask-password-agent\fR(1)
\(em List or process pending systemd password requests
.br
\fBsystemd-udevd\fR(8)
\(em Device event managing daemon
.br
\fBsystemd-udevd-control.socket\fR(8)
\(em Device event managing daemon
.br
\fBsystemd-udevd-kernel.socket\fR(8)
\(em Device event managing daemon
.br
\fBsystemd-udevd.service\fR(8)
\(em Device event managing daemon
.br
\fBsystemd-umount\fR(1)
\(em Establish and destroy transient mount or auto\-mount points
.br
\fBsystemd-update-done\fR(8)
\(em Mark
.br
\fBsystemd-update-done.service\fR(8)
\(em Mark
.br
\fBsystemd-update-utmp\fR(8)
\(em Write audit and utmp updates at bootup, runlevel changes and shutdown
.br
\fBsystemd-update-utmp-runlevel.service\fR(8)
\(em Write audit and utmp updates at bootup, runlevel changes and shutdown
.br
\fBsystemd-update-utmp.service\fR(8)
\(em Write audit and utmp updates at bootup, runlevel changes and shutdown
.br
\fBsystemd-user-sessions\fR(8)
\(em Permit user logins after boot, prohibit user logins at shutdown
.br
\fBsystemd-user-sessions.service\fR(8)
\(em Permit user logins after boot, prohibit user logins at shutdown
.br
\fBsystemd-user.conf\fR(5)
\(em System and session service manager configuration files
.br
\fBsystemd-veritysetup\fR(8)
\(em Disk integrity protection logic
.br
\fBsystemd-veritysetup-generator\fR(8)
\(em Unit generator for integrity protected block devices
.br
\fBsystemd-veritysetup@.service\fR(8)
\(em Disk integrity protection logic
.br
\fBsystemd-volatile-root\fR(8)
\(em Make the root file system volatile
.br
\fBsystemd-volatile-root.service\fR(8)
\(em Make the root file system volatile
.br
\fBsystemd.automount\fR(5)
\(em Automount unit configuration
.br
\fBsystemd.device\fR(5)
\(em Device unit configuration
.br
\fBsystemd.directives\fR(7)
\(em Index of configuration directives
.br
\fBsystemd.dnssd\fR(5)
\(em DNS\-SD configuration
.br
\fBsystemd.environment-generator\fR(7)
\(em systemd environment file generators
.br
\fBsystemd.exec\fR(5)
\(em Execution environment configuration
.br
\fBsystemd.generator\fR(7)
\(em systemd unit generators
.br
\fBsystemd.journal-fields\fR(7)
\(em Special journal fields
.br
\fBsystemd.kill\fR(5)
\(em Process killing procedure configuration
.br
\fBsystemd.link\fR(5)
\(em Network device configuration
.br
\fBsystemd.mount\fR(5)
\(em Mount unit configuration
.br
\fBsystemd.negative\fR(5)
\(em DNSSEC trust anchor configuration files
.br
\fBsystemd.netdev\fR(5)
\(em Virtual Network Device configuration
.br
\fBsystemd.network\fR(5)
\(em Network configuration
.br
\fBsystemd.nspawn\fR(5)
\(em Container settings
.br
\fBsystemd.offline-updates\fR(7)
\(em Implementation of offline updates in systemd
.br
\fBsystemd.path\fR(5)
\(em Path unit configuration
.br
\fBsystemd.positive\fR(5)
\(em DNSSEC trust anchor configuration files
.br
\fBsystemd.preset\fR(5)
\(em Service enablement presets
.br
\fBsystemd.resource-control\fR(5)
\(em Resource control unit settings
.br
\fBsystemd.scope\fR(5)
\(em Scope unit configuration
.br
\fBsystemd.service\fR(5)
\(em Service unit configuration
.br
\fBsystemd.slice\fR(5)
\(em Slice unit configuration
.br
\fBsystemd.socket\fR(5)
\(em Socket unit configuration
.br
\fBsystemd.special\fR(7)
\(em Special systemd units
.br
\fBsystemd.swap\fR(5)
\(em Swap unit configuration
.br
\fBsystemd.syntax\fR(7)
\(em General syntax of systemd configuration files
.br
\fBsystemd.target\fR(5)
\(em Target unit configuration
.br
\fBsystemd.time\fR(7)
\(em Time and date specifications
.br
\fBsystemd.timer\fR(5)
\(em Timer unit configuration
.br
\fBsystemd.unit\fR(5)
\(em Unit configuration
.br
\fBsysusers.d\fR(5)
\(em Declarative allocation of system users and groups
.br
.SH "T"
.PP
\fBtelinit\fR(8)
\(em Change SysV runlevel
.br
\fBtimedatectl\fR(1)
\(em Control the system time and date
.br
\fBtimesyncd.conf\fR(5)
\(em Network Time Synchronization configuration files
.br
\fBtimesyncd.conf.d\fR(5)
\(em Network Time Synchronization configuration files
.br
\fBtmpfiles.d\fR(5)
\(em Configuration for creation, deletion and cleaning of volatile and temporary files
.br
.SH "U"
.PP
\fBudev\fR(7)
\(em Dynamic device management
.br
\fBudev.conf\fR(5)
\(em Configuration for device event managing daemon
.br
\fBudev_device_get_action\fR(3)
\(em Query device properties
.br
\fBudev_device_get_devlinks_list_entry\fR(3)
\(em Retrieve or set device attributes
.br
\fBudev_device_get_devnode\fR(3)
\(em Query device properties
.br
\fBudev_device_get_devnum\fR(3)
\(em Query device properties
.br
\fBudev_device_get_devpath\fR(3)
\(em Query device properties
.br
\fBudev_device_get_devtype\fR(3)
\(em Query device properties
.br
\fBudev_device_get_driver\fR(3)
\(em Query device properties
.br
\fBudev_device_get_is_initialized\fR(3)
\(em Query device properties
.br
\fBudev_device_get_parent\fR(3)
\(em Query device properties
.br
\fBudev_device_get_parent_with_subsystem_devtype\fR(3)
\(em Query device properties
.br
\fBudev_device_get_properties_list_entry\fR(3)
\(em Retrieve or set device attributes
.br
\fBudev_device_get_property_value\fR(3)
\(em Retrieve or set device attributes
.br
\fBudev_device_get_subsystem\fR(3)
\(em Query device properties
.br
\fBudev_device_get_sysattr_list_entry\fR(3)
\(em Retrieve or set device attributes
.br
\fBudev_device_get_sysattr_value\fR(3)
\(em Retrieve or set device attributes
.br
\fBudev_device_get_sysname\fR(3)
\(em Query device properties
.br
\fBudev_device_get_sysnum\fR(3)
\(em Query device properties
.br
\fBudev_device_get_syspath\fR(3)
\(em Query device properties
.br
\fBudev_device_get_tags_list_entry\fR(3)
\(em Retrieve or set device attributes
.br
\fBudev_device_get_udev\fR(3)
\(em Query device properties
.br
\fBudev_device_has_tag\fR(3)
\(em Retrieve or set device attributes
.br
\fBudev_device_new_from_device_id\fR(3)
\(em Create, acquire and release a udev device object
.br
\fBudev_device_new_from_devnum\fR(3)
\(em Create, acquire and release a udev device object
.br
\fBudev_device_new_from_environment\fR(3)
\(em Create, acquire and release a udev device object
.br
\fBudev_device_new_from_subsystem_sysname\fR(3)
\(em Create, acquire and release a udev device object
.br
\fBudev_device_new_from_syspath\fR(3)
\(em Create, acquire and release a udev device object
.br
\fBudev_device_ref\fR(3)
\(em Create, acquire and release a udev device object
.br
\fBudev_device_set_sysattr_value\fR(3)
\(em Retrieve or set device attributes
.br
\fBudev_device_unref\fR(3)
\(em Create, acquire and release a udev device object
.br
\fBudev_enumerate_add_match_is_initialized\fR(3)
\(em Modify filters
.br
\fBudev_enumerate_add_match_parent\fR(3)
\(em Modify filters
.br
\fBudev_enumerate_add_match_property\fR(3)
\(em Modify filters
.br
\fBudev_enumerate_add_match_subsystem\fR(3)
\(em Modify filters
.br
\fBudev_enumerate_add_match_sysattr\fR(3)
\(em Modify filters
.br
\fBudev_enumerate_add_match_sysname\fR(3)
\(em Modify filters
.br
\fBudev_enumerate_add_match_tag\fR(3)
\(em Modify filters
.br
\fBudev_enumerate_add_nomatch_subsystem\fR(3)
\(em Modify filters
.br
\fBudev_enumerate_add_nomatch_sysattr\fR(3)
\(em Modify filters
.br
\fBudev_enumerate_add_syspath\fR(3)
\(em Query or modify a udev enumerate object
.br
\fBudev_enumerate_get_list_entry\fR(3)
\(em Query or modify a udev enumerate object
.br
\fBudev_enumerate_get_udev\fR(3)
\(em Query or modify a udev enumerate object
.br
\fBudev_enumerate_new\fR(3)
\(em Create, acquire and release a udev enumerate object
.br
\fBudev_enumerate_ref\fR(3)
\(em Create, acquire and release a udev enumerate object
.br
\fBudev_enumerate_scan_devices\fR(3)
\(em Query or modify a udev enumerate object
.br
\fBudev_enumerate_scan_subsystems\fR(3)
\(em Query or modify a udev enumerate object
.br
\fBudev_enumerate_unref\fR(3)
\(em Create, acquire and release a udev enumerate object
.br
\fBudev_list_entry\fR(3)
\(em Iterate and access udev lists
.br
\fBudev_list_entry_get_by_name\fR(3)
\(em Iterate and access udev lists
.br
\fBudev_list_entry_get_name\fR(3)
\(em Iterate and access udev lists
.br
\fBudev_list_entry_get_next\fR(3)
\(em Iterate and access udev lists
.br
\fBudev_list_entry_get_value\fR(3)
\(em Iterate and access udev lists
.br
\fBudev_monitor_enable_receiving\fR(3)
\(em Query and modify device monitor
.br
\fBudev_monitor_filter_add_match_subsystem_devtype\fR(3)
\(em Modify filters
.br
\fBudev_monitor_filter_add_match_tag\fR(3)
\(em Modify filters
.br
\fBudev_monitor_filter_remove\fR(3)
\(em Modify filters
.br
\fBudev_monitor_filter_update\fR(3)
\(em Modify filters
.br
\fBudev_monitor_get_fd\fR(3)
\(em Query and modify device monitor
.br
\fBudev_monitor_get_udev\fR(3)
\(em Query and modify device monitor
.br
\fBudev_monitor_new_from_netlink\fR(3)
\(em Create, acquire and release a udev monitor object
.br
\fBudev_monitor_receive_device\fR(3)
\(em Query and modify device monitor
.br
\fBudev_monitor_ref\fR(3)
\(em Create, acquire and release a udev monitor object
.br
\fBudev_monitor_set_receive_buffer_size\fR(3)
\(em Query and modify device monitor
.br
\fBudev_monitor_unref\fR(3)
\(em Create, acquire and release a udev monitor object
.br
\fBudev_new\fR(3)
\(em Create, acquire and release a udev context object
.br
\fBudev_ref\fR(3)
\(em Create, acquire and release a udev context object
.br
\fBudev_unref\fR(3)
\(em Create, acquire and release a udev context object
.br
\fBudevadm\fR(8)
\(em udev management tool
.br
\fBuser-runtime-dir@.service\fR(5)
\(em System units to manage user processes
.br
\fBuser.conf.d\fR(5)
\(em System and session service manager configuration files
.br
\fBuser@.service\fR(5)
\(em System units to manage user processes
.br
.SH "SEE ALSO"
.PP
\fBsystemd.directives\fR(7)
.PP
This index contains 822 entries, referring to 288 individual manual pages\&.
|