1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190
|
=head2 add-cdrom
add-cdrom filename
This function adds a virtual CD-ROM disk image to the guest.
This is equivalent to the qemu parameter I<-cdrom filename>.
Notes:
=over 4
=item *
This call checks for the existence of C<filename>. This
stops you from specifying other types of drive which are supported
by qemu such as C<nbd:> and C<http:> URLs. To specify those, use
the general L</config> call instead.
=item *
If you just want to add an ISO file (often you use this as an
efficient way to transfer large files into the guest), then you
should probably use L</add-drive-ro> instead.
=back
I<This function is deprecated.>
In new code, use the L</add_drive_opts> call instead.
Deprecated functions will not be removed from the API, but the
fact that they are deprecated indicates that there are problems
with correct use of these functions.
=head2 add-domain
=head2 domain
add-domain dom [libvirturi:..] [readonly:true|false] [iface:..] [live:true|false] [allowuuid:true|false] [readonlydisk:..]
This function adds the disk(s) attached to the named libvirt
domain C<dom>. It works by connecting to libvirt, requesting
the domain and domain XML from libvirt, parsing it for disks,
and calling L</add-drive-opts> on each one.
The number of disks added is returned. This operation is atomic:
if an error is returned, then no disks are added.
This function does some minimal checks to make sure the libvirt
domain is not running (unless C<readonly> is true). In a future
version we will try to acquire the libvirt lock on each disk.
Disks must be accessible locally. This often means that adding disks
from a remote libvirt connection (see L<http://libvirt.org/remote.html>)
will fail unless those disks are accessible via the same device path
locally too.
The optional C<libvirturi> parameter sets the libvirt URI
(see L<http://libvirt.org/uri.html>). If this is not set then
we connect to the default libvirt URI (or one set through an
environment variable, see the libvirt documentation for full
details).
The optional C<live> flag controls whether this call will try
to connect to a running virtual machine C<guestfsd> process if
it sees a suitable E<lt>channelE<gt> element in the libvirt
XML definition. The default (if the flag is omitted) is never
to try. See L<guestfs(3)/ATTACHING TO RUNNING DAEMONS> for more
information.
If the C<allowuuid> flag is true (default is false) then a UUID
I<may> be passed instead of the domain name. The C<dom> string is
treated as a UUID first and looked up, and if that lookup fails
then we treat C<dom> as a name as usual.
The optional C<readonlydisk> parameter controls what we do for
disks which are marked E<lt>readonly/E<gt> in the libvirt XML.
Possible values are:
=over 4
=item readonlydisk = "error"
If C<readonly> is false:
The whole call is aborted with an error if any disk with
the E<lt>readonly/E<gt> flag is found.
If C<readonly> is true:
Disks with the E<lt>readonly/E<gt> flag are added read-only.
=item readonlydisk = "read"
If C<readonly> is false:
Disks with the E<lt>readonly/E<gt> flag are added read-only.
Other disks are added read/write.
If C<readonly> is true:
Disks with the E<lt>readonly/E<gt> flag are added read-only.
=item readonlydisk = "write" (default)
If C<readonly> is false:
Disks with the E<lt>readonly/E<gt> flag are added read/write.
If C<readonly> is true:
Disks with the E<lt>readonly/E<gt> flag are added read-only.
=item readonlydisk = "ignore"
If C<readonly> is true or false:
Disks with the E<lt>readonly/E<gt> flag are skipped.
=back
The other optional parameters are passed directly through to
L</add-drive-opts>.
This command has one or more optional arguments. See L</OPTIONAL ARGUMENTS>.
=head2 add-drive
add-drive filename
This function is the equivalent of calling L</add-drive-opts>
with no optional parameters, so the disk is added writable, with
the format being detected automatically.
Automatic detection of the format opens you up to a potential
security hole when dealing with untrusted raw-format images.
See CVE-2010-3851 and RHBZ#642934. Specifying the format closes
this security hole. Therefore you should think about replacing
calls to this function with calls to L</add-drive-opts>,
and specifying the format.
=head2 add-drive-opts
=head2 add
add-drive-opts filename [readonly:true|false] [format:..] [iface:..] [name:..]
This function adds a virtual machine disk image C<filename> to
libguestfs. The first time you call this function, the disk
appears as C</dev/sda>, the second time as C</dev/sdb>, and
so on.
You don't necessarily need to be root when using libguestfs. However
you obviously do need sufficient permissions to access the filename
for whatever operations you want to perform (ie. read access if you
just want to read the image or write access if you want to modify the
image).
This call checks that C<filename> exists.
The optional arguments are:
=over 4
=item C<readonly>
If true then the image is treated as read-only. Writes are still
allowed, but they are stored in a temporary snapshot overlay which
is discarded at the end. The disk that you add is not modified.
=item C<format>
This forces the image format. If you omit this (or use L</add-drive>
or L</add-drive-ro>) then the format is automatically detected.
Possible formats include C<raw> and C<qcow2>.
Automatic detection of the format opens you up to a potential
security hole when dealing with untrusted raw-format images.
See CVE-2010-3851 and RHBZ#642934. Specifying the format closes
this security hole.
=item C<iface>
This rarely-used option lets you emulate the behaviour of the
deprecated L</add-drive-with-if> call (q.v.)
=item C<name>
The name the drive had in the original guest, e.g. /dev/sdb. This is used as a
hint to the guest inspection process if it is available.
=back
This command has one or more optional arguments. See L</OPTIONAL ARGUMENTS>.
=head2 add-drive-ro
=head2 add-ro
add-drive-ro filename
This function is the equivalent of calling L</add-drive-opts>
with the optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1,
so the disk is added read-only, with the format being detected
automatically.
=head2 add-drive-ro-with-if
add-drive-ro-with-if filename iface
This is the same as L</add-drive-ro> but it allows you
to specify the QEMU interface emulation to use at run time.
I<This function is deprecated.>
In new code, use the L</add_drive_opts> call instead.
Deprecated functions will not be removed from the API, but the
fact that they are deprecated indicates that there are problems
with correct use of these functions.
=head2 add-drive-with-if
add-drive-with-if filename iface
This is the same as L</add-drive> but it allows you
to specify the QEMU interface emulation to use at run time.
I<This function is deprecated.>
In new code, use the L</add_drive_opts> call instead.
Deprecated functions will not be removed from the API, but the
fact that they are deprecated indicates that there are problems
with correct use of these functions.
=head2 aug-clear
aug-clear augpath
Set the value associated with C<path> to C<NULL>. This
is the same as the L<augtool(1)> C<clear> command.
=head2 aug-close
aug-close
Close the current Augeas handle and free up any resources
used by it. After calling this, you have to call
L</aug-init> again before you can use any other
Augeas functions.
=head2 aug-defnode
aug-defnode name expr val
Defines a variable C<name> whose value is the result of
evaluating C<expr>.
If C<expr> evaluates to an empty nodeset, a node is created,
equivalent to calling L</aug-set> C<expr>, C<value>.
C<name> will be the nodeset containing that single node.
On success this returns a pair containing the
number of nodes in the nodeset, and a boolean flag
if a node was created.
=head2 aug-defvar
aug-defvar name expr
Defines an Augeas variable C<name> whose value is the result
of evaluating C<expr>. If C<expr> is NULL, then C<name> is
undefined.
On success this returns the number of nodes in C<expr>, or
C<0> if C<expr> evaluates to something which is not a nodeset.
=head2 aug-get
aug-get augpath
Look up the value associated with C<path>. If C<path>
matches exactly one node, the C<value> is returned.
=head2 aug-init
aug-init root flags
Create a new Augeas handle for editing configuration files.
If there was any previous Augeas handle associated with this
guestfs session, then it is closed.
You must call this before using any other L</aug-*>
commands.
C<root> is the filesystem root. C<root> must not be NULL,
use C</> instead.
The flags are the same as the flags defined in
E<lt>augeas.hE<gt>, the logical I<or> of the following
integers:
=over 4
=item C<AUG_SAVE_BACKUP> = 1
Keep the original file with a C<.augsave> extension.
=item C<AUG_SAVE_NEWFILE> = 2
Save changes into a file with extension C<.augnew>, and
do not overwrite original. Overrides C<AUG_SAVE_BACKUP>.
=item C<AUG_TYPE_CHECK> = 4
Typecheck lenses.
This option is only useful when debugging Augeas lenses. Use
of this option may require additional memory for the libguestfs
appliance. You may need to set the C<LIBGUESTFS_MEMSIZE>
environment variable or call L</set-memsize>.
=item C<AUG_NO_STDINC> = 8
Do not use standard load path for modules.
=item C<AUG_SAVE_NOOP> = 16
Make save a no-op, just record what would have been changed.
=item C<AUG_NO_LOAD> = 32
Do not load the tree in L</aug-init>.
=back
To close the handle, you can call L</aug-close>.
To find out more about Augeas, see L<http://augeas.net/>.
=head2 aug-insert
aug-insert augpath label true|false
Create a new sibling C<label> for C<path>, inserting it into
the tree before or after C<path> (depending on the boolean
flag C<before>).
C<path> must match exactly one existing node in the tree, and
C<label> must be a label, ie. not contain C</>, C<*> or end
with a bracketed index C<[N]>.
=head2 aug-load
aug-load
Load files into the tree.
See C<aug_load> in the Augeas documentation for the full gory
details.
=head2 aug-ls
aug-ls augpath
This is just a shortcut for listing L</aug-match>
C<path/*> and sorting the resulting nodes into alphabetical order.
=head2 aug-match
aug-match augpath
Returns a list of paths which match the path expression C<path>.
The returned paths are sufficiently qualified so that they match
exactly one node in the current tree.
=head2 aug-mv
aug-mv src dest
Move the node C<src> to C<dest>. C<src> must match exactly
one node. C<dest> is overwritten if it exists.
=head2 aug-rm
aug-rm augpath
Remove C<path> and all of its children.
On success this returns the number of entries which were removed.
=head2 aug-save
aug-save
This writes all pending changes to disk.
The flags which were passed to L</aug-init> affect exactly
how files are saved.
=head2 aug-set
aug-set augpath val
Set the value associated with C<path> to C<val>.
In the Augeas API, it is possible to clear a node by setting
the value to NULL. Due to an oversight in the libguestfs API
you cannot do that with this call. Instead you must use the
L</aug-clear> call.
=head2 available
available 'groups ...'
This command is used to check the availability of some
groups of functionality in the appliance, which not all builds of
the libguestfs appliance will be able to provide.
The libguestfs groups, and the functions that those
groups correspond to, are listed in L<guestfs(3)/AVAILABILITY>.
You can also fetch this list at runtime by calling
L</available-all-groups>.
The argument C<groups> is a list of group names, eg:
C<["inotify", "augeas"]> would check for the availability of
the Linux inotify functions and Augeas (configuration file
editing) functions.
The command returns no error if I<all> requested groups are available.
It fails with an error if one or more of the requested
groups is unavailable in the appliance.
If an unknown group name is included in the
list of groups then an error is always returned.
I<Notes:>
=over 4
=item *
You must call L</launch> before calling this function.
The reason is because we don't know what groups are
supported by the appliance/daemon until it is running and can
be queried.
=item *
If a group of functions is available, this does not necessarily
mean that they will work. You still have to check for errors
when calling individual API functions even if they are
available.
=item *
It is usually the job of distro packagers to build
complete functionality into the libguestfs appliance.
Upstream libguestfs, if built from source with all
requirements satisfied, will support everything.
=item *
This call was added in version C<1.0.80>. In previous
versions of libguestfs all you could do would be to speculatively
execute a command to find out if the daemon implemented it.
See also L</version>.
=back
=head2 available-all-groups
available-all-groups
This command returns a list of all optional groups that this
daemon knows about. Note this returns both supported and unsupported
groups. To find out which ones the daemon can actually support
you have to call L</available> on each member of the
returned list.
See also L</available> and L<guestfs(3)/AVAILABILITY>.
=head2 base64-in
base64-in (base64file|-) filename
This command uploads base64-encoded data from C<base64file>
to C<filename>.
Use C<-> instead of a filename to read/write from stdin/stdout.
=head2 base64-out
base64-out filename (base64file|-)
This command downloads the contents of C<filename>, writing
it out to local file C<base64file> encoded as base64.
Use C<-> instead of a filename to read/write from stdin/stdout.
=head2 blkid
blkid device
This command returns block device attributes for C<device>. The following fields are
usually present in the returned hash. Other fields may also be present.
=over
=item C<UUID>
The uuid of this device.
=item C<LABEL>
The label of this device.
=item C<VERSION>
The version of blkid command.
=item C<TYPE>
The filesystem type or RAID of this device.
=item C<USAGE>
The usage of this device, for example C<filesystem> or C<raid>.
=back
=head2 blockdev-flushbufs
blockdev-flushbufs device
This tells the kernel to flush internal buffers associated
with C<device>.
This uses the L<blockdev(8)> command.
=head2 blockdev-getbsz
blockdev-getbsz device
This returns the block size of a device.
(Note this is different from both I<size in blocks> and
I<filesystem block size>).
This uses the L<blockdev(8)> command.
=head2 blockdev-getro
blockdev-getro device
Returns a boolean indicating if the block device is read-only
(true if read-only, false if not).
This uses the L<blockdev(8)> command.
=head2 blockdev-getsize64
blockdev-getsize64 device
This returns the size of the device in bytes.
See also L</blockdev-getsz>.
This uses the L<blockdev(8)> command.
=head2 blockdev-getss
blockdev-getss device
This returns the size of sectors on a block device.
Usually 512, but can be larger for modern devices.
(Note, this is not the size in sectors, use L</blockdev-getsz>
for that).
This uses the L<blockdev(8)> command.
=head2 blockdev-getsz
blockdev-getsz device
This returns the size of the device in units of 512-byte sectors
(even if the sectorsize isn't 512 bytes ... weird).
See also L</blockdev-getss> for the real sector size of
the device, and L</blockdev-getsize64> for the more
useful I<size in bytes>.
This uses the L<blockdev(8)> command.
=head2 blockdev-rereadpt
blockdev-rereadpt device
Reread the partition table on C<device>.
This uses the L<blockdev(8)> command.
=head2 blockdev-setbsz
blockdev-setbsz device blocksize
This sets the block size of a device.
(Note this is different from both I<size in blocks> and
I<filesystem block size>).
This uses the L<blockdev(8)> command.
=head2 blockdev-setro
blockdev-setro device
Sets the block device named C<device> to read-only.
This uses the L<blockdev(8)> command.
=head2 blockdev-setrw
blockdev-setrw device
Sets the block device named C<device> to read-write.
This uses the L<blockdev(8)> command.
=head2 btrfs-device-add
btrfs-device-add 'devices ...' fs
Add the list of device(s) in C<devices> to the btrfs filesystem
mounted at C<fs>. If C<devices> is an empty list, this does nothing.
=head2 btrfs-device-delete
btrfs-device-delete 'devices ...' fs
Remove the C<devices> from the btrfs filesystem mounted at C<fs>.
If C<devices> is an empty list, this does nothing.
=head2 btrfs-filesystem-balance
btrfs-filesystem-balance fs
Balance the chunks in the btrfs filesystem mounted at C<fs>
across the underlying devices.
=head2 btrfs-filesystem-resize
btrfs-filesystem-resize mountpoint [size:N]
This command resizes a btrfs filesystem.
Note that unlike other resize calls, the filesystem has to be
mounted and the parameter is the mountpoint not the device
(this is a requirement of btrfs itself).
The optional parameters are:
=over 4
=item C<size>
The new size (in bytes) of the filesystem. If omitted, the filesystem
is resized to the maximum size.
=back
See also L<btrfs(8)>.
This command has one or more optional arguments. See L</OPTIONAL ARGUMENTS>.
=head2 btrfs-filesystem-sync
btrfs-filesystem-sync fs
Force sync on the btrfs filesystem mounted at C<fs>.
=head2 btrfs-fsck
btrfs-fsck device [superblock:N] [repair:true|false]
Used to check a btrfs filesystem, C<device> is the device file where the
filesystem is stored.
This command has one or more optional arguments. See L</OPTIONAL ARGUMENTS>.
=head2 btrfs-set-seeding
btrfs-set-seeding device true|false
Enable or disable the seeding feature of a device that contains
a btrfs filesystem.
=head2 btrfs-subvolume-create
btrfs-subvolume-create dest
Create a btrfs subvolume. The C<dest> argument is the destination
directory and the name of the snapshot, in the form C</path/to/dest/name>.
=head2 btrfs-subvolume-delete
btrfs-subvolume-delete subvolume
Delete the named btrfs subvolume.
=head2 btrfs-subvolume-list
btrfs-subvolume-list fs
List the btrfs snapshots and subvolumes of the btrfs filesystem
which is mounted at C<fs>.
=head2 btrfs-subvolume-set-default
btrfs-subvolume-set-default id fs
Set the subvolume of the btrfs filesystem C<fs> which will
be mounted by default. See L</btrfs-subvolume-list> to
get a list of subvolumes.
=head2 btrfs-subvolume-snapshot
btrfs-subvolume-snapshot source dest
Create a writable snapshot of the btrfs subvolume C<source>.
The C<dest> argument is the destination directory and the name
of the snapshot, in the form C</path/to/dest/name>.
=head2 case-sensitive-path
case-sensitive-path path
This can be used to resolve case insensitive paths on
a filesystem which is case sensitive. The use case is
to resolve paths which you have read from Windows configuration
files or the Windows Registry, to the true path.
The command handles a peculiarity of the Linux ntfs-3g
filesystem driver (and probably others), which is that although
the underlying filesystem is case-insensitive, the driver
exports the filesystem to Linux as case-sensitive.
One consequence of this is that special directories such
as C<c:\windows> may appear as C</WINDOWS> or C</windows>
(or other things) depending on the precise details of how
they were created. In Windows itself this would not be
a problem.
Bug or feature? You decide:
L<http://www.tuxera.com/community/ntfs-3g-faq/#posixfilenames1>
This function resolves the true case of each element in the
path and returns the case-sensitive path.
Thus L</case-sensitive-path> ("/Windows/System32")
might return C<"/WINDOWS/system32"> (the exact return value
would depend on details of how the directories were originally
created under Windows).
I<Note>:
This function does not handle drive names, backslashes etc.
See also L</realpath>.
=head2 cat
cat path
Return the contents of the file named C<path>.
Note that this function cannot correctly handle binary files
(specifically, files containing C<\0> character which is treated
as end of string). For those you need to use the L</read-file>
or L</download> functions which have a more complex interface.
Because of the message protocol, there is a transfer limit
of somewhere between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>.
=head2 checksum
checksum csumtype path
This call computes the MD5, SHAx or CRC checksum of the
file named C<path>.
The type of checksum to compute is given by the C<csumtype>
parameter which must have one of the following values:
=over 4
=item C<crc>
Compute the cyclic redundancy check (CRC) specified by POSIX
for the C<cksum> command.
=item C<md5>
Compute the MD5 hash (using the C<md5sum> program).
=item C<sha1>
Compute the SHA1 hash (using the C<sha1sum> program).
=item C<sha224>
Compute the SHA224 hash (using the C<sha224sum> program).
=item C<sha256>
Compute the SHA256 hash (using the C<sha256sum> program).
=item C<sha384>
Compute the SHA384 hash (using the C<sha384sum> program).
=item C<sha512>
Compute the SHA512 hash (using the C<sha512sum> program).
=back
The checksum is returned as a printable string.
To get the checksum for a device, use L</checksum-device>.
To get the checksums for many files, use L</checksums-out>.
=head2 checksum-device
checksum-device csumtype device
This call computes the MD5, SHAx or CRC checksum of the
contents of the device named C<device>. For the types of
checksums supported see the L</checksum> command.
=head2 checksums-out
checksums-out csumtype directory (sumsfile|-)
This command computes the checksums of all regular files in
C<directory> and then emits a list of those checksums to
the local output file C<sumsfile>.
This can be used for verifying the integrity of a virtual
machine. However to be properly secure you should pay
attention to the output of the checksum command (it uses
the ones from GNU coreutils). In particular when the
filename is not printable, coreutils uses a special
backslash syntax. For more information, see the GNU
coreutils info file.
Use C<-> instead of a filename to read/write from stdin/stdout.
=head2 chmod
chmod mode path
Change the mode (permissions) of C<path> to C<mode>. Only
numeric modes are supported.
I<Note>: When using this command from guestfish, C<mode>
by default would be decimal, unless you prefix it with
C<0> to get octal, ie. use C<0700> not C<700>.
The mode actually set is affected by the umask.
=head2 chown
chown owner group path
Change the file owner to C<owner> and group to C<group>.
Only numeric uid and gid are supported. If you want to use
names, you will need to locate and parse the password file
yourself (Augeas support makes this relatively easy).
=head2 command
command 'arguments ...'
This call runs a command from the guest filesystem. The
filesystem must be mounted, and must contain a compatible
operating system (ie. something Linux, with the same
or compatible processor architecture).
The single parameter is an argv-style list of arguments.
The first element is the name of the program to run.
Subsequent elements are parameters. The list must be
non-empty (ie. must contain a program name). Note that
the command runs directly, and is I<not> invoked via
the shell (see L</sh>).
The return value is anything printed to I<stdout> by
the command.
If the command returns a non-zero exit status, then
this function returns an error message. The error message
string is the content of I<stderr> from the command.
The C<$PATH> environment variable will contain at least
C</usr/bin> and C</bin>. If you require a program from
another location, you should provide the full path in the
first parameter.
Shared libraries and data files required by the program
must be available on filesystems which are mounted in the
correct places. It is the caller's responsibility to ensure
all filesystems that are needed are mounted at the right
locations.
Because of the message protocol, there is a transfer limit
of somewhere between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>.
=head2 command-lines
command-lines 'arguments ...'
This is the same as L</command>, but splits the
result into a list of lines.
See also: L</sh-lines>
Because of the message protocol, there is a transfer limit
of somewhere between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>.
=head2 compress-device-out
compress-device-out ctype device (zdevice|-) [level:N]
This command compresses C<device> and writes it out to the local
file C<zdevice>.
The C<ctype> and optional C<level> parameters have the same meaning
as in L</compress-out>.
Use C<-> instead of a filename to read/write from stdin/stdout.
This command has one or more optional arguments. See L</OPTIONAL ARGUMENTS>.
=head2 compress-out
compress-out ctype file (zfile|-) [level:N]
This command compresses C<file> and writes it out to the local
file C<zfile>.
The compression program used is controlled by the C<ctype> parameter.
Currently this includes: C<compress>, C<gzip>, C<bzip2>, C<xz> or C<lzop>.
Some compression types may not be supported by particular builds of
libguestfs, in which case you will get an error containing the
substring "not supported".
The optional C<level> parameter controls compression level. The
meaning and default for this parameter depends on the compression
program being used.
Use C<-> instead of a filename to read/write from stdin/stdout.
This command has one or more optional arguments. See L</OPTIONAL ARGUMENTS>.
=head2 config
config qemuparam qemuvalue
This can be used to add arbitrary qemu command line parameters
of the form I<-param value>. Actually it's not quite arbitrary - we
prevent you from setting some parameters which would interfere with
parameters that we use.
The first character of C<param> string must be a C<-> (dash).
C<value> can be NULL.
=head2 copy-device-to-device
copy-device-to-device src dest [srcoffset:N] [destoffset:N] [size:N]
The four calls L</copy-device-to-device>,
L</copy-device-to-file>,
L</copy-file-to-device>, and
L</copy-file-to-file>
let you copy from a source (device|file) to a destination
(device|file).
Partial copies can be made since you can specify optionally
the source offset, destination offset and size to copy. These
values are all specified in bytes. If not given, the offsets
both default to zero, and the size defaults to copying as much
as possible until we hit the end of the source.
The source and destination may be the same object. However
overlapping regions may not be copied correctly.
If the destination is a file, it is created if required. If
the destination file is not large enough, it is extended.
This command has one or more optional arguments. See L</OPTIONAL ARGUMENTS>.
=head2 copy-device-to-file
copy-device-to-file src dest [srcoffset:N] [destoffset:N] [size:N]
See L</copy-device-to-device> for a general overview
of this call.
This command has one or more optional arguments. See L</OPTIONAL ARGUMENTS>.
=head2 copy-file-to-device
copy-file-to-device src dest [srcoffset:N] [destoffset:N] [size:N]
See L</copy-device-to-device> for a general overview
of this call.
This command has one or more optional arguments. See L</OPTIONAL ARGUMENTS>.
=head2 copy-file-to-file
copy-file-to-file src dest [srcoffset:N] [destoffset:N] [size:N]
See L</copy-device-to-device> for a general overview
of this call.
This is B<not> the function you want for copying files. This
is for copying blocks within existing files. See L</cp>,
L</cp-a> and L</mv> for general file copying and
moving functions.
This command has one or more optional arguments. See L</OPTIONAL ARGUMENTS>.
=head2 copy-size
copy-size src dest size
This command copies exactly C<size> bytes from one source device
or file C<src> to another destination device or file C<dest>.
Note this will fail if the source is too short or if the destination
is not large enough.
I<This function is deprecated.>
In new code, use the L</copy_device_to_device> call instead.
Deprecated functions will not be removed from the API, but the
fact that they are deprecated indicates that there are problems
with correct use of these functions.
=head2 cp
cp src dest
This copies a file from C<src> to C<dest> where C<dest> is
either a destination filename or destination directory.
=head2 cp-a
cp-a src dest
This copies a file or directory from C<src> to C<dest>
recursively using the C<cp -a> command.
=head2 dd
dd src dest
This command copies from one source device or file C<src>
to another destination device or file C<dest>. Normally you
would use this to copy to or from a device or partition, for
example to duplicate a filesystem.
If the destination is a device, it must be as large or larger
than the source file or device, otherwise the copy will fail.
This command cannot do partial copies
(see L</copy-device-to-device>).
I<This function is deprecated.>
In new code, use the L</copy_device_to_device> call instead.
Deprecated functions will not be removed from the API, but the
fact that they are deprecated indicates that there are problems
with correct use of these functions.
=head2 df
df
This command runs the C<df> command to report disk space used.
This command is mostly useful for interactive sessions. It
is I<not> intended that you try to parse the output string.
Use L</statvfs> from programs.
=head2 df-h
df-h
This command runs the C<df -h> command to report disk space used
in human-readable format.
This command is mostly useful for interactive sessions. It
is I<not> intended that you try to parse the output string.
Use L</statvfs> from programs.
=head2 dmesg
dmesg
This returns the kernel messages (C<dmesg> output) from
the guest kernel. This is sometimes useful for extended
debugging of problems.
Another way to get the same information is to enable
verbose messages with L</set-verbose> or by setting
the environment variable C<LIBGUESTFS_DEBUG=1> before
running the program.
=head2 download
download remotefilename (filename|-)
Download file C<remotefilename> and save it as C<filename>
on the local machine.
C<filename> can also be a named pipe.
See also L</upload>, L</cat>.
Use C<-> instead of a filename to read/write from stdin/stdout.
=head2 download-offset
download-offset remotefilename (filename|-) offset size
Download file C<remotefilename> and save it as C<filename>
on the local machine.
C<remotefilename> is read for C<size> bytes starting at C<offset>
(this region must be within the file or device).
Note that there is no limit on the amount of data that
can be downloaded with this call, unlike with L</pread>,
and this call always reads the full amount unless an
error occurs.
See also L</download>, L</pread>.
Use C<-> instead of a filename to read/write from stdin/stdout.
=head2 drop-caches
drop-caches whattodrop
This instructs the guest kernel to drop its page cache,
and/or dentries and inode caches. The parameter C<whattodrop>
tells the kernel what precisely to drop, see
L<http://linux-mm.org/Drop_Caches>
Setting C<whattodrop> to 3 should drop everything.
This automatically calls L<sync(2)> before the operation,
so that the maximum guest memory is freed.
=head2 du
du path
This command runs the C<du -s> command to estimate file space
usage for C<path>.
C<path> can be a file or a directory. If C<path> is a directory
then the estimate includes the contents of the directory and all
subdirectories (recursively).
The result is the estimated size in I<kilobytes>
(ie. units of 1024 bytes).
=head2 e2fsck
e2fsck device [correct:true|false] [forceall:true|false]
This runs the ext2/ext3 filesystem checker on C<device>.
It can take the following optional arguments:
=over 4
=item C<correct>
Automatically repair the file system. This option will cause e2fsck
to automatically fix any filesystem problems that can be safely
fixed without human intervention.
This option may not be specified at the same time as the C<forceall> option.
=item C<forceall>
Assume an answer of 'yes' to all questions; allows e2fsck to be used
non-interactively.
This option may not be specified at the same time as the C<correct> option.
=back
This command has one or more optional arguments. See L</OPTIONAL ARGUMENTS>.
=head2 e2fsck-f
e2fsck-f device
This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3
filesystem checker on C<device>, noninteractively (I<-p>),
even if the filesystem appears to be clean (I<-f>).
I<This function is deprecated.>
In new code, use the L</e2fsck> call instead.
Deprecated functions will not be removed from the API, but the
fact that they are deprecated indicates that there are problems
with correct use of these functions.
=head2 echo-daemon
echo-daemon 'words ...'
This command concatenates the list of C<words> passed with single spaces
between them and returns the resulting string.
You can use this command to test the connection through to the daemon.
See also L</ping-daemon>.
=head2 egrep
egrep regex path
This calls the external C<egrep> program and returns the
matching lines.
Because of the message protocol, there is a transfer limit
of somewhere between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>.
=head2 egrepi
egrepi regex path
This calls the external C<egrep -i> program and returns the
matching lines.
Because of the message protocol, there is a transfer limit
of somewhere between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>.
=head2 equal
equal file1 file2
This compares the two files C<file1> and C<file2> and returns
true if their content is exactly equal, or false otherwise.
The external L<cmp(1)> program is used for the comparison.
=head2 exists
exists path
This returns C<true> if and only if there is a file, directory
(or anything) with the given C<path> name.
See also L</is-file>, L</is-dir>, L</stat>.
=head2 fallocate
fallocate path len
This command preallocates a file (containing zero bytes) named
C<path> of size C<len> bytes. If the file exists already, it
is overwritten.
Do not confuse this with the guestfish-specific
C<alloc> command which allocates a file in the host and
attaches it as a device.
I<This function is deprecated.>
In new code, use the L</fallocate64> call instead.
Deprecated functions will not be removed from the API, but the
fact that they are deprecated indicates that there are problems
with correct use of these functions.
=head2 fallocate64
fallocate64 path len
This command preallocates a file (containing zero bytes) named
C<path> of size C<len> bytes. If the file exists already, it
is overwritten.
Note that this call allocates disk blocks for the file.
To create a sparse file use L</truncate-size> instead.
The deprecated call L</fallocate> does the same,
but owing to an oversight it only allowed 30 bit lengths
to be specified, effectively limiting the maximum size
of files created through that call to 1GB.
Do not confuse this with the guestfish-specific
C<alloc> and C<sparse> commands which create
a file in the host and attach it as a device.
=head2 fgrep
fgrep pattern path
This calls the external C<fgrep> program and returns the
matching lines.
Because of the message protocol, there is a transfer limit
of somewhere between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>.
=head2 fgrepi
fgrepi pattern path
This calls the external C<fgrep -i> program and returns the
matching lines.
Because of the message protocol, there is a transfer limit
of somewhere between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>.
=head2 file
file path
This call uses the standard L<file(1)> command to determine
the type or contents of the file.
This call will also transparently look inside various types
of compressed file.
The exact command which runs is C<file -zb path>. Note in
particular that the filename is not prepended to the output
(the I<-b> option).
The output depends on the output of the underlying L<file(1)>
command and it can change in future in ways beyond our control.
In other words, the output is not guaranteed by the ABI.
See also: L<file(1)>, L</vfs-type>, L</lstat>,
L</is-file>, L</is-blockdev> (etc), L</is-zero>.
=head2 file-architecture
file-architecture filename
This detects the architecture of the binary C<filename>,
and returns it if known.
Currently defined architectures are:
=over 4
=item "i386"
This string is returned for all 32 bit i386, i486, i586, i686 binaries
irrespective of the precise processor requirements of the binary.
=item "x86_64"
64 bit x86-64.
=item "sparc"
32 bit SPARC.
=item "sparc64"
64 bit SPARC V9 and above.
=item "ia64"
Intel Itanium.
=item "ppc"
32 bit Power PC.
=item "ppc64"
64 bit Power PC.
=back
Libguestfs may return other architecture strings in future.
The function works on at least the following types of files:
=over 4
=item *
many types of Un*x and Linux binary
=item *
many types of Un*x and Linux shared library
=item *
Windows Win32 and Win64 binaries
=item *
Windows Win32 and Win64 DLLs
Win32 binaries and DLLs return C<i386>.
Win64 binaries and DLLs return C<x86_64>.
=item *
Linux kernel modules
=item *
Linux new-style initrd images
=item *
some non-x86 Linux vmlinuz kernels
=back
What it can't do currently:
=over 4
=item *
static libraries (libfoo.a)
=item *
Linux old-style initrd as compressed ext2 filesystem (RHEL 3)
=item *
x86 Linux vmlinuz kernels
x86 vmlinuz images (bzImage format) consist of a mix of 16-, 32- and
compressed code, and are horribly hard to unpack. If you want to find
the architecture of a kernel, use the architecture of the associated
initrd or kernel module(s) instead.
=back
=head2 filesize
filesize file
This command returns the size of C<file> in bytes.
To get other stats about a file, use L</stat>, L</lstat>,
L</is-dir>, L</is-file> etc.
To get the size of block devices, use L</blockdev-getsize64>.
=head2 fill
fill c len path
This command creates a new file called C<path>. The initial
content of the file is C<len> octets of C<c>, where C<c>
must be a number in the range C<[0..255]>.
To fill a file with zero bytes (sparsely), it is
much more efficient to use L</truncate-size>.
To create a file with a pattern of repeating bytes
use L</fill-pattern>.
=head2 fill-pattern
fill-pattern pattern len path
This function is like L</fill> except that it creates
a new file of length C<len> containing the repeating pattern
of bytes in C<pattern>. The pattern is truncated if necessary
to ensure the length of the file is exactly C<len> bytes.
=head2 find
find directory
This command lists out all files and directories, recursively,
starting at C<directory>. It is essentially equivalent to
running the shell command C<find directory -print> but some
post-processing happens on the output, described below.
This returns a list of strings I<without any prefix>. Thus
if the directory structure was:
/tmp/a
/tmp/b
/tmp/c/d
then the returned list from L</find> C</tmp> would be
4 elements:
a
b
c
c/d
If C<directory> is not a directory, then this command returns
an error.
The returned list is sorted.
See also L</find0>.
Because of the message protocol, there is a transfer limit
of somewhere between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>.
=head2 find0
find0 directory (files|-)
This command lists out all files and directories, recursively,
starting at C<directory>, placing the resulting list in the
external file called C<files>.
This command works the same way as L</find> with the
following exceptions:
=over 4
=item *
The resulting list is written to an external file.
=item *
Items (filenames) in the result are separated
by C<\0> characters. See L<find(1)> option I<-print0>.
=item *
This command is not limited in the number of names that it
can return.
=item *
The result list is not sorted.
=back
Use C<-> instead of a filename to read/write from stdin/stdout.
=head2 findfs-label
findfs-label label
This command searches the filesystems and returns the one
which has the given label. An error is returned if no such
filesystem can be found.
To find the label of a filesystem, use L</vfs-label>.
=head2 findfs-uuid
findfs-uuid uuid
This command searches the filesystems and returns the one
which has the given UUID. An error is returned if no such
filesystem can be found.
To find the UUID of a filesystem, use L</vfs-uuid>.
=head2 fsck
fsck fstype device
This runs the filesystem checker (fsck) on C<device> which
should have filesystem type C<fstype>.
The returned integer is the status. See L<fsck(8)> for the
list of status codes from C<fsck>.
Notes:
=over 4
=item *
Multiple status codes can be summed together.
=item *
A non-zero return code can mean "success", for example if
errors have been corrected on the filesystem.
=item *
Checking or repairing NTFS volumes is not supported
(by linux-ntfs).
=back
This command is entirely equivalent to running C<fsck -a -t fstype device>.
=head2 get-append
get-append
Return the additional kernel options which are added to the
guest kernel command line.
If C<NULL> then no options are added.
=head2 get-attach-method
get-attach-method
Return the current attach method. See L</set-attach-method>.
=head2 get-autosync
get-autosync
Get the autosync flag.
=head2 get-direct
get-direct
Return the direct appliance mode flag.
=head2 get-e2attrs
get-e2attrs file
This returns the file attributes associated with C<file>.
The attributes are a set of bits associated with each
inode which affect the behaviour of the file. The attributes
are returned as a string of letters (described below). The
string may be empty, indicating that no file attributes are
set for this file.
These attributes are only present when the file is located on
an ext2/3/4 filesystem. Using this call on other filesystem
types will result in an error.
The characters (file attributes) in the returned string are
currently:
=over 4
=item 'A'
When the file is accessed, its atime is not modified.
=item 'a'
The file is append-only.
=item 'c'
The file is compressed on-disk.
=item 'D'
(Directories only.) Changes to this directory are written
synchronously to disk.
=item 'd'
The file is not a candidate for backup (see L<dump(8)>).
=item 'E'
The file has compression errors.
=item 'e'
The file is using extents.
=item 'h'
The file is storing its blocks in units of the filesystem blocksize
instead of sectors.
=item 'I'
(Directories only.) The directory is using hashed trees.
=item 'i'
The file is immutable. It cannot be modified, deleted or renamed.
No link can be created to this file.
=item 'j'
The file is data-journaled.
=item 's'
When the file is deleted, all its blocks will be zeroed.
=item 'S'
Changes to this file are written synchronously to disk.
=item 'T'
(Directories only.) This is a hint to the block allocator
that subdirectories contained in this directory should be
spread across blocks. If not present, the block allocator
will try to group subdirectories together.
=item 't'
For a file, this disables tail-merging.
(Not used by upstream implementations of ext2.)
=item 'u'
When the file is deleted, its blocks will be saved, allowing
the file to be undeleted.
=item 'X'
The raw contents of the compressed file may be accessed.
=item 'Z'
The compressed file is dirty.
=back
More file attributes may be added to this list later. Not all
file attributes may be set for all kinds of files. For
detailed information, consult the L<chattr(1)> man page.
See also L</set-e2attrs>.
Don't confuse these attributes with extended attributes
(see L</getxattr>).
=head2 get-e2generation
get-e2generation file
This returns the ext2 file generation of a file. The generation
(which used to be called the "version") is a number associated
with an inode. This is most commonly used by NFS servers.
The generation is only present when the file is located on
an ext2/3/4 filesystem. Using this call on other filesystem
types will result in an error.
See L</set-e2generation>.
=head2 get-e2label
get-e2label device
This returns the ext2/3/4 filesystem label of the filesystem on
C<device>.
I<This function is deprecated.>
In new code, use the L</vfs_label> call instead.
Deprecated functions will not be removed from the API, but the
fact that they are deprecated indicates that there are problems
with correct use of these functions.
=head2 get-e2uuid
get-e2uuid device
This returns the ext2/3/4 filesystem UUID of the filesystem on
C<device>.
I<This function is deprecated.>
In new code, use the L</vfs_uuid> call instead.
Deprecated functions will not be removed from the API, but the
fact that they are deprecated indicates that there are problems
with correct use of these functions.
=head2 get-memsize
get-memsize
This gets the memory size in megabytes allocated to the
qemu subprocess.
If L</set-memsize> was not called
on this handle, and if C<LIBGUESTFS_MEMSIZE> was not set,
then this returns the compiled-in default value for memsize.
For more information on the architecture of libguestfs,
see L<guestfs(3)>.
=head2 get-network
get-network
This returns the enable network flag.
=head2 get-path
get-path
Return the current search path.
This is always non-NULL. If it wasn't set already, then this will
return the default path.
=head2 get-pgroup
get-pgroup
This returns the process group flag.
=head2 get-pid
=head2 pid
get-pid
Return the process ID of the qemu subprocess. If there is no
qemu subprocess, then this will return an error.
This is an internal call used for debugging and testing.
=head2 get-qemu
get-qemu
Return the current qemu binary.
This is always non-NULL. If it wasn't set already, then this will
return the default qemu binary name.
=head2 get-recovery-proc
get-recovery-proc
Return the recovery process enabled flag.
=head2 get-selinux
get-selinux
This returns the current setting of the selinux flag which
is passed to the appliance at boot time. See L</set-selinux>.
For more information on the architecture of libguestfs,
see L<guestfs(3)>.
=head2 get-smp
get-smp
This returns the number of virtual CPUs assigned to the appliance.
=head2 get-state
get-state
This returns the current state as an opaque integer. This is
only useful for printing debug and internal error messages.
For more information on states, see L<guestfs(3)>.
=head2 get-trace
get-trace
Return the command trace flag.
=head2 get-umask
get-umask
Return the current umask. By default the umask is C<022>
unless it has been set by calling L</umask>.
=head2 get-verbose
get-verbose
This returns the verbose messages flag.
=head2 getcon
getcon
This gets the SELinux security context of the daemon.
See the documentation about SELINUX in L<guestfs(3)>,
and L</setcon>
=head2 getxattr
getxattr path name
Get a single extended attribute from file C<path> named C<name>.
This call follows symlinks. If you want to lookup an extended
attribute for the symlink itself, use L</lgetxattr>.
Normally it is better to get all extended attributes from a file
in one go by calling L</getxattrs>. However some Linux
filesystem implementations are buggy and do not provide a way to
list out attributes. For these filesystems (notably ntfs-3g)
you have to know the names of the extended attributes you want
in advance and call this function.
Extended attribute values are blobs of binary data. If there
is no extended attribute named C<name>, this returns an error.
See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>.
=head2 getxattrs
getxattrs path
This call lists the extended attributes of the file or directory
C<path>.
At the system call level, this is a combination of the
L<listxattr(2)> and L<getxattr(2)> calls.
See also: L</lgetxattrs>, L<attr(5)>.
=head2 glob-expand
glob-expand pattern
This command searches for all the pathnames matching
C<pattern> according to the wildcard expansion rules
used by the shell.
If no paths match, then this returns an empty list
(note: not an error).
It is just a wrapper around the C L<glob(3)> function
with flags C<GLOB_MARK|GLOB_BRACE>.
See that manual page for more details.
Notice that there is no equivalent command for expanding a device
name (eg. C</dev/sd*>). Use L</list-devices>,
L</list-partitions> etc functions instead.
=head2 grep
grep regex path
This calls the external C<grep> program and returns the
matching lines.
Because of the message protocol, there is a transfer limit
of somewhere between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>.
=head2 grepi
grepi regex path
This calls the external C<grep -i> program and returns the
matching lines.
Because of the message protocol, there is a transfer limit
of somewhere between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>.
=head2 grub-install
grub-install root device
This command installs GRUB 1 (the Grand Unified Bootloader) on
C<device>, with the root directory being C<root>.
Notes:
=over 4
=item *
There is currently no way in the API to install grub2, which
is used by most modern Linux guests. It is possible to run
the grub2 command from the guest, although see the
caveats in L<guestfs(3)/RUNNING COMMANDS>.
=item *
This uses C<grub-install> from the host. Unfortunately grub is
not always compatible with itself, so this only works in rather
narrow circumstances. Careful testing with each guest version
is advisable.
=item *
If grub-install reports the error
"No suitable drive was found in the generated device map."
it may be that you need to create a C</boot/grub/device.map>
file first that contains the mapping between grub device names
and Linux device names. It is usually sufficient to create
a file containing:
(hd0) /dev/vda
replacing C</dev/vda> with the name of the installation device.
=back
=head2 head
head path
This command returns up to the first 10 lines of a file as
a list of strings.
Because of the message protocol, there is a transfer limit
of somewhere between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>.
=head2 head-n
head-n nrlines path
If the parameter C<nrlines> is a positive number, this returns the first
C<nrlines> lines of the file C<path>.
If the parameter C<nrlines> is a negative number, this returns lines
from the file C<path>, excluding the last C<nrlines> lines.
If the parameter C<nrlines> is zero, this returns an empty list.
Because of the message protocol, there is a transfer limit
of somewhere between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>.
=head2 hexdump
hexdump path
This runs C<hexdump -C> on the given C<path>. The result is
the human-readable, canonical hex dump of the file.
Because of the message protocol, there is a transfer limit
of somewhere between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>.
=head2 initrd-cat
initrd-cat initrdpath filename
This command unpacks the file C<filename> from the initrd file
called C<initrdpath>. The filename must be given I<without> the
initial C</> character.
For example, in guestfish you could use the following command
to examine the boot script (usually called C</init>)
contained in a Linux initrd or initramfs image:
initrd-cat /boot/initrd-<version>.img init
See also L</initrd-list>.
Because of the message protocol, there is a transfer limit
of somewhere between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>.
=head2 initrd-list
initrd-list path
This command lists out files contained in an initrd.
The files are listed without any initial C</> character. The
files are listed in the order they appear (not necessarily
alphabetical). Directory names are listed as separate items.
Old Linux kernels (2.4 and earlier) used a compressed ext2
filesystem as initrd. We I<only> support the newer initramfs
format (compressed cpio files).
=head2 inotify-add-watch
inotify-add-watch path mask
Watch C<path> for the events listed in C<mask>.
Note that if C<path> is a directory then events within that
directory are watched, but this does I<not> happen recursively
(in subdirectories).
Note for non-C or non-Linux callers: the inotify events are
defined by the Linux kernel ABI and are listed in
C</usr/include/sys/inotify.h>.
=head2 inotify-close
inotify-close
This closes the inotify handle which was previously
opened by inotify_init. It removes all watches, throws
away any pending events, and deallocates all resources.
=head2 inotify-files
inotify-files
This function is a helpful wrapper around L</inotify-read>
which just returns a list of pathnames of objects that were
touched. The returned pathnames are sorted and deduplicated.
=head2 inotify-init
inotify-init maxevents
This command creates a new inotify handle.
The inotify subsystem can be used to notify events which happen to
objects in the guest filesystem.
C<maxevents> is the maximum number of events which will be
queued up between calls to L</inotify-read> or
L</inotify-files>.
If this is passed as C<0>, then the kernel (or previously set)
default is used. For Linux 2.6.29 the default was 16384 events.
Beyond this limit, the kernel throws away events, but records
the fact that it threw them away by setting a flag
C<IN_Q_OVERFLOW> in the returned structure list (see
L</inotify-read>).
Before any events are generated, you have to add some
watches to the internal watch list. See: L</inotify-add-watch> and
L</inotify-rm-watch>.
Queued up events should be read periodically by calling
L</inotify-read>
(or L</inotify-files> which is just a helpful
wrapper around L</inotify-read>). If you don't
read the events out often enough then you risk the internal
queue overflowing.
The handle should be closed after use by calling
L</inotify-close>. This also removes any
watches automatically.
See also L<inotify(7)> for an overview of the inotify interface
as exposed by the Linux kernel, which is roughly what we expose
via libguestfs. Note that there is one global inotify handle
per libguestfs instance.
=head2 inotify-read
inotify-read
Return the complete queue of events that have happened
since the previous read call.
If no events have happened, this returns an empty list.
I<Note>: In order to make sure that all events have been
read, you must call this function repeatedly until it
returns an empty list. The reason is that the call will
read events up to the maximum appliance-to-host message
size and leave remaining events in the queue.
=head2 inotify-rm-watch
inotify-rm-watch wd
Remove a previously defined inotify watch.
See L</inotify-add-watch>.
=head2 inspect-get-arch
inspect-get-arch root
This returns the architecture of the inspected operating system.
The possible return values are listed under
L</file-architecture>.
If the architecture could not be determined, then the
string C<unknown> is returned.
Please read L<guestfs(3)/INSPECTION> for more details.
=head2 inspect-get-distro
inspect-get-distro root
This returns the distro (distribution) of the inspected operating
system.
Currently defined distros are:
=over 4
=item "archlinux"
Arch Linux.
=item "buildroot"
Buildroot-derived distro, but not one we specifically recognize.
=item "centos"
CentOS.
=item "cirros"
Cirros.
=item "debian"
Debian.
=item "fedora"
Fedora.
=item "freedos"
FreeDOS.
=item "gentoo"
Gentoo.
=item "linuxmint"
Linux Mint.
=item "mageia"
Mageia.
=item "mandriva"
Mandriva.
=item "meego"
MeeGo.
=item "opensuse"
OpenSUSE.
=item "pardus"
Pardus.
=item "redhat-based"
Some Red Hat-derived distro.
=item "rhel"
Red Hat Enterprise Linux.
=item "scientificlinux"
Scientific Linux.
=item "slackware"
Slackware.
=item "ttylinux"
ttylinux.
=item "ubuntu"
Ubuntu.
=item "unknown"
The distro could not be determined.
=item "windows"
Windows does not have distributions. This string is
returned if the OS type is Windows.
=back
Future versions of libguestfs may return other strings here.
The caller should be prepared to handle any string.
Please read L<guestfs(3)/INSPECTION> for more details.
=head2 inspect-get-drive-mappings
inspect-get-drive-mappings root
This call is useful for Windows which uses a primitive system
of assigning drive letters (like "C:") to partitions.
This inspection API examines the Windows Registry to find out
how disks/partitions are mapped to drive letters, and returns
a hash table as in the example below:
C => /dev/vda2
E => /dev/vdb1
F => /dev/vdc1
Note that keys are drive letters. For Windows, the key is
case insensitive and just contains the drive letter, without
the customary colon separator character.
In future we may support other operating systems that also used drive
letters, but the keys for those might not be case insensitive
and might be longer than 1 character. For example in OS-9,
hard drives were named C<h0>, C<h1> etc.
For Windows guests, currently only hard drive mappings are
returned. Removable disks (eg. DVD-ROMs) are ignored.
For guests that do not use drive mappings, or if the drive mappings
could not be determined, this returns an empty hash table.
Please read L<guestfs(3)/INSPECTION> for more details.
See also L</inspect-get-mountpoints>,
L</inspect-get-filesystems>.
=head2 inspect-get-filesystems
inspect-get-filesystems root
This returns a list of all the filesystems that we think
are associated with this operating system. This includes
the root filesystem, other ordinary filesystems, and
non-mounted devices like swap partitions.
In the case of a multi-boot virtual machine, it is possible
for a filesystem to be shared between operating systems.
Please read L<guestfs(3)/INSPECTION> for more details.
See also L</inspect-get-mountpoints>.
=head2 inspect-get-format
inspect-get-format root
This returns the format of the inspected operating system. You
can use it to detect install images, live CDs and similar.
Currently defined formats are:
=over 4
=item "installed"
This is an installed operating system.
=item "installer"
The disk image being inspected is not an installed operating system,
but a I<bootable> install disk, live CD, or similar.
=item "unknown"
The format of this disk image is not known.
=back
Future versions of libguestfs may return other strings here.
The caller should be prepared to handle any string.
Please read L<guestfs(3)/INSPECTION> for more details.
=head2 inspect-get-hostname
inspect-get-hostname root
This function returns the hostname of the operating system
as found by inspection of the guest's configuration files.
If the hostname could not be determined, then the
string C<unknown> is returned.
Please read L<guestfs(3)/INSPECTION> for more details.
=head2 inspect-get-icon
inspect-get-icon root [favicon:true|false] [highquality:true|false]
This function returns an icon corresponding to the inspected
operating system. The icon is returned as a buffer containing a
PNG image (re-encoded to PNG if necessary).
If it was not possible to get an icon this function returns a
zero-length (non-NULL) buffer. I<Callers must check for this case>.
Libguestfs will start by looking for a file called
C</etc/favicon.png> or C<C:\etc\favicon.png>
and if it has the correct format, the contents of this file will
be returned. You can disable favicons by passing the
optional C<favicon> boolean as false (default is true).
If finding the favicon fails, then we look in other places in the
guest for a suitable icon.
If the optional C<highquality> boolean is true then
only high quality icons are returned, which means only icons of
high resolution with an alpha channel. The default (false) is
to return any icon we can, even if it is of substandard quality.
Notes:
=over 4
=item *
Unlike most other inspection API calls, the guest's disks must be
mounted up before you call this, since it needs to read information
from the guest filesystem during the call.
=item *
B<Security:> The icon data comes from the untrusted guest,
and should be treated with caution. PNG files have been
known to contain exploits. Ensure that libpng (or other relevant
libraries) are fully up to date before trying to process or
display the icon.
=item *
The PNG image returned can be any size. It might not be square.
Libguestfs tries to return the largest, highest quality
icon available. The application must scale the icon to the
required size.
=item *
Extracting icons from Windows guests requires the external
C<wrestool> program from the C<icoutils> package, and
several programs (C<bmptopnm>, C<pnmtopng>, C<pamcut>)
from the C<netpbm> package. These must be installed separately.
=item *
Operating system icons are usually trademarks. Seek legal
advice before using trademarks in applications.
=back
This command has one or more optional arguments. See L</OPTIONAL ARGUMENTS>.
=head2 inspect-get-major-version
inspect-get-major-version root
This returns the major version number of the inspected operating
system.
Windows uses a consistent versioning scheme which is I<not>
reflected in the popular public names used by the operating system.
Notably the operating system known as "Windows 7" is really
version 6.1 (ie. major = 6, minor = 1). You can find out the
real versions corresponding to releases of Windows by consulting
Wikipedia or MSDN.
If the version could not be determined, then C<0> is returned.
Please read L<guestfs(3)/INSPECTION> for more details.
=head2 inspect-get-minor-version
inspect-get-minor-version root
This returns the minor version number of the inspected operating
system.
If the version could not be determined, then C<0> is returned.
Please read L<guestfs(3)/INSPECTION> for more details.
See also L</inspect-get-major-version>.
=head2 inspect-get-mountpoints
inspect-get-mountpoints root
This returns a hash of where we think the filesystems
associated with this operating system should be mounted.
Callers should note that this is at best an educated guess
made by reading configuration files such as C</etc/fstab>.
I<In particular note> that this may return filesystems
which are non-existent or not mountable and callers should
be prepared to handle or ignore failures if they try to
mount them.
Each element in the returned hashtable has a key which
is the path of the mountpoint (eg. C</boot>) and a value
which is the filesystem that would be mounted there
(eg. C</dev/sda1>).
Non-mounted devices such as swap devices are I<not>
returned in this list.
For operating systems like Windows which still use drive
letters, this call will only return an entry for the first
drive "mounted on" C</>. For information about the
mapping of drive letters to partitions, see
L</inspect-get-drive-mappings>.
Please read L<guestfs(3)/INSPECTION> for more details.
See also L</inspect-get-filesystems>.
=head2 inspect-get-package-format
inspect-get-package-format root
This function and L</inspect-get-package-management> return
the package format and package management tool used by the
inspected operating system. For example for Fedora these
functions would return C<rpm> (package format) and
C<yum> (package management).
This returns the string C<unknown> if we could not determine the
package format I<or> if the operating system does not have
a real packaging system (eg. Windows).
Possible strings include:
C<rpm>, C<deb>, C<ebuild>, C<pisi>, C<pacman>, C<pkgsrc>.
Future versions of libguestfs may return other strings.
Please read L<guestfs(3)/INSPECTION> for more details.
=head2 inspect-get-package-management
inspect-get-package-management root
L</inspect-get-package-format> and this function return
the package format and package management tool used by the
inspected operating system. For example for Fedora these
functions would return C<rpm> (package format) and
C<yum> (package management).
This returns the string C<unknown> if we could not determine the
package management tool I<or> if the operating system does not have
a real packaging system (eg. Windows).
Possible strings include: C<yum>, C<up2date>,
C<apt> (for all Debian derivatives),
C<portage>, C<pisi>, C<pacman>, C<urpmi>, C<zypper>.
Future versions of libguestfs may return other strings.
Please read L<guestfs(3)/INSPECTION> for more details.
=head2 inspect-get-product-name
inspect-get-product-name root
This returns the product name of the inspected operating
system. The product name is generally some freeform string
which can be displayed to the user, but should not be
parsed by programs.
If the product name could not be determined, then the
string C<unknown> is returned.
Please read L<guestfs(3)/INSPECTION> for more details.
=head2 inspect-get-product-variant
inspect-get-product-variant root
This returns the product variant of the inspected operating
system.
For Windows guests, this returns the contents of the Registry key
C<HKLM\Software\Microsoft\Windows NT\CurrentVersion>
C<InstallationType> which is usually a string such as
C<Client> or C<Server> (other values are possible). This
can be used to distinguish consumer and enterprise versions
of Windows that have the same version number (for example,
Windows 7 and Windows 2008 Server are both version 6.1,
but the former is C<Client> and the latter is C<Server>).
For enterprise Linux guests, in future we intend this to return
the product variant such as C<Desktop>, C<Server> and so on. But
this is not implemented at present.
If the product variant could not be determined, then the
string C<unknown> is returned.
Please read L<guestfs(3)/INSPECTION> for more details.
See also L</inspect-get-product-name>,
L</inspect-get-major-version>.
=head2 inspect-get-roots
inspect-get-roots
This function is a convenient way to get the list of root
devices, as returned from a previous call to L</inspect-os>,
but without redoing the whole inspection process.
This returns an empty list if either no root devices were
found or the caller has not called L</inspect-os>.
Please read L<guestfs(3)/INSPECTION> for more details.
=head2 inspect-get-type
inspect-get-type root
This returns the type of the inspected operating system.
Currently defined types are:
=over 4
=item "linux"
Any Linux-based operating system.
=item "windows"
Any Microsoft Windows operating system.
=item "freebsd"
FreeBSD.
=item "netbsd"
NetBSD.
=item "hurd"
GNU/Hurd.
=item "dos"
MS-DOS, FreeDOS and others.
=item "unknown"
The operating system type could not be determined.
=back
Future versions of libguestfs may return other strings here.
The caller should be prepared to handle any string.
Please read L<guestfs(3)/INSPECTION> for more details.
=head2 inspect-get-windows-current-control-set
inspect-get-windows-current-control-set root
This returns the Windows CurrentControlSet of the inspected guest.
The CurrentControlSet is a registry key name such as C<ControlSet001>.
This call assumes that the guest is Windows and that the
Registry could be examined by inspection. If this is not
the case then an error is returned.
Please read L<guestfs(3)/INSPECTION> for more details.
=head2 inspect-get-windows-systemroot
inspect-get-windows-systemroot root
This returns the Windows systemroot of the inspected guest.
The systemroot is a directory path such as C</WINDOWS>.
This call assumes that the guest is Windows and that the
systemroot could be determined by inspection. If this is not
the case then an error is returned.
Please read L<guestfs(3)/INSPECTION> for more details.
=head2 inspect-is-live
inspect-is-live root
If L</inspect-get-format> returns C<installer> (this
is an install disk), then this returns true if a live image
was detected on the disk.
Please read L<guestfs(3)/INSPECTION> for more details.
=head2 inspect-is-multipart
inspect-is-multipart root
If L</inspect-get-format> returns C<installer> (this
is an install disk), then this returns true if the disk is
part of a set.
Please read L<guestfs(3)/INSPECTION> for more details.
=head2 inspect-is-netinst
inspect-is-netinst root
If L</inspect-get-format> returns C<installer> (this
is an install disk), then this returns true if the disk is
a network installer, ie. not a self-contained install CD but
one which is likely to require network access to complete
the install.
Please read L<guestfs(3)/INSPECTION> for more details.
=head2 inspect-list-applications
inspect-list-applications root
Return the list of applications installed in the operating system.
I<Note:> This call works differently from other parts of the
inspection API. You have to call L</inspect-os>, then
L</inspect-get-mountpoints>, then mount up the disks,
before calling this. Listing applications is a significantly
more difficult operation which requires access to the full
filesystem. Also note that unlike the other
L</inspect-get-*> calls which are just returning
data cached in the libguestfs handle, this call actually reads
parts of the mounted filesystems during the call.
This returns an empty list if the inspection code was not able
to determine the list of applications.
The application structure contains the following fields:
=over 4
=item C<app_name>
The name of the application. For Red Hat-derived and Debian-derived
Linux guests, this is the package name.
=item C<app_display_name>
The display name of the application, sometimes localized to the
install language of the guest operating system.
If unavailable this is returned as an empty string C<"">.
Callers needing to display something can use C<app_name> instead.
=item C<app_epoch>
For package managers which use epochs, this contains the epoch of
the package (an integer). If unavailable, this is returned as C<0>.
=item C<app_version>
The version string of the application or package. If unavailable
this is returned as an empty string C<"">.
=item C<app_release>
The release string of the application or package, for package
managers that use this. If unavailable this is returned as an
empty string C<"">.
=item C<app_install_path>
The installation path of the application (on operating systems
such as Windows which use installation paths). This path is
in the format used by the guest operating system, it is not
a libguestfs path.
If unavailable this is returned as an empty string C<"">.
=item C<app_trans_path>
The install path translated into a libguestfs path.
If unavailable this is returned as an empty string C<"">.
=item C<app_publisher>
The name of the publisher of the application, for package
managers that use this. If unavailable this is returned
as an empty string C<"">.
=item C<app_url>
The URL (eg. upstream URL) of the application.
If unavailable this is returned as an empty string C<"">.
=item C<app_source_package>
For packaging systems which support this, the name of the source
package. If unavailable this is returned as an empty string C<"">.
=item C<app_summary>
A short (usually one line) description of the application or package.
If unavailable this is returned as an empty string C<"">.
=item C<app_description>
A longer description of the application or package.
If unavailable this is returned as an empty string C<"">.
=back
Please read L<guestfs(3)/INSPECTION> for more details.
=head2 inspect-os
inspect-os
This function uses other libguestfs functions and certain
heuristics to inspect the disk(s) (usually disks belonging to
a virtual machine), looking for operating systems.
The list returned is empty if no operating systems were found.
If one operating system was found, then this returns a list with
a single element, which is the name of the root filesystem of
this operating system. It is also possible for this function
to return a list containing more than one element, indicating
a dual-boot or multi-boot virtual machine, with each element being
the root filesystem of one of the operating systems.
You can pass the root string(s) returned to other
L</inspect-get-*> functions in order to query further
information about each operating system, such as the name
and version.
This function uses other libguestfs features such as
L</mount-ro> and L</umount-all> in order to mount
and unmount filesystems and look at the contents. This should
be called with no disks currently mounted. The function may also
use Augeas, so any existing Augeas handle will be closed.
This function cannot decrypt encrypted disks. The caller
must do that first (supplying the necessary keys) if the
disk is encrypted.
Please read L<guestfs(3)/INSPECTION> for more details.
See also L</list-filesystems>.
=head2 is-blockdev
is-blockdev path
This returns C<true> if and only if there is a block device
with the given C<path> name.
See also L</stat>.
=head2 is-chardev
is-chardev path
This returns C<true> if and only if there is a character device
with the given C<path> name.
See also L</stat>.
=head2 is-config
is-config
This returns true iff this handle is being configured
(in the C<CONFIG> state).
For more information on states, see L<guestfs(3)>.
=head2 is-dir
is-dir path
This returns C<true> if and only if there is a directory
with the given C<path> name. Note that it returns false for
other objects like files.
See also L</stat>.
=head2 is-fifo
is-fifo path
This returns C<true> if and only if there is a FIFO (named pipe)
with the given C<path> name.
See also L</stat>.
=head2 is-file
is-file path
This returns C<true> if and only if there is a regular file
with the given C<path> name. Note that it returns false for
other objects like directories.
See also L</stat>.
=head2 is-launching
is-launching
This returns true iff this handle is launching the subprocess
(in the C<LAUNCHING> state).
For more information on states, see L<guestfs(3)>.
=head2 is-lv
is-lv device
This command tests whether C<device> is a logical volume, and
returns true iff this is the case.
=head2 is-ready
is-ready
This returns true iff this handle is ready to accept commands
(in the C<READY> state).
For more information on states, see L<guestfs(3)>.
=head2 is-socket
is-socket path
This returns C<true> if and only if there is a Unix domain socket
with the given C<path> name.
See also L</stat>.
=head2 is-symlink
is-symlink path
This returns C<true> if and only if there is a symbolic link
with the given C<path> name.
See also L</stat>.
=head2 is-zero
is-zero path
This returns true iff the file exists and the file is empty or
it contains all zero bytes.
=head2 is-zero-device
is-zero-device device
This returns true iff the device exists and contains all zero bytes.
Note that for large devices this can take a long time to run.
=head2 isoinfo
isoinfo isofile
This is the same as L</isoinfo-device> except that it
works for an ISO file located inside some other mounted filesystem.
Note that in the common case where you have added an ISO file
as a libguestfs device, you would I<not> call this. Instead
you would call L</isoinfo-device>.
=head2 isoinfo-device
isoinfo-device device
C<device> is an ISO device. This returns a struct of information
read from the primary volume descriptor (the ISO equivalent of the
superblock) of the device.
Usually it is more efficient to use the L<isoinfo(1)> command
with the I<-d> option on the host to analyze ISO files,
instead of going through libguestfs.
For information on the primary volume descriptor fields, see
L<http://wiki.osdev.org/ISO_9660#The_Primary_Volume_Descriptor>
=head2 kill-subprocess
kill-subprocess
This kills the qemu subprocess. You should never need to call this.
=head2 launch
=head2 run
launch
Internally libguestfs is implemented by running a virtual machine
using L<qemu(1)>.
You should call this after configuring the handle
(eg. adding drives) but before performing any actions.
=head2 lchown
lchown owner group path
Change the file owner to C<owner> and group to C<group>.
This is like L</chown> but if C<path> is a symlink then
the link itself is changed, not the target.
Only numeric uid and gid are supported. If you want to use
names, you will need to locate and parse the password file
yourself (Augeas support makes this relatively easy).
=head2 lgetxattr
lgetxattr path name
Get a single extended attribute from file C<path> named C<name>.
If C<path> is a symlink, then this call returns an extended
attribute from the symlink.
Normally it is better to get all extended attributes from a file
in one go by calling L</getxattrs>. However some Linux
filesystem implementations are buggy and do not provide a way to
list out attributes. For these filesystems (notably ntfs-3g)
you have to know the names of the extended attributes you want
in advance and call this function.
Extended attribute values are blobs of binary data. If there
is no extended attribute named C<name>, this returns an error.
See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>.
=head2 lgetxattrs
lgetxattrs path
This is the same as L</getxattrs>, but if C<path>
is a symbolic link, then it returns the extended attributes
of the link itself.
=head2 list-9p
list-9p
List all 9p filesystems attached to the guest. A list of
mount tags is returned.
=head2 list-devices
list-devices
List all the block devices.
The full block device names are returned, eg. C</dev/sda>.
See also L</list-filesystems>.
=head2 list-dm-devices
list-dm-devices
List all device mapper devices.
The returned list contains C</dev/mapper/*> devices, eg. ones created
by a previous call to L</luks-open>.
Device mapper devices which correspond to logical volumes are I<not>
returned in this list. Call L</lvs> if you want to list logical
volumes.
=head2 list-filesystems
list-filesystems
This inspection command looks for filesystems on partitions,
block devices and logical volumes, returning a list of devices
containing filesystems and their type.
The return value is a hash, where the keys are the devices
containing filesystems, and the values are the filesystem types.
For example:
"/dev/sda1" => "ntfs"
"/dev/sda2" => "ext2"
"/dev/vg_guest/lv_root" => "ext4"
"/dev/vg_guest/lv_swap" => "swap"
The value can have the special value "unknown", meaning the
content of the device is undetermined or empty.
"swap" means a Linux swap partition.
This command runs other libguestfs commands, which might include
L</mount> and L</umount>, and therefore you should
use this soon after launch and only when nothing is mounted.
Not all of the filesystems returned will be mountable. In
particular, swap partitions are returned in the list. Also
this command does not check that each filesystem
found is valid and mountable, and some filesystems might
be mountable but require special options. Filesystems may
not all belong to a single logical operating system
(use L</inspect-os> to look for OSes).
=head2 list-md-devices
list-md-devices
List all Linux md devices.
=head2 list-partitions
list-partitions
List all the partitions detected on all block devices.
The full partition device names are returned, eg. C</dev/sda1>
This does not return logical volumes. For that you will need to
call L</lvs>.
See also L</list-filesystems>.
=head2 ll
ll directory
List the files in C<directory> (relative to the root directory,
there is no cwd) in the format of 'ls -la'.
This command is mostly useful for interactive sessions. It
is I<not> intended that you try to parse the output string.
=head2 llz
llz directory
List the files in C<directory> in the format of 'ls -laZ'.
This command is mostly useful for interactive sessions. It
is I<not> intended that you try to parse the output string.
=head2 ln
ln target linkname
This command creates a hard link using the C<ln> command.
=head2 ln-f
ln-f target linkname
This command creates a hard link using the C<ln -f> command.
The I<-f> option removes the link (C<linkname>) if it exists already.
=head2 ln-s
ln-s target linkname
This command creates a symbolic link using the C<ln -s> command.
=head2 ln-sf
ln-sf target linkname
This command creates a symbolic link using the C<ln -sf> command,
The I<-f> option removes the link (C<linkname>) if it exists already.
=head2 lremovexattr
lremovexattr xattr path
This is the same as L</removexattr>, but if C<path>
is a symbolic link, then it removes an extended attribute
of the link itself.
=head2 ls
ls directory
List the files in C<directory> (relative to the root directory,
there is no cwd). The '.' and '..' entries are not returned, but
hidden files are shown.
This command is mostly useful for interactive sessions. Programs
should probably use L</readdir> instead.
=head2 lsetxattr
lsetxattr xattr val vallen path
This is the same as L</setxattr>, but if C<path>
is a symbolic link, then it sets an extended attribute
of the link itself.
=head2 lstat
lstat path
Returns file information for the given C<path>.
This is the same as L</stat> except that if C<path>
is a symbolic link, then the link is stat-ed, not the file it
refers to.
This is the same as the C<lstat(2)> system call.
=head2 lstatlist
lstatlist path 'names ...'
This call allows you to perform the L</lstat> operation
on multiple files, where all files are in the directory C<path>.
C<names> is the list of files from this directory.
On return you get a list of stat structs, with a one-to-one
correspondence to the C<names> list. If any name did not exist
or could not be lstat'd, then the C<ino> field of that structure
is set to C<-1>.
This call is intended for programs that want to efficiently
list a directory contents without making many round-trips.
See also L</lxattrlist> for a similarly efficient call
for getting extended attributes. Very long directory listings
might cause the protocol message size to be exceeded, causing
this call to fail. The caller must split up such requests
into smaller groups of names.
=head2 luks-add-key
luks-add-key device keyslot
This command adds a new key on LUKS device C<device>.
C<key> is any existing key, and is used to access the device.
C<newkey> is the new key to add. C<keyslot> is the key slot
that will be replaced.
Note that if C<keyslot> already contains a key, then this
command will fail. You have to use L</luks-kill-slot>
first to remove that key.
This command has one or more key or passphrase parameters.
Guestfish will prompt for these separately.
=head2 luks-close
luks-close device
This closes a LUKS device that was created earlier by
L</luks-open> or L</luks-open-ro>. The
C<device> parameter must be the name of the LUKS mapping
device (ie. C</dev/mapper/mapname>) and I<not> the name
of the underlying block device.
=head2 luks-format
luks-format device keyslot
This command erases existing data on C<device> and formats
the device as a LUKS encrypted device. C<key> is the
initial key, which is added to key slot C<slot>. (LUKS
supports 8 key slots, numbered 0-7).
This command has one or more key or passphrase parameters.
Guestfish will prompt for these separately.
=head2 luks-format-cipher
luks-format-cipher device keyslot cipher
This command is the same as L</luks-format> but
it also allows you to set the C<cipher> used.
This command has one or more key or passphrase parameters.
Guestfish will prompt for these separately.
=head2 luks-kill-slot
luks-kill-slot device keyslot
This command deletes the key in key slot C<keyslot> from the
encrypted LUKS device C<device>. C<key> must be one of the
I<other> keys.
This command has one or more key or passphrase parameters.
Guestfish will prompt for these separately.
=head2 luks-open
luks-open device mapname
This command opens a block device which has been encrypted
according to the Linux Unified Key Setup (LUKS) standard.
C<device> is the encrypted block device or partition.
The caller must supply one of the keys associated with the
LUKS block device, in the C<key> parameter.
This creates a new block device called C</dev/mapper/mapname>.
Reads and writes to this block device are decrypted from and
encrypted to the underlying C<device> respectively.
If this block device contains LVM volume groups, then
calling L</vgscan> followed by L</vg-activate-all>
will make them visible.
Use L</list-dm-devices> to list all device mapper
devices.
This command has one or more key or passphrase parameters.
Guestfish will prompt for these separately.
=head2 luks-open-ro
luks-open-ro device mapname
This is the same as L</luks-open> except that a read-only
mapping is created.
This command has one or more key or passphrase parameters.
Guestfish will prompt for these separately.
=head2 lvcreate
lvcreate logvol volgroup mbytes
This creates an LVM logical volume called C<logvol>
on the volume group C<volgroup>, with C<size> megabytes.
=head2 lvcreate-free
lvcreate-free logvol volgroup percent
Create an LVM logical volume called C</dev/volgroup/logvol>,
using approximately C<percent> % of the free space remaining
in the volume group. Most usefully, when C<percent> is C<100>
this will create the largest possible LV.
=head2 lvm-canonical-lv-name
lvm-canonical-lv-name lvname
This converts alternative naming schemes for LVs that you
might find to the canonical name. For example, C</dev/mapper/VG-LV>
is converted to C</dev/VG/LV>.
This command returns an error if the C<lvname> parameter does
not refer to a logical volume.
See also L</is-lv>.
=head2 lvm-clear-filter
lvm-clear-filter
This undoes the effect of L</lvm-set-filter>. LVM
will be able to see every block device.
This command also clears the LVM cache and performs a volume
group scan.
=head2 lvm-remove-all
lvm-remove-all
This command removes all LVM logical volumes, volume groups
and physical volumes.
=head2 lvm-set-filter
lvm-set-filter 'devices ...'
This sets the LVM device filter so that LVM will only be
able to "see" the block devices in the list C<devices>,
and will ignore all other attached block devices.
Where disk image(s) contain duplicate PVs or VGs, this
command is useful to get LVM to ignore the duplicates, otherwise
LVM can get confused. Note also there are two types
of duplication possible: either cloned PVs/VGs which have
identical UUIDs; or VGs that are not cloned but just happen
to have the same name. In normal operation you cannot
create this situation, but you can do it outside LVM, eg.
by cloning disk images or by bit twiddling inside the LVM
metadata.
This command also clears the LVM cache and performs a volume
group scan.
You can filter whole block devices or individual partitions.
You cannot use this if any VG is currently in use (eg.
contains a mounted filesystem), even if you are not
filtering out that VG.
=head2 lvremove
lvremove device
Remove an LVM logical volume C<device>, where C<device> is
the path to the LV, such as C</dev/VG/LV>.
You can also remove all LVs in a volume group by specifying
the VG name, C</dev/VG>.
=head2 lvrename
lvrename logvol newlogvol
Rename a logical volume C<logvol> with the new name C<newlogvol>.
=head2 lvresize
lvresize device mbytes
This resizes (expands or shrinks) an existing LVM logical
volume to C<mbytes>. When reducing, data in the reduced part
is lost.
=head2 lvresize-free
lvresize-free lv percent
This expands an existing logical volume C<lv> so that it fills
C<pc>% of the remaining free space in the volume group. Commonly
you would call this with pc = 100 which expands the logical volume
as much as possible, using all remaining free space in the volume
group.
=head2 lvs
lvs
List all the logical volumes detected. This is the equivalent
of the L<lvs(8)> command.
This returns a list of the logical volume device names
(eg. C</dev/VolGroup00/LogVol00>).
See also L</lvs-full>, L</list-filesystems>.
=head2 lvs-full
lvs-full
List all the logical volumes detected. This is the equivalent
of the L<lvs(8)> command. The "full" version includes all fields.
=head2 lvuuid
lvuuid device
This command returns the UUID of the LVM LV C<device>.
=head2 lxattrlist
lxattrlist path 'names ...'
This call allows you to get the extended attributes
of multiple files, where all files are in the directory C<path>.
C<names> is the list of files from this directory.
On return you get a flat list of xattr structs which must be
interpreted sequentially. The first xattr struct always has a zero-length
C<attrname>. C<attrval> in this struct is zero-length
to indicate there was an error doing C<lgetxattr> for this
file, I<or> is a C string which is a decimal number
(the number of following attributes for this file, which could
be C<"0">). Then after the first xattr struct are the
zero or more attributes for the first named file.
This repeats for the second and subsequent files.
This call is intended for programs that want to efficiently
list a directory contents without making many round-trips.
See also L</lstatlist> for a similarly efficient call
for getting standard stats. Very long directory listings
might cause the protocol message size to be exceeded, causing
this call to fail. The caller must split up such requests
into smaller groups of names.
=head2 md-create
md-create name 'devices ...' [missingbitmap:N] [nrdevices:N] [spare:N] [chunk:N] [level:..]
Create a Linux md (RAID) device named C<name> on the devices
in the list C<devices>.
The optional parameters are:
=over 4
=item C<missingbitmap>
A bitmap of missing devices. If a bit is set it means that a
missing device is added to the array. The least significant bit
corresponds to the first device in the array.
As examples:
If C<devices = ["/dev/sda"]> and C<missingbitmap = 0x1> then
the resulting array would be C<[E<lt>missingE<gt>, "/dev/sda"]>.
If C<devices = ["/dev/sda"]> and C<missingbitmap = 0x2> then
the resulting array would be C<["/dev/sda", E<lt>missingE<gt>]>.
This defaults to C<0> (no missing devices).
The length of C<devices> + the number of bits set in
C<missingbitmap> must equal C<nrdevices> + C<spare>.
=item C<nrdevices>
The number of active RAID devices.
If not set, this defaults to the length of C<devices> plus
the number of bits set in C<missingbitmap>.
=item C<spare>
The number of spare devices.
If not set, this defaults to C<0>.
=item C<chunk>
The chunk size in bytes.
=item C<level>
The RAID level, which can be one of:
I<linear>, I<raid0>, I<0>, I<stripe>, I<raid1>, I<1>, I<mirror>,
I<raid4>, I<4>, I<raid5>, I<5>, I<raid6>, I<6>, I<raid10>, I<10>.
Some of these are synonymous, and more levels may be added in future.
If not set, this defaults to C<raid1>.
=back
This command has one or more optional arguments. See L</OPTIONAL ARGUMENTS>.
=head2 md-detail
md-detail md
This command exposes the output of 'mdadm -DY E<lt>mdE<gt>'.
The following fields are usually present in the returned hash.
Other fields may also be present.
=over
=item C<level>
The raid level of the MD device.
=item C<devices>
The number of underlying devices in the MD device.
=item C<metadata>
The metadata version used.
=item C<uuid>
The UUID of the MD device.
=item C<name>
The name of the MD device.
=back
=head2 md-stat
md-stat md
This call returns a list of the underlying devices which make
up the single software RAID array device C<md>.
To get a list of software RAID devices, call L</list-md-devices>.
Each structure returned corresponds to one device along with
additional status information:
=over 4
=item C<mdstat_device>
The name of the underlying device.
=item C<mdstat_index>
The index of this device within the array.
=item C<mdstat_flags>
Flags associated with this device. This is a string containing
(in no specific order) zero or more of the following flags:
=over 4
=item C<W>
write-mostly
=item C<F>
device is faulty
=item C<S>
device is a RAID spare
=item C<R>
replacement
=back
=back
=head2 md-stop
md-stop md
This command deactivates the MD array named C<md>. The
device is stopped, but it is not destroyed or zeroed.
=head2 mkdir
mkdir path
Create a directory named C<path>.
=head2 mkdir-mode
mkdir-mode path mode
This command creates a directory, setting the initial permissions
of the directory to C<mode>.
For common Linux filesystems, the actual mode which is set will
be C<mode & ~umask & 01777>. Non-native-Linux filesystems may
interpret the mode in other ways.
See also L</mkdir>, L</umask>
=head2 mkdir-p
mkdir-p path
Create a directory named C<path>, creating any parent directories
as necessary. This is like the C<mkdir -p> shell command.
=head2 mkdtemp
mkdtemp tmpl
This command creates a temporary directory. The
C<tmpl> parameter should be a full pathname for the
temporary directory name with the final six characters being
"XXXXXX".
For example: "/tmp/myprogXXXXXX" or "/Temp/myprogXXXXXX",
the second one being suitable for Windows filesystems.
The name of the temporary directory that was created
is returned.
The temporary directory is created with mode 0700
and is owned by root.
The caller is responsible for deleting the temporary
directory and its contents after use.
See also: L<mkdtemp(3)>
=head2 mke2fs-J
mke2fs-J fstype blocksize device journal
This creates an ext2/3/4 filesystem on C<device> with
an external journal on C<journal>. It is equivalent
to the command:
mke2fs -t fstype -b blocksize -J device=<journal> <device>
See also L</mke2journal>.
=head2 mke2fs-JL
mke2fs-JL fstype blocksize device label
This creates an ext2/3/4 filesystem on C<device> with
an external journal on the journal labeled C<label>.
See also L</mke2journal-L>.
=head2 mke2fs-JU
mke2fs-JU fstype blocksize device uuid
This creates an ext2/3/4 filesystem on C<device> with
an external journal on the journal with UUID C<uuid>.
See also L</mke2journal-U>.
=head2 mke2journal
mke2journal blocksize device
This creates an ext2 external journal on C<device>. It is equivalent
to the command:
mke2fs -O journal_dev -b blocksize device
=head2 mke2journal-L
mke2journal-L blocksize label device
This creates an ext2 external journal on C<device> with label C<label>.
=head2 mke2journal-U
mke2journal-U blocksize uuid device
This creates an ext2 external journal on C<device> with UUID C<uuid>.
=head2 mkfifo
mkfifo mode path
This call creates a FIFO (named pipe) called C<path> with
mode C<mode>. It is just a convenient wrapper around
L</mknod>.
The mode actually set is affected by the umask.
=head2 mkfs
mkfs fstype device
This creates a filesystem on C<device> (usually a partition
or LVM logical volume). The filesystem type is C<fstype>, for
example C<ext3>.
=head2 mkfs-b
mkfs-b fstype blocksize device
This call is similar to L</mkfs>, but it allows you to
control the block size of the resulting filesystem. Supported
block sizes depend on the filesystem type, but typically they
are C<1024>, C<2048> or C<4096> only.
For VFAT and NTFS the C<blocksize> parameter is treated as
the requested cluster size.
I<This function is deprecated.>
In new code, use the L</mkfs_opts> call instead.
Deprecated functions will not be removed from the API, but the
fact that they are deprecated indicates that there are problems
with correct use of these functions.
=head2 mkfs-btrfs
mkfs-btrfs 'devices ...' [allocstart:N] [bytecount:N] [datatype:..] [leafsize:N] [label:..] [metadata:..] [nodesize:N] [sectorsize:N]
Create a btrfs filesystem, allowing all configurables to be set.
For more information on the optional arguments, see L<mkfs.btrfs(8)>.
Since btrfs filesystems can span multiple devices, this takes a
non-empty list of devices.
To create general filesystems, use L</mkfs-opts>.
This command has one or more optional arguments. See L</OPTIONAL ARGUMENTS>.
=head2 mkfs-opts
mkfs-opts fstype device [blocksize:N] [features:..] [inode:N] [sectorsize:N]
This function creates a filesystem on C<device>. The filesystem
type is C<fstype>, for example C<ext3>.
The optional arguments are:
=over 4
=item C<blocksize>
The filesystem block size. Supported block sizes depend on the
filesystem type, but typically they are C<1024>, C<2048> or C<4096>
for Linux ext2/3 filesystems.
For VFAT and NTFS the C<blocksize> parameter is treated as
the requested cluster size.
For UFS block sizes, please see L<mkfs.ufs(8)>.
=item C<features>
This passes the I<-O> parameter to the external mkfs program.
For certain filesystem types, this allows extra filesystem
features to be selected. See L<mke2fs(8)> and L<mkfs.ufs(8)>
for more details.
You cannot use this optional parameter with the C<gfs> or
C<gfs2> filesystem type.
=item C<inode>
This passes the I<-I> parameter to the external L<mke2fs(8)> program
which sets the inode size (only for ext2/3/4 filesystems at present).
=item C<sectorsize>
This passes the I<-S> parameter to external L<mkfs.ufs(8)> program,
which sets sector size for ufs filesystem.
=back
This command has one or more optional arguments. See L</OPTIONAL ARGUMENTS>.
=head2 mkmountpoint
mkmountpoint exemptpath
L</mkmountpoint> and L</rmmountpoint> are
specialized calls that can be used to create extra mountpoints
before mounting the first filesystem.
These calls are I<only> necessary in some very limited circumstances,
mainly the case where you want to mount a mix of unrelated and/or
read-only filesystems together.
For example, live CDs often contain a "Russian doll" nest of
filesystems, an ISO outer layer, with a squashfs image inside, with
an ext2/3 image inside that. You can unpack this as follows
in guestfish:
add-ro Fedora-11-i686-Live.iso
run
mkmountpoint /cd
mkmountpoint /sqsh
mkmountpoint /ext3fs
mount /dev/sda /cd
mount-loop /cd/LiveOS/squashfs.img /sqsh
mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs
The inner filesystem is now unpacked under the /ext3fs mountpoint.
L</mkmountpoint> is not compatible with L</umount-all>.
You may get unexpected errors if you try to mix these calls. It is
safest to manually unmount filesystems and remove mountpoints after use.
L</umount-all> unmounts filesystems by sorting the paths
longest first, so for this to work for manual mountpoints, you
must ensure that the innermost mountpoints have the longest
pathnames, as in the example code above.
For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>
Autosync [see L</set-autosync>, this is set by default on
handles] can cause L</umount-all> to be called when the handle
is closed which can also trigger these issues.
=head2 mknod
mknod mode devmajor devminor path
This call creates block or character special devices, or
named pipes (FIFOs).
The C<mode> parameter should be the mode, using the standard
constants. C<devmajor> and C<devminor> are the
device major and minor numbers, only used when creating block
and character special devices.
Note that, just like L<mknod(2)>, the mode must be bitwise
OR'd with S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call
just creates a regular file). These constants are
available in the standard Linux header files, or you can use
L</mknod-b>, L</mknod-c> or L</mkfifo>
which are wrappers around this command which bitwise OR
in the appropriate constant for you.
The mode actually set is affected by the umask.
=head2 mknod-b
mknod-b mode devmajor devminor path
This call creates a block device node called C<path> with
mode C<mode> and device major/minor C<devmajor> and C<devminor>.
It is just a convenient wrapper around L</mknod>.
The mode actually set is affected by the umask.
=head2 mknod-c
mknod-c mode devmajor devminor path
This call creates a char device node called C<path> with
mode C<mode> and device major/minor C<devmajor> and C<devminor>.
It is just a convenient wrapper around L</mknod>.
The mode actually set is affected by the umask.
=head2 mkswap
mkswap device
Create a swap partition on C<device>.
=head2 mkswap-L
mkswap-L label device
Create a swap partition on C<device> with label C<label>.
Note that you cannot attach a swap label to a block device
(eg. C</dev/sda>), just to a partition. This appears to be
a limitation of the kernel or swap tools.
=head2 mkswap-U
mkswap-U uuid device
Create a swap partition on C<device> with UUID C<uuid>.
=head2 mkswap-file
mkswap-file path
Create a swap file.
This command just writes a swap file signature to an existing
file. To create the file itself, use something like L</fallocate>.
=head2 modprobe
modprobe modulename
This loads a kernel module in the appliance.
The kernel module must have been whitelisted when libguestfs
was built (see C<appliance/kmod.whitelist.in> in the source).
=head2 mount
mount device mountpoint
Mount a guest disk at a position in the filesystem. Block devices
are named C</dev/sda>, C</dev/sdb> and so on, as they were added to
the guest. If those block devices contain partitions, they will have
the usual names (eg. C</dev/sda1>). Also LVM C</dev/VG/LV>-style
names can be used.
The rules are the same as for L<mount(2)>: A filesystem must
first be mounted on C</> before others can be mounted. Other
filesystems can only be mounted on directories which already
exist.
The mounted filesystem is writable, if we have sufficient permissions
on the underlying device.
Before libguestfs 1.13.16, this call implicitly added the options
C<sync> and C<noatime>. The C<sync> option greatly slowed
writes and caused many problems for users. If your program
might need to work with older versions of libguestfs, use
L</mount-options> instead (using an empty string for the
first parameter if you don't want any options).
=head2 mount-9p
mount-9p mounttag mountpoint [options:..]
Mount the virtio-9p filesystem with the tag C<mounttag> on the
directory C<mountpoint>.
If required, C<trans=virtio> will be automatically added to the options.
Any other options required can be passed in the optional C<options>
parameter.
This command has one or more optional arguments. See L</OPTIONAL ARGUMENTS>.
=head2 mount-local
mount-local localmountpoint [readonly:true|false] [options:..] [cachetimeout:N] [debugcalls:true|false]
This call exports the libguestfs-accessible filesystem to
a local mountpoint (directory) called C<localmountpoint>.
Ordinary reads and writes to files and directories under
C<localmountpoint> are redirected through libguestfs.
If the optional C<readonly> flag is set to true, then
writes to the filesystem return error C<EROFS>.
C<options> is a comma-separated list of mount options.
See L<guestmount(1)> for some useful options.
C<cachetimeout> sets the timeout (in seconds) for cached directory
entries. The default is 60 seconds. See L<guestmount(1)>
for further information.
If C<debugcalls> is set to true, then additional debugging
information is generated for every FUSE call.
When L</mount-local> returns, the filesystem is ready,
but is not processing requests (access to it will block). You
have to call L</mount-local-run> to run the main loop.
See L<guestfs(3)/MOUNT LOCAL> for full documentation.
This command has one or more optional arguments. See L</OPTIONAL ARGUMENTS>.
=head2 mount-local-run
mount-local-run
Run the main loop which translates kernel calls to libguestfs
calls.
This should only be called after L</mount-local>
returns successfully. The call will not return until the
filesystem is unmounted.
B<Note> you must I<not> make concurrent libguestfs calls
on the same handle from another thread,
with the exception of L</umount-local>.
You may call this from a different thread than the one which
called L</mount-local>, subject to the usual rules
for threads and libguestfs (see
L<guestfs(3)/MULTIPLE HANDLES AND MULTIPLE THREADS>).
See L<guestfs(3)/MOUNT LOCAL> for full documentation.
=head2 mount-loop
mount-loop file mountpoint
This command lets you mount C<file> (a filesystem image
in a file) on a mount point. It is entirely equivalent to
the command C<mount -o loop file mountpoint>.
=head2 mount-options
mount-options options device mountpoint
This is the same as the L</mount> command, but it
allows you to set the mount options as for the
L<mount(8)> I<-o> flag.
If the C<options> parameter is an empty string, then
no options are passed (all options default to whatever
the filesystem uses).
=head2 mount-ro
mount-ro device mountpoint
This is the same as the L</mount> command, but it
mounts the filesystem with the read-only (I<-o ro>) flag.
=head2 mount-vfs
mount-vfs options vfstype device mountpoint
This is the same as the L</mount> command, but it
allows you to set both the mount options and the vfstype
as for the L<mount(8)> I<-o> and I<-t> flags.
=head2 mountpoints
mountpoints
This call is similar to L</mounts>. That call returns
a list of devices. This one returns a hash table (map) of
device name to directory where the device is mounted.
=head2 mounts
mounts
This returns the list of currently mounted filesystems. It returns
the list of devices (eg. C</dev/sda1>, C</dev/VG/LV>).
Some internal mounts are not shown.
See also: L</mountpoints>
=head2 mv
mv src dest
This moves a file from C<src> to C<dest> where C<dest> is
either a destination filename or destination directory.
=head2 ntfs-3g-probe
ntfs-3g-probe true|false device
This command runs the L<ntfs-3g.probe(8)> command which probes
an NTFS C<device> for mountability. (Not all NTFS volumes can
be mounted read-write, and some cannot be mounted at all).
C<rw> is a boolean flag. Set it to true if you want to test
if the volume can be mounted read-write. Set it to false if
you want to test if the volume can be mounted read-only.
The return value is an integer which C<0> if the operation
would succeed, or some non-zero value documented in the
L<ntfs-3g.probe(8)> manual page.
=head2 ntfsclone-in
ntfsclone-in (backupfile|-) device
Restore the C<backupfile> (from a previous call to
L</ntfsclone-out>) to C<device>, overwriting
any existing contents of this device.
Use C<-> instead of a filename to read/write from stdin/stdout.
=head2 ntfsclone-out
ntfsclone-out device (backupfile|-) [metadataonly:true|false] [rescue:true|false] [ignorefscheck:true|false] [preservetimestamps:true|false] [force:true|false]
Stream the NTFS filesystem C<device> to the local file
C<backupfile>. The format used for the backup file is a
special format used by the L<ntfsclone(8)> tool.
If the optional C<metadataonly> flag is true, then I<only> the
metadata is saved, losing all the user data (this is useful
for diagnosing some filesystem problems).
The optional C<rescue>, C<ignorefscheck>, C<preservetimestamps>
and C<force> flags have precise meanings detailed in the
L<ntfsclone(8)> man page.
Use L</ntfsclone-in> to restore the file back to a
libguestfs device.
Use C<-> instead of a filename to read/write from stdin/stdout.
This command has one or more optional arguments. See L</OPTIONAL ARGUMENTS>.
=head2 ntfsfix
ntfsfix device [clearbadsectors:true|false]
This command repairs some fundamental NTFS inconsistencies,
resets the NTFS journal file, and schedules an NTFS consistency
check for the first boot into Windows.
This is I<not> an equivalent of Windows C<chkdsk>. It does I<not>
scan the filesystem for inconsistencies.
The optional C<clearbadsectors> flag clears the list of bad sectors.
This is useful after cloning a disk with bad sectors to a new disk.
This command has one or more optional arguments. See L</OPTIONAL ARGUMENTS>.
=head2 ntfsresize
ntfsresize device
This command resizes an NTFS filesystem, expanding or
shrinking it to the size of the underlying device.
I<Note:> After the resize operation, the filesystem is marked
as requiring a consistency check (for safety). You have to boot
into Windows to perform this check and clear this condition.
Furthermore, ntfsresize refuses to resize filesystems
which have been marked in this way. So in effect it is
not possible to call ntfsresize multiple times on a single
filesystem without booting into Windows between each resize.
See also L<ntfsresize(8)>.
I<This function is deprecated.>
In new code, use the L</ntfsresize_opts> call instead.
Deprecated functions will not be removed from the API, but the
fact that they are deprecated indicates that there are problems
with correct use of these functions.
=head2 ntfsresize-opts
ntfsresize-opts device [size:N] [force:true|false]
This command resizes an NTFS filesystem, expanding or
shrinking it to the size of the underlying device.
The optional parameters are:
=over 4
=item C<size>
The new size (in bytes) of the filesystem. If omitted, the filesystem
is resized to fit the container (eg. partition).
=item C<force>
If this option is true, then force the resize of the filesystem
even if the filesystem is marked as requiring a consistency check.
After the resize operation, the filesystem is always marked
as requiring a consistency check (for safety). You have to boot
into Windows to perform this check and clear this condition.
If you I<don't> set the C<force> option then it is not
possible to call L</ntfsresize-opts> multiple times on a
single filesystem without booting into Windows between each resize.
=back
See also L<ntfsresize(8)>.
This command has one or more optional arguments. See L</OPTIONAL ARGUMENTS>.
=head2 ntfsresize-size
ntfsresize-size device size
This command is the same as L</ntfsresize> except that it
allows you to specify the new size (in bytes) explicitly.
I<This function is deprecated.>
In new code, use the L</ntfsresize_opts> call instead.
Deprecated functions will not be removed from the API, but the
fact that they are deprecated indicates that there are problems
with correct use of these functions.
=head2 part-add
part-add device prlogex startsect endsect
This command adds a partition to C<device>. If there is no partition
table on the device, call L</part-init> first.
The C<prlogex> parameter is the type of partition. Normally you
should pass C<p> or C<primary> here, but MBR partition tables also
support C<l> (or C<logical>) and C<e> (or C<extended>) partition
types.
C<startsect> and C<endsect> are the start and end of the partition
in I<sectors>. C<endsect> may be negative, which means it counts
backwards from the end of the disk (C<-1> is the last sector).
Creating a partition which covers the whole disk is not so easy.
Use L</part-disk> to do that.
=head2 part-del
part-del device partnum
This command deletes the partition numbered C<partnum> on C<device>.
Note that in the case of MBR partitioning, deleting an
extended partition also deletes any logical partitions
it contains.
=head2 part-disk
part-disk device parttype
This command is simply a combination of L</part-init>
followed by L</part-add> to create a single primary partition
covering the whole disk.
C<parttype> is the partition table type, usually C<mbr> or C<gpt>,
but other possible values are described in L</part-init>.
=head2 part-get-bootable
part-get-bootable device partnum
This command returns true if the partition C<partnum> on
C<device> has the bootable flag set.
See also L</part-set-bootable>.
=head2 part-get-mbr-id
part-get-mbr-id device partnum
Returns the MBR type byte (also known as the ID byte) from
the numbered partition C<partnum>.
Note that only MBR (old DOS-style) partitions have type bytes.
You will get undefined results for other partition table
types (see L</part-get-parttype>).
=head2 part-get-parttype
part-get-parttype device
This command examines the partition table on C<device> and
returns the partition table type (format) being used.
Common return values include: C<msdos> (a DOS/Windows style MBR
partition table), C<gpt> (a GPT/EFI-style partition table). Other
values are possible, although unusual. See L</part-init>
for a full list.
=head2 part-init
part-init device parttype
This creates an empty partition table on C<device> of one of the
partition types listed below. Usually C<parttype> should be
either C<msdos> or C<gpt> (for large disks).
Initially there are no partitions. Following this, you should
call L</part-add> for each partition required.
Possible values for C<parttype> are:
=over 4
=item B<efi>
=item B<gpt>
Intel EFI / GPT partition table.
This is recommended for >= 2 TB partitions that will be accessed
from Linux and Intel-based Mac OS X. It also has limited backwards
compatibility with the C<mbr> format.
=item B<mbr>
=item B<msdos>
The standard PC "Master Boot Record" (MBR) format used
by MS-DOS and Windows. This partition type will B<only> work
for device sizes up to 2 TB. For large disks we recommend
using C<gpt>.
=back
Other partition table types that may work but are not
supported include:
=over 4
=item B<aix>
AIX disk labels.
=item B<amiga>
=item B<rdb>
Amiga "Rigid Disk Block" format.
=item B<bsd>
BSD disk labels.
=item B<dasd>
DASD, used on IBM mainframes.
=item B<dvh>
MIPS/SGI volumes.
=item B<mac>
Old Mac partition format. Modern Macs use C<gpt>.
=item B<pc98>
NEC PC-98 format, common in Japan apparently.
=item B<sun>
Sun disk labels.
=back
=head2 part-list
part-list device
This command parses the partition table on C<device> and
returns the list of partitions found.
The fields in the returned structure are:
=over 4
=item B<part_num>
Partition number, counting from 1.
=item B<part_start>
Start of the partition I<in bytes>. To get sectors you have to
divide by the device's sector size, see L</blockdev-getss>.
=item B<part_end>
End of the partition in bytes.
=item B<part_size>
Size of the partition in bytes.
=back
=head2 part-set-bootable
part-set-bootable device partnum true|false
This sets the bootable flag on partition numbered C<partnum> on
device C<device>. Note that partitions are numbered from 1.
The bootable flag is used by some operating systems (notably
Windows) to determine which partition to boot from. It is by
no means universally recognized.
=head2 part-set-mbr-id
part-set-mbr-id device partnum idbyte
Sets the MBR type byte (also known as the ID byte) of
the numbered partition C<partnum> to C<idbyte>. Note
that the type bytes quoted in most documentation are
in fact hexadecimal numbers, but usually documented
without any leading "0x" which might be confusing.
Note that only MBR (old DOS-style) partitions have type bytes.
You will get undefined results for other partition table
types (see L</part-get-parttype>).
=head2 part-set-name
part-set-name device partnum name
This sets the partition name on partition numbered C<partnum> on
device C<device>. Note that partitions are numbered from 1.
The partition name can only be set on certain types of partition
table. This works on C<gpt> but not on C<mbr> partitions.
=head2 part-to-dev
part-to-dev partition
This function takes a partition name (eg. "/dev/sdb1") and
removes the partition number, returning the device name
(eg. "/dev/sdb").
The named partition must exist, for example as a string returned
from L</list-partitions>.
See also L</part-to-partnum>.
=head2 part-to-partnum
part-to-partnum partition
This function takes a partition name (eg. "/dev/sdb1") and
returns the partition number (eg. C<1>).
The named partition must exist, for example as a string returned
from L</list-partitions>.
See also L</part-to-dev>.
=head2 ping-daemon
ping-daemon
This is a test probe into the guestfs daemon running inside
the qemu subprocess. Calling this function checks that the
daemon responds to the ping message, without affecting the daemon
or attached block device(s) in any other way.
=head2 pread
pread path count offset
This command lets you read part of a file. It reads C<count>
bytes of the file, starting at C<offset>, from file C<path>.
This may read fewer bytes than requested. For further details
see the L<pread(2)> system call.
See also L</pwrite>, L</pread-device>.
Because of the message protocol, there is a transfer limit
of somewhere between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>.
=head2 pread-device
pread-device device count offset
This command lets you read part of a file. It reads C<count>
bytes of C<device>, starting at C<offset>.
This may read fewer bytes than requested. For further details
see the L<pread(2)> system call.
See also L</pread>.
Because of the message protocol, there is a transfer limit
of somewhere between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>.
=head2 pvcreate
pvcreate device
This creates an LVM physical volume on the named C<device>,
where C<device> should usually be a partition name such
as C</dev/sda1>.
=head2 pvremove
pvremove device
This wipes a physical volume C<device> so that LVM will no longer
recognise it.
The implementation uses the C<pvremove> command which refuses to
wipe physical volumes that contain any volume groups, so you have
to remove those first.
=head2 pvresize
pvresize device
This resizes (expands or shrinks) an existing LVM physical
volume to match the new size of the underlying device.
=head2 pvresize-size
pvresize-size device size
This command is the same as L</pvresize> except that it
allows you to specify the new size (in bytes) explicitly.
=head2 pvs
pvs
List all the physical volumes detected. This is the equivalent
of the L<pvs(8)> command.
This returns a list of just the device names that contain
PVs (eg. C</dev/sda2>).
See also L</pvs-full>.
=head2 pvs-full
pvs-full
List all the physical volumes detected. This is the equivalent
of the L<pvs(8)> command. The "full" version includes all fields.
=head2 pvuuid
pvuuid device
This command returns the UUID of the LVM PV C<device>.
=head2 pwrite
pwrite path content offset
This command writes to part of a file. It writes the data
buffer C<content> to the file C<path> starting at offset C<offset>.
This command implements the L<pwrite(2)> system call, and like
that system call it may not write the full data requested. The
return value is the number of bytes that were actually written
to the file. This could even be 0, although short writes are
unlikely for regular files in ordinary circumstances.
See also L</pread>, L</pwrite-device>.
Because of the message protocol, there is a transfer limit
of somewhere between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>.
=head2 pwrite-device
pwrite-device device content offset
This command writes to part of a device. It writes the data
buffer C<content> to C<device> starting at offset C<offset>.
This command implements the L<pwrite(2)> system call, and like
that system call it may not write the full data requested
(although short writes to disk devices and partitions are
probably impossible with standard Linux kernels).
See also L</pwrite>.
Because of the message protocol, there is a transfer limit
of somewhere between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>.
=head2 read-file
read-file path
This calls returns the contents of the file C<path> as a
buffer.
Unlike L</cat>, this function can correctly
handle files that contain embedded ASCII NUL characters.
However unlike L</download>, this function is limited
in the total size of file that can be handled.
Because of the message protocol, there is a transfer limit
of somewhere between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>.
=head2 read-lines
read-lines path
Return the contents of the file named C<path>.
The file contents are returned as a list of lines. Trailing
C<LF> and C<CRLF> character sequences are I<not> returned.
Note that this function cannot correctly handle binary files
(specifically, files containing C<\0> character which is treated
as end of line). For those you need to use the L</read-file>
function which has a more complex interface.
=head2 readdir
readdir dir
This returns the list of directory entries in directory C<dir>.
All entries in the directory are returned, including C<.> and
C<..>. The entries are I<not> sorted, but returned in the same
order as the underlying filesystem.
Also this call returns basic file type information about each
file. The C<ftyp> field will contain one of the following characters:
=over 4
=item 'b'
Block special
=item 'c'
Char special
=item 'd'
Directory
=item 'f'
FIFO (named pipe)
=item 'l'
Symbolic link
=item 'r'
Regular file
=item 's'
Socket
=item 'u'
Unknown file type
=item '?'
The L<readdir(3)> call returned a C<d_type> field with an
unexpected value
=back
This function is primarily intended for use by programs. To
get a simple list of names, use L</ls>. To get a printable
directory for human consumption, use L</ll>.
=head2 readlink
readlink path
This command reads the target of a symbolic link.
=head2 readlinklist
readlinklist path 'names ...'
This call allows you to do a C<readlink> operation
on multiple files, where all files are in the directory C<path>.
C<names> is the list of files from this directory.
On return you get a list of strings, with a one-to-one
correspondence to the C<names> list. Each string is the
value of the symbolic link.
If the C<readlink(2)> operation fails on any name, then
the corresponding result string is the empty string C<"">.
However the whole operation is completed even if there
were C<readlink(2)> errors, and so you can call this
function with names where you don't know if they are
symbolic links already (albeit slightly less efficient).
This call is intended for programs that want to efficiently
list a directory contents without making many round-trips.
Very long directory listings might cause the protocol
message size to be exceeded, causing
this call to fail. The caller must split up such requests
into smaller groups of names.
=head2 realpath
realpath path
Return the canonicalized absolute pathname of C<path>. The
returned path has no C<.>, C<..> or symbolic link path elements.
=head2 removexattr
removexattr xattr path
This call removes the extended attribute named C<xattr>
of the file C<path>.
See also: L</lremovexattr>, L<attr(5)>.
=head2 resize2fs
resize2fs device
This resizes an ext2, ext3 or ext4 filesystem to match the size of
the underlying device.
See also L<guestfs(3)/RESIZE2FS ERRORS>.
=head2 resize2fs-M
resize2fs-M device
This command is the same as L</resize2fs>, but the filesystem
is resized to its minimum size. This works like the I<-M> option
to the C<resize2fs> command.
To get the resulting size of the filesystem you should call
L</tune2fs-l> and read the C<Block size> and C<Block count>
values. These two numbers, multiplied together, give the
resulting size of the minimal filesystem in bytes.
See also L<guestfs(3)/RESIZE2FS ERRORS>.
=head2 resize2fs-size
resize2fs-size device size
This command is the same as L</resize2fs> except that it
allows you to specify the new size (in bytes) explicitly.
See also L<guestfs(3)/RESIZE2FS ERRORS>.
=head2 rm
rm path
Remove the single file C<path>.
=head2 rm-rf
rm-rf path
Remove the file or directory C<path>, recursively removing the
contents if its a directory. This is like the C<rm -rf> shell
command.
=head2 rmdir
rmdir path
Remove the single directory C<path>.
=head2 rmmountpoint
rmmountpoint exemptpath
This calls removes a mountpoint that was previously created
with L</mkmountpoint>. See L</mkmountpoint>
for full details.
=head2 scrub-device
scrub-device device
This command writes patterns over C<device> to make data retrieval
more difficult.
It is an interface to the L<scrub(1)> program. See that
manual page for more details.
=head2 scrub-file
scrub-file file
This command writes patterns over a file to make data retrieval
more difficult.
The file is I<removed> after scrubbing.
It is an interface to the L<scrub(1)> program. See that
manual page for more details.
=head2 scrub-freespace
scrub-freespace dir
This command creates the directory C<dir> and then fills it
with files until the filesystem is full, and scrubs the files
as for L</scrub-file>, and deletes them.
The intention is to scrub any free space on the partition
containing C<dir>.
It is an interface to the L<scrub(1)> program. See that
manual page for more details.
=head2 set-append
=head2 append
set-append append
This function is used to add additional options to the
guest kernel command line.
The default is C<NULL> unless overridden by setting
C<LIBGUESTFS_APPEND> environment variable.
Setting C<append> to C<NULL> means I<no> additional options
are passed (libguestfs always adds a few of its own).
=head2 set-attach-method
=head2 attach-method
set-attach-method attachmethod
Set the method that libguestfs uses to connect to the back end
guestfsd daemon. Possible methods are:
=over 4
=item C<appliance>
Launch an appliance and connect to it. This is the ordinary method
and the default.
=item C<unix:I<path>>
Connect to the Unix domain socket I<path>.
This method lets you connect to an existing daemon or (using
virtio-serial) to a live guest. For more information, see
L<guestfs(3)/ATTACHING TO RUNNING DAEMONS>.
=back
=head2 set-autosync
=head2 autosync
set-autosync true|false
If C<autosync> is true, this enables autosync. Libguestfs will make a
best effort attempt to make filesystems consistent and synchronized
when the handle is closed
(also if the program exits without closing handles).
This is enabled by default (since libguestfs 1.5.24, previously it was
disabled by default).
=head2 set-direct
=head2 direct
set-direct true|false
If the direct appliance mode flag is enabled, then stdin and
stdout are passed directly through to the appliance once it
is launched.
One consequence of this is that log messages aren't caught
by the library and handled by L</set-log-message-callback>,
but go straight to stdout.
You probably don't want to use this unless you know what you
are doing.
The default is disabled.
=head2 set-e2attrs
set-e2attrs file attrs [clear:true|false]
This sets or clears the file attributes C<attrs>
associated with the inode C<file>.
C<attrs> is a string of characters representing
file attributes. See L</get-e2attrs> for a list of
possible attributes. Not all attributes can be changed.
If optional boolean C<clear> is not present or false, then
the C<attrs> listed are set in the inode.
If C<clear> is true, then the C<attrs> listed are cleared
in the inode.
In both cases, other attributes not present in the C<attrs>
string are left unchanged.
These attributes are only present when the file is located on
an ext2/3/4 filesystem. Using this call on other filesystem
types will result in an error.
This command has one or more optional arguments. See L</OPTIONAL ARGUMENTS>.
=head2 set-e2generation
set-e2generation file generation
This sets the ext2 file generation of a file.
See L</get-e2generation>.
=head2 set-e2label
set-e2label device label
This sets the ext2/3/4 filesystem label of the filesystem on
C<device> to C<label>. Filesystem labels are limited to
16 characters.
You can use either L</tune2fs-l> or L</get-e2label>
to return the existing label on a filesystem.
I<This function is deprecated.>
In new code, use the L</set_label> call instead.
Deprecated functions will not be removed from the API, but the
fact that they are deprecated indicates that there are problems
with correct use of these functions.
=head2 set-e2uuid
set-e2uuid device uuid
This sets the ext2/3/4 filesystem UUID of the filesystem on
C<device> to C<uuid>. The format of the UUID and alternatives
such as C<clear>, C<random> and C<time> are described in the
L<tune2fs(8)> manpage.
You can use either L</tune2fs-l> or L</get-e2uuid>
to return the existing UUID of a filesystem.
=head2 set-label
set-label device label
Set the filesystem label on C<device> to C<label>.
Only some filesystem types support labels, and libguestfs supports
setting labels on only a subset of these.
On ext2/3/4 filesystems, labels are limited to 16 bytes.
On NTFS filesystems, labels are limited to 128 unicode characters.
To read the label on a filesystem, call L</vfs-label>.
=head2 set-memsize
=head2 memsize
set-memsize memsize
This sets the memory size in megabytes allocated to the
qemu subprocess. This only has any effect if called before
L</launch>.
You can also change this by setting the environment
variable C<LIBGUESTFS_MEMSIZE> before the handle is
created.
For more information on the architecture of libguestfs,
see L<guestfs(3)>.
=head2 set-network
=head2 network
set-network true|false
If C<network> is true, then the network is enabled in the
libguestfs appliance. The default is false.
This affects whether commands are able to access the network
(see L<guestfs(3)/RUNNING COMMANDS>).
You must call this before calling L</launch>, otherwise
it has no effect.
=head2 set-path
=head2 path
set-path searchpath
Set the path that libguestfs searches for kernel and initrd.img.
The default is C<$libdir/guestfs> unless overridden by setting
C<LIBGUESTFS_PATH> environment variable.
Setting C<path> to C<NULL> restores the default path.
=head2 set-pgroup
=head2 pgroup
set-pgroup true|false
If C<pgroup> is true, child processes are placed into
their own process group.
The practical upshot of this is that signals like C<SIGINT> (from
users pressing C<^C>) won't be received by the child process.
The default for this flag is false, because usually you want
C<^C> to kill the subprocess. Guestfish sets this flag to
true when used interactively, so that C<^C> can cancel
long-running commands gracefully (see L</user-cancel>).
=head2 set-qemu
=head2 qemu
set-qemu qemu
Set the qemu binary that we will use.
The default is chosen when the library was compiled by the
configure script.
You can also override this by setting the C<LIBGUESTFS_QEMU>
environment variable.
Setting C<qemu> to C<NULL> restores the default qemu binary.
Note that you should call this function as early as possible
after creating the handle. This is because some pre-launch
operations depend on testing qemu features (by running C<qemu -help>).
If the qemu binary changes, we don't retest features, and
so you might see inconsistent results. Using the environment
variable C<LIBGUESTFS_QEMU> is safest of all since that picks
the qemu binary at the same time as the handle is created.
=head2 set-recovery-proc
=head2 recovery-proc
set-recovery-proc true|false
If this is called with the parameter C<false> then
L</launch> does not create a recovery process. The
purpose of the recovery process is to stop runaway qemu
processes in the case where the main program aborts abruptly.
This only has any effect if called before L</launch>,
and the default is true.
About the only time when you would want to disable this is
if the main process will fork itself into the background
("daemonize" itself). In this case the recovery process
thinks that the main program has disappeared and so kills
qemu, which is not very helpful.
=head2 set-selinux
=head2 selinux
set-selinux true|false
This sets the selinux flag that is passed to the appliance
at boot time. The default is C<selinux=0> (disabled).
Note that if SELinux is enabled, it is always in
Permissive mode (C<enforcing=0>).
For more information on the architecture of libguestfs,
see L<guestfs(3)>.
=head2 set-smp
=head2 smp
set-smp smp
Change the number of virtual CPUs assigned to the appliance. The
default is C<1>. Increasing this may improve performance, though
often it has no effect.
This function must be called before L</launch>.
=head2 set-trace
=head2 trace
set-trace true|false
If the command trace flag is set to 1, then libguestfs
calls, parameters and return values are traced.
If you want to trace C API calls into libguestfs (and
other libraries) then possibly a better way is to use
the external ltrace(1) command.
Command traces are disabled unless the environment variable
C<LIBGUESTFS_TRACE> is defined and set to C<1>.
Trace messages are normally sent to C<stderr>, unless you
register a callback to send them somewhere else (see
L</set-event-callback>).
=head2 set-verbose
=head2 verbose
set-verbose true|false
If C<verbose> is true, this turns on verbose messages.
Verbose messages are disabled unless the environment variable
C<LIBGUESTFS_DEBUG> is defined and set to C<1>.
Verbose messages are normally sent to C<stderr>, unless you
register a callback to send them somewhere else (see
L</set-event-callback>).
=head2 setcon
setcon context
This sets the SELinux security context of the daemon
to the string C<context>.
See the documentation about SELINUX in L<guestfs(3)>.
=head2 setxattr
setxattr xattr val vallen path
This call sets the extended attribute named C<xattr>
of the file C<path> to the value C<val> (of length C<vallen>).
The value is arbitrary 8 bit data.
See also: L</lsetxattr>, L<attr(5)>.
=head2 sfdisk
sfdisk device cyls heads sectors 'lines ...'
This is a direct interface to the L<sfdisk(8)> program for creating
partitions on block devices.
C<device> should be a block device, for example C</dev/sda>.
C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads
and sectors on the device, which are passed directly to sfdisk as
the I<-C>, I<-H> and I<-S> parameters. If you pass C<0> for any
of these, then the corresponding parameter is omitted. Usually for
'large' disks, you can just pass C<0> for these, but for small
(floppy-sized) disks, sfdisk (or rather, the kernel) cannot work
out the right geometry and you will need to tell it.
C<lines> is a list of lines that we feed to C<sfdisk>. For more
information refer to the L<sfdisk(8)> manpage.
To create a single partition occupying the whole disk, you would
pass C<lines> as a single element list, when the single element being
the string C<,> (comma).
See also: L</sfdisk-l>, L</sfdisk-N>,
L</part-init>
I<This function is deprecated.>
In new code, use the L</part_add> call instead.
Deprecated functions will not be removed from the API, but the
fact that they are deprecated indicates that there are problems
with correct use of these functions.
=head2 sfdiskM
sfdiskM device 'lines ...'
This is a simplified interface to the L</sfdisk>
command, where partition sizes are specified in megabytes
only (rounded to the nearest cylinder) and you don't need
to specify the cyls, heads and sectors parameters which
were rarely if ever used anyway.
See also: L</sfdisk>, the L<sfdisk(8)> manpage
and L</part-disk>
I<This function is deprecated.>
In new code, use the L</part_add> call instead.
Deprecated functions will not be removed from the API, but the
fact that they are deprecated indicates that there are problems
with correct use of these functions.
=head2 sfdisk-N
sfdisk-N device partnum cyls heads sectors line
This runs L<sfdisk(8)> option to modify just the single
partition C<n> (note: C<n> counts from 1).
For other parameters, see L</sfdisk>. You should usually
pass C<0> for the cyls/heads/sectors parameters.
See also: L</part-add>
I<This function is deprecated.>
In new code, use the L</part_add> call instead.
Deprecated functions will not be removed from the API, but the
fact that they are deprecated indicates that there are problems
with correct use of these functions.
=head2 sfdisk-disk-geometry
sfdisk-disk-geometry device
This displays the disk geometry of C<device> read from the
partition table. Especially in the case where the underlying
block device has been resized, this can be different from the
kernel's idea of the geometry (see L</sfdisk-kernel-geometry>).
The result is in human-readable format, and not designed to
be parsed.
=head2 sfdisk-kernel-geometry
sfdisk-kernel-geometry device
This displays the kernel's idea of the geometry of C<device>.
The result is in human-readable format, and not designed to
be parsed.
=head2 sfdisk-l
sfdisk-l device
This displays the partition table on C<device>, in the
human-readable output of the L<sfdisk(8)> command. It is
not intended to be parsed.
See also: L</part-list>
I<This function is deprecated.>
In new code, use the L</part_list> call instead.
Deprecated functions will not be removed from the API, but the
fact that they are deprecated indicates that there are problems
with correct use of these functions.
=head2 sh
sh command
This call runs a command from the guest filesystem via the
guest's C</bin/sh>.
This is like L</command>, but passes the command to:
/bin/sh -c "command"
Depending on the guest's shell, this usually results in
wildcards being expanded, shell expressions being interpolated
and so on.
All the provisos about L</command> apply to this call.
=head2 sh-lines
sh-lines command
This is the same as L</sh>, but splits the result
into a list of lines.
See also: L</command-lines>
=head2 sleep
sleep secs
Sleep for C<secs> seconds.
=head2 stat
stat path
Returns file information for the given C<path>.
This is the same as the C<stat(2)> system call.
=head2 statvfs
statvfs path
Returns file system statistics for any mounted file system.
C<path> should be a file or directory in the mounted file system
(typically it is the mount point itself, but it doesn't need to be).
This is the same as the C<statvfs(2)> system call.
=head2 strings
strings path
This runs the L<strings(1)> command on a file and returns
the list of printable strings found.
Because of the message protocol, there is a transfer limit
of somewhere between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>.
=head2 strings-e
strings-e encoding path
This is like the L</strings> command, but allows you to
specify the encoding of strings that are looked for in
the source file C<path>.
Allowed encodings are:
=over 4
=item s
Single 7-bit-byte characters like ASCII and the ASCII-compatible
parts of ISO-8859-X (this is what L</strings> uses).
=item S
Single 8-bit-byte characters.
=item b
16-bit big endian strings such as those encoded in
UTF-16BE or UCS-2BE.
=item l (lower case letter L)
16-bit little endian such as UTF-16LE and UCS-2LE.
This is useful for examining binaries in Windows guests.
=item B
32-bit big endian such as UCS-4BE.
=item L
32-bit little endian such as UCS-4LE.
=back
The returned strings are transcoded to UTF-8.
Because of the message protocol, there is a transfer limit
of somewhere between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>.
=head2 swapoff-device
swapoff-device device
This command disables the libguestfs appliance swap
device or partition named C<device>.
See L</swapon-device>.
=head2 swapoff-file
swapoff-file file
This command disables the libguestfs appliance swap on file.
=head2 swapoff-label
swapoff-label label
This command disables the libguestfs appliance swap on
labeled swap partition.
=head2 swapoff-uuid
swapoff-uuid uuid
This command disables the libguestfs appliance swap partition
with the given UUID.
=head2 swapon-device
swapon-device device
This command enables the libguestfs appliance to use the
swap device or partition named C<device>. The increased
memory is made available for all commands, for example
those run using L</command> or L</sh>.
Note that you should not swap to existing guest swap
partitions unless you know what you are doing. They may
contain hibernation information, or other information that
the guest doesn't want you to trash. You also risk leaking
information about the host to the guest this way. Instead,
attach a new host device to the guest and swap on that.
=head2 swapon-file
swapon-file file
This command enables swap to a file.
See L</swapon-device> for other notes.
=head2 swapon-label
swapon-label label
This command enables swap to a labeled swap partition.
See L</swapon-device> for other notes.
=head2 swapon-uuid
swapon-uuid uuid
This command enables swap to a swap partition with the given UUID.
See L</swapon-device> for other notes.
=head2 sync
sync
This syncs the disk, so that any writes are flushed through to the
underlying disk image.
You should always call this if you have modified a disk image, before
closing the handle.
=head2 tail
tail path
This command returns up to the last 10 lines of a file as
a list of strings.
Because of the message protocol, there is a transfer limit
of somewhere between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>.
=head2 tail-n
tail-n nrlines path
If the parameter C<nrlines> is a positive number, this returns the last
C<nrlines> lines of the file C<path>.
If the parameter C<nrlines> is a negative number, this returns lines
from the file C<path>, starting with the C<-nrlines>th line.
If the parameter C<nrlines> is zero, this returns an empty list.
Because of the message protocol, there is a transfer limit
of somewhere between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>.
=head2 tar-in
tar-in (tarfile|-) directory
This command uploads and unpacks local file C<tarfile> (an
I<uncompressed> tar file) into C<directory>.
To upload a compressed tarball, use L</tgz-in>
or L</txz-in>.
Use C<-> instead of a filename to read/write from stdin/stdout.
=head2 tar-out
tar-out directory (tarfile|-)
This command packs the contents of C<directory> and downloads
it to local file C<tarfile>.
To download a compressed tarball, use L</tgz-out>
or L</txz-out>.
Use C<-> instead of a filename to read/write from stdin/stdout.
=head2 tgz-in
tgz-in (tarball|-) directory
This command uploads and unpacks local file C<tarball> (a
I<gzip compressed> tar file) into C<directory>.
To upload an uncompressed tarball, use L</tar-in>.
Use C<-> instead of a filename to read/write from stdin/stdout.
=head2 tgz-out
tgz-out directory (tarball|-)
This command packs the contents of C<directory> and downloads
it to local file C<tarball>.
To download an uncompressed tarball, use L</tar-out>.
Use C<-> instead of a filename to read/write from stdin/stdout.
=head2 touch
touch path
Touch acts like the L<touch(1)> command. It can be used to
update the timestamps on a file, or, if the file does not exist,
to create a new zero-length file.
This command only works on regular files, and will fail on other
file types such as directories, symbolic links, block special etc.
=head2 truncate
truncate path
This command truncates C<path> to a zero-length file. The
file must exist already.
=head2 truncate-size
truncate-size path size
This command truncates C<path> to size C<size> bytes. The file
must exist already.
If the current file size is less than C<size> then
the file is extended to the required size with zero bytes.
This creates a sparse file (ie. disk blocks are not allocated
for the file until you write to it). To create a non-sparse
file of zeroes, use L</fallocate64> instead.
=head2 tune2fs
tune2fs device [force:true|false] [maxmountcount:N] [mountcount:N] [errorbehavior:..] [group:N] [intervalbetweenchecks:N] [reservedblockspercentage:N] [lastmounteddirectory:..] [reservedblockscount:N] [user:N]
This call allows you to adjust various filesystem parameters of
an ext2/ext3/ext4 filesystem called C<device>.
The optional parameters are:
=over 4
=item C<force>
Force tune2fs to complete the operation even in the face of errors.
This is the same as the tune2fs C<-f> option.
=item C<maxmountcount>
Set the number of mounts after which the filesystem is checked
by L<e2fsck(8)>. If this is C<0> then the number of mounts is
disregarded. This is the same as the tune2fs C<-c> option.
=item C<mountcount>
Set the number of times the filesystem has been mounted.
This is the same as the tune2fs C<-C> option.
=item C<errorbehavior>
Change the behavior of the kernel code when errors are detected.
Possible values currently are: C<continue>, C<remount-ro>, C<panic>.
In practice these options don't really make any difference,
particularly for write errors.
This is the same as the tune2fs C<-e> option.
=item C<group>
Set the group which can use reserved filesystem blocks.
This is the same as the tune2fs C<-g> option except that it
can only be specified as a number.
=item C<intervalbetweenchecks>
Adjust the maximal time between two filesystem checks
(in seconds). If the option is passed as C<0> then
time-dependent checking is disabled.
This is the same as the tune2fs C<-i> option.
=item C<reservedblockspercentage>
Set the percentage of the filesystem which may only be allocated
by privileged processes.
This is the same as the tune2fs C<-m> option.
=item C<lastmounteddirectory>
Set the last mounted directory.
This is the same as the tune2fs C<-M> option.
=item C<reservedblockscount>
Set the number of reserved filesystem blocks.
This is the same as the tune2fs C<-r> option.
=item C<user>
Set the user who can use the reserved filesystem blocks.
This is the same as the tune2fs C<-u> option except that it
can only be specified as a number.
=back
To get the current values of filesystem parameters, see
L</tune2fs-l>. For precise details of how tune2fs
works, see the L<tune2fs(8)> man page.
This command has one or more optional arguments. See L</OPTIONAL ARGUMENTS>.
=head2 tune2fs-l
tune2fs-l device
This returns the contents of the ext2, ext3 or ext4 filesystem
superblock on C<device>.
It is the same as running C<tune2fs -l device>. See L<tune2fs(8)>
manpage for more details. The list of fields returned isn't
clearly defined, and depends on both the version of C<tune2fs>
that libguestfs was built against, and the filesystem itself.
=head2 txz-in
txz-in (tarball|-) directory
This command uploads and unpacks local file C<tarball> (an
I<xz compressed> tar file) into C<directory>.
Use C<-> instead of a filename to read/write from stdin/stdout.
=head2 txz-out
txz-out directory (tarball|-)
This command packs the contents of C<directory> and downloads
it to local file C<tarball> (as an xz compressed tar archive).
Use C<-> instead of a filename to read/write from stdin/stdout.
=head2 umask
umask mask
This function sets the mask used for creating new files and
device nodes to C<mask & 0777>.
Typical umask values would be C<022> which creates new files
with permissions like "-rw-r--r--" or "-rwxr-xr-x", and
C<002> which creates new files with permissions like
"-rw-rw-r--" or "-rwxrwxr-x".
The default umask is C<022>. This is important because it
means that directories and device nodes will be created with
C<0644> or C<0755> mode even if you specify C<0777>.
See also L</get-umask>,
L<umask(2)>, L</mknod>, L</mkdir>.
This call returns the previous umask.
=head2 umount
=head2 unmount
umount pathordevice
This unmounts the given filesystem. The filesystem may be
specified either by its mountpoint (path) or the device which
contains the filesystem.
=head2 umount-all
=head2 unmount-all
umount-all
This unmounts all mounted filesystems.
Some internal mounts are not unmounted by this call.
=head2 umount-local
umount-local [retry:true|false]
If libguestfs is exporting the filesystem on a local
mountpoint, then this unmounts it.
See L<guestfs(3)/MOUNT LOCAL> for full documentation.
This command has one or more optional arguments. See L</OPTIONAL ARGUMENTS>.
=head2 upload
upload (filename|-) remotefilename
Upload local file C<filename> to C<remotefilename> on the
filesystem.
C<filename> can also be a named pipe.
See also L</download>.
Use C<-> instead of a filename to read/write from stdin/stdout.
=head2 upload-offset
upload-offset (filename|-) remotefilename offset
Upload local file C<filename> to C<remotefilename> on the
filesystem.
C<remotefilename> is overwritten starting at the byte C<offset>
specified. The intention is to overwrite parts of existing
files or devices, although if a non-existant file is specified
then it is created with a "hole" before C<offset>. The
size of the data written is implicit in the size of the
source C<filename>.
Note that there is no limit on the amount of data that
can be uploaded with this call, unlike with L</pwrite>,
and this call always writes the full amount unless an
error occurs.
See also L</upload>, L</pwrite>.
Use C<-> instead of a filename to read/write from stdin/stdout.
=head2 utimens
utimens path atsecs atnsecs mtsecs mtnsecs
This command sets the timestamps of a file with nanosecond
precision.
C<atsecs, atnsecs> are the last access time (atime) in secs and
nanoseconds from the epoch.
C<mtsecs, mtnsecs> are the last modification time (mtime) in
secs and nanoseconds from the epoch.
If the C<*nsecs> field contains the special value C<-1> then
the corresponding timestamp is set to the current time. (The
C<*secs> field is ignored in this case).
If the C<*nsecs> field contains the special value C<-2> then
the corresponding timestamp is left unchanged. (The
C<*secs> field is ignored in this case).
=head2 version
version
Return the libguestfs version number that the program is linked
against.
Note that because of dynamic linking this is not necessarily
the version of libguestfs that you compiled against. You can
compile the program, and then at runtime dynamically link
against a completely different C<libguestfs.so> library.
This call was added in version C<1.0.58>. In previous
versions of libguestfs there was no way to get the version
number. From C code you can use dynamic linker functions
to find out if this symbol exists (if it doesn't, then
it's an earlier version).
The call returns a structure with four elements. The first
three (C<major>, C<minor> and C<release>) are numbers and
correspond to the usual version triplet. The fourth element
(C<extra>) is a string and is normally empty, but may be
used for distro-specific information.
To construct the original version string:
C<$major.$minor.$release$extra>
See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>.
I<Note:> Don't use this call to test for availability
of features. In enterprise distributions we backport
features from later versions into earlier versions,
making this an unreliable way to test for features.
Use L</available> instead.
=head2 vfs-label
vfs-label device
This returns the filesystem label of the filesystem on
C<device>.
If the filesystem is unlabeled, this returns the empty string.
To find a filesystem from the label, use L</findfs-label>.
=head2 vfs-type
vfs-type device
This command gets the filesystem type corresponding to
the filesystem on C<device>.
For most filesystems, the result is the name of the Linux
VFS module which would be used to mount this filesystem
if you mounted it without specifying the filesystem type.
For example a string such as C<ext3> or C<ntfs>.
=head2 vfs-uuid
vfs-uuid device
This returns the filesystem UUID of the filesystem on
C<device>.
If the filesystem does not have a UUID, this returns the empty string.
To find a filesystem from the UUID, use L</findfs-uuid>.
=head2 vg-activate
vg-activate true|false 'volgroups ...'
This command activates or (if C<activate> is false) deactivates
all logical volumes in the listed volume groups C<volgroups>.
This command is the same as running C<vgchange -a y|n volgroups...>
Note that if C<volgroups> is an empty list then B<all> volume groups
are activated or deactivated.
=head2 vg-activate-all
vg-activate-all true|false
This command activates or (if C<activate> is false) deactivates
all logical volumes in all volume groups.
This command is the same as running C<vgchange -a y|n>
=head2 vgcreate
vgcreate volgroup 'physvols ...'
This creates an LVM volume group called C<volgroup>
from the non-empty list of physical volumes C<physvols>.
=head2 vglvuuids
vglvuuids vgname
Given a VG called C<vgname>, this returns the UUIDs of all
the logical volumes created in this volume group.
You can use this along with L</lvs> and L</lvuuid>
calls to associate logical volumes and volume groups.
See also L</vgpvuuids>.
=head2 vgmeta
vgmeta vgname
C<vgname> is an LVM volume group. This command examines the
volume group and returns its metadata.
Note that the metadata is an internal structure used by LVM,
subject to change at any time, and is provided for information only.
=head2 vgpvuuids
vgpvuuids vgname
Given a VG called C<vgname>, this returns the UUIDs of all
the physical volumes that this volume group resides on.
You can use this along with L</pvs> and L</pvuuid>
calls to associate physical volumes and volume groups.
See also L</vglvuuids>.
=head2 vgremove
vgremove vgname
Remove an LVM volume group C<vgname>, (for example C<VG>).
This also forcibly removes all logical volumes in the volume
group (if any).
=head2 vgrename
vgrename volgroup newvolgroup
Rename a volume group C<volgroup> with the new name C<newvolgroup>.
=head2 vgs
vgs
List all the volumes groups detected. This is the equivalent
of the L<vgs(8)> command.
This returns a list of just the volume group names that were
detected (eg. C<VolGroup00>).
See also L</vgs-full>.
=head2 vgs-full
vgs-full
List all the volumes groups detected. This is the equivalent
of the L<vgs(8)> command. The "full" version includes all fields.
=head2 vgscan
vgscan
This rescans all block devices and rebuilds the list of LVM
physical volumes, volume groups and logical volumes.
=head2 vguuid
vguuid vgname
This command returns the UUID of the LVM VG named C<vgname>.
=head2 wc-c
wc-c path
This command counts the characters in a file, using the
C<wc -c> external command.
=head2 wc-l
wc-l path
This command counts the lines in a file, using the
C<wc -l> external command.
=head2 wc-w
wc-w path
This command counts the words in a file, using the
C<wc -w> external command.
=head2 wipefs
wipefs device
This command erases filesystem or RAID signatures from
the specified C<device> to make the filesystem invisible to libblkid.
This does not erase the filesystem itself nor any other data from the
C<device>.
Compare with L</zero> which zeroes the first few blocks of a
device.
=head2 write
write path content
This call creates a file called C<path>. The content of the
file is the string C<content> (which can contain any 8 bit data).
See also L</write-append>.
Because of the message protocol, there is a transfer limit
of somewhere between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>.
=head2 write-append
write-append path content
This call appends C<content> to the end of file C<path>. If
C<path> does not exist, then a new file is created.
See also L</write>.
Because of the message protocol, there is a transfer limit
of somewhere between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>.
=head2 write-file
write-file path content size
This call creates a file called C<path>. The contents of the
file is the string C<content> (which can contain any 8 bit data),
with length C<size>.
As a special case, if C<size> is C<0>
then the length is calculated using C<strlen> (so in this case
the content cannot contain embedded ASCII NULs).
I<NB.> Owing to a bug, writing content containing ASCII NUL
characters does I<not> work, even if the length is specified.
Because of the message protocol, there is a transfer limit
of somewhere between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>.
I<This function is deprecated.>
In new code, use the L</write> call instead.
Deprecated functions will not be removed from the API, but the
fact that they are deprecated indicates that there are problems
with correct use of these functions.
=head2 zegrep
zegrep regex path
This calls the external C<zegrep> program and returns the
matching lines.
Because of the message protocol, there is a transfer limit
of somewhere between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>.
=head2 zegrepi
zegrepi regex path
This calls the external C<zegrep -i> program and returns the
matching lines.
Because of the message protocol, there is a transfer limit
of somewhere between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>.
=head2 zero
zero device
This command writes zeroes over the first few blocks of C<device>.
How many blocks are zeroed isn't specified (but it's I<not> enough
to securely wipe the device). It should be sufficient to remove
any partition tables, filesystem superblocks and so on.
If blocks are already zero, then this command avoids writing
zeroes. This prevents the underlying device from becoming non-sparse
or growing unnecessarily.
See also: L</zero-device>, L</scrub-device>,
L</is-zero-device>
=head2 zero-device
zero-device device
This command writes zeroes over the entire C<device>. Compare
with L</zero> which just zeroes the first few blocks of
a device.
If blocks are already zero, then this command avoids writing
zeroes. This prevents the underlying device from becoming non-sparse
or growing unnecessarily.
=head2 zero-free-space
zero-free-space directory
Zero the free space in the filesystem mounted on C<directory>.
The filesystem must be mounted read-write.
The filesystem contents are not affected, but any free space
in the filesystem is freed.
In future (but not currently) these zeroed blocks will be
"sparsified" - that is, given back to the host.
=head2 zerofree
zerofree device
This runs the I<zerofree> program on C<device>. This program
claims to zero unused inodes and disk blocks on an ext2/3
filesystem, thus making it possible to compress the filesystem
more effectively.
You should B<not> run this program if the filesystem is
mounted.
It is possible that using this program can damage the filesystem
or data on the filesystem.
=head2 zfgrep
zfgrep pattern path
This calls the external C<zfgrep> program and returns the
matching lines.
Because of the message protocol, there is a transfer limit
of somewhere between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>.
=head2 zfgrepi
zfgrepi pattern path
This calls the external C<zfgrep -i> program and returns the
matching lines.
Because of the message protocol, there is a transfer limit
of somewhere between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>.
=head2 zfile
zfile meth path
This command runs C<file> after first decompressing C<path>
using C<method>.
C<method> must be one of C<gzip>, C<compress> or C<bzip2>.
Since 1.0.63, use L</file> instead which can now
process compressed files.
I<This function is deprecated.>
In new code, use the L</file> call instead.
Deprecated functions will not be removed from the API, but the
fact that they are deprecated indicates that there are problems
with correct use of these functions.
=head2 zgrep
zgrep regex path
This calls the external C<zgrep> program and returns the
matching lines.
Because of the message protocol, there is a transfer limit
of somewhere between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>.
=head2 zgrepi
zgrepi regex path
This calls the external C<zgrep -i> program and returns the
matching lines.
Because of the message protocol, there is a transfer limit
of somewhere between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>.
|