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
|
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR Live Systems Project
# This file is distributed under the same license as the live-build package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: live-build 20160601\n"
"POT-Creation-Date: 2016-07-28 07:01+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/live-build.7:1
#, no-wrap
msgid "2016-07-28"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/live-build.7:1
#, no-wrap
msgid "20160601"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/live-build.7:1
#, no-wrap
msgid "Live Systems Project"
msgstr ""
#. type: SH
#: en/lb.1:3 en/lb_binary.1:3 en/lb_bootstrap.1:3 en/lb_build.1:3
#: en/lb_chroot.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_source.1:3
#: en/live-build.7:3
#, no-wrap
msgid "NAME"
msgstr ""
#. type: SH
#: en/lb.1:6 en/lb_binary.1:6 en/lb_bootstrap.1:6 en/lb_build.1:6
#: en/lb_chroot.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_source.1:6
#: en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
msgstr ""
#. type: SH
#: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:219 en/lb_source.1:9
#: en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
msgstr ""
#. type: SH
#: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:228 en/lb_source.1:14
#: en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
msgstr ""
#. type: SH
#: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:454 en/lb_source.1:17
#: en/live-build.7:213
#, no-wrap
msgid "FILES"
msgstr ""
#. type: SH
#: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:461 en/lb_source.1:20
#: en/live-build.7:217
#, no-wrap
msgid "SEE ALSO"
msgstr ""
#. type: Plain text
#: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:463 en/lb_source.1:22
msgid "I<live-build>(7)"
msgstr ""
#. type: Plain text
#: en/lb.1:26 en/lb_binary.1:24 en/lb_bootstrap.1:24 en/lb_build.1:26
#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:469 en/lb_source.1:24
#: en/live-build.7:223
msgid "This program is a part of live-build."
msgstr ""
#. type: SH
#: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:470 en/lb_source.1:25
#: en/live-build.7:224
#, no-wrap
msgid "HOMEPAGE"
msgstr ""
#. type: Plain text
#: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:472 en/lb_source.1:27
#: en/live-build.7:226
msgid ""
"More information about live-build and the Live Systems project can be found "
"on the homepage at E<lt>I<http://live-systems.org/>E<gt> and in the manual "
"at E<lt>I<http://live-systems.org/manual/>E<gt>."
msgstr ""
#. type: SH
#: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:473 en/lb_source.1:28
#: en/live-build.7:227
#, no-wrap
msgid "BUGS"
msgstr ""
#. type: Plain text
#: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:475 en/lb_source.1:30
#: en/live-build.7:229
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
"the Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
"writing a mail to the Live Systems mailing list at E<lt>I<debian-live@lists."
"debian.org>E<gt>."
msgstr ""
#. type: SH
#: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:476 en/lb_source.1:31
#: en/live-build.7:230
#, no-wrap
msgid "AUTHOR"
msgstr ""
#. type: Plain text
#: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:477 en/lb_source.1:32
#: en/live-build.7:231
msgid ""
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
msgstr ""
#. type: Plain text
#: en/lb_config.1:5
msgid "B<lb config> - Create config directory"
msgstr ""
#. type: Plain text
#: en/lb_config.1:8
msgid "B<lb config> [I<live-build options>]"
msgstr ""
#. FIXME
#. type: Plain text
#: en/lb_config.1:11
msgid "B<lb config>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:13
msgid " [B<--apt-ftp-proxy> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:15
msgid " [B<--apt-http-proxy> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:17
msgid " [B<--apt-indices> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:19
msgid " [B<--apt-options> I<OPTION>|\"I<OPTIONS>\"]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:21
msgid " [B<--apt-pipeline> I<DEPTH>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:23
msgid " [B<--apt-recommends> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:25
msgid " [B<--apt-secure> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:27
msgid " [B<--apt-source-archives> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:29
msgid " [-a|B<--architectures> I<ARCHITECTURE>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:31
msgid " [-b|B<--binary-images> iso|iso-hybrid|netboot|tar|hdd]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:33
msgid " [B<--binary-filesystem> fat16|fat32|ext2|ext3|ext4]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:35
msgid " [B<--bootappend-install> I<PARAMETER>|I<\"PARAMETERS\">]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:37
msgid " [B<--bootappend-live> I<PARAMETER>|I<\"PARAMETERS\">]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:39
msgid " [B<--bootloader> grub|grub2|syslinux]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:41
msgid " [B<--cache> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:43
msgid " [B<--cache-indices> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:45
msgid " [B<--cache-packages> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:47
msgid " [B<--cache-stages> I<STAGE>|I<\"STAGES\">]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:49
msgid " [B<--checksums> md5|sha1|sha256|none]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:51
msgid " [B<--compression> bzip2|gzip|lzip|none]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:53
msgid " [B<--config> I<GIT_URL::GIT_ID>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:55
msgid " [B<--build-with-chroot> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:57
msgid " [B<--chroot-filesystem> ext2|ext3|ext4|squashfs|jffs2|none]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:59
msgid " [B<--clean>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:61
msgid " [-c|B<--conffile> I<FILE>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:63
msgid " [B<--debconf-frontend> dialog|editor|noninteractive|readline]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:65
msgid " [B<--debconf-priority> low|medium|high|critical]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:67
msgid ""
" [B<--debian-installer> true|cdrom|netinst|netboot|businesscard|live|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:69
msgid " [B<--debian-installer-distribution> daily|I<CODENAME>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:71
msgid " [B<--debian-installer-preseedfile> I<FILE>|I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:73
msgid " [B<--debian-installer-gui> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:75
msgid " [B<--debug>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:77
msgid " [-d|B<--distribution> I<CODENAME>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:79
msgid " [B<--parent-distribution> I<CODENAME>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:81
msgid " [B<--parent-debian-installer-distribution> I<CODENAME>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:83
msgid " [B<--dump>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:85
msgid " [B<--fdisk> fdisk|fdisk.dist]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:87
msgid " [B<--firmware-binary true|false>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:89
msgid " [B<--firmware-chroot true|false>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:91
msgid " [B<--force>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:93
msgid " [B<--grub-splash> I<FILE>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:95
msgid " [B<--gzip-options> I<OPTION>|\"I<OPTIONS>\"]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:97
msgid " [B<--hooks> I<FILE>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:99
msgid " [B<--ignore-system-defaults>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:101
msgid " [B<--initramfs> auto|none|live-boot|casper]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:103
msgid " [B<--initramfs-compression> bzip2|gzip|lzma]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:105
msgid " [B<--initsystem> sysvinit|runit|systemd|upstart|none]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:107
msgid " [B<--interactive> shell]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:109
msgid " [B<--isohybrid-options> I<OPTION>|\"I<OPTIONS>\"]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:111
msgid " [B<--iso-application> I<NAME>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:113
msgid " [B<--iso-preparer> I<NAME>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:115
msgid " [B<--iso-publisher> I<NAME>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:117
msgid " [B<--iso-volume> I<NAME>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:119
msgid " [B<--jffs2-eraseblock> I<SIZE>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:121
msgid " [B<--keyring-packages> I<PACKAGE|\"PACKAGES\">]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:123
msgid " [-k|B<--linux-flavours> I<FLAVOUR>|I<\"FLAVOURS\">]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:125
msgid " [B<--linux-packages> I<\"PACKAGES\">]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:127
msgid " [B<--losetup> losetup|losetup.orig]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:129
msgid " [B<--memtest> memtest86+|memtest86|none]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:131
msgid " [-m|B<--parent-mirror-bootstrap> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:133
msgid " [B<--parent-mirror-chroot> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:135
msgid " [B<--parent-mirror-chroot-security> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:137
msgid " [B<--parent-mirror-chroot-updates> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:139
msgid " [B<--parent-mirror-chroot-backports> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:141
msgid " [B<--parent-mirror-binary> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:143
msgid " [B<--parent-mirror-binary-security> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:145
msgid " [B<--parent-mirror-binary-updates> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:147
msgid " [B<--parent-mirror-binary-backports> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:149
msgid " [B<--parent-mirror-debian-installer> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:151
msgid " [B<--mirror-bootstrap> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:153
msgid " [B<--mirror-chroot> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:155
msgid " [B<--mirror-chroot-security> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:157
msgid " [B<--mirror-chroot-updates> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:159
msgid " [B<--mirror-chroot-backports> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:161
msgid " [B<--mirror-binary> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:163
msgid " [B<--mirror-binary-security> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:165
msgid " [B<--mirror-binary-updates> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:167
msgid " [B<--mirror-binary-backports> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:169
msgid " [B<--mirror-debian-installer> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:171
msgid " [B<--mode> debian|progress-linux|ubuntu]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:173
msgid " [B<--system> live|normal]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:175
msgid " [B<--net-root-filesystem> nfs|cfs]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:177
msgid " [B<--net-root-mountoptions> I<OPTIONS>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:179
msgid " [B<--net-root-path> I<PATH>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:181
msgid " [B<--net-root-server> I<IP>|I<HOSTNAME>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:183
msgid " [B<--net-cow-filesystem> nfs|cfs]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:185
msgid " [B<--net-cow-mountoptions> I<OPTIONS>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:187
msgid " [B<--net-cow-path> I<PATH>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:189
msgid " [B<--net-cow-server> I<IP>|I<HOSTNAME>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:191
msgid " [B<--net-tarball> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:193
msgid " [B<--quiet>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:195
msgid " [B<--archive-areas> I<ARCHIVE_AREA>|I<\"ARCHIVE_AREAS\">]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:197
msgid ""
" [B<--parent-archive-areas> I<PARENT_ARCHIVE_AREA>|I<\"PARENT_ARCHIVE_AREAS"
"\">]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:199
msgid " [B<--security> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:201
msgid " [B<--source> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:203
msgid " [-s|B<--source-images> iso|netboot|tar|hdd]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:205
msgid " [B<--tasksel> apt|tasksel]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:207
msgid " [B<--templates> I<PATH>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:209
msgid " [B<--hdd-size >I<MB>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:211
msgid " [B<--updates> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:213
msgid " [B<--backports> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:215
msgid " [B<--verbose>]"
msgstr ""
#. FIXME
#. type: Plain text
#: en/lb_config.1:218
msgid " [B<--win32-loader true|false]>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:221
msgid ""
"B<lb config> is a high-level command (porcelain) of I<live-build>(7), the "
"live systems tool suite."
msgstr ""
#. FIXME
#. type: Plain text
#: en/lb_config.1:224
msgid ""
"B<lb config> populates the configuration directory for live-build. By "
"default, this directory is named 'config' and is created in the current "
"directory where B<lb config> was executed."
msgstr ""
#. FIXME
#. type: Plain text
#: en/lb_config.1:227
msgid ""
"Note: Currently B<lb config> tries to be smart and sets defaults for some "
"options depending on the setting of other options (e.g. which linux packages "
"to be used depending on if a wheezy system gets build or not). This means "
"that when generating a new configuration, you should call B<lb config> only "
"once with all options specified. Calling it several times with only a subset "
"of the options each can result in non working configurations. This is also "
"caused by the fact that B<lb config> called with one option only changes "
"that option, and leaves everything else as is unless its not defined. "
"However, B<lb config> does warn about know impossible or likely impossible "
"combinations that would lead to non working live systems. If unsure, remove "
"config/{binary,bootstrap,chroot,common,source} and call B<lb config> again."
msgstr ""
#. type: Plain text
#: en/lb_config.1:230
msgid ""
"In addition to its specific options B<lb config> understands all generic "
"live-build options. See I<live-build>(7) for a complete list of all generic "
"live-build options."
msgstr ""
#. FIXME
#. type: IP
#: en/lb_config.1:232
#, no-wrap
msgid "B<--apt-ftp-proxy> I<URL>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:234
msgid ""
"sets the ftp proxy to be used by apt. By default, this is empty. Note that "
"this variable is only for the proxy that gets used by apt internally within "
"the chroot, it is not used for anything else."
msgstr ""
#. type: IP
#: en/lb_config.1:234
#, no-wrap
msgid "B<--apt-http-proxy> I<URL>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:236
msgid ""
"sets the http proxy to be used by apt. By default, this is empty. Note that "
"this variable is only for the proxy that gets used by apt internally within "
"the chroot, it is not used for anything else."
msgstr ""
#. type: IP
#: en/lb_config.1:236
#, no-wrap
msgid "B<--apt-indices> true|false|none"
msgstr ""
#. type: Plain text
#: en/lb_config.1:238
msgid ""
"defines if the resulting images should have apt indices or not and defaults "
"to true. If set to none, no indices are included at all."
msgstr ""
#. type: IP
#: en/lb_config.1:238
#, no-wrap
msgid "B<--apt-options> I<OPTION>|\"I<OPTIONS>\""
msgstr ""
#. type: Plain text
#: en/lb_config.1:240
msgid ""
"defines the default options that will be appended to every apt call that is "
"made inside chroot during the building of the image. By default, this is set "
"to --yes to allow non-interactive installation of packages."
msgstr ""
#. type: IP
#: en/lb_config.1:240
#, no-wrap
msgid "B<--apt-pipeline> I<DEPTH>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:242
msgid ""
"sets the depth of the apt pipeline. In cases where the remote server is not "
"RFC conforming or buggy (such as Squid 2.0.2) this option can be a value "
"from 0 to 5 indicating how many outstanding requests APT should send. A "
"value of zero MUST be specified if the remote host does not properly linger "
"on TCP connections - otherwise data corruption will occur. Hosts which "
"require this are in violation of RFC 2068. By default, live-build does not "
"set this option."
msgstr ""
#. type: IP
#: en/lb_config.1:242
#, no-wrap
msgid "B<--apt-recommends> true|false"
msgstr ""
#. type: Plain text
#: en/lb_config.1:244
msgid ""
"defines if apt should install recommended packages automatically. By "
"default, this is true."
msgstr ""
#. type: IP
#: en/lb_config.1:244
#, no-wrap
msgid "B<--apt-secure> true|false"
msgstr ""
#. type: Plain text
#: en/lb_config.1:246
msgid ""
"defines if apt should check repository signatures. This is true by default."
msgstr ""
#. type: IP
#: en/lb_config.1:246
#, no-wrap
msgid "B<--apt-source-archives> true|false"
msgstr ""
#. type: Plain text
#: en/lb_config.1:248
msgid ""
"defines if deb-src entries should be included in the resulting live image or "
"not, defaults to true."
msgstr ""
#. type: IP
#: en/lb_config.1:248
#, no-wrap
msgid "-a|B<--architectures> I<ARCHITECTURE>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:250
msgid ""
"defines the architecture of the to be build image. By default, this is set "
"to the host architecture. Note that you cannot crossbuild for another "
"architecture if your host system is not able to execute binaries for the "
"target architecture natively. For example, building amd64 images on i386 and "
"vice versa is possible if you have a 64bit capable i386 processor and the "
"right kernel. But building powerpc images on an i386 system is not possible."
msgstr ""
#. type: IP
#: en/lb_config.1:250
#, no-wrap
msgid "-b|B<--binary-images> iso|iso-hybrid|netboot|tar|hdd"
msgstr ""
#. type: Plain text
#: en/lb_config.1:252
msgid ""
"defines the image type to build. By default, for images using syslinux this "
"is set to iso-hybrid to build CD/DVD images that may also be used like hdd "
"images, for non-syslinux images, it defaults to iso."
msgstr ""
#. type: IP
#: en/lb_config.1:252
#, no-wrap
msgid "B<--binary-filesystem> fat16|fat32|ext2|ext3|ext4"
msgstr ""
#. type: Plain text
#: en/lb_config.1:254
msgid ""
"defines the filesystem to be used in the image type. This only has an effect "
"if the selected binary image type does allow to choose a filesystem. For "
"example, when selection iso the resulting CD/DVD has always the filesystem "
"ISO9660. When building hdd images for usb sticks, this is active. Note that "
"it defaults to fat16 on all architectures except sparc where it defaults to "
"ext4. Also note that if you choose fat16 and your resulting binary image "
"gets bigger than 2GB, the binary filesystem automatically gets switched to "
"fat32."
msgstr ""
#. type: IP
#: en/lb_config.1:254
#, no-wrap
msgid "B<--bootappend-install> I<PARAMETER>|\"I<PARAMETERS>\""
msgstr ""
#. type: Plain text
#: en/lb_config.1:256
msgid "sets boot parameters specific to debian-installer, if included."
msgstr ""
#. type: IP
#: en/lb_config.1:256
#, no-wrap
msgid "B<--bootappend-live> I<PARAMETER>|\"I<PARAMETERS>\""
msgstr ""
#. type: Plain text
#: en/lb_config.1:258
msgid ""
"sets boot parameters specific to debian-live. A complete list of boot "
"parameters can be found in the I<live-boot>(7) and I<live-config>(7) manual "
"pages."
msgstr ""
#. type: IP
#: en/lb_config.1:258
#, no-wrap
msgid "B<--bootloader> grub|grub2|syslinux"
msgstr ""
#. type: Plain text
#: en/lb_config.1:260
msgid ""
"defines which bootloader is being used in the generated image. This has only "
"an effect if the selected binary image type does allow to choose the "
"bootloader. For example, if you build a iso, always syslinux (or more "
"precise, isolinux) is being used. Also note that some combinations of binary "
"images types and bootloaders may be possible but live-build does not support "
"them yet. B<lb config> will fail to create such a not yet supported "
"configuration and give a explanation about it. For hdd images on amd64 and "
"i386, the default is syslinux."
msgstr ""
#. type: IP
#: en/lb_config.1:260
#, no-wrap
msgid "B<--cache> true|false"
msgstr ""
#. type: Plain text
#: en/lb_config.1:262
msgid ""
"defines globally if any cache should be used at all. Different caches can be "
"controlled through the their own options."
msgstr ""
#. type: IP
#: en/lb_config.1:262
#, no-wrap
msgid "B<--cache-indices> true|false"
msgstr ""
#. type: Plain text
#: en/lb_config.1:264
msgid ""
"defines if downloaded package indices and lists should be cached which is "
"false by default. Enabling it would allow to rebuild an image completely "
"offline, however, you would not get updates anymore then."
msgstr ""
#. type: IP
#: en/lb_config.1:264
#, no-wrap
msgid "B<--cache-packages> true|false"
msgstr ""
#. type: Plain text
#: en/lb_config.1:266
msgid ""
"defines if downloaded packages files should be cached which is true by "
"default. Disabling it does save space consumption in your build directory, "
"but remember that you will cause much unnecessary traffic if you do a couple "
"of rebuilds. In general you should always leave it true, however, in some "
"particular rare build setups, it can be faster to refetch packages from the "
"local network mirror rather than to utilize the local disk."
msgstr ""
#. type: IP
#: en/lb_config.1:266
#, no-wrap
msgid "B<--cache-stages> true|false|I<STAGE>|\"I<STAGES>\""
msgstr ""
#. type: Plain text
#: en/lb_config.1:268
msgid ""
"sets which stages should be cached. By default set to bootstrap. As an "
"exception to the normal stage names, also rootfs can be used here which does "
"only cache the generated root filesystem in filesystem.{dir,ext*,squashfs}. "
"This is useful during development if you want to rebuild the binary stage "
"but not regenerate the root filesystem all the time."
msgstr ""
#. type: IP
#: en/lb_config.1:268
#, no-wrap
msgid "B<--checksums> md5|sha1|sha256|none"
msgstr ""
#. type: Plain text
#: en/lb_config.1:270
msgid ""
"defines if the binary image should contain a file called md5sums.txt, "
"sha1sums.txt and/or sha256sums.txt. These lists all files on the image "
"together with their checksums. This in turn can be used by live-boot's built-"
"in integrity-check to verify the medium if specified at boot prompt. In "
"general, this should not be false and is an important feature of live system "
"released to the public. However, during development of very big images it "
"can save some time by not calculating the checksums."
msgstr ""
#. type: IP
#: en/lb_config.1:270
#, no-wrap
msgid "B<--compression> bzip2|gzip|lzip|none"
msgstr ""
#. type: Plain text
#: en/lb_config.1:272
msgid ""
"defines the compression program to be used to compress tarballs. Defaults to "
"gzip."
msgstr ""
#. type: IP
#: en/lb_config.1:272
#, no-wrap
msgid "B<--config> I<GIT_URL>::I<GIT_ID>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:274
msgid ""
"allows to bootstrap a config tree from a git repositories, optionally "
"appended by a Git Id (branch, commit, tag, etc.)."
msgstr ""
#. type: IP
#: en/lb_config.1:274
#, no-wrap
msgid "B<--build-with-chroot> true|false"
msgstr ""
#. type: Plain text
#: en/lb_config.1:276
msgid ""
"defines whether live-build should use the tools from within the chroot to "
"build the binary image or not by using and including the host system's "
"tools. This is a very dangerous option, using the tools of the host system "
"can lead to tainted and even non-bootable images if the host systems version "
"of the required tools (mainly these are the bootloaders such as syslinux and "
"grub, and the auxiliary tools such as dosfstools, xorriso, squashfs-tools "
"and others) do not B<exactly> match what is present at build-time in the "
"target distribution. Never do disable this option unless you are B<exactly> "
"sure what you are doing and have B<completely>I< understood its consequences."
">"
msgstr ""
#. type: IP
#: en/lb_config.1:276
#, no-wrap
msgid "B<--chroot-filesystem> ext2|ext3|ext4|squashfs|jffs2|none"
msgstr ""
#. type: Plain text
#: en/lb_config.1:278
msgid ""
"defines which filesystem type should be used for the root filesystem image. "
"If you use none, then no filesystem image is created and the root filesystem "
"content is copied on the binary image filesystem as flat files. Depending on "
"what binary filesystem you have chosen, it may not be possible to build with "
"such a plain root filesystem, e.g. fat16/fat32 will not work as linux does "
"not support to run directly on them."
msgstr ""
#. type: IP
#: en/lb_config.1:278
#, no-wrap
msgid "B<--clean>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:280
msgid ""
"minimizes config directory by automatically removing unused and thus empty "
"subdirectories."
msgstr ""
#. type: IP
#: en/lb_config.1:280
#, no-wrap
msgid "-c|B<--conffile> I<FILE>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:282
msgid ""
"using a user specified alternative configuration file in addition to the "
"normally used one in the config directory."
msgstr ""
#. type: IP
#: en/lb_config.1:282
#, no-wrap
msgid "B<--debconf-frontend> dialog|editor|noninteractive|readline"
msgstr ""
#. type: Plain text
#: en/lb_config.1:284
msgid ""
"defines what value the debconf frontend should be set to inside the chroot. "
"Note that setting it to anything but noninteractive, which is the default, "
"makes your build asking questions during the build."
msgstr ""
#. type: IP
#: en/lb_config.1:284
#, no-wrap
msgid "B<--debconf-priority> low|medium|high|critical"
msgstr ""
#. type: Plain text
#: en/lb_config.1:286
msgid ""
"defines what value the debconf priority should be set to inside the chroot. "
"By default, it is set to critical, which means that almost no questions are "
"displayed. Note that this only has an effect if you use any debconf frontend "
"different from noninteractive."
msgstr ""
#. type: IP
#: en/lb_config.1:286
#, no-wrap
msgid "B<--debian-installer> true|cdrom|netinst|netboot|businesscard|live|false"
msgstr ""
#. type: Plain text
#: en/lb_config.1:288
msgid ""
"defines which type, if any, of the debian-installer should be included in "
"the resulting binary image. By default, no installer is included. All "
"available flavours except live are the identical configurations used on the "
"installer media produced by regular debian-cd. When live is chosen, the live-"
"installer udeb is included so that debian-installer will behave different "
"than usual - instead of installing the debian system from packages from the "
"medium or the network, it installs the live system to the disk."
msgstr ""
#. type: IP
#: en/lb_config.1:288
#, no-wrap
msgid "B<--debian-installer-distribution> daily|I<CODENAME>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:290
msgid ""
"defines the distribution where the debian-installer files should be taken "
"out from. Normally, this should be set to the same distribution as the live "
"system. However, some times, one wants to use a newer or even daily built "
"installer."
msgstr ""
#. type: IP
#: en/lb_config.1:290
#, no-wrap
msgid "B<--debian-installer-preseedfile> I<FILE>|I<URL>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:292
msgid ""
"sets the filename or URL for an optionally used and included preseeding file "
"for debian-installer. If config/binary_debian-installer/preseed.cfg exists, "
"it will be used by default."
msgstr ""
#. type: IP
#: en/lb_config.1:292
#, no-wrap
msgid "B<--debian-installer-gui> true|false"
msgstr ""
#. type: Plain text
#: en/lb_config.1:294
msgid ""
"defines if the debian-installer graphical GTK interface should be true or "
"not. In Debian mode and for most versions of Ubuntu, this option is true, "
"whereas otherwise false, by default."
msgstr ""
#. type: IP
#: en/lb_config.1:294 en/live-build.7:36
#, no-wrap
msgid "B<--debug>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:296
msgid "turn on debugging informational messages."
msgstr ""
#. type: IP
#: en/lb_config.1:296
#, no-wrap
msgid "-d|B<--distribution> I<CODENAME>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:298
msgid "defines the distribution of the resulting live system."
msgstr ""
#. type: IP
#: en/lb_config.1:298
#, no-wrap
msgid "-d|B<--parent-distribution> I<CODENAME>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:300
msgid ""
"defines the parent distribution for derivatives of the resulting live system."
msgstr ""
#. type: IP
#: en/lb_config.1:300
#, no-wrap
msgid "-d|B<--parent-debian-installer-distribution> I<CODENAME>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:302
msgid ""
"defines the parent debian-installer distribution for derivatives of the "
"resulting live system."
msgstr ""
#. type: IP
#: en/lb_config.1:302
#, no-wrap
msgid "B<--dump>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:304
msgid ""
"prepares a report of the currently present live system configuration and the "
"version of live-build used. This is useful to provide if you submit bug "
"reports, we do get all informations required for us to locate and replicate "
"an error."
msgstr ""
#. type: IP
#: en/lb_config.1:304
#, no-wrap
msgid "B<--fdisk> fdisk|fdisk.dist"
msgstr ""
#. type: Plain text
#: en/lb_config.1:306
msgid ""
"sets the filename of the fdisk binary from the host system that should be "
"used. This is autodetected and does generally not need any customization."
msgstr ""
#. type: IP
#: en/lb_config.1:306 en/live-build.7:38
#, no-wrap
msgid "B<--force>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:308
msgid ""
"forces re-execution of already run stages. Use only if you know what you are "
"doing. It is generally safer to use B<lb clean> to clean up before re-"
"executing B<lb build>."
msgstr ""
#. type: IP
#: en/lb_config.1:308
#, no-wrap
msgid "B<--grub-splash> I<FILE>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:310
msgid ""
"defines the name of an optional to be included splash screen graphic for the "
"grub bootloader."
msgstr ""
#. type: IP
#: en/lb_config.1:310
#, no-wrap
msgid "B<--gzip-options> I<OPTION>|\"I<OPTIONS>\""
msgstr ""
#. type: Plain text
#: en/lb_config.1:312
msgid ""
"defines the default options that will be appended to (almost) every gzip "
"call during the building of the image. By default, this is set to --best to "
"use highest (but slowest) compression. Dynamically, if the host system "
"supports it, also --rsyncable is added."
msgstr ""
#. type: IP
#: en/lb_config.1:312
#, no-wrap
msgid "B<--hooks> I<FILE>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:314
msgid ""
"defines which hooks available in /usr/share/live/build/examples/hooks should "
"be activated. Normally, there are no hooks executed. Make sure you know and "
"understood the hook before you enable it."
msgstr ""
#. type: IP
#: en/lb_config.1:314
#, no-wrap
msgid "B<--ignore-system-defaults>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:316
msgid ""
"B<lb config> by default reads system defaults from I</etc/live/build.conf> "
"and I</etc/live/build/*> when generating a new live system config directory. "
"This is useful if you want to set global settings, such as mirror locations, "
"and don't want to specify them all of the time."
msgstr ""
#. type: IP
#: en/lb_config.1:316
#, no-wrap
msgid "B<--initramfs> auto|none|live-boot|casper"
msgstr ""
#. type: Plain text
#: en/lb_config.1:318
msgid ""
"sets the name of package that contains the live system specific initramfs "
"modification. By default, auto is used, which means that at build time of "
"the image rather than on configuration time, the value will be expanded to "
"casper when building ubuntu systems, to live-boot for all other systems. "
"Using 'none' is useful if the resulting system image should not be a live "
"image (experimental)."
msgstr ""
#. type: IP
#: en/lb_config.1:318
#, no-wrap
msgid "B<--initramfs-compression> bzip2|gzip|lzma]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:320
msgid ""
"defines the compression program to be used to compress the initramfs. "
"Defaults to gzip."
msgstr ""
#. type: IP
#: en/lb_config.1:320
#, no-wrap
msgid "B<--interactive> shell"
msgstr ""
#. type: Plain text
#: en/lb_config.1:322
msgid ""
"defines if after the chroot stage and before the beginning of the binary "
"stage, a interactive shell login should be spawned in the chroot in order to "
"allow you to do manual customizations. Once you close the shell with logout "
"or exit, the build will continue as usual. Note that it's strongly "
"discouraged to use this for anything else than testing. Modifications that "
"should be present in all builds of a live system should be properly made "
"through hooks. Everything else destroys the beauty of being able to "
"completely automatise the build process and making it non interactive. By "
"default, this is of course false."
msgstr ""
#. type: IP
#: en/lb_config.1:322
#, no-wrap
msgid "B<--isohybrid-options> I<OPTION>|\"I<OPTIONS>\""
msgstr ""
#. type: Plain text
#: en/lb_config.1:324
msgid "defines options to pass to isohybrid."
msgstr ""
#. type: IP
#: en/lb_config.1:324
#, no-wrap
msgid "B<--iso-application> I<NAME>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:326
msgid ""
"sets the APPLICATION field in the header of a resulting CD/DVD image and "
"defaults to \"Debian Live\" in debian mode, and \"Ubuntu Live\" in ubuntu "
"mode."
msgstr ""
#. type: IP
#: en/lb_config.1:326
#, no-wrap
msgid "B<--iso-preparer> I<NAME>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:328
msgid ""
"sets the PREPARER field in the header of a resulting CD/DVD image. By "
"default this is set to \"live-build I<VERSION>; http://packages.qa.debian."
"org/live-build\", where VERSION is expanded to the version of live-build "
"that was used to build the image."
msgstr ""
#. type: IP
#: en/lb_config.1:328
#, no-wrap
msgid "B<--iso-publisher> I<NAME>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:330
msgid ""
"sets the PUBLISHED field in the header of a resulting CD/DVD image. By "
"default, this is set to 'Live Systems project; http:/live-systems.org/; "
"debian-live@lists.debian.org'. Remember to change this to the appropriate "
"values at latest when you distributing custom and unofficial images."
msgstr ""
#. type: IP
#: en/lb_config.1:330
#, no-wrap
msgid "B<--iso-volume> I<NAME>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:332
msgid ""
"sets the VOLUME field in the header of a resulting CD/DVD and defaults to "
"'(I<MODE>) (I<DISTRIBUTION>) (I<DATE>)' whereas MODE is expanded to the name "
"of the mode in use, DISTRIBUTION the distribution name, and DATE with the "
"current date and time of the generation."
msgstr ""
#. type: IP
#: en/lb_config.1:332
#, no-wrap
msgid "B<--jffs2-eraseblock> I<SIZE>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:334
msgid ""
"sets the eraseblock size for a JFFS2 (Second Journaling Flash File System) "
"filesystem. The default is 64 KiB. If you use an erase block size different "
"than the erase block size of the target MTD device, JFFS2 may not perform "
"optimally. If the SIZE specified is below 4096, the units are assumed to be "
"KiB."
msgstr ""
#. type: IP
#: en/lb_config.1:334
#, no-wrap
msgid "B<--keyring-packages> I<PACKAGE|\"PACKAGES>\""
msgstr ""
#. type: Plain text
#: en/lb_config.1:336
msgid ""
"sets the keyring package or additional keyring packages. By default this is "
"set to debian-archive-keyring."
msgstr ""
#. type: IP
#: en/lb_config.1:336
#, no-wrap
msgid "-k|B<--linux-flavours> I<FLAVOUR>|\"I<FLAVOURS>\""
msgstr ""
#. type: Plain text
#: en/lb_config.1:338
msgid ""
"sets the kernel flavours to be installed. Note that in case you specify more "
"than that the first will be configured the default kernel that gets booted."
msgstr ""
#. type: IP
#: en/lb_config.1:338
#, no-wrap
msgid "B<--linux-packages> \"I<PACKAGES>\""
msgstr ""
#. type: Plain text
#: en/lb_config.1:340
msgid ""
"sets the internal name of the kernel packages naming scheme. If you use "
"debian kernel packages, you will not have to adjust it. If you decide to use "
"custom kernel packages that do not follow the debian naming scheme, remember "
"to set this option to the stub of the packages only (for debian this is "
"linux-image-2.6), so that I<STUB>-I<FLAVOUR> results in a valid package name "
"(for debian e.g. linux-image-686-pae). Preferably you use the meta package "
"name, if any, for the stub, so that your configuration is ABI independent. "
"Also don't forget that you have to include stubs of the binary modules "
"packages for unionfs or aufs, and squashfs if you built them out-of-tree."
msgstr ""
#. type: IP
#: en/lb_config.1:340
#, no-wrap
msgid "B<--losetup> losetup|losetup.orig"
msgstr ""
#. type: Plain text
#: en/lb_config.1:342
msgid ""
"sets the filename of the losetup binary from the host system that should be "
"used. This is autodetected and does generally not need any customization."
msgstr ""
#. type: IP
#: en/lb_config.1:342
#, no-wrap
msgid "B<--memtest> memtest86+|memtest86|none"
msgstr ""
#. type: Plain text
#: en/lb_config.1:344
msgid ""
"defines if memtest, memtest86+ or no memory tester at all should be included "
"as secondary bootloader configuration. This is only available on amd64 and "
"i386 and defaults to memtest86+."
msgstr ""
#. type: IP
#: en/lb_config.1:344
#, no-wrap
msgid "-m|B<--parent-mirror-bootstrap> I<URL>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:346
msgid ""
"sets the location of the debian package mirror that should be used to "
"bootstrap from. This defaults to http://ftp.de.debian.org/debian/ which may "
"not be a good default if you live outside of Europe."
msgstr ""
#. type: IP
#: en/lb_config.1:346
#, no-wrap
msgid "B<--parent-mirror-chroot> I<URL>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:348
msgid ""
"sets the location of the debian package mirror that will be used to fetch "
"the packages in order to build the live system. By default, this is set to "
"the value of --parent-mirror-bootstrap."
msgstr ""
#. type: IP
#: en/lb_config.1:348
#, no-wrap
msgid "B<--parent-mirror-chroot-security> I<URL>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:350
msgid ""
"sets the location of the debian security package mirror that will be used to "
"fetch the packages in order to build the live system. By default, this "
"points to http://security.debian.org/debian/."
msgstr ""
#. type: IP
#: en/lb_config.1:350
#, no-wrap
msgid "B<--parent-mirror-chroot-updates> I<URL>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:352
msgid ""
"sets the location of the debian updates package mirror that will be used to "
"fetch packages in order to build the live system. By default, this is set to "
"the value of --parent-mirror-chroot."
msgstr ""
#. type: IP
#: en/lb_config.1:352
#, no-wrap
msgid "B<--parent-mirror-chroot-backports> I<URL>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:354
msgid ""
"sets the location of the debian backports package mirror that will be used "
"to fetch packages in order to build the live system. By default, this points "
"to http://backports.debian.org/debian-backports/."
msgstr ""
#. type: IP
#: en/lb_config.1:354
#, no-wrap
msgid "B<--parent-mirror-binary> I<URL>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:356
msgid ""
"sets the location of the debian package mirror that should end up configured "
"in the final image and which is the one a user would see and use. This has "
"not necessarily to be the same that is used to build the image, e.g. if you "
"use a local mirror but want to have an official mirror in the image. By "
"default, 'http://httpredir.debian.org/debian/' is used."
msgstr ""
#. type: IP
#: en/lb_config.1:356
#, no-wrap
msgid "B<--parent-mirror-binary-security> I<URL>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:358
msgid ""
"sets the location of the debian security package mirror that should end up "
"configured in the final image. By default, 'http://security.debian.org/' is "
"used."
msgstr ""
#. type: IP
#: en/lb_config.1:358
#, no-wrap
msgid "B<--parent-mirror-binary-updates> I<URL>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:360
msgid ""
"sets the location of the debian updates package mirror that should end up "
"configured in the final image. By default, the value of --parent-mirror-"
"binary is used."
msgstr ""
#. type: IP
#: en/lb_config.1:360
#, no-wrap
msgid "B<--parent-mirror-binary-backports> I<URL>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:362
msgid ""
"sets the location of the debian backports package mirror that should end up "
"configured in the final image. By default, 'http://backports.debian.org/"
"debian-backports/' is used."
msgstr ""
#. type: IP
#: en/lb_config.1:362
#, no-wrap
msgid "B<--parent-mirror-debian-installer> I<URL>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:364
msgid ""
"sets the location of the mirror that will be used to fetch the debian "
"installer images. By default, this points to the same mirror used to build "
"the live system, i.e. the value of --parent-mirror-bootstrap."
msgstr ""
#. type: IP
#: en/lb_config.1:364
#, no-wrap
msgid "B<--mirror-bootstrap> I<URL>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:366
msgid ""
"sets the location of the debian package mirror that should be used to "
"bootstrap the derivative from. This defaults to http://ftp.de.debian.org/"
"debian/ which may not be a good default if you live outside of Europe."
msgstr ""
#. type: IP
#: en/lb_config.1:366
#, no-wrap
msgid "B<--mirror-chroot> I<URL>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:368
msgid ""
"sets the location of the debian package mirror that will be used to fetch "
"the packages of the derivative in order to build the live system. By "
"default, this is set to the value of --mirror-bootstrap."
msgstr ""
#. type: IP
#: en/lb_config.1:368
#, no-wrap
msgid "B<--mirror-chroot-security> I<URL>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:370
msgid ""
"sets the location of the debian security package mirror that will be used to "
"fetch the packages of the derivative in order to build the live system. By "
"default, this points to http://security.debian.org/debian/."
msgstr ""
#. type: IP
#: en/lb_config.1:370
#, no-wrap
msgid "B<--mirror-chroot-updates> I<URL>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:372
msgid ""
"sets the location of the debian updates package mirror that will be used to "
"fetch packages of the derivative in order to build the live system. By "
"default, this is set to the value of --mirror-chroot."
msgstr ""
#. type: IP
#: en/lb_config.1:372
#, no-wrap
msgid "B<--mirror-chroot-backports> I<URL>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:374
msgid ""
"sets the location of the debian backports package mirror that will be used "
"to fetch packages of the derivative in order to build the live system. By "
"default, this points to http://backports.debian.org/debian-backports/."
msgstr ""
#. type: IP
#: en/lb_config.1:374
#, no-wrap
msgid "B<--mirror-binary> I<URL>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:376
msgid ""
"sets the location of the derivative package mirror that should end up "
"configured in the final image and which is the one a user would see and use. "
"This has not necessarily to be the same that is used to build the image, e."
"g. if you use a local mirror but want to have an official mirror in the "
"image."
msgstr ""
#. type: IP
#: en/lb_config.1:376
#, no-wrap
msgid "B<--mirror-binary-security> I<URL>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:378
msgid ""
"sets the location of the derivatives security package mirror that should end "
"up configured in the final image."
msgstr ""
#. type: IP
#: en/lb_config.1:378
#, no-wrap
msgid "B<--mirror-binary-updates> I<URL>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:380
msgid ""
"sets the location of the derivatives updates package mirror that should end "
"up configured in the final image."
msgstr ""
#. type: IP
#: en/lb_config.1:380
#, no-wrap
msgid "B<--mirror-binary-backports> I<URL>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:382
msgid ""
"sets the location of the derivatives backports package mirror that should "
"end up configured in the final image."
msgstr ""
#. type: IP
#: en/lb_config.1:382
#, no-wrap
msgid "B<--mirror-debian-installer> I<URL>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:384
msgid ""
"sets the location of the mirror that will be used to fetch the debian "
"installer images of the derivative. By default, this points to the same "
"mirror used to build the live system, i.e. the value of --mirror-bootstrap."
msgstr ""
#. type: IP
#: en/lb_config.1:384
#, no-wrap
msgid "B<--mode> debian|progress|ubuntu"
msgstr ""
#. type: Plain text
#: en/lb_config.1:386
msgid ""
"defines a global mode to load project specific defaults. By default this is "
"set to debian."
msgstr ""
#. type: IP
#: en/lb_config.1:386
#, no-wrap
msgid "B<--system> live|normal"
msgstr ""
#. type: Plain text
#: en/lb_config.1:388
msgid ""
"defines if the resulting system image should a live system or a normal, non-"
"live system."
msgstr ""
#. type: IP
#: en/lb_config.1:388
#, no-wrap
msgid "B<--net-root-filesystem> nfs|cfs"
msgstr ""
#. type: Plain text
#: en/lb_config.1:390
msgid ""
"defines the filesystem that will be configured in the bootloader "
"configuration for your netboot image. This defaults to nfs."
msgstr ""
#. type: IP
#: en/lb_config.1:390
#, no-wrap
msgid "B<--net-root-mountoptions> I<OPTIONS>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:392
msgid ""
"sets additional options for mounting the root filesystem in netboot images "
"and is by default empty."
msgstr ""
#. type: IP
#: en/lb_config.1:392
#, no-wrap
msgid "B<--net-root-path> I<PATH>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:394
msgid ""
"sets the file path that will be configured in the bootloader configuration "
"for your netboot image. This defaults to /srv/debian-live in debian mode, "
"and /srv/ubuntu-live when in ubuntu mode."
msgstr ""
#. type: IP
#: en/lb_config.1:394
#, no-wrap
msgid "B<--net-root-server> I<IP>|I<HOSTNAME>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:396
msgid ""
"sets the IP or hostname that will be configured in the bootloader "
"configuration for the root filesystem of your netboot image. This defaults "
"to 192.168.1.1."
msgstr ""
#. type: IP
#: en/lb_config.1:396
#, no-wrap
msgid "B<--net-cow-filesystem> nfs|cfs"
msgstr ""
#. type: Plain text
#: en/lb_config.1:398
msgid ""
"defines the filesystem type for the copy-on-write layer and defaults to nfs."
msgstr ""
#. type: IP
#: en/lb_config.1:398
#, no-wrap
msgid "B<--net-cow-mountoptions> I<OPTIONS>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:400
msgid ""
"sets additional options for mounting the copy-on-write layer in netboot "
"images and is by default empty."
msgstr ""
#. type: IP
#: en/lb_config.1:400
#, no-wrap
msgid "B<--net-cow-path> I<PATH>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:402
msgid ""
"defines the path to client writable filesystem. Anywhere that "
"I<client_mac_address> is specified in the path live-boot will substitute the "
"MAC address of the client delimited with hyphens."
msgstr ""
#. type: Plain text
#: en/lb_config.1:405
msgid "Example:"
msgstr ""
#. type: Plain text
#: en/lb_config.1:407
msgid "/export/hosts/client_mac_address"
msgstr ""
#. type: Plain text
#: en/lb_config.1:409
msgid "/export/hosts/00-16-D3-33-92-E8"
msgstr ""
#. type: IP
#: en/lb_config.1:409
#, no-wrap
msgid "B<--net-cow-server> I<IP>|I<HOSTNAME>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:411
msgid ""
"sets the IP or hostname that will be configured in the bootloader "
"configuration for the copy-on-write filesystem of your netboot image and is "
"by default empty."
msgstr ""
#. type: IP
#: en/lb_config.1:411
#, no-wrap
msgid "B<--net-tarball> true|false"
msgstr ""
#. type: Plain text
#: en/lb_config.1:413
msgid ""
"defines if a compressed tarball should be created. Disabling this options "
"leads to no tarball at all, the plain binary directory is considered the "
"output in this case. Default is true."
msgstr ""
#. type: IP
#: en/lb_config.1:413 en/live-build.7:40
#, no-wrap
msgid "B<--quiet>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:415
msgid "reduces the verbosity of messages output by B<lb build>."
msgstr ""
#. type: IP
#: en/lb_config.1:415
#, no-wrap
msgid "B<--archive-areas> I<ARCHIVE_AREA>|\"I<ARCHIVE_AREAS>\""
msgstr ""
#. type: Plain text
#: en/lb_config.1:417
msgid ""
"defines which package archive areas of a debian packages archive should be "
"used for configured debian package mirrors. By default, this is set to main. "
"Remember to check the licenses of each packages with respect to their "
"redistributability in your juristiction when enabling contrib or non-free "
"with this mechanism."
msgstr ""
#. type: IP
#: en/lb_config.1:417
#, no-wrap
msgid "B<--parent-archive-areas> I<PARENT_ARCHIVE_AREA>|\"I<PARENT_ARCHIVE_AREAS>\""
msgstr ""
#. type: Plain text
#: en/lb_config.1:419
msgid "defines the archive areas for derivatives of the resulting live system."
msgstr ""
#. type: IP
#: en/lb_config.1:419
#, no-wrap
msgid "B<--security> true|false"
msgstr ""
#. type: Plain text
#: en/lb_config.1:421
msgid ""
"defines if the security repositories specified in the security mirror "
"options should be used or not."
msgstr ""
#. type: IP
#: en/lb_config.1:421
#, no-wrap
msgid "B<--source> true|false"
msgstr ""
#. type: Plain text
#: en/lb_config.1:423
msgid ""
"defines if a corresponding source image to the binary image should be build. "
"By default this is false because most people do not require this and would "
"require to download quite a few source packages. However, once you start "
"distributing your live image, you should make sure you build it with a "
"source image alongside."
msgstr ""
#. type: IP
#: en/lb_config.1:423
#, no-wrap
msgid "-s|B<--source-images> iso|netboot|tar|hdd"
msgstr ""
#. type: Plain text
#: en/lb_config.1:425
msgid "defines the image type for the source image. Default is tar."
msgstr ""
#. type: IP
#: en/lb_config.1:425
#, no-wrap
msgid "B<--firmware-binary> true|false"
msgstr ""
#. type: Plain text
#: en/lb_config.1:427
msgid ""
"defines if firmware packages should be automatically included into the "
"binary pool for debian-installer. Note that only firmware packages available "
"within the configured archive areas are included, e.g. an image with "
"packages from main only will not automatically include firmware from non-"
"free. This option does not interfere with explicitly listed packages in "
"binary package lists."
msgstr ""
#. type: IP
#: en/lb_config.1:427
#, no-wrap
msgid "B<--firmware-chroot> true|false"
msgstr ""
#. type: Plain text
#: en/lb_config.1:429
msgid ""
"defines if firmware packages should be automatically included into the live "
"image. Note that only firmware packages available within the configured "
"archive areas are included, e.g. an image with packages from main only will "
"not automatically include firmware from non-free. This option does not "
"interfere with explicitly listed packages in chroot package lists."
msgstr ""
#. type: IP
#: en/lb_config.1:429
#, no-wrap
msgid "B<--swap-file-path> I<PATH>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:431
msgid ""
"defines the path to a swap file to create in the binary image. Default is "
"not to create a swap file."
msgstr ""
#. type: IP
#: en/lb_config.1:431
#, no-wrap
msgid "B<--swap-file-size> I<MB>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:433
msgid ""
"defines what size in megabytes the swap file should be, if one is to be "
"created. Default is 512MB."
msgstr ""
#. type: IP
#: en/lb_config.1:433
#, no-wrap
msgid "B<--tasksel> apt|tasksel"
msgstr ""
#. type: Plain text
#: en/lb_config.1:435
msgid ""
"selects which program is used to install tasks. By default, this is set to "
"tasksel."
msgstr ""
#. type: IP
#: en/lb_config.1:435
#, no-wrap
msgid "B<--templates> I<PATH>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:437
msgid ""
"sets the path to the templates that live-build is going to use, e.g. for "
"bootloaders. By default, this is set to /usr/share/live/build/templates/."
msgstr ""
#. type: IP
#: en/lb_config.1:437
#, no-wrap
msgid "B<--hdd-size> MB"
msgstr ""
#. type: Plain text
#: en/lb_config.1:439
msgid ""
"defines what size the hdd image should be. Note that although the default is "
"set to 10000 (= 10GB), it will not need 10GB space on your harddisk as the "
"files are created as sparse files."
msgstr ""
#. type: IP
#: en/lb_config.1:439
#, no-wrap
msgid "B<--updates> true|false"
msgstr ""
#. type: Plain text
#: en/lb_config.1:441
msgid ""
"defines if debian updates package archives should be included in the image "
"or not."
msgstr ""
#. type: IP
#: en/lb_config.1:441
#, no-wrap
msgid "B<--backports> true|false"
msgstr ""
#. type: Plain text
#: en/lb_config.1:443
msgid ""
"defines if debian backports package archives should be included in the image "
"or not."
msgstr ""
#. type: IP
#: en/lb_config.1:443 en/live-build.7:42
#, no-wrap
msgid "B<--verbose>"
msgstr ""
#. type: Plain text
#: en/lb_config.1:445
msgid "increases the verbosity of messages output by B<lb build>."
msgstr ""
#. type: IP
#: en/lb_config.1:445
#, no-wrap
msgid "B<--win32-loader true|false>"
msgstr ""
#. FIXME
#. type: Plain text
#: en/lb_config.1:448
msgid "defines if win32-loader should be included in the binary image or not."
msgstr ""
#. type: SH
#: en/lb_config.1:449
#, no-wrap
msgid "ENVIRONMENT"
msgstr ""
#. FIXME
#. type: Plain text
#: en/lb_config.1:452
msgid ""
"Currently, command line switches can also be specified through the "
"corresponding environment variable. However, this generally should not be "
"relied upon, as it is an implementation detail that is subject to change in "
"future releases. For options applying directly to live-build, environment "
"variables are named LB_FOO, meaning, e.g. B<--apt-ftp-proxy> becomes "
"LB_APT_FTP_PROXY (the exception being internal options such as B<--debug>). "
"For options passed to another program, as in APT_OPTIONS or GZIP_OPTIONS, no "
"LB_ prefix is used."
msgstr ""
#. FIXME
#. type: IP
#: en/lb_config.1:456
#, no-wrap
msgid "B<auto/config>"
msgstr ""
#. type: IP
#: en/lb_config.1:457
#, no-wrap
msgid "B</etc/live/build.conf, /etc/live/build/*>"
msgstr ""
#. FIXME
#. type: Plain text
#: en/lb_config.1:460
msgid ""
"An optional, global configuration file for B<lb config> variables. It is "
"useful to specify a few system wide defaults, like "
"LB_PARENT_MIRROR_BOOTSTRAP. This feature can be false by specifying the B<--"
"ignore-system-defaults> option."
msgstr ""
#. type: Plain text
#: en/lb_config.1:465 en/live-build.7:219
msgid "I<live-boot>(7)"
msgstr ""
#. type: Plain text
#: en/lb_config.1:467 en/live-build.7:221
msgid "I<live-config>(7)"
msgstr ""
|