1. dpkg -l 명령어를 실행합니다.
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 | $ dpkg -l Desired=Unknown/Install/Remove/Purge/Hold Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend / Err?=(none)/Reinst-required (Status,Err: uppercase=bad) / Name Version Architecture Description +++-=======================-================-================-=================================================== ii a11y-profile-manager-in 0.1.10-0ubuntu3 amd64 Accessibility Profile Manager - Unity desktop indic ii account-plugin-facebook 0.12+16.04.20160 all GNOME Control Center account plugin for single sign ii account-plugin-flickr 0.12+16.04.20160 all GNOME Control Center account plugin for single sign ii account-plugin-google 0.12+16.04.20160 all GNOME Control Center account plugin for single sign ii accountsservice 0.6.40-2ubuntu11 amd64 query and manipulate user account information ii acl 2.2.52-3 amd64 Access control list utilities ii acpi-support 0.142 amd64 scripts for handling many ACPI events ii acpid 1:2.0.26-1ubuntu amd64 Advanced Configuration and Power Interface event da ii activity-log-manager 0.9.7-0ubuntu23. amd64 blacklist configuration user interface for Zeitgeis ii adduser 3.113+nmu3ubuntu all add and remove users and groups ii adium-theme-ubuntu 0.3.4-0ubuntu1.1 all Adium message style for Ubuntu ii adwaita-icon-theme 3.18.0-2ubuntu3. all default icon theme of GNOME (small subset) ii aisleriot 1:3.18.2-1ubuntu amd64 GNOME solitaire card game collection ii alsa-base 1.0.25+dfsg-0ubu all ALSA driver configuration files ii alsa-utils 1.1.0-0ubuntu5 amd64 Utilities for configuring and using ALSA ii anacron 2.3-23 amd64 cron-like program that doesn't go by time ii apg 2.2.3.dfsg.1-2ub amd64 Automated Password Generator - Standalone version ii app-install-data 15.10 all Ubuntu applications (data files) ii app-install-data-partne 16.04 all Application Installer (data files for partner appli ii apparmor 2.10.95-0ubuntu2 amd64 user-space parser utility for AppArmor ii appmenu-qt:amd64 0.2.7+14.04.2014 amd64 application menu for Qt ii appmenu-qt5 0.3.0+16.04.2017 amd64 application menu for Qt5 ii apport 2.20.1-0ubuntu2. all automatically generate crash reports for debugging ii apport-gtk 2.20.1-0ubuntu2. all GTK+ frontend for the apport crash report system ii apport-symptoms 0.20 all symptom scripts for apport ii appstream 0.9.4-1ubuntu3 amd64 Software component index ii apt 1.2.24 amd64 commandline package manager ii apt-transport-https 1.2.24 amd64 https download transport for APT ii apt-utils 1.2.24 amd64 package management related utility programs ii aptdaemon 1.1.1+bzr982-0ub all transaction based package management service ii aptdaemon-data 1.1.1+bzr982-0ub all data files for clients ii apturl 0.5.2ubuntu11.1 amd64 install packages using the apt protocol - GTK+ fron ii apturl-common 0.5.2ubuntu11.1 amd64 install packages using the apt protocol - common da ii aspell 0.60.7~20110707- amd64 GNU Aspell spell-checker ii aspell-en 7.1-0-1.1 all English dictionary for GNU Aspell ii at-spi2-core 2.18.3-4ubuntu1 amd64 Assistive Technology Service Provider Interface (db ii aufs-tools 1:3.2+20130722-1 amd64 Tools to manage aufs filesystems ii avahi-autoipd 0.6.32~rc+dfsg-1 amd64 Avahi IPv4LL network address configuration daemon ii avahi-daemon 0.6.32~rc+dfsg-1 amd64 Avahi mDNS/DNS-SD daemon ii avahi-utils 0.6.32~rc+dfsg-1 amd64 Avahi browsing, publishing and discovery utilities ii bamfdaemon 0.5.3~bzr0+16.04 amd64 Window matching library - daemon ii baobab 3.18.1-1ubuntu1 amd64 GNOME disk usage analyzer ii base-files 9.4ubuntu4.5 amd64 Debian base system miscellaneous files ii base-passwd 3.5.39 amd64 Debian base system master password and group files ii bash 4.3-14ubuntu1.2 amd64 GNU Bourne Again SHell ii bash-completion 1:2.1-4.2ubuntu1 all programmable completion for the bash shell ii bc 1.06.95-9build1 amd64 GNU bc arbitrary precision calculator language ii bind9-host 1:9.10.3.dfsg.P4 amd64 Version of 'host' bundled with BIND 9.X ii binutils 2.26.1-1ubuntu1~ amd64 GNU assembler, linker and binary utilities ii bluez 5.37-0ubuntu5.1 amd64 Bluetooth tools and daemons ii bluez-cups 5.37-0ubuntu5.1 amd64 Bluetooth printer driver for CUPS ii bluez-obexd 5.37-0ubuntu5.1 amd64 bluez obex daemon ii branding-ubuntu 0.8 all Replacement artwork with Ubuntu branding ii brltty 5.3.1-2ubuntu2.1 amd64 Access software for a blind person using a braille ii bsdmainutils 9.0.6ubuntu3 amd64 collection of more utilities from FreeBSD ii bsdutils 1:2.27.1-6ubuntu amd64 basic utilities from 4.4BSD-Lite ii build-essential 12.1ubuntu2 amd64 Informational list of build-essential packages ii busybox-initramfs 1:1.22.0-15ubunt amd64 Standalone shell setup for initramfs ii busybox-static 1:1.22.0-15ubunt amd64 Standalone rescue shell with tons of builtin utilit ii bzip2 1.0.6-8 amd64 high-quality block-sorting file compressor - utilit ii ca-certificates 20170717~16.04.1 all Common CA certificates ii cgroupfs-mount 1.2 all Light-weight package to set up cgroupfs mounts ii checkbox-converged 1.2.4-0ubuntu1 all testing tool for all Ubuntu devices ii checkbox-gui 1.2.4-0ubuntu1 all QML based interface for checkbox (transitional pack ii cheese 3.18.1-2ubuntu3 amd64 tool to take pictures and videos from your webcam ii cheese-common 3.18.1-2ubuntu3 all Common files for the Cheese tool to take pictures a ii colord 1.2.12-1ubuntu1 amd64 system service to manage device colour profiles -- ii colord-data 1.2.12-1ubuntu1 all system service to manage device colour profiles -- ii command-not-found 0.3ubuntu16.04.2 all Suggest installation of packages in interactive bas ii command-not-found-data 0.3ubuntu16.04.2 amd64 Set of data files for command-not-found. ii compiz 1:0.9.12.2+16.04 all OpenGL window and compositing manager ii compiz-core 1:0.9.12.2+16.04 amd64 OpenGL window and compositing manager ii compiz-gnome 1:0.9.12.2+16.04 amd64 OpenGL window and compositing manager - GNOME windo ii compiz-plugins-default: 1:0.9.12.2+16.04 amd64 OpenGL window and compositing manager - default plu ii console-setup 1.108ubuntu15.3 all console font and keymap setup program ii console-setup-linux 1.108ubuntu15.3 all Linux specific part of console-setup ii coreutils 8.25-2ubuntu3~16 amd64 GNU core utilities ii cpio 2.11+dfsg-5ubunt amd64 GNU cpio -- a program to manage archives of files ii cpp 4:5.3.1-1ubuntu1 amd64 GNU C preprocessor (cpp) ii cpp-5 5.4.0-6ubuntu1~1 amd64 GNU C preprocessor ii cracklib-runtime 2.9.2-1build2 amd64 runtime support for password checker library crackl ii crda 3.13-1 amd64 wireless Central Regulatory Domain Agent ii cron 3.0pl1-128ubuntu amd64 process scheduling daemon ii cups 2.1.3-4ubuntu0.3 amd64 Common UNIX Printing System(tm) - PPD/driver suppor ii cups-browsed 1.8.3-2ubuntu3.1 amd64 OpenPrinting CUPS Filters - cups-browsed ii cups-bsd 2.1.3-4ubuntu0.3 amd64 Common UNIX Printing System(tm) - BSD commands ii cups-client 2.1.3-4ubuntu0.3 amd64 Common UNIX Printing System(tm) - client programs ( ii cups-common 2.1.3-4ubuntu0.3 all Common UNIX Printing System(tm) - common files ii cups-core-drivers 2.1.3-4ubuntu0.3 amd64 Common UNIX Printing System(tm) - PPD-less printing ii cups-daemon 2.1.3-4ubuntu0.3 amd64 Common UNIX Printing System(tm) - daemon ii cups-filters 1.8.3-2ubuntu3.1 amd64 OpenPrinting CUPS Filters - Main Package ii cups-filters-core-drive 1.8.3-2ubuntu3.1 amd64 OpenPrinting CUPS Filters - PPD-less printing ii cups-pk-helper 0.2.5-2ubuntu2 amd64 PolicyKit helper to configure cups with fine-graine ii cups-ppdc 2.1.3-4ubuntu0.3 amd64 Common UNIX Printing System(tm) - PPD manipulation ii cups-server-common 2.1.3-4ubuntu0.3 all Common UNIX Printing System(tm) - server common fil ii curl 7.47.0-1ubuntu2. amd64 command line tool for transferring data with URL sy ii dash 0.5.8-2.1ubuntu2 amd64 POSIX-compliant shell ii dbus 1.10.6-1ubuntu3. amd64 simple interprocess messaging system (daemon and ut ii dbus-x11 1.10.6-1ubuntu3. amd64 simple interprocess messaging system (X11 deps) ii dc 1.06.95-9build1 amd64 GNU dc arbitrary precision reverse-polish calculato ii dconf-cli 0.24.0-2 amd64 simple configuration storage system - utilities ii dconf-gsettings-backend 0.24.0-2 amd64 simple configuration storage system - GSettings bac ii dconf-service 0.24.0-2 amd64 simple configuration storage system - D-Bus service ii debconf 1.5.58ubuntu1 all Debian configuration management system ii debconf-i18n 1.5.58ubuntu1 all full internationalization support for debconf ii debianutils 4.7 amd64 Miscellaneous utilities specific to Debian ii deja-dup 34.2-0ubuntu1.1 amd64 Back up your files ii desktop-file-utils 0.22-1ubuntu5.1 amd64 Utilities for .desktop files ii dh-python 2.20151103ubuntu all Debian helper tools for packaging Python libraries ii dictionaries-common 1.26.3 all spelling dictionaries - common utilities ii diffstat 1.61-1 amd64 produces graph of changes introduced by a diff file ii diffutils 1:3.3-3 amd64 File comparison utilities ii dirmngr 2.1.11-6ubuntu2 amd64 server for managing certificate revocation lists ii distro-info-data 0.28ubuntu0.5 all information about the distributions' releases (data ii dkms 2.2.0.3-2ubuntu1 all Dynamic Kernel Module Support Framework ii dmidecode 3.0-2ubuntu0.1 amd64 SMBIOS/DMI table decoder ii dmz-cursor-theme 0.4.4ubuntu1 all Style neutral, scalable cursor theme ii dns-root-data 2015052300+h+1 all DNS root data including root zone and DNSSEC key ii dnsmasq-base 2.75-1ubuntu0.16 amd64 Small caching DNS proxy and DHCP/TFTP server ii dnsutils 1:9.10.3.dfsg.P4 amd64 Clients provided with BIND ii doc-base 0.10.7 all utilities to manage online documentation ii docker-ce 17.10.0~ce-0~ubu amd64 Docker: the open-source application container engin ii dosfstools 3.0.28-2ubuntu0. amd64 utilities for making and checking MS-DOS FAT filesy ii dpkg 1.18.4ubuntu1.2 amd64 Debian package management system ii dpkg-dev 1.18.4ubuntu1.2 all Debian package development tools ii e2fslibs:amd64 1.42.13-1ubuntu1 amd64 ext2/ext3/ext4 file system libraries ii e2fsprogs 1.42.13-1ubuntu1 amd64 ext2/ext3/ext4 file system utilities ii ed 1.10-2 amd64 classic UNIX line editor ii efibootmgr 0.12-4 amd64 Interact with the EFI Boot Manager ii eject 2.1.5+deb1+cvs20 amd64 ejects CDs and operates CD-Changers under Linux ii emacsen-common 2.0.8 all Common facilities for all emacsen ii enchant 1.6.0-10.1build2 amd64 Wrapper for various spell checker engines (binary p ii eog 3.18.2-1ubuntu2. amd64 Eye of GNOME graphics viewer program ii espeak-data:amd64 1.48.04+dfsg-2 amd64 Multi-lingual software speech synthesizer: speech d ii ethtool 1:4.5-1 amd64 display or change Ethernet device settings ii evince 3.18.2-1ubuntu4. amd64 Document (PostScript, PDF) viewer ii evince-common 3.18.2-1ubuntu4. all Document (PostScript, PDF) viewer - common files ii evolution-data-server 3.18.5-1ubuntu1 amd64 evolution database backend server ii evolution-data-server-c 3.18.5-1ubuntu1 all architecture independent files for Evolution Data S ii evolution-data-server-o 3.18.5-1ubuntu1 amd64 evolution data server integration with Ubuntu Onlin ii example-content 49 all Ubuntu example content ii fakeroot 1.20.2-1ubuntu1 amd64 tool for simulating superuser privileges ii file 1:5.25-2ubuntu1 amd64 Determines file type using "magic" numbers ii findutils 4.6.0+git+201601 amd64 utilities for finding files--find, xargs ii firefox 56.0+build6-0ubu amd64 Safe and easy web browser from Mozilla ii firefox-locale-en 56.0+build6-0ubu amd64 English language pack for Firefox ii fontconfig 2.11.94-0ubuntu1 amd64 generic font configuration library - support binari ii fontconfig-config 2.11.94-0ubuntu1 all generic font configuration library - configuration ii fonts-dejavu-core 2.35-1 all Vera font family derivate with additional character ii fonts-freefont-ttf 20120503-4 all Freefont Serif, Sans and Mono Truetype fonts ii fonts-guru 2:1.2 all Meta package to install all Punjabi fonts ii fonts-guru-extra 2.0-3 all Free fonts for Punjabi language ii fonts-kacst 2.01+mry-12 all KACST free TrueType Arabic fonts ii fonts-kacst-one 5.0+svn11846-7 all TrueType font designed for Arabic language ii fonts-khmeros-core 5.0-7ubuntu1 all KhmerOS Unicode fonts for the Khmer language of Cam ii fonts-lao 0.0.20060226-9 all TrueType font for Lao language ii fonts-lato 2.0-1 all sans-serif typeface family font ii fonts-liberation 1.07.4-1 all Fonts with the same metrics as Times, Arial and Cou ii fonts-lklug-sinhala 0.6-3 all Unicode Sinhala font by Lanka Linux User Group ii fonts-lohit-guru 2.5.3-2 all Lohit TrueType font for Punjabi Language ii fonts-nanum 20140930-1 all Nanum Korean fonts ii fonts-noto-cjk 1:1.004+repack2- all "No Tofu" font families with large Unicode coverage ii fonts-opensymbol 2:102.7+LibO5.1. all OpenSymbol TrueType font ii fonts-sil-abyssinica 1.500-1 all smart Unicode font for Ethiopian and Erythrean scri ii fonts-sil-padauk 2.80-2 all smart Unicode font for languages in Myanmar ii fonts-stix 1.1.1-4 all Scientific and Technical Information eXchange fonts ii fonts-symbola 2.59-1 all symbolic font providing emoji characters from Unico ii fonts-takao-pgothic 003.02.01-9ubunt all Japanese TrueType font set, Takao P Gothic Fonts ii fonts-thai-tlwg 1:0.6.2-2.1 all Thai fonts maintained by TLWG (metapackage) ii fonts-tibetan-machine 1.901b-5 all font for Tibetan, Dzongkha and Ladakhi (OpenType Un ii fonts-tlwg-garuda 1:0.6.2-2.1 all Thai Garuda font (dependency package) ii fonts-tlwg-garuda-ttf 1:0.6.2-2.1 all Thai Garuda TrueType font ii fonts-tlwg-kinnari 1:0.6.2-2.1 all Thai Kinnari font (dependency package) ii fonts-tlwg-kinnari-ttf 1:0.6.2-2.1 all Thai Kinnari TrueType font ii fonts-tlwg-laksaman 1:0.6.2-2.1 all Thai Laksaman font (dependency package) ii fonts-tlwg-laksaman-ttf 1:0.6.2-2.1 all Thai Laksaman TrueType font ii fonts-tlwg-loma 1:0.6.2-2.1 all Thai Loma font (dependency package) ii fonts-tlwg-loma-ttf 1:0.6.2-2.1 all Thai Loma TrueType font ii fonts-tlwg-mono 1:0.6.2-2.1 all Thai TlwgMono font (dependency package) ii fonts-tlwg-mono-ttf 1:0.6.2-2.1 all Thai TlwgMono TrueType font ii fonts-tlwg-norasi 1:0.6.2-2.1 all Thai Norasi font (dependency package) ii fonts-tlwg-norasi-ttf 1:0.6.2-2.1 all Thai Norasi TrueType font ii fonts-tlwg-purisa 1:0.6.2-2.1 all Thai Purisa font (dependency package) ii fonts-tlwg-purisa-ttf 1:0.6.2-2.1 all Thai Purisa TrueType font ii fonts-tlwg-sawasdee 1:0.6.2-2.1 all Thai Sawasdee font (dependency package) ii fonts-tlwg-sawasdee-ttf 1:0.6.2-2.1 all Thai Sawasdee TrueType font ii fonts-tlwg-typewriter 1:0.6.2-2.1 all Thai TlwgTypewriter font (dependency package) ii fonts-tlwg-typewriter-t 1:0.6.2-2.1 all Thai TlwgTypewriter TrueType font ii fonts-tlwg-typist 1:0.6.2-2.1 all Thai TlwgTypist font (dependency package) ii fonts-tlwg-typist-ttf 1:0.6.2-2.1 all Thai TlwgTypist TrueType font ii fonts-tlwg-typo 1:0.6.2-2.1 all Thai TlwgTypo font (dependency package) ii fonts-tlwg-typo-ttf 1:0.6.2-2.1 all Thai TlwgTypo TrueType font ii fonts-tlwg-umpush 1:0.6.2-2.1 all Thai Umpush font (dependency package) ii fonts-tlwg-umpush-ttf 1:0.6.2-2.1 all Thai Umpush TrueType font ii fonts-tlwg-waree 1:0.6.2-2.1 all Thai Waree font (dependency package) ii fonts-tlwg-waree-ttf 1:0.6.2-2.1 all Thai Waree TrueType font ii foomatic-db-compressed- 20160212-0ubuntu all OpenPrinting printer support - Compressed PPDs deri ii friendly-recovery 0.2.31 all Make recovery more user-friendly ii ftp 0.17-33 amd64 classical file transfer client ii fuse 2.9.4-1ubuntu3.1 amd64 Filesystem in Userspace ii fwupd 0.7.0-0ubuntu4.3 amd64 Firmware update daemon ii fwupdate 0.5-2ubuntu5 amd64 Tools to manage UEFI firmware updates ii fwupdate-signed 1.11.1+0.5-2ubun amd64 Linux Firmware Updater EFI signed binary ii g++ 4:5.3.1-1ubuntu1 amd64 GNU C++ compiler ii g++-5 5.4.0-6ubuntu1~1 amd64 GNU C++ compiler ii gcc 4:5.3.1-1ubuntu1 amd64 GNU C compiler ii gcc-5 5.4.0-6ubuntu1~1 amd64 GNU C compiler ii gcc-5-base:amd64 5.4.0-6ubuntu1~1 amd64 GCC, the GNU Compiler Collection (base package) ii gcc-6-base:amd64 6.0.1-0ubuntu1 amd64 GCC, the GNU Compiler Collection (base package) ii gconf-service 3.2.6-3ubuntu6 amd64 GNOME configuration database system (D-Bus service) ii gconf-service-backend 3.2.6-3ubuntu6 amd64 GNOME configuration database system (D-Bus service) ii gconf2 3.2.6-3ubuntu6 amd64 GNOME configuration database system (support tools) ii gconf2-common 3.2.6-3ubuntu6 all GNOME configuration database system (common files) ii gcr 3.18.0-1ubuntu1 amd64 GNOME crypto services (daemon and tools) ii gdb 7.11.1-0ubuntu1~ amd64 GNU Debugger ii gdbserver 7.11.1-0ubuntu1~ amd64 GNU Debugger (remote server) ii gdisk 1.0.1-1build1 amd64 GPT fdisk text-mode partitioning tool ii gedit 3.18.3-0ubuntu4 amd64 official text editor of the GNOME desktop environme ii gedit-common 3.18.3-0ubuntu4 all official text editor of the GNOME desktop environme ii genisoimage 9:1.1.11-3ubuntu amd64 Creates ISO-9660 CD-ROM filesystem images ii geoclue 0.12.99-4ubuntu1 amd64 Geographic information framework ii geoclue-ubuntu-geoip 1.0.2+14.04.2013 amd64 Provide positioning for GeoClue via Ubuntu GeoIP se ii geoip-database 20160408-1 all IP lookup command line tools that use the GeoIP lib ii gettext 0.19.7-2ubuntu3 amd64 GNU Internationalization utilities ii gettext-base 0.19.7-2ubuntu3 amd64 GNU Internationalization utilities for the base sys ii ghostscript 9.18~dfsg~0-0ubu amd64 interpreter for the PostScript language and for PDF ii ghostscript-x 9.18~dfsg~0-0ubu amd64 interpreter for the PostScript language and for PDF ii gir1.2-accounts-1.0:amd 1.21+16.04.20160 amd64 typelib file for libaccounts-glib0 ii gir1.2-appindicator3-0. 12.10.1+16.04.20 amd64 Typelib files for libappindicator3-1. ii gir1.2-atk-1.0 2.18.0-1 amd64 ATK accessibility toolkit (GObject introspection) ii gir1.2-atspi-2.0 2.18.3-4ubuntu1 amd64 Assistive Technology Service Provider (GObject intr ii gir1.2-dbusmenu-glib-0. 16.04.1+16.04.20 amd64 typelib file for libdbusmenu-glib4 ii gir1.2-dee-1.0 1.2.7+15.04.2015 amd64 GObject introspection data for the Dee library ii gir1.2-freedesktop:amd6 1.46.0-3ubuntu1 amd64 Introspection data for some FreeDesktop components ii gir1.2-gdata-0.0:amd64 0.17.4-1 amd64 GObject introspection data for the GData webservice ii gir1.2-gdkpixbuf-2.0:am 2.32.2-1ubuntu1. amd64 GDK Pixbuf library - GObject-Introspection ii gir1.2-glib-2.0:amd64 1.46.0-3ubuntu1 amd64 Introspection data for GLib, GObject, Gio and GModu ii gir1.2-gnomekeyring-1.0 3.12.0-1build1 amd64 GNOME keyring services library - introspection data ii gir1.2-goa-1.0:amd64 3.18.3-1ubuntu2 amd64 Introspection data for GNOME Online Accounts ii gir1.2-gst-plugins-base 1.8.3-1ubuntu0.2 amd64 GObject introspection data for the GStreamer Plugin ii gir1.2-gstreamer-1.0 1.8.3-1~ubuntu0. amd64 GObject introspection data for the GStreamer librar ii gir1.2-gtk-3.0:amd64 3.18.9-1ubuntu3. amd64 GTK+ graphical user interface library -- gir bindin ii gir1.2-gtksource-3.0:am 3.18.2-1 amd64 gir files for the GTK+ syntax highlighting widget ii gir1.2-gudev-1.0:amd64 1:230-2 amd64 libgudev-1.0 introspection data ii gir1.2-ibus-1.0:amd64 1.5.11-1ubuntu2 amd64 Intelligent Input Bus - introspection data ii gir1.2-javascriptcoregt 2.18.0-0ubuntu0. amd64 JavaScript engine library from WebKitGTK+ - GObject ii gir1.2-json-1.0:amd64 1.1.2-0ubuntu1 amd64 GLib JSON manipulation library (introspection data) ii gir1.2-notify-0.7 0.7.6-2svn1 amd64 sends desktop notifications to a notification daemo ii gir1.2-packagekitglib-1 0.8.17-4ubuntu6~ amd64 GObject introspection data for the PackageKit GLib ii gir1.2-pango-1.0:amd64 1.38.1-1 amd64 Layout and rendering of internationalized text - gi ii gir1.2-peas-1.0:amd64 1.16.0-1ubuntu2 amd64 Application plugin library (introspection files) ii gir1.2-rb-3.0:amd64 3.3-1ubuntu7 amd64 GObject introspection data for the rhythmbox music ii gir1.2-secret-1:amd64 0.18.4-1ubuntu2 amd64 Secret store (GObject-Introspection) ii gir1.2-signon-1.0 1.13+16.04.20151 amd64 GObject introspection data for the Signon library ii gir1.2-soup-2.4 2.52.2-1ubuntu0. amd64 GObject introspection data for the libsoup HTTP lib ii gir1.2-totem-1.0:amd64 3.18.1-1ubuntu4 amd64 GObject introspection data for Totem media player ii gir1.2-totem-plparser-1 3.10.6-1ubuntu1 amd64 GObject introspection data for the Totem Playlist P ii gir1.2-udisks-2.0:amd64 2.1.7-1ubuntu1 amd64 GObject based library to access udisks2 - introspec ii gir1.2-unity-5.0:amd64 7.1.4+16.04.2016 amd64 GObject introspection data for the Unity library ii gir1.2-vte-2.91:amd64 0.42.5-1ubuntu1 amd64 GObject introspection data for the VTE library ii gir1.2-webkit2-4.0:amd6 2.18.0-0ubuntu0. amd64 Web content engine library for GTK+ - GObject intro ii gir1.2-wnck-3.0:amd64 3.14.1-2 amd64 GObject introspection data for the WNCK library ii git 1:2.7.4-0ubuntu1 amd64 fast, scalable, distributed revision control system ii git-man 1:2.7.4-0ubuntu1 all fast, scalable, distributed revision control system ii gkbd-capplet 3.6.0-1ubuntu2 amd64 GNOME control center tools for libgnomekbd ii glib-networking:amd64 2.48.2-1~ubuntu1 amd64 network-related giomodules for GLib ii glib-networking-common 2.48.2-1~ubuntu1 all network-related giomodules for GLib - data files ii glib-networking-service 2.48.2-1~ubuntu1 amd64 network-related giomodules for GLib - D-Bus service ii gnome-accessibility-the 3.18.0-2ubuntu1 all Accessibility themes for the GNOME desktop ii gnome-bluetooth 3.18.2-1ubuntu2 amd64 GNOME Bluetooth tools ii gnome-calculator 1:3.18.3-0ubuntu amd64 GNOME desktop calculator ii gnome-calendar 3.20.4-0ubuntu0. amd64 Calendar application for GNOME ii gnome-desktop3-data 3.18.2-1ubuntu1 all Common files for GNOME desktop apps ii gnome-disk-utility 3.18.3.1-1ubuntu amd64 manage and configure disk drives and media ii gnome-font-viewer 3.16.2-1ubuntu1 amd64 font viewer for GNOME ii gnome-keyring 3.18.3-0ubuntu2 amd64 GNOME keyring services (daemon and tools) ii gnome-mahjongg 1:3.18.0-1 amd64 classic Eastern tile game for GNOME ii gnome-menus 3.13.3-6ubuntu3. amd64 GNOME implementation of the freedesktop menu specif ii gnome-mines 1:3.18.2-2 amd64 popular minesweeper puzzle game for GNOME ii gnome-orca 3.18.2-1ubuntu3 all Scriptable screen reader ii gnome-power-manager 3.18.0-1ubuntu1 amd64 power management tool for the GNOME desktop ii gnome-screensaver 3.6.1-7ubuntu4 amd64 GNOME screen saver and locker ii gnome-screenshot 3.18.0-1ubuntu2 amd64 screenshot application for GNOME ii gnome-session-bin 3.18.1.2-1ubuntu amd64 GNOME Session Manager - Minimal runtime ii gnome-session-canberra 0.30-2.1ubuntu1 amd64 GNOME session log in and log out sound events ii gnome-session-common 3.18.1.2-1ubuntu all GNOME Session Manager - common files ii gnome-settings-daemon-s 3.18.2-0ubuntu3. all gnome-settings-daemon schemas ii gnome-software 3.20.5-0ubuntu0. amd64 Software Center for GNOME ii gnome-software-common 3.20.5-0ubuntu0. all Software Center for GNOME (common files) ii gnome-sudoku 1:3.18.4-0ubuntu amd64 Sudoku puzzle game for GNOME ii gnome-system-log 3.9.90-4 amd64 system log viewer for GNOME ii gnome-system-monitor 3.18.2-1ubuntu1 amd64 Process viewer and system resource monitor for GNOM ii gnome-terminal 3.18.3-1ubuntu1 amd64 GNOME terminal emulator application ii gnome-terminal-data 3.18.3-1ubuntu1 all Data files for the GNOME terminal emulator ii gnome-user-guide 3.18.1-1 all GNOME user's guide ii gnome-user-share 3.14.2-2ubuntu4 amd64 User level public file sharing via WebDAV or ObexFT ii gnome-video-effects 0.4.1-3ubuntu1 all Collection of GStreamer effects ii gnupg 1.4.20-1ubuntu3. amd64 GNU privacy guard - a free PGP replacement ii gnupg-agent 2.1.11-6ubuntu2 amd64 GNU privacy guard - cryptographic agent ii gnupg2 2.1.11-6ubuntu2 amd64 GNU privacy guard - a free PGP replacement (new v2. ii gpgv 1.4.20-1ubuntu3. amd64 GNU privacy guard - signature verification tool ii grep 2.25-1~16.04.1 amd64 GNU grep, egrep and fgrep ii grilo-plugins-0.2-base: 0.2.17-0ubuntu2 amd64 Framework for discovering and browsing media - Base ii groff-base 1.22.3-7 amd64 GNU troff text-formatting system (base system compo ii grub-common 2.02~beta2-36ubu amd64 GRand Unified Bootloader (common files) ii grub-gfxpayload-lists 0.7 amd64 GRUB gfxpayload blacklist ii grub-pc 2.02~beta2-36ubu amd64 GRand Unified Bootloader, version 2 (PC/BIOS versio ii grub-pc-bin 2.02~beta2-36ubu amd64 GRand Unified Bootloader, version 2 (PC/BIOS binari ii grub2-common 2.02~beta2-36ubu amd64 GRand Unified Bootloader (common files for version ii gsettings-desktop-schem 3.18.1-1ubuntu1 all GSettings desktop-wide schemas ii gsettings-ubuntu-schema 0.0.5+16.04.2016 all GSettings deskop-wide schemas for Ubuntu ii gsfonts 1:8.11+urwcyr1.0 all Fonts for the Ghostscript interpreter(s) ii gstreamer1.0-alsa:amd64 1.8.3-1ubuntu0.2 amd64 GStreamer plugin for ALSA ii gstreamer1.0-clutter-3. 3.0.18-1 amd64 Clutter PLugin for GStreamer 1.0 ii gstreamer1.0-plugins-ba 1.8.3-1ubuntu0.2 amd64 GStreamer plugins from the "base" set ii gstreamer1.0-plugins-ba 1.8.3-1ubuntu0.2 amd64 GStreamer helper programs from the "base" set ii gstreamer1.0-plugins-go 1.8.3-1ubuntu0.4 amd64 GStreamer plugins from the "good" set ii gstreamer1.0-pulseaudio 1.8.3-1ubuntu0.4 amd64 GStreamer plugin for PulseAudio ii gstreamer1.0-tools 1.8.3-1~ubuntu0. amd64 Tools for use with GStreamer ii gstreamer1.0-x:amd64 1.8.3-1ubuntu0.2 amd64 GStreamer plugins for X11 and Pango ii gtk2-engines-murrine:am 0.98.2-0ubuntu2. amd64 cairo-based gtk+-2.0 theme engine ii gucharmap 1:3.18.2-1ubuntu amd64 Unicode character picker and font browser ii guile-2.0-libs:amd64 2.0.11+1-10 amd64 Core Guile libraries ii gvfs:amd64 1.28.2-1ubuntu1~ amd64 userspace virtual filesystem - GIO module ii gvfs-backends 1.28.2-1ubuntu1~ amd64 userspace virtual filesystem - backends ii gvfs-bin 1.28.2-1ubuntu1~ amd64 userspace virtual filesystem - binaries ii gvfs-common 1.28.2-1ubuntu1~ all userspace virtual filesystem - common data files ii gvfs-daemons 1.28.2-1ubuntu1~ amd64 userspace virtual filesystem - servers ii gvfs-fuse 1.28.2-1ubuntu1~ amd64 userspace virtual filesystem - fuse server ii gvfs-libs:amd64 1.28.2-1ubuntu1~ amd64 userspace virtual filesystem - private libraries ii gzip 1.6-4ubuntu1 amd64 GNU compression utilities ii hardening-includes 2.7ubuntu2 all Makefile for enabling compiler flags for security h ii hdparm 9.48+ds-1 amd64 tune hard disk parameters for high performance ii hicolor-icon-theme 0.15-0ubuntu1 all default fallback theme for FreeDesktop.org icon the ii hostname 3.16ubuntu2 amd64 utility to set/show the host name or domain name ii hplip 3.16.3+repack0-1 amd64 HP Linux Printing and Imaging System (HPLIP) ii hplip-data 3.16.3+repack0-1 all HP Linux Printing and Imaging - data files ii hud 14.10+16.04.2016 amd64 Backend for the Unity HUD ii humanity-icon-theme 0.6.10.1 all Humanity Icon theme ii hunspell-en-us 20070829-6ubuntu all English_american dictionary for hunspell ii hwdata 0.267-1 all hardware identification / configuration data ii hyphen-en-us 2.8.8-2ubuntu1 all US English hyphenation patterns for LibreOffice/Ope ii ibus 1.5.11-1ubuntu2 amd64 Intelligent Input Bus - core ii ibus-gtk:amd64 1.5.11-1ubuntu2 amd64 Intelligent Input Bus - GTK+2 support ii ibus-gtk3:amd64 1.5.11-1ubuntu2 amd64 Intelligent Input Bus - GTK+3 support ii ibus-table 1.9.1-3ubuntu2 all table engine for IBus ii ifupdown 0.8.10ubuntu1.2 amd64 high level tools to configure network interfaces ii im-config 0.29-1ubuntu12.4 all Input method configuration framework ii imagemagick 8:6.8.9.9-7ubunt amd64 image manipulation programs -- binaries ii imagemagick-6.q16 8:6.8.9.9-7ubunt amd64 image manipulation programs -- quantum depth Q16 ii imagemagick-common 8:6.8.9.9-7ubunt all image manipulation programs -- infrastructure ii indicator-application 12.10.1+16.04.20 amd64 Application Indicators ii indicator-appmenu 15.02.0+16.04.20 amd64 Indicator for application menus. ii indicator-bluetooth 0.0.6+16.04.2016 amd64 System bluetooth indicator. ii indicator-datetime 15.10+16.04.2016 amd64 Simple clock ii indicator-keyboard 0.0.0+16.04.2015 amd64 Keyboard indicator ii indicator-messages 13.10.1+15.10.20 amd64 indicator that collects messages that need a respon ii indicator-power 12.10.6+16.04.20 amd64 Indicator showing power state. ii indicator-printers 0.1.7+15.04.2015 amd64 indicator showing active print jobs ii indicator-session 12.10.5+16.04.20 amd64 indicator showing session management, status and us ii indicator-sound 12.10.2+16.04.20 amd64 System sound indicator. ii info 6.1.0.dfsg.1-5 amd64 Standalone GNU Info documentation browser ii init 1.29ubuntu4 amd64 System-V-like init utilities - metapackage ii init-system-helpers 1.29ubuntu4 all helper tools for all init systems ii initramfs-tools 0.122ubuntu8.9 all generic modular initramfs generator (automation) ii initramfs-tools-bin 0.122ubuntu8.9 amd64 binaries used by initramfs-tools ii initramfs-tools-core 0.122ubuntu8.9 all generic modular initramfs generator (core tools) ii initscripts 2.88dsf-59.3ubun amd64 scripts for initializing and shutting down the syst ii inputattach 1:1.4.9-1 amd64 utility to connect serial-attached peripherals to t ii insserv 1.14.0-5ubuntu3 amd64 boot sequence organizer using LSB init.d script dep ii install-info 6.1.0.dfsg.1-5 amd64 Manage installed documentation in info format ii intel-gpu-tools 1.14-1 amd64 tools for debugging the Intel graphics driver ii intltool-debian 0.35.0+20060710. all Help i18n of RFC822 compliant config files ii ippusbxd 1.23-1 amd64 Daemon for IPP USB printer support ii iproute2 4.3.0-1ubuntu3.1 amd64 networking and traffic control tools ii iptables 1.6.0-2ubuntu3 amd64 administration tools for packet filtering and NAT ii iputils-arping 3:20121221-5ubun amd64 Tool to send ICMP echo requests to an ARP address ii iputils-ping 3:20121221-5ubun amd64 Tools to test the reachability of network hosts ii iputils-tracepath 3:20121221-5ubun amd64 Tools to trace the network path to a remote host ii irqbalance 1.1.0-2ubuntu1 amd64 Daemon to balance interrupts for SMP systems ii isc-dhcp-client 4.3.3-5ubuntu12. amd64 DHCP client for automatically obtaining an IP addre ii isc-dhcp-common 4.3.3-5ubuntu12. amd64 common files used by all of the isc-dhcp packages ii iso-codes 3.65-1 all ISO language, territory, currency, script codes and ii iw 3.17-1 amd64 tool for configuring Linux wireless devices ii java-common 0.56ubuntu2 all Base package for Java runtimes ii javascript-common 11 all Base support for JavaScript library packages ii jayatana 2.7-0ubuntu5 amd64 Java Native Library for ayatana project ii kbd 1.15.5-1ubuntu5 amd64 Linux console font and keytable utilities ii kerneloops-daemon 0.12+git20140509 amd64 kernel oops tracker ii keyboard-configuration 1.108ubuntu15.3 all system-wide keyboard preferences ii klibc-utils 2.0.4-8ubuntu1.1 amd64 small utilities built with klibc for early boot ii kmod 22-1ubuntu5 amd64 tools for managing Linux kernel modules ii krb5-locales 1.13.2+dfsg-5ubu all Internationalization support for MIT Kerberos ii language-pack-en 1:16.04+20161009 all translation updates for language English ii language-pack-en-base 1:16.04+20160627 all translations for language English ii language-pack-gnome-en 1:16.04+20161009 all GNOME translation updates for language English ii language-pack-gnome-en- 1:16.04+20160627 all GNOME translations for language English ii language-selector-commo 0.165.4 all Language selector for Ubuntu ii language-selector-gnome 0.165.4 all Language selector for Ubuntu ii laptop-detect 0.13.7ubuntu2 amd64 attempt to detect a laptop ii less 481-2.1ubuntu0.2 amd64 pager program similar to more ii liba11y-profile-manager 0.1.10-0ubuntu3 amd64 Accessibility profile manager - Shared library ii liba11y-profile-manager 0.1.10-0ubuntu3 all Accessibility Profile Manager - GSettings data ii libaa1:amd64 1.4p5-44build1 amd64 ASCII art library ii libabw-0.1-1v5:amd64 0.1.1-2ubuntu2 amd64 library for reading and writing AbiWord(tm) documen ii libaccount-plugin-1.0-0 0.1.8+16.04.2016 amd64 libaccount-plugin for Unity Control Center ii libaccount-plugin-gener 0.12+16.04.20160 amd64 GNOME Control Center account plugin for single sign ii libaccount-plugin-googl 0.12+16.04.20160 amd64 GNOME Control Center account plugin for single sign ii libaccounts-glib0:amd64 1.21+16.04.20160 amd64 library for single signon ii libaccounts-qt5-1:amd64 1.14+16.04.20151 amd64 QT library for single sign on ii libaccountsservice0:amd 0.6.40-2ubuntu11 amd64 query and manipulate user account information - sha ii libacl1:amd64 2.2.52-3 amd64 Access control list shared library ii libaio1:amd64 0.3.110-2 amd64 Linux kernel AIO access library - shared library ii libalgorithm-diff-perl 1.19.03-1 all module to find differences between files ii libalgorithm-diff-xs-pe 0.04-4build1 amd64 module to find differences between files (XS accele ii libalgorithm-merge-perl 0.08-3 all Perl module for three-way merge of textual data ii libandroid-properties1 0.1.0+git2015101 amd64 Library to provide access to get, set and list Andr ii libao-common 1.1.0-3ubuntu1 all Cross Platform Audio Output Library (Common files) ii libao4:amd64 1.1.0-3ubuntu1 amd64 Cross Platform Audio Output Library ii libapparmor-perl 2.10.95-0ubuntu2 amd64 AppArmor library Perl bindings ii libapparmor1:amd64 2.10.95-0ubuntu2 amd64 changehat AppArmor library ii libappindicator3-1 12.10.1+16.04.20 amd64 Application Indicators ii libappstream-glib8:amd6 0.5.13-1ubuntu5 amd64 GNOME library to access AppStream services ii libappstream3:amd64 0.9.4-1ubuntu3 amd64 Library to access AppStream services ii libapt-inst2.0:amd64 1.2.24 amd64 deb package format runtime library ii libapt-pkg-perl 0.1.29build7 amd64 Perl interface to libapt-pkg ii libapt-pkg5.0:amd64 1.2.24 amd64 package management runtime library ii libarchive-zip-perl 1.56-2 all Perl module for manipulation of ZIP archives ii libarchive13:amd64 3.1.2-11ubuntu0. amd64 Multi-format archive and compression library (share ii libart-2.0-2:amd64 2.3.21-2 amd64 Library of functions for 2D graphics - runtime file ii libasan2:amd64 5.4.0-6ubuntu1~1 amd64 AddressSanitizer -- a fast memory error detector ii libasn1-8-heimdal:amd64 1.7~git20150920+ amd64 Heimdal Kerberos - ASN.1 library ii libasound2:amd64 1.1.0-0ubuntu1 amd64 shared library for ALSA applications ii libasound2-data 1.1.0-0ubuntu1 all Configuration files and profiles for ALSA drivers ii libasound2-plugins:amd6 1.1.0-0ubuntu1 amd64 ALSA library additional plugins ii libaspell15:amd64 0.60.7~20110707- amd64 GNU Aspell spell-checker runtime library ii libasprintf-dev:amd64 0.19.7-2ubuntu3 amd64 GNU Internationalization library development files ii libasprintf0v5:amd64 0.19.7-2ubuntu3 amd64 GNU library to use fprintf and friends in C++ ii libassuan0:amd64 2.4.2-2 amd64 IPC library for the GnuPG components ii libasyncns0:amd64 0.8-5build1 amd64 Asynchronous name service query library ii libatasmart4:amd64 0.19-3 amd64 ATA S.M.A.R.T. reading and parsing library ii libatk-adaptor:amd64 2.18.1-2ubuntu1 amd64 AT-SPI 2 toolkit bridge ii libatk-bridge2.0-0:amd6 2.18.1-2ubuntu1 amd64 AT-SPI 2 toolkit bridge - shared library ii libatk1.0-0:amd64 2.18.0-1 amd64 ATK accessibility toolkit ii libatk1.0-data 2.18.0-1 all Common files for the ATK accessibility toolkit ii libatkmm-1.6-1v5:amd64 2.24.2-1 amd64 C++ wrappers for ATK accessibility toolkit (shared ii libatm1:amd64 1:2.5.1-1.5 amd64 shared library for ATM (Asynchronous Transfer Mode) ii libatomic1:amd64 5.4.0-6ubuntu1~1 amd64 support library providing __atomic built-in functio ii libatspi2.0-0:amd64 2.18.3-4ubuntu1 amd64 Assistive Technology Service Provider Interface - s ii libattr1:amd64 1:2.4.47-2 amd64 Extended attribute shared library ii libaudio2:amd64 1.9.4-4 amd64 Network Audio System - shared libraries ii libaudit-common 1:2.4.5-1ubuntu2 all Dynamic library for security auditing - common file ii libaudit1:amd64 1:2.4.5-1ubuntu2 amd64 Dynamic library for security auditing ii libauthen-sasl-perl 2.1600-1 all Authen::SASL - SASL Authentication framework ii libavahi-client3:amd64 0.6.32~rc+dfsg-1 amd64 Avahi client library ii libavahi-common-data:am 0.6.32~rc+dfsg-1 amd64 Avahi common data files ii libavahi-common3:amd64 0.6.32~rc+dfsg-1 amd64 Avahi common library ii libavahi-core7:amd64 0.6.32~rc+dfsg-1 amd64 Avahi's embeddable mDNS/DNS-SD library ii libavahi-glib1:amd64 0.6.32~rc+dfsg-1 amd64 Avahi GLib integration library ii libavahi-ui-gtk3-0:amd6 0.6.32~rc+dfsg-1 amd64 Avahi GTK+ User interface library for GTK3 ii libavc1394-0:amd64 0.5.4-4 amd64 control IEEE 1394 audio/video devices ii libbabeltrace-ctf1:amd6 1.3.2-1 amd64 Common Trace Format (CTF) library ii libbabeltrace1:amd64 1.3.2-1 amd64 Babeltrace conversion libraries ii libbamf3-2:amd64 0.5.3~bzr0+16.04 amd64 Window matching library - shared library ii libbind9-140:amd64 1:9.10.3.dfsg.P4 amd64 BIND9 Shared Library used by BIND ii libblkid1:amd64 2.27.1-6ubuntu3. amd64 block device ID library ii libbluetooth3:amd64 5.37-0ubuntu5.1 amd64 Library to use the BlueZ Linux Bluetooth stack ii libboost-date-time1.58. 1.58.0+dfsg-5ubu amd64 set of date-time libraries based on generic program ii libboost-filesystem1.58 1.58.0+dfsg-5ubu amd64 filesystem operations (portable paths, iteration ov ii libboost-iostreams1.58. 1.58.0+dfsg-5ubu amd64 Boost.Iostreams Library ii libboost-system1.58.0:a 1.58.0+dfsg-5ubu amd64 Operating system (e.g. diagnostics support) library ii libbrlapi0.6:amd64 5.3.1-2ubuntu2.1 amd64 braille display access via BRLTTY - shared library ii libbsd0:amd64 0.8.2-1 amd64 utility functions from BSD systems - shared library ii libbz2-1.0:amd64 1.0.6-8 amd64 high-quality block-sorting file compressor library ii libc-bin 2.23-0ubuntu9 amd64 GNU C Library: Binaries ii libc-dev-bin 2.23-0ubuntu9 amd64 GNU C Library: Development binaries ii libc6:amd64 2.23-0ubuntu9 amd64 GNU C Library: Shared libraries ii libc6-dbg:amd64 2.23-0ubuntu9 amd64 GNU C Library: detached debugging symbols ii libc6-dev:amd64 2.23-0ubuntu9 amd64 GNU C Library: Development Libraries and Header Fil ii libcaca0:amd64 0.99.beta19-2bui amd64 colour ASCII art library ii libcairo-gobject2:amd64 1.14.6-1 amd64 Cairo 2D vector graphics library (GObject library) ii libcairo-perl 1.106-1build1 amd64 Perl interface to the Cairo graphics library ii libcairo2:amd64 1.14.6-1 amd64 Cairo 2D vector graphics library ii libcairomm-1.0-1v5:amd6 1.12.0-1 amd64 C++ wrappers for Cairo (shared libraries) ii libcamel-1.2-54:amd64 3.18.5-1ubuntu1 amd64 Evolution MIME message handling library ii libcanberra-gtk-module: 0.30-2.1ubuntu1 amd64 translates GTK+ widgets signals to event sounds ii libcanberra-gtk0:amd64 0.30-2.1ubuntu1 amd64 GTK+ helper for playing widget event sounds with li ii libcanberra-gtk3-0:amd6 0.30-2.1ubuntu1 amd64 GTK+ 3.0 helper for playing widget event sounds wit ii libcanberra-gtk3-module 0.30-2.1ubuntu1 amd64 translates GTK3 widgets signals to event sounds ii libcanberra-pulse:amd64 0.30-2.1ubuntu1 amd64 PulseAudio backend for libcanberra ii libcanberra0:amd64 0.30-2.1ubuntu1 amd64 simple abstract interface for playing event sounds ii libcap-ng0:amd64 0.7.7-1 amd64 An alternate POSIX capabilities library ii libcap2:amd64 1:2.24-12 amd64 POSIX 1003.1e capabilities (library) ii libcap2-bin 1:2.24-12 amd64 POSIX 1003.1e capabilities (utilities) ii libcapnp-0.5.3:amd64 0.5.3-2ubuntu1 amd64 Cap'n Proto C++ library ii libcc1-0:amd64 5.4.0-6ubuntu1~1 amd64 GCC cc1 plugin for GDB ii libcdio-cdda1:amd64 0.83-4.2ubuntu1 amd64 library to read and control digital audio CDs ii libcdio-paranoia1:amd64 0.83-4.2ubuntu1 amd64 library to read digital audio CDs with error correc ii libcdio13:amd64 0.83-4.2ubuntu1 amd64 library to read and control CD-ROM ii libcdparanoia0:amd64 3.10.2+debian-11 amd64 audio extraction tool for sampling CDs (library) ii libcdr-0.1-1:amd64 0.1.2-2ubuntu2 amd64 library for reading and converting Corel DRAW files ii libcgi-fast-perl 1:2.10-1 all CGI subclass for work with FCGI ii libcgi-pm-perl 4.26-1 all module for Common Gateway Interface applications ii libcgmanager0:amd64 0.39-2ubuntu5 amd64 Central cgroup manager daemon (client library) ii libcheese-gtk25:amd64 3.18.1-2ubuntu3 amd64 tool to take pictures and videos from your webcam - ii libcheese8:amd64 3.18.1-2ubuntu3 amd64 tool to take pictures and videos from your webcam - ii libcilkrts5:amd64 5.4.0-6ubuntu1~1 amd64 Intel Cilk Plus language extensions (runtime) ii libclass-accessor-perl 0.34-1 all Perl module that automatically generates accessors ii libclone-perl 0.38-1build1 amd64 module for recursively copying Perl datatypes ii libclucene-contribs1v5: 2.3.3.4-4.1 amd64 language specific text analyzers (runtime) ii libclucene-core1v5:amd6 2.3.3.4-4.1 amd64 core library for full-featured text search engine ( ii libclutter-1.0-0:amd64 1.24.2-1 amd64 Open GL based interactive canvas library ii libclutter-1.0-common 1.24.2-1 all Open GL based interactive canvas library (common fi ii libclutter-gst-3.0-0:am 3.0.18-1 amd64 Open GL based interactive canvas library GStreamer ii libclutter-gtk-1.0-0:am 1.6.6-1 amd64 Open GL based interactive canvas library GTK+ widge ii libcmis-0.5-5v5:amd64 0.5.1-2ubuntu2 amd64 CMIS protocol client library ii libcogl-common 1.22.0-2 all Object oriented GL/GLES Abstraction/Utility Layer ( ii libcogl-pango20:amd64 1.22.0-2 amd64 Object oriented GL/GLES Abstraction/Utility Layer ii libcogl-path20:amd64 1.22.0-2 amd64 Object oriented GL/GLES Abstraction/Utility Layer ii libcogl20:amd64 1.22.0-2 amd64 Object oriented GL/GLES Abstraction/Utility Layer ii libcolamd2.9.1:amd64 1:4.4.6-1 amd64 column approximate minimum degree ordering library ii libcolord2:amd64 1.2.12-1ubuntu1 amd64 system service to manage device colour profiles -- ii libcolorhug2:amd64 1.2.12-1ubuntu1 amd64 library to access the ColorHug colourimeter -- runt ii libcolumbus1-common 1.1.0+15.10.2015 all error tolerant matching engine - common files ii libcolumbus1v5:amd64 1.1.0+15.10.2015 amd64 error tolerant matching engine - shared library ii libcomerr2:amd64 1.42.13-1ubuntu1 amd64 common error description library ii libcompizconfig0:amd64 1:0.9.12.2+16.04 amd64 Settings library for plugins - OpenCompositing Proj ii libcrack2:amd64 2.9.2-1build2 amd64 pro-active password checker library ii libcroco3:amd64 0.6.11-1 amd64 Cascading Style Sheet (CSS) parsing and manipulatio ii libcryptsetup4:amd64 2:1.6.6-5ubuntu2 amd64 disk encryption support - shared library ii libcups2:amd64 2.1.3-4ubuntu0.3 amd64 Common UNIX Printing System(tm) - Core library ii libcupscgi1:amd64 2.1.3-4ubuntu0.3 amd64 Common UNIX Printing System(tm) - CGI library ii libcupsfilters1:amd64 1.8.3-2ubuntu3.1 amd64 OpenPrinting CUPS Filters - Shared library ii libcupsimage2:amd64 2.1.3-4ubuntu0.3 amd64 Common UNIX Printing System(tm) - Raster image libr ii libcupsmime1:amd64 2.1.3-4ubuntu0.3 amd64 Common UNIX Printing System(tm) - MIME library ii libcupsppdc1:amd64 2.1.3-4ubuntu0.3 amd64 Common UNIX Printing System(tm) - PPD manipulation ii libcurl3:amd64 7.47.0-1ubuntu2. amd64 easy-to-use client-side URL transfer library (OpenS ii libcurl3-gnutls:amd64 7.47.0-1ubuntu2. amd64 easy-to-use client-side URL transfer library (GnuTL ii libdaemon0:amd64 0.14-6 amd64 lightweight C library for daemons - runtime library ii libdata-alias-perl 1.20-1build1 amd64 module to create aliases instead of copies ii libdatrie1:amd64 0.2.10-2 amd64 Double-array trie library ii libdb5.3:amd64 5.3.28-11 amd64 Berkeley v5.3 Database Libraries [runtime] ii libdbus-1-3:amd64 1.10.6-1ubuntu3. amd64 simple interprocess messaging system (library) ii libdbus-glib-1-2:amd64 0.106-1 amd64 simple interprocess messaging system (GLib-based sh ii libdbusmenu-glib4:amd64 16.04.1+16.04.20 amd64 library for passing menus over DBus ii libdbusmenu-gtk3-4:amd6 16.04.1+16.04.20 amd64 library for passing menus over DBus - GTK+ version ii libdbusmenu-gtk4:amd64 16.04.1+16.04.20 amd64 library for passing menus over DBus - GTK+ version ii libdbusmenu-qt2:amd64 0.9.3+16.04.2016 amd64 Qt implementation of the DBusMenu protocol ii libdbusmenu-qt5:amd64 0.9.3+16.04.2016 amd64 Qt5 implementation of the DBusMenu protocol ii libdconf1:amd64 0.24.0-2 amd64 simple configuration storage system - runtime libra ii libdebconfclient0:amd64 0.198ubuntu1 amd64 Debian Configuration Management System (C-implement ii libdecoration0:amd64 1:0.9.12.2+16.04 amd64 Compiz window decoration library ii libdee-1.0-4:amd64 1.2.7+15.04.2015 amd64 model to synchronize multiple instances over DBus - ii libdevmapper1.02.1:amd6 2:1.02.110-1ubun amd64 Linux Kernel Device Mapper userspace library ii libdfu1:amd64 0.7.0-0ubuntu4.3 amd64 Firmware update daemon library for DFU support ii libdigest-hmac-perl 1.03+dfsg-1 all module for creating standard message integrity chec ii libdjvulibre-text 3.5.27.1-5 all Linguistic support files for libdjvulibre ii libdjvulibre21:amd64 3.5.27.1-5 amd64 Runtime support for the DjVu image format ii libdmapsharing-3.0-2:am 2.9.34-1 amd64 DMAP client and server library - runtime ii libdns-export162 1:9.10.3.dfsg.P4 amd64 Exported DNS Shared Library ii libdns162:amd64 1:9.10.3.dfsg.P4 amd64 DNS Shared Library used by BIND ii libdotconf0:amd64 1.3-0.2 amd64 Configuration file parser library - runtime files ii libdouble-conversion1v5 2.0.1-3ubuntu2 amd64 routines to convert IEEE floats to and from strings ii libdpkg-perl 1.18.4ubuntu1.2 all Dpkg perl modules ii libdrm-amdgpu1:amd64 2.4.76-1~ubuntu1 amd64 Userspace interface to amdgpu-specific kernel DRM s ii libdrm-intel1:amd64 2.4.76-1~ubuntu1 amd64 Userspace interface to intel-specific kernel DRM se ii libdrm-nouveau2:amd64 2.4.76-1~ubuntu1 amd64 Userspace interface to nouveau-specific kernel DRM ii libdrm-radeon1:amd64 2.4.76-1~ubuntu1 amd64 Userspace interface to radeon-specific kernel DRM s ii libdrm2:amd64 2.4.76-1~ubuntu1 amd64 Userspace interface to kernel DRM services -- runti ii libdumbnet1:amd64 1.12-7 amd64 dumb, portable networking library -- shared library ii libdv4:amd64 1.0.0-7 amd64 software library for DV format digital video (runti ii libe-book-0.1-1:amd64 0.1.2-2ubuntu1 amd64 library for reading and converting various e-book ii libebackend-1.2-10:amd6 3.18.5-1ubuntu1 amd64 Utility library for evolution data servers ii libebook-1.2-16:amd64 3.18.5-1ubuntu1 amd64 Client library for evolution address books ii libebook-contacts-1.2-2 3.18.5-1ubuntu1 amd64 Client library for evolution contacts books ii libecal-1.2-19:amd64 3.18.5-1ubuntu1 amd64 Client library for evolution calendars ii libedata-book-1.2-25:am 3.18.5-1ubuntu1 amd64 Backend library for evolution address books ii libedata-cal-1.2-28:amd 3.18.5-1ubuntu1 amd64 Backend library for evolution calendars ii libedataserver-1.2-21:a 3.18.5-1ubuntu1 amd64 Utility library for evolution data servers ii libedataserverui-1.2-1: 3.18.5-1ubuntu1 amd64 Utility library for evolution data servers ii libedit2:amd64 3.1-20150325-1ub amd64 BSD editline and history libraries ii libefivar0:amd64 0.23-2 amd64 Library to manage UEFI variables ii libegl1-mesa:amd64 17.0.7-0ubuntu0. amd64 free implementation of the EGL API -- runtime ii libelf1:amd64 0.165-3ubuntu1 amd64 library to read and write ELF files ii libemail-valid-perl 1.198-1 all Perl module for checking the validity of Internet e ii libenchant1c2a:amd64 1.6.0-10.1build2 amd64 Wrapper library for various spell checker engines ( ii libencode-locale-perl 1.05-1 all utility to determine the locale encoding ii libeot0:amd64 0.01-3ubuntu1 amd64 Library for parsing/converting Embedded OpenType fi ii libepoxy0:amd64 1.3.1-1ubuntu0.1 amd64 OpenGL function pointer management library ii liberror-perl 0.17-1.2 all Perl module for error/exception handling in an OO-i ii libespeak1:amd64 1.48.04+dfsg-2 amd64 Multi-lingual software speech synthesizer: shared l ii libestr0 0.1.10-1 amd64 Helper functions for handling strings (lib) ii libetonyek-0.1-1:amd64 0.1.6-1ubuntu1 amd64 library for reading and converting Apple Keynote pr ii libevdev2:amd64 1.4.6+dfsg-1 amd64 wrapper library for evdev devices ii libevdocument3-4:amd64 3.18.2-1ubuntu4. amd64 Document (PostScript, PDF) rendering library ii libevent-2.0-5:amd64 2.0.21-stable-2u amd64 Asynchronous event notification library ii libevent-core-2.0-5:amd 2.0.21-stable-2u amd64 Asynchronous event notification library (core) ii libevview3-3:amd64 3.18.2-1ubuntu4. amd64 Document (PostScript, PDF) rendering library - Gtk+ ii libexempi3:amd64 2.2.2-2 amd64 library to parse XMP metadata (Library) ii libexif12:amd64 0.6.21-2 amd64 library to parse EXIF files ii libexiv2-14:amd64 0.25-2.1ubuntu16 amd64 EXIF/IPTC/XMP metadata manipulation library ii libexpat1:amd64 2.1.0-7ubuntu0.1 amd64 XML parsing C library - runtime library ii libexpat1-dev:amd64 2.1.0-7ubuntu0.1 amd64 XML parsing C library - development kit ii libexporter-tiny-perl 0.042-1 all tiny exporter similar to Sub::Exporter ii libexttextcat-2.0-0:amd 3.4.4-1ubuntu3 amd64 Language detection library ii libexttextcat-data 3.4.4-1ubuntu3 all Language detection library - data files ii libfakeroot:amd64 1.20.2-1ubuntu1 amd64 tool for simulating superuser privileges - shared l ii libfcgi-perl 0.77-1build1 amd64 helper module for FastCGI ii libfcitx-config4:amd64 1:4.2.9.1-1ubunt amd64 Flexible Input Method Framework - configuration sup ii libfcitx-gclient0:amd64 1:4.2.9.1-1ubunt amd64 Flexible Input Method Framework - D-Bus client libr ii libfcitx-utils0:amd64 1:4.2.9.1-1ubunt amd64 Flexible Input Method Framework - utility support l ii libfdisk1:amd64 2.27.1-6ubuntu3. amd64 fdisk partitioning library ii libffi6:amd64 3.2.1-4 amd64 Foreign Function Interface library runtime ii libfftw3-double3:amd64 3.3.4-2ubuntu1 amd64 Library for computing Fast Fourier Transforms - Dou ii libfftw3-single3:amd64 3.3.4-2ubuntu1 amd64 Library for computing Fast Fourier Transforms - Sin ii libfile-basedir-perl 0.07-1 all Perl module to use the freedesktop basedir specific ii libfile-copy-recursive- 0.38-1 all Perl extension for recursively copying files and di ii libfile-desktopentry-pe 0.22-1 all Perl module to handle freedesktop .desktop files ii libfile-fcntllock-perl 0.22-3 amd64 Perl module for file locking with fcntl(2) ii libfile-listing-perl 6.04-1 all module to parse directory listings ii libfile-mimeinfo-perl 0.27-1 all Perl module to determine file types ii libflac8:amd64 1.3.1-4 amd64 Free Lossless Audio Codec - runtime C library ii libfont-afm-perl 1.20-1 all Font::AFM - Interface to Adobe Font Metrics files ii libfontconfig1:amd64 2.11.94-0ubuntu1 amd64 generic font configuration library - runtime ii libfontembed1:amd64 1.8.3-2ubuntu3.1 amd64 OpenPrinting CUPS Filters - Font Embed Shared libra ii libfontenc1:amd64 1:1.1.3-1 amd64 X11 font encoding library ii libframe6:amd64 2.5.0daily13.06. amd64 Touch Frame Library ii libfreehand-0.1-1:amd64 0.1.1-1ubuntu1 amd64 Library for parsing the FreeHand file format struct ii libfreerdp-cache1.1:amd 1.1.0~git2014092 amd64 Free Remote Desktop Protocol library (cache library ii libfreerdp-client1.1:am 1.1.0~git2014092 amd64 Free Remote Desktop Protocol library (client librar ii libfreerdp-codec1.1:amd 1.1.0~git2014092 amd64 Free Remote Desktop Protocol library (codec library ii libfreerdp-common1.1.0: 1.1.0~git2014092 amd64 Free Remote Desktop Protocol library (common librar ii libfreerdp-core1.1:amd6 1.1.0~git2014092 amd64 Free Remote Desktop Protocol library (core library) ii libfreerdp-crypto1.1:am 1.1.0~git2014092 amd64 Free Remote Desktop Protocol library (freerdp-crypt ii libfreerdp-gdi1.1:amd64 1.1.0~git2014092 amd64 Free Remote Desktop Protocol library (GDI library) ii libfreerdp-locale1.1:am 1.1.0~git2014092 amd64 Free Remote Desktop Protocol library (locale librar ii libfreerdp-plugins-stan 1.1.0~git2014092 amd64 RDP client for Windows Terminal Services (plugins) ii libfreerdp-primitives1. 1.1.0~git2014092 amd64 Free Remote Desktop Protocol library (primitives li ii libfreerdp-utils1.1:amd 1.1.0~git2014092 amd64 Free Remote Desktop Protocol library (freerdp-utils ii libfreetype6:amd64 2.6.1-0.1ubuntu2 amd64 FreeType 2 font engine, shared library files ii libfribidi0:amd64 0.19.7-1 amd64 Free Implementation of the Unicode BiDi algorithm ii libfuse2:amd64 2.9.4-1ubuntu3.1 amd64 Filesystem in Userspace (library) ii libfwup0:amd64 0.5-2ubuntu5 amd64 Library to manage UEFI firmware updates ii libfwupd1:amd64 0.7.0-0ubuntu4.3 amd64 Firmware update daemon library ii libgail-3-0:amd64 3.18.9-1ubuntu3. amd64 GNOME Accessibility Implementation Library -- share ii libgail-common:amd64 2.24.30-1ubuntu1 amd64 GNOME Accessibility Implementation Library -- commo ii libgail18:amd64 2.24.30-1ubuntu1 amd64 GNOME Accessibility Implementation Library -- share ii libgbm1:amd64 17.0.7-0ubuntu0. amd64 generic buffer management API -- runtime ii libgc1c2:amd64 1:7.4.2-7.3ubunt amd64 conservative garbage collector for C and C++ ii libgcab-1.0-0:amd64 0.7-1 amd64 Microsoft Cabinet file manipulation library ii libgcc-5-dev:amd64 5.4.0-6ubuntu1~1 amd64 GCC support library (development files) ii libgcc1:amd64 1:6.0.1-0ubuntu1 amd64 GCC support library ii libgck-1-0:amd64 3.18.0-1ubuntu1 amd64 Glib wrapper library for PKCS#11 - runtime ii libgconf-2-4:amd64 3.2.6-3ubuntu6 amd64 GNOME configuration database system (shared librari ii libgcr-3-common 3.18.0-1ubuntu1 all Library for Crypto UI related tasks - common files ii libgcr-base-3-1:amd64 3.18.0-1ubuntu1 amd64 Library for Crypto related tasks ii libgcr-ui-3-1:amd64 3.18.0-1ubuntu1 amd64 Library for Crypto UI related tasks ii libgcrypt20:amd64 1.6.5-2ubuntu0.3 amd64 LGPL Crypto library - runtime library ii libgd3:amd64 2.1.1-4ubuntu0.1 amd64 GD Graphics Library ii libgdata-common 0.17.4-1 all Library for accessing GData webservices - common da ii libgdata22:amd64 0.17.4-1 amd64 Library for accessing GData webservices - shared li ii libgdbm3:amd64 1.8.3-13.1 amd64 GNU dbm database routines (runtime version) ii libgdk-pixbuf2.0-0:amd6 2.32.2-1ubuntu1. amd64 GDK Pixbuf library ii libgdk-pixbuf2.0-common 2.32.2-1ubuntu1. all GDK Pixbuf library - data files ii libgee-0.8-2:amd64 0.18.0-1 amd64 GObject based collection and utility library ii libgeis1:amd64 2.2.17+16.04.201 amd64 Gesture engine interface support ii libgeoclue0:amd64 0.12.99-4ubuntu1 amd64 C API for GeoClue ii libgeocode-glib0:amd64 3.18.2-1 amd64 geocoding and reverse geocoding GLib library using ii libgeoip1:amd64 1.6.9-1 amd64 non-DNS IP-to-country resolver library ii libgeonames0:amd64 0.2+16.04.201603 amd64 Parse and query the geonames database dump ii libgettextpo-dev:amd64 0.19.7-2ubuntu3 amd64 GNU Internationalization library development files ii libgettextpo0:amd64 0.19.7-2ubuntu3 amd64 GNU Internationalization library ii libgexiv2-2:amd64 0.10.3-2 amd64 GObject-based wrapper around the Exiv2 library ii libgirepository-1.0-1:a 1.46.0-3ubuntu1 amd64 Library for handling GObject introspection data (ru ii libgl1-mesa-dri:amd64 17.0.7-0ubuntu0. amd64 free implementation of the OpenGL API -- DRI module ii libgl1-mesa-glx:amd64 17.0.7-0ubuntu0. amd64 free implementation of the OpenGL API -- GLX runtim ii libglapi-mesa:amd64 17.0.7-0ubuntu0. amd64 free implementation of the GL API -- shared library ii libglew1.13:amd64 1.13.0-2 amd64 OpenGL Extension Wrangler - runtime environment ii libglewmx1.13:amd64 1.13.0-2 amd64 OpenGL Extension Wrangler (Multiple Rendering Conte ii libglib-perl 3:1.320-2 amd64 interface to the GLib and GObject libraries ii libglib2.0-0:amd64 2.48.2-0ubuntu1 amd64 GLib library of C routines ii libglib2.0-bin 2.48.2-0ubuntu1 amd64 Programs for the GLib library ii libglib2.0-data 2.48.2-0ubuntu1 all Common files for GLib library ii libglibmm-2.4-1v5:amd64 2.46.3-1 amd64 C++ wrapper for the GLib toolkit (shared libraries) ii libglu1-mesa:amd64 9.0.0-2.1 amd64 Mesa OpenGL utility library (GLU) ii libgmime-2.6-0:amd64 2.6.20-1 amd64 MIME message parser and creator library - runtime ii libgmp10:amd64 2:6.1.0+dfsg-2 amd64 Multiprecision arithmetic library ii libgnome-bluetooth13:am 3.18.2-1ubuntu2 amd64 GNOME Bluetooth tools - support library ii libgnome-desktop-3-12:a 3.18.2-1ubuntu1 amd64 Utility library for loading .desktop files - runtim ii libgnome-keyring-common 3.12.0-1build1 all GNOME keyring services library - data files ii libgnome-keyring0:amd64 3.12.0-1build1 amd64 GNOME keyring services library ii libgnome-menu-3-0:amd64 3.13.3-6ubuntu3. amd64 GNOME implementation of the freedesktop menu specif ii libgnomekbd-common 3.6.0-1ubuntu2 all GNOME library to manage keyboard configuration - co ii libgnomekbd8:amd64 3.6.0-1ubuntu2 amd64 GNOME library to manage keyboard configuration - sh ii libgnutls-openssl27:amd 3.4.10-4ubuntu1. amd64 GNU TLS library - OpenSSL wrapper ii libgnutls30:amd64 3.4.10-4ubuntu1. amd64 GNU TLS library - main runtime library ii libgoa-1.0-0b:amd64 3.18.3-1ubuntu2 amd64 library for GNOME Online Accounts ii libgoa-1.0-common 3.18.3-1ubuntu2 all library for GNOME Online Accounts - common files ii libgom-1.0-0:amd64 0.3.1-1 amd64 Object mapper from GObjects to SQLite ii libgom-1.0-common 0.3.1-1 all libgom architecture-independent files ii libgomp1:amd64 5.4.0-6ubuntu1~1 amd64 GCC OpenMP (GOMP) support library ii libgpg-error0:amd64 1.21-2ubuntu1 amd64 library for common error values and messages in Gnu ii libgpgme11:amd64 1.6.0-1 amd64 GPGME - GnuPG Made Easy (library) ii libgphoto2-6:amd64 2.5.9-3 amd64 gphoto2 digital camera library ii libgphoto2-l10n 2.5.9-3 all gphoto2 digital camera library - localized messages ii libgphoto2-port12:amd64 2.5.9-3 amd64 gphoto2 digital camera port library ii libgpm2:amd64 1.20.4-6.1 amd64 General Purpose Mouse - shared library ii libgpod-common 0.8.3-6ubuntu2 amd64 common files for libgpod ii libgpod4:amd64 0.8.3-6ubuntu2 amd64 library to read and write songs and artwork to an i ii libgrail6 3.1.0+16.04.2016 amd64 Gesture Recognition And Instantiation Library ii libgraphite2-3:amd64 1.3.10-0ubuntu0. amd64 Font rendering engine for Complex Scripts -- librar ii libgrilo-0.2-1:amd64 0.2.15-1 amd64 Framework for discovering and browsing media - Shar ii libgs9:amd64 9.18~dfsg~0-0ubu amd64 interpreter for the PostScript language and for PDF ii libgs9-common 9.18~dfsg~0-0ubu all interpreter for the PostScript language and for PDF ii libgsettings-qt1:amd64 0.1+16.04.201603 amd64 Library to access GSettings from Qt ii libgssapi-krb5-2:amd64 1.13.2+dfsg-5ubu amd64 MIT Kerberos runtime libraries - krb5 GSS-API Mecha ii libgssapi3-heimdal:amd6 1.7~git20150920+ amd64 Heimdal Kerberos - GSSAPI support library ii libgstreamer-plugins-ba 1.8.3-1ubuntu0.2 amd64 GStreamer libraries from the "base" set ii libgstreamer-plugins-go 1.8.3-1ubuntu0.4 amd64 GStreamer development files for libraries from the ii libgstreamer1.0-0:amd64 1.8.3-1~ubuntu0. amd64 Core GStreamer libraries and elements ii libgtk-3-0:amd64 3.18.9-1ubuntu3. amd64 GTK+ graphical user interface library ii libgtk-3-bin 3.18.9-1ubuntu3. amd64 programs for the GTK+ graphical user interface libr ii libgtk-3-common 3.18.9-1ubuntu3. all common files for the GTK+ graphical user interface ii libgtk2-perl 2:1.2498-1 amd64 Perl interface to the 2.x series of the Gimp Toolki ii libgtk2.0-0:amd64 2.24.30-1ubuntu1 amd64 GTK+ graphical user interface library ii libgtk2.0-bin 2.24.30-1ubuntu1 amd64 programs for the GTK+ graphical user interface libr ii libgtk2.0-common 2.24.30-1ubuntu1 all common files for the GTK+ graphical user interface ii libgtkmm-2.4-1v5:amd64 1:2.24.4-2 amd64 C++ wrappers for GTK+ (shared libraries) ii libgtkmm-3.0-1v5:amd64 3.18.0-1 amd64 C++ wrappers for GTK+ (shared libraries) ii libgtksourceview-3.0-1: 3.18.2-1 amd64 shared libraries for the GTK+ syntax highlighting w ii libgtksourceview-3.0-co 3.18.2-1 all common files for the GTK+ syntax highlighting widge ii libgtkspell3-3-0:amd64 3.0.7-2 amd64 spell-checking addon for GTK+'s TextView widget ii libgtop-2.0-10:amd64 2.32.0-1 amd64 gtop system monitoring library (shared) ii libgtop2-common 2.32.0-1 all gtop system monitoring library (common) ii libgucharmap-2-90-7:amd 1:3.18.2-1ubuntu amd64 Unicode browser widget library (shared library) ii libgudev-1.0-0:amd64 1:230-2 amd64 GObject-based wrapper library for libudev ii libgusb2:amd64 0.2.9-0ubuntu1 amd64 GLib wrapper around libusb1 ii libgutenprint2 5.2.11-1 amd64 runtime for the Gutenprint printer driver library ii libgweather-3-6:amd64 3.18.2-0ubuntu0. amd64 GWeather shared library ii libgweather-common 3.18.2-0ubuntu0. all GWeather common files ii libgxps2:amd64 0.2.3.2-1 amd64 handling and rendering XPS documents (library) ii libhardware2 0.1.0+git2015101 amd64 Library to provide access to the Android libhardwar ii libharfbuzz-icu0:amd64 1.0.1-1ubuntu0.1 amd64 OpenType text shaping engine ICU backend ii libharfbuzz0b:amd64 1.0.1-1ubuntu0.1 amd64 OpenType text shaping engine (shared library) ii libhcrypto4-heimdal:amd 1.7~git20150920+ amd64 Heimdal Kerberos - crypto library ii libheimbase1-heimdal:am 1.7~git20150920+ amd64 Heimdal Kerberos - Base library ii libheimntlm0-heimdal:am 1.7~git20150920+ amd64 Heimdal Kerberos - NTLM support library ii libhogweed4:amd64 3.2-1ubuntu0.16. amd64 low level cryptographic library (public-key cryptos ii libhpmud0:amd64 3.16.3+repack0-1 amd64 HP Multi-Point Transport Driver (hpmud) run-time li ii libhtml-form-perl 6.03-1 all module that represents an HTML form element ii libhtml-format-perl 2.11-2 all module for transforming HTML into various formats ii libhtml-parser-perl 3.72-1 amd64 collection of modules that parse HTML text document ii libhtml-tagset-perl 3.20-2 all Data tables pertaining to HTML ii libhtml-template-perl 2.95-2 all module for using HTML templates with Perl ii libhtml-tree-perl 5.03-2 all Perl module to represent and create HTML syntax tre ii libhttp-cookies-perl 6.01-1 all HTTP cookie jars ii libhttp-daemon-perl 6.01-1 all simple http server class ii libhttp-date-perl 6.02-1 all module of date conversion routines ii libhttp-message-perl 6.11-1 all perl interface to HTTP style messages ii libhttp-negotiate-perl 6.00-2 all implementation of content negotiation ii libhud2:amd64 14.10+16.04.2016 amd64 library for exporting items to the Unity HUD ii libhunspell-1.3-0:amd64 1.3.3-4ubuntu1 amd64 spell checker and morphological analyzer (shared li ii libhx509-5-heimdal:amd6 1.7~git20150920+ amd64 Heimdal Kerberos - X509 support library ii libhybris 0.1.0+git2015101 amd64 Allows to run bionic-based HW adaptations in glibc ii libhybris-common1 0.1.0+git2015101 amd64 Common library that contains the Android linker and ii libhyphen0:amd64 2.8.8-2ubuntu1 amd64 ALTLinux hyphenation library - shared library ii libibus-1.0-5:amd64 1.5.11-1ubuntu2 amd64 Intelligent Input Bus - shared library ii libical1a:amd64 1.0.1-0ubuntu2 amd64 iCalendar library implementation in C (runtime) ii libice6:amd64 2:1.0.9-1 amd64 X11 Inter-Client Exchange library ii libicu55:amd64 55.1-7ubuntu0.3 amd64 International Components for Unicode ii libidn11:amd64 1.32-3ubuntu1.2 amd64 GNU Libidn library, implementation of IETF IDN spec ii libido3-0.1-0:amd64 13.10.0+16.04.20 amd64 Shared library providing extra gtk menu items for d ii libiec61883-0:amd64 1.2.0-0.2 amd64 an partial implementation of IEC 61883 ii libieee1284-3:amd64 0.2.11-12 amd64 cross-platform library for parallel port access ii libijs-0.35:amd64 0.35-12 amd64 IJS raster image transport protocol: shared library ii libilmbase12:amd64 2.2.0-11ubuntu2 amd64 several utility libraries from ILM used by OpenEXR ii libimobiledevice6:amd64 1.2.0+dfsg-3~ubu amd64 Library for communicating with the iPhone and iPod ii libindicator3-7 12.10.2+16.04.20 amd64 panel indicator applet - shared library ii libinput-bin 1.6.3-1ubuntu1~1 amd64 input device management and event handling library ii libinput10:amd64 1.6.3-1ubuntu1~1 amd64 input device management and event handling library ii libio-html-perl 1.001-1 all open an HTML file with automatic charset detection ii libio-pty-perl 1:1.08-1.1build1 amd64 Perl module for pseudo tty IO ii libio-socket-inet6-perl 2.72-2 all object interface for AF_INET6 domain sockets ii libio-socket-ssl-perl 2.024-1 all Perl module implementing object oriented interface ii libio-string-perl 1.08-3 all Emulate IO::File interface for in-core strings ii libipc-run-perl 0.94-1 all Perl module for running processes ii libipc-system-simple-pe 1.25-3 all Perl module to run commands simply, with detailed d ii libisc-export160 1:9.10.3.dfsg.P4 amd64 Exported ISC Shared Library ii libisc160:amd64 1:9.10.3.dfsg.P4 amd64 ISC Shared Library used by BIND ii libisccc140:amd64 1:9.10.3.dfsg.P4 amd64 Command Channel Library used by BIND ii libisccfg140:amd64 1:9.10.3.dfsg.P4 amd64 Config File Handling Library used by BIND ii libisl15:amd64 0.16.1-1 amd64 manipulating sets and relations of integer points b ii libitm1:amd64 5.4.0-6ubuntu1~1 amd64 GNU Transactional Memory Library ii libiw30:amd64 30~pre9-8ubuntu1 amd64 Wireless tools - library ii libjack-jackd2-0:amd64 1.9.10+20150825g amd64 JACK Audio Connection Kit (libraries) ii libjasper1:amd64 1.900.1-debian1- amd64 JasPer JPEG-2000 runtime library ii libjavascriptcoregtk-4. 2.18.0-0ubuntu0. amd64 JavaScript engine library from WebKitGTK+ ii libjbig0:amd64 2.1-3.1 amd64 JBIGkit libraries ii libjbig2dec0 0.12+20150918-1u amd64 JBIG2 decoder library - shared libraries ii libjpeg-turbo8:amd64 1.4.2-0ubuntu3 amd64 IJG JPEG compliant runtime library. ii libjpeg8:amd64 8c-2ubuntu8 amd64 Independent JPEG Group's JPEG runtime library (depe ii libjs-jquery 1.11.3+dfsg-4 all JavaScript library for dynamic web applications ii libjson-c2:amd64 0.11-4ubuntu2 amd64 JSON manipulation library - shared library ii libjson-glib-1.0-0:amd6 1.1.2-0ubuntu1 amd64 GLib JSON manipulation library ii libjson-glib-1.0-common 1.1.2-0ubuntu1 all GLib JSON manipulation library (common files) ii libk5crypto3:amd64 1.13.2+dfsg-5ubu amd64 MIT Kerberos runtime libraries - Crypto Library ii libkeyutils1:amd64 1.5.9-8ubuntu1 amd64 Linux Key Management Utilities (library) ii libklibc 2.0.4-8ubuntu1.1 amd64 minimal libc subset for use with initramfs ii libkmod2:amd64 22-1ubuntu5 amd64 libkmod shared library ii libkpathsea6:amd64 2015.20160222.37 amd64 TeX Live: path search library for TeX (runtime part ii libkrb5-26-heimdal:amd6 1.7~git20150920+ amd64 Heimdal Kerberos - libraries ii libkrb5-3:amd64 1.13.2+dfsg-5ubu amd64 MIT Kerberos runtime libraries ii libkrb5support0:amd64 1.13.2+dfsg-5ubu amd64 MIT Kerberos runtime libraries - Support library ii libksba8:amd64 1.3.3-1ubuntu0.1 amd64 X.509 and CMS support library ii liblangtag-common 0.5.7-2ubuntu1 all library to access tags for identifying languages -- ii liblangtag1:amd64 0.5.7-2ubuntu1 amd64 library to access tags for identifying languages ii liblcms2-2:amd64 2.6-3ubuntu2 amd64 Little CMS 2 color management library ii liblcms2-utils 2.6-3ubuntu2 amd64 Little CMS 2 color management library (utilities) ii libldap-2.4-2:amd64 2.4.42+dfsg-2ubu amd64 OpenLDAP libraries ii libldb1:amd64 2:1.1.24-1ubuntu amd64 LDAP-like embedded database - shared library ii liblightdm-gobject-1-0: 1.18.3-0ubuntu1. amd64 LightDM GObject client library ii liblircclient0:amd64 0.9.0-0ubuntu6 amd64 infra-red remote control support - client library ii liblist-moreutils-perl 0.413-1build1 amd64 Perl module with additional list functions not foun ii libllvm3.8:amd64 1:3.8-2ubuntu4 amd64 Modular compiler and toolchain technologies, runtim ii libllvm4.0:amd64 1:4.0-1ubuntu1~1 amd64 Modular compiler and toolchain technologies, runtim ii liblocale-gettext-perl 1.07-1build1 amd64 module using libc functions for internationalizatio ii liblouis-data 2.6.4-2ubuntu0.1 all Braille translation library - data ii liblouis9:amd64 2.6.4-2ubuntu0.1 amd64 Braille translation library - shared libs ii liblouisutdml-bin 2.5.0-3 amd64 Braille UTDML translation utilities ii liblouisutdml-data 2.5.0-3 all Braille UTDML translation library - data ii liblouisutdml6:amd64 2.5.0-3 amd64 Braille UTDML translation library - shared libs ii liblqr-1-0:amd64 0.4.2-2 amd64 converts plain array images into multi-size represe ii liblsan0:amd64 5.4.0-6ubuntu1~1 amd64 LeakSanitizer -- a memory leak detector (runtime) ii libltdl7:amd64 2.4.6-0.1 amd64 System independent dlopen wrapper for GNU libtool ii liblua5.2-0:amd64 5.2.4-1ubuntu1 amd64 Shared library for the Lua interpreter version 5.2 ii liblwp-mediatypes-perl 6.02-1 all module to guess media type for a file or a URL ii liblwp-protocol-https-p 6.06-2 all HTTPS driver for LWP::UserAgent ii liblwres141:amd64 1:9.10.3.dfsg.P4 amd64 Lightweight Resolver Library used by BIND ii liblz4-1:amd64 0.0~r131-2ubuntu amd64 Fast LZ compression algorithm library - runtime ii liblzma5:amd64 5.1.1alpha+20120 amd64 XZ-format compression library ii liblzo2-2:amd64 2.08-1.2 amd64 data compression library ii libmagic1:amd64 1:5.25-2ubuntu1 amd64 File type determination library using "magic" numbe ii libmagickcore-6.q16-2:a 8:6.8.9.9-7ubunt amd64 low-level image manipulation library -- quantum dep ii libmagickcore-6.q16-2-e 8:6.8.9.9-7ubunt amd64 low-level image manipulation library - extra codecs ii libmagickwand-6.q16-2:a 8:6.8.9.9-7ubunt amd64 image manipulation library ii libmailtools-perl 2.13-1 all Manipulate email in perl programs ii libmbim-glib4:amd64 1.12.2-2ubuntu1 amd64 Support library to use the MBIM protocol ii libmbim-proxy 1.12.2-2ubuntu1 amd64 Proxy to communicate with MBIM ports ii libmedia1 0.1.0+git2015101 amd64 Library to provide access to the Android Media HAL ii libmediaart-2.0-0:amd64 1.9.0-2 amd64 media art extraction and cache management library ii libmessaging-menu0:amd6 13.10.1+15.10.20 amd64 Messaging Menu - shared library ii libmetacity-private3a:a 1:3.18.7-0ubuntu amd64 library for the Metacity window manager ii libmhash2:amd64 0.9.9.9-7 amd64 Library for cryptographic hashing and message authe ii libminiupnpc10:amd64 1.9.20140610-2ub amd64 UPnP IGD client lightweight library ii libmirclient9:amd64 0.26.3+16.04.201 amd64 Display server for Ubuntu - client library ii libmircommon5:amd64 0.21.0+16.04.201 amd64 Display server for Ubuntu - shared library ii libmircommon7:amd64 0.26.3+16.04.201 amd64 Display server for Ubuntu - shared library ii libmircore1:amd64 0.26.3+16.04.201 amd64 Display server for Ubuntu - shared library ii libmirprotobuf3:amd64 0.26.3+16.04.201 amd64 Display server for Ubuntu - RPC definitions ii libmm-glib0:amd64 1.4.12-1ubuntu1 amd64 D-Bus service for managing modems - shared librarie ii libmng2:amd64 2.0.2-0ubuntu3 amd64 Multiple-image Network Graphics library ii libmnl0:amd64 1.0.3-5 amd64 minimalistic Netlink communication library ii libmount1:amd64 2.27.1-6ubuntu3. amd64 device mounting library ii libmpc3:amd64 1.0.3-1 amd64 multiple precision complex floating-point library ii libmpdec2:amd64 2.4.2-1 amd64 library for decimal floating point arithmetic (runt ii libmpfr4:amd64 3.1.4-1 amd64 multiple precision floating-point computation ii libmpx0:amd64 5.4.0-6ubuntu1~1 amd64 Intel memory protection extensions (runtime) ii libmspack0:amd64 0.5-1ubuntu0.16. amd64 library for Microsoft compression formats (shared l ii libmspub-0.1-1:amd64 0.1.2-2ubuntu1 amd64 library for parsing the mspub file structure ii libmtdev1:amd64 1.1.5-1ubuntu2 amd64 Multitouch Protocol Translation Library - shared li ii libmtp-common 1.1.10-2ubuntu1 all Media Transfer Protocol (MTP) common files ii libmtp-runtime 1.1.10-2ubuntu1 amd64 Media Transfer Protocol (MTP) runtime tools ii libmtp9:amd64 1.1.10-2ubuntu1 amd64 Media Transfer Protocol (MTP) library ii libmwaw-0.3-3:amd64 0.3.7-1ubuntu2.1 amd64 import library for some old Mac text documents ii libmythes-1.2-0:amd64 2:1.2.4-1ubuntu3 amd64 simple thesaurus library ii libnatpmp1:amd64 20110808-4 amd64 portable and fully compliant implementation of NAT- ii libnautilus-extension1a 1:3.18.4.is.3.14 amd64 libraries for nautilus components - runtime version ii libncurses5:amd64 6.0+20160213-1ub amd64 shared libraries for terminal handling ii libncursesw5:amd64 6.0+20160213-1ub amd64 shared libraries for terminal handling (wide charac ii libndp0:amd64 1.4-2ubuntu0.16. amd64 Library for Neighbor Discovery Protocol ii libneon27-gnutls:amd64 0.30.1-3build1 amd64 HTTP and WebDAV client library (GnuTLS enabled) ii libnet-dbus-perl 1.1.0-3build1 amd64 Perl extension for the DBus bindings ii libnet-dns-perl 0.81-2build1 amd64 Perform DNS queries from a Perl script ii libnet-domain-tld-perl 1.73-1 all list of currently available Top-level Domains (TLDs ii libnet-http-perl 6.09-1 all module providing low-level HTTP connection client ii libnet-ip-perl 1.26-1 all Perl extension for manipulating IPv4/IPv6 addresses ii libnet-libidn-perl 0.12.ds-2build2 amd64 Perl bindings for GNU Libidn ii libnet-smtp-ssl-perl 1.03-1 all Perl module providing SSL support to Net::SMTP ii libnet-ssleay-perl 1.72-1build1 amd64 Perl module for Secure Sockets Layer (SSL) ii libnetfilter-conntrack3 1.0.5-1 amd64 Netfilter netlink-conntrack library ii libnetpbm10 2:10.0-15.3 amd64 Graphics conversion tools shared libraries ii libnettle6:amd64 3.2-1ubuntu0.16. amd64 low level cryptographic library (symmetric and one- ii libnewt0.52:amd64 0.52.18-1ubuntu2 amd64 Not Erik's Windowing Toolkit - text mode windowing ii libnfnetlink0:amd64 1.0.1-3 amd64 Netfilter netlink library ii libnih-dbus1:amd64 1.0.3-4.3ubuntu1 amd64 NIH D-Bus Bindings Library ii libnih1:amd64 1.0.3-4.3ubuntu1 amd64 NIH Utility Library ii libnl-3-200:amd64 3.2.27-1ubuntu0. amd64 library for dealing with netlink sockets ii libnl-genl-3-200:amd64 3.2.27-1ubuntu0. amd64 library for dealing with netlink sockets - generic ii libnm-glib-vpn1:amd64 1.2.6-0ubuntu0.1 amd64 network management framework (GLib VPN shared libra ii libnm-glib4:amd64 1.2.6-0ubuntu0.1 amd64 network management framework (GLib shared library) ii libnm-gtk-common 1.2.6-0ubuntu0.1 all library for wireless and mobile dialogs - common fi ii libnm-gtk0:amd64 1.2.6-0ubuntu0.1 amd64 library for wireless and mobile dialogs (libnm-glib ii libnm-util2:amd64 1.2.6-0ubuntu0.1 amd64 network management framework (shared library) ii libnm0:amd64 1.2.6-0ubuntu0.1 amd64 GObject-based client library for NetworkManager ii libnma-common 1.2.6-0ubuntu0.1 all library for wireless and mobile dialogs - common fi ii libnma0:amd64 1.2.6-0ubuntu0.1 amd64 library for wireless and mobile dialogs (libnm vers ii libnotify-bin 0.7.6-2svn1 amd64 sends desktop notifications to a notification daemo ii libnotify4:amd64 0.7.6-2svn1 amd64 sends desktop notifications to a notification daemo ii libnpth0:amd64 1.2-3 amd64 replacement for GNU Pth using system threads ii libnspr4:amd64 2:4.13.1-0ubuntu amd64 NetScape Portable Runtime Library ii libnss-mdns:amd64 0.10-7 amd64 NSS module for Multicast DNS name resolution ii libnss3:amd64 2:3.28.4-0ubuntu amd64 Network Security Service libraries ii libnss3-nssdb 2:3.28.4-0ubuntu all Network Security Security libraries - shared databa ii libnuma1:amd64 2.0.11-1ubuntu1 amd64 Libraries for controlling NUMA policy ii libnux-4.0-0 4.0.8+16.04.2016 amd64 Visual rendering toolkit for real-time applications ii libnux-4.0-common 4.0.8+16.04.2016 all Visual rendering toolkit for real-time applications ii liboauth0:amd64 1.0.3-0ubuntu2 amd64 C library for implementing OAuth 1.0 ii libodfgen-0.1-1 0.1.6-1ubuntu2 amd64 library to generate ODF documents ii libogg0:amd64 1.3.2-1 amd64 Ogg bitstream library ii libopenexr22:amd64 2.2.0-10ubuntu2 amd64 runtime files for the OpenEXR image library ii libopus0:amd64 1.1.2-1ubuntu1 amd64 Opus codec runtime library ii liborc-0.4-0:amd64 1:0.4.25-1 amd64 Library of Optimized Inner Loops Runtime Compiler ii liborcus-0.10-0v5:amd64 0.9.2-4ubuntu2 amd64 library for processing spreadsheet documents ii liboxideqt-qmlplugin:am 1.21.5-0ubuntu0. amd64 Web browser engine for Qt (QML plugin) ii liboxideqtcore0:amd64 1.21.5-0ubuntu0. amd64 Web browser engine for Qt (core library and compone ii liboxideqtquick0:amd64 1.21.5-0ubuntu0. amd64 Web browser engine for Qt (QtQuick library) ii libp11-kit-gnome-keyrin 3.18.3-0ubuntu2 amd64 GNOME keyring module for the PKCS#11 module loading ii libp11-kit0:amd64 0.23.2-5~ubuntu1 amd64 library for loading and coordinating access to PKCS ii libpackagekit-glib2-16: 0.8.17-4ubuntu6~ amd64 Library for accessing PackageKit using GLib ii libpagemaker-0.0-0:amd6 0.0.3-1ubuntu1 amd64 Library for importing and converting PageMaker Docu ii libpam-gnome-keyring:am 3.18.3-0ubuntu2 amd64 PAM module to unlock the GNOME keyring upon login ii libpam-modules:amd64 1.1.8-3.2ubuntu2 amd64 Pluggable Authentication Modules for PAM ii libpam-modules-bin 1.1.8-3.2ubuntu2 amd64 Pluggable Authentication Modules for PAM - helper b ii libpam-runtime 1.1.8-3.2ubuntu2 all Runtime support for the PAM library ii libpam-systemd:amd64 229-4ubuntu21 amd64 system and service manager - PAM module ii libpam0g:amd64 1.1.8-3.2ubuntu2 amd64 Pluggable Authentication Modules library ii libpango-1.0-0:amd64 1.38.1-1 amd64 Layout and rendering of internationalized text ii libpango-perl 1.227-1 amd64 Perl module to layout and render international text ii libpango1.0-0:amd64 1.38.1-1 amd64 Layout and rendering of internationalized text (tra ii libpangocairo-1.0-0:amd 1.38.1-1 amd64 Layout and rendering of internationalized text ii libpangoft2-1.0-0:amd64 1.38.1-1 amd64 Layout and rendering of internationalized text ii libpangomm-1.4-1v5:amd6 2.38.1-1 amd64 C++ Wrapper for pango (shared libraries) ii libpangox-1.0-0:amd64 0.0.2-5 amd64 pango library X backend ii libpangoxft-1.0-0:amd64 1.38.1-1 amd64 Layout and rendering of internationalized text ii libpaper-utils 1.1.24+nmu4ubunt amd64 library for handling paper characteristics (utiliti ii libpaper1:amd64 1.1.24+nmu4ubunt amd64 library for handling paper characteristics ii libparse-debianchangelo 1.2.0-8 all parse Debian changelogs and output them in other fo ii libparted2:amd64 3.2-15 amd64 disk partition manipulator - shared library ii libpcap0.8:amd64 1.7.4-2 amd64 system interface for user-level packet capture ii libpci3:amd64 1:3.3.1-1.1ubunt amd64 Linux PCI Utilities (shared library) ii libpciaccess0:amd64 0.13.4-1 amd64 Generic PCI access library for X ii libpcre16-3:amd64 2:8.38-3.1 amd64 Perl 5 Compatible Regular Expression Library - 16 b ii libpcre3:amd64 2:8.38-3.1 amd64 Perl 5 Compatible Regular Expression Library - runt ii libpcsclite1:amd64 1.8.14-1ubuntu1. amd64 Middleware to access a smart card using PC/SC (libr ii libpeas-1.0-0:amd64 1.16.0-1ubuntu2 amd64 Application plugin library ii libpeas-1.0-0-python3lo 1.16.0-1ubuntu2 amd64 Application plugin library ii libpeas-common 1.16.0-1ubuntu2 all Application plugin library (common files) ii libperl5.22:amd64 5.22.1-9 amd64 shared Perl library ii libperlio-gzip-perl 0.19-1build1 amd64 module providing a PerlIO layer to gzip/gunzip ii libpipeline1:amd64 1.4.1-2 amd64 pipeline manipulation library ii libpixman-1-0:amd64 0.33.6-1 amd64 pixel-manipulation library for X and cairo ii libplist3:amd64 1.12-3.1ubuntu0. amd64 Library for handling Apple binary and XML property ii libplymouth4:amd64 0.9.2-3ubuntu13. amd64 graphical boot animation and logger - shared librar ii libpng12-0:amd64 1.2.54-1ubuntu1 amd64 PNG library - runtime ii libpolkit-agent-1-0:amd 0.105-14.1 amd64 PolicyKit Authentication Agent API ii libpolkit-backend-1-0:a 0.105-14.1 amd64 PolicyKit backend API ii libpolkit-gobject-1-0:a 0.105-14.1 amd64 PolicyKit Authorization API ii libpoppler-glib8:amd64 0.41.0-0ubuntu1. amd64 PDF rendering library (GLib-based shared library) ii libpoppler58:amd64 0.41.0-0ubuntu1. amd64 PDF rendering library ii libpopt0:amd64 1.16-10 amd64 lib for parsing cmdline parameters ii libportaudio2:amd64 19+svn20140130-1 amd64 Portable audio I/O - shared library ii libprocps4:amd64 2:3.3.10-4ubuntu amd64 library for accessing process information from /pro ii libprotobuf-lite9v5:amd 2.6.1-1.3 amd64 protocol buffers C++ library (lite version) ii libprotobuf9v5:amd64 2.6.1-1.3 amd64 protocol buffers C++ library ii libproxy1-plugin-gsetti 0.4.11-5ubuntu1 amd64 automatic proxy configuration management library (G ii libproxy1-plugin-networ 0.4.11-5ubuntu1 amd64 automatic proxy configuration management library (N ii libproxy1v5:amd64 0.4.11-5ubuntu1 amd64 automatic proxy configuration management library (s ii libpulse-mainloop-glib0 1:8.0-0ubuntu3.4 amd64 PulseAudio client libraries (glib support) ii libpulse0:amd64 1:8.0-0ubuntu3.4 amd64 PulseAudio client libraries ii libpulsedsp:amd64 1:8.0-0ubuntu3.4 amd64 PulseAudio OSS pre-load library ii libpwquality-common 1.3.0-0ubuntu1 all library for password quality checking and generatio ii libpwquality1:amd64 1.3.0-0ubuntu1 amd64 library for password quality checking and generatio ii libpython-all-dev:amd64 2.7.11-1 amd64 package depending on all supported Python developme ii libpython-dev:amd64 2.7.11-1 amd64 header files and a static library for Python (defau ii libpython-stdlib:amd64 2.7.11-1 amd64 interactive high-level object-oriented language (de ii libpython2.7:amd64 2.7.12-1ubuntu0~ amd64 Shared Python runtime library (version 2.7) ii libpython2.7-dev:amd64 2.7.12-1ubuntu0~ amd64 Header files and a static library for Python (v2.7) ii libpython2.7-minimal:am 2.7.12-1ubuntu0~ amd64 Minimal subset of the Python language (version 2.7) ii libpython2.7-stdlib:amd 2.7.12-1ubuntu0~ amd64 Interactive high-level object-oriented language (st ii libpython3-stdlib:amd64 3.5.1-3 amd64 interactive high-level object-oriented language (de ii libpython3.5:amd64 3.5.2-2ubuntu0~1 amd64 Shared Python runtime library (version 3.5) ii libpython3.5-minimal:am 3.5.2-2ubuntu0~1 amd64 Minimal subset of the Python language (version 3.5) ii libpython3.5-stdlib:amd 3.5.2-2ubuntu0~1 amd64 Interactive high-level object-oriented language (st ii libqmi-glib1:amd64 1.12.6-1 amd64 Support library to use the Qualcomm MSM Interface ( ii libqmi-proxy 1.12.6-1 amd64 Proxy to communicate with QMI ports ii libqpdf17:amd64 6.0.0-2 amd64 runtime library for PDF transformation/inspection s ii libqqwing2v5:amd64 1.3.4-1 amd64 tool for generating and solving Sudoku puzzles (lib ii libqt4-dbus:amd64 4:4.8.7+dfsg-5ub amd64 Qt 4 D-Bus module ii libqt4-declarative:amd6 4:4.8.7+dfsg-5ub amd64 Qt 4 Declarative module ii libqt4-network:amd64 4:4.8.7+dfsg-5ub amd64 Qt 4 network module ii libqt4-script:amd64 4:4.8.7+dfsg-5ub amd64 Qt 4 script module ii libqt4-sql:amd64 4:4.8.7+dfsg-5ub amd64 Qt 4 SQL module ii libqt4-sql-sqlite:amd64 4:4.8.7+dfsg-5ub amd64 Qt 4 SQLite 3 database driver ii libqt4-xml:amd64 4:4.8.7+dfsg-5ub amd64 Qt 4 XML module ii libqt4-xmlpatterns:amd6 4:4.8.7+dfsg-5ub amd64 Qt 4 XML patterns module ii libqt5core5a:amd64 5.5.1+dfsg-16ubu amd64 Qt 5 core module ii libqt5dbus5:amd64 5.5.1+dfsg-16ubu amd64 Qt 5 D-Bus module ii libqt5feedback5:amd64 5.0~git20130529- amd64 Qt Feedback module ii libqt5gui5:amd64 5.5.1+dfsg-16ubu amd64 Qt 5 GUI module ii libqt5multimedia5:amd64 5.5.1-4ubuntu2 amd64 Qt 5 Multimedia module ii libqt5network5:amd64 5.5.1+dfsg-16ubu amd64 Qt 5 network module ii libqt5opengl5:amd64 5.5.1+dfsg-16ubu amd64 Qt 5 OpenGL module ii libqt5organizer5:amd64 5.0~git20140515~ amd64 Qt PIM module, Organizer library ii libqt5positioning5:amd6 5.5.1-3ubuntu1 amd64 Qt Positioning module ii libqt5printsupport5:amd 5.5.1+dfsg-16ubu amd64 Qt 5 print support module ii libqt5qml5:amd64 5.5.1-2ubuntu6 amd64 Qt 5 QML module ii libqt5quick5:amd64 5.5.1-2ubuntu6 amd64 Qt 5 Quick library ii libqt5quicktest5:amd64 5.5.1-2ubuntu6 amd64 Qt 5 Quick Test library ii libqt5sql5:amd64 5.5.1+dfsg-16ubu amd64 Qt 5 SQL module ii libqt5sql5-sqlite:amd64 5.5.1+dfsg-16ubu amd64 Qt 5 SQLite 3 database driver ii libqt5svg5:amd64 5.5.1-2build1 amd64 Qt 5 SVG module ii libqt5test5:amd64 5.5.1+dfsg-16ubu amd64 Qt 5 test module ii libqt5webkit5:amd64 5.5.1+dfsg-2ubun amd64 Web content engine library for Qt ii libqt5widgets5:amd64 5.5.1+dfsg-16ubu amd64 Qt 5 widgets module ii libqt5xml5:amd64 5.5.1+dfsg-16ubu amd64 Qt 5 XML module ii libqtcore4:amd64 4:4.8.7+dfsg-5ub amd64 Qt 4 core module ii libqtdbus4:amd64 4:4.8.7+dfsg-5ub amd64 Qt 4 D-Bus module library ii libqtgui4:amd64 4:4.8.7+dfsg-5ub amd64 Qt 4 GUI module ii libquadmath0:amd64 5.4.0-6ubuntu1~1 amd64 GCC Quad-Precision Math Library ii libquvi-scripts 0.4.21-2 all library for parsing video download links (Lua scrip ii libquvi7:amd64 0.4.1-3 amd64 library for parsing video download links (runtime l ii libraptor2-0:amd64 2.0.14-1 amd64 Raptor 2 RDF syntax library ii librasqal3:amd64 0.9.32-1 amd64 Rasqal RDF query library ii libraw1394-11:amd64 2.1.1-2 amd64 library for direct access to IEEE 1394 bus (aka Fir ii libraw15:amd64 0.17.1-1 amd64 raw image decoder library ii librdf0:amd64 1.0.17-1build1 amd64 Redland Resource Description Framework (RDF) librar ii libreadline6:amd64 6.3-8ubuntu2 amd64 GNU readline and history libraries, run-time librar ii libreoffice-avmedia-bac 1:5.1.6~rc2-0ubu amd64 GStreamer backend for LibreOffice ii libreoffice-base-core 1:5.1.6~rc2-0ubu amd64 office productivity suite -- shared library ii libreoffice-calc 1:5.1.6~rc2-0ubu amd64 office productivity suite -- spreadsheet ii libreoffice-common 1:5.1.6~rc2-0ubu all office productivity suite -- arch-independent files ii libreoffice-core 1:5.1.6~rc2-0ubu amd64 office productivity suite -- arch-dependent files ii libreoffice-draw 1:5.1.6~rc2-0ubu amd64 office productivity suite -- drawing ii libreoffice-gnome 1:5.1.6~rc2-0ubu amd64 office productivity suite -- GNOME integration ii libreoffice-gtk 1:5.1.6~rc2-0ubu amd64 office productivity suite -- GTK+ integration ii libreoffice-help-en-us 1:5.1.4-0ubuntu1 all office productivity suite -- English_american help ii libreoffice-impress 1:5.1.6~rc2-0ubu amd64 office productivity suite -- presentation ii libreoffice-math 1:5.1.6~rc2-0ubu amd64 office productivity suite -- equation editor ii libreoffice-ogltrans 1:5.1.6~rc2-0ubu amd64 LibreOffice Impress extension for slide transitions ii libreoffice-pdfimport 1:5.1.6~rc2-0ubu amd64 PDF Import component for LibreOffice ii libreoffice-style-breez 1:5.1.6~rc2-0ubu all office productivity suite -- Breeze symbol style ii libreoffice-style-galax 1:5.1.6~rc2-0ubu all office productivity suite -- Galaxy (Default) symbo ii libreoffice-writer 1:5.1.6~rc2-0ubu amd64 office productivity suite -- word processor ii librest-0.7-0:amd64 0.7.93-1 amd64 REST service access library ii librevenge-0.0-0:amd64 0.0.4-4ubuntu1 amd64 Base Library for writing document interface filters ii librhythmbox-core9:amd6 3.3-1ubuntu7 amd64 support library for the rhythmbox music player ii libroken18-heimdal:amd6 1.7~git20150920+ amd64 Heimdal Kerberos - roken support library ii librsvg2-2:amd64 2.40.13-3 amd64 SAX-based renderer library for SVG files (runtime) ii librsvg2-common:amd64 2.40.13-3 amd64 SAX-based renderer library for SVG files (extra run ii librtmp1:amd64 2.4+20151223.git amd64 toolkit for RTMP streams (shared library) ii libruby2.3:amd64 2.3.1-2~16.04.2 amd64 Libraries necessary to run Ruby 2.3 ii libsamplerate0:amd64 0.1.8-8 amd64 Audio sample rate conversion library ii libsane:amd64 1.0.25+git201505 amd64 API library for scanners ii libsane-common 1.0.25+git201505 all API library for scanners -- documentation and suppo ii libsane-hpaio:amd64 3.16.3+repack0-1 amd64 HP SANE backend for multi-function peripherals ii libsasl2-2:amd64 2.1.26.dfsg1-14b amd64 Cyrus SASL - authentication abstraction library ii libsasl2-modules:amd64 2.1.26.dfsg1-14b amd64 Cyrus SASL - pluggable authentication modules ii libsasl2-modules-db:amd 2.1.26.dfsg1-14b amd64 Cyrus SASL - pluggable authentication modules (DB) ii libsbc1:amd64 1.3-1 amd64 Sub Band CODEC library - runtime ii libseccomp2:amd64 2.2.3-3ubuntu3 amd64 high level interface to Linux seccomp filter ii libsecret-1-0:amd64 0.18.4-1ubuntu2 amd64 Secret store ii libsecret-common 0.18.4-1ubuntu2 all Secret store (common files) ii libselinux1:amd64 2.4-3build2 amd64 SELinux runtime shared libraries ii libsemanage-common 2.3-1build3 all Common files for SELinux policy management librarie ii libsemanage1:amd64 2.3-1build3 amd64 SELinux policy management library ii libsensors4:amd64 1:3.4.0-2 amd64 library to read temperature/voltage/fan sensors ii libsepol1:amd64 2.4-2 amd64 SELinux library for manipulating binary security po ii libsgutils2-2 1.40-0ubuntu1 amd64 utilities for devices using the SCSI command set (s ii libshout3:amd64 2.3.1-3 amd64 MP3/Ogg Vorbis broadcast streaming library ii libsigc++-2.0-0v5:amd64 2.6.2-1 amd64 type-safe Signal Framework for C++ - runtime ii libsignon-extension1:am 8.58+16.04.20151 amd64 Single Sign On framework ii libsignon-glib1:amd64 1.13+16.04.20151 amd64 library for signond ii libsignon-plugins-commo 8.58+16.04.20151 amd64 Single Sign On framework ii libsignon-qt5-1:amd64 8.58+16.04.20151 amd64 Single Sign On framework ii libslang2:amd64 2.3.0-2ubuntu1 amd64 S-Lang programming library - runtime version ii libsm6:amd64 2:1.2.2-1 amd64 X11 Session Management library ii libsmartcols1:amd64 2.27.1-6ubuntu3. amd64 smart column output alignment library ii libsmbclient:amd64 2:4.3.11+dfsg-0u amd64 shared library for communication with SMB/CIFS serv ii libsnapd-glib1:amd64 1.13-0ubuntu0.16 amd64 GLib snapd library ii libsndfile1:amd64 1.0.25-10ubuntu0 amd64 Library for reading/writing audio files ii libsnmp-base 5.7.3+dfsg-1ubun all SNMP configuration script, MIBs and documentation ii libsnmp30:amd64 5.7.3+dfsg-1ubun amd64 SNMP (Simple Network Management Protocol) library ii libsocket6-perl 0.25-1build2 amd64 Perl extensions for IPv6 ii libsonic0:amd64 0.2.0-3 amd64 Simple library to speed up or slow down speech ii libsoup-gnome2.4-1:amd6 2.52.2-1ubuntu0. amd64 HTTP library implementation in C -- GNOME support l ii libsoup2.4-1:amd64 2.52.2-1ubuntu0. amd64 HTTP library implementation in C -- Shared library ii libspectre1:amd64 0.2.7-3ubuntu2 amd64 Library for rendering PostScript documents ii libspeechd2:amd64 0.8.3-1ubuntu3 amd64 Speech Dispatcher: Shared libraries ii libspeex1:amd64 1.2~rc1.2-1ubunt amd64 The Speex codec runtime library ii libspeexdsp1:amd64 1.2~rc1.2-1ubunt amd64 The Speex extended runtime library ii libsqlite3-0:amd64 3.11.0-1ubuntu1 amd64 SQLite 3 shared library ii libss2:amd64 1.42.13-1ubuntu1 amd64 command-line interface parsing library ii libssh-4:amd64 0.6.3-4.3 amd64 tiny C SSH library (OpenSSL flavor) ii libssl1.0.0:amd64 1.0.2g-1ubuntu4. amd64 Secure Sockets Layer toolkit - shared libraries ii libstartup-notification 0.12-4build1 amd64 library for program launch feedback (shared library ii libstdc++-5-dev:amd64 5.4.0-6ubuntu1~1 amd64 GNU Standard C++ Library v3 (development files) ii libstdc++6:amd64 5.4.0-6ubuntu1~1 amd64 GNU Standard C++ Library v3 ii libsub-name-perl 0.14-1build1 amd64 module for assigning a new name to referenced sub ii libsuitesparseconfig4.4 1:4.4.6-1 amd64 configuration routines for all SuiteSparse modules ii libsystemd0:amd64 229-4ubuntu21 amd64 systemd utility library ii libtag1v5:amd64 1.9.1-2.4ubuntu1 amd64 audio meta-data library ii libtag1v5-vanilla:amd64 1.9.1-2.4ubuntu1 amd64 audio meta-data library - vanilla flavour ii libtalloc2:amd64 2.1.5-2 amd64 hierarchical pool based memory allocator ii libtasn1-6:amd64 4.7-3ubuntu0.16. amd64 Manage ASN.1 structures (runtime) ii libtcl8.6:amd64 8.6.5+dfsg-2 amd64 Tcl (the Tool Command Language) v8.6 - run-time lib ii libtdb1:amd64 1.3.8-2 amd64 Trivial Database - shared library ii libtelepathy-glib0:amd6 0.24.1-1.1 amd64 Telepathy framework - GLib library ii libtevent0:amd64 0.9.28-0ubuntu0. amd64 talloc-based event loop library - shared library ii libtext-charwidth-perl 0.04-7build5 amd64 get display widths of characters on the terminal ii libtext-iconv-perl 1.7-5build4 amd64 converts between character sets in Perl ii libtext-levenshtein-per 0.13-1 all implementation of the Levenshtein edit distance ii libtext-wrapi18n-perl 0.06-7.1 all internationalized substitute of Text::Wrap ii libthai-data 0.1.24-2 all Data files for Thai language support library ii libthai0:amd64 0.1.24-2 amd64 Thai language support library ii libtheora0:amd64 1.1.1+dfsg.1-8 amd64 Theora Video Compression Codec ii libtie-ixhash-perl 1.23-2 all Perl module to order associative arrays ii libtiff5:amd64 4.0.6-1ubuntu0.2 amd64 Tag Image File Format (TIFF) library ii libtimedate-perl 2.3000-2 all collection of modules to manipulate date/time infor ii libtimezonemap-data 0.4.5 all GTK+3 timezone map widget - data files ii libtimezonemap1:amd64 0.4.5 amd64 GTK+3 timezone map widget ii libtinfo5:amd64 6.0+20160213-1ub amd64 shared low-level terminfo library for terminal hand ii libtk8.6:amd64 8.6.5-1 amd64 Tk toolkit for Tcl and X11 v8.6 - run-time files ii libtotem-plparser-commo 3.10.6-1ubuntu1 all Totem Playlist Parser library - common files ii libtotem-plparser18:amd 3.10.6-1ubuntu1 amd64 Totem Playlist Parser library - runtime files ii libtotem0:amd64 3.18.1-1ubuntu4 amd64 Main library for the Totem media player ii libtracker-sparql-1.0-0 1.6.2-0ubuntu1.1 amd64 metadata database, indexer and search tool - librar ii libtsan0:amd64 5.4.0-6ubuntu1~1 amd64 ThreadSanitizer -- a Valgrind-based detector of dat ii libtxc-dxtn-s2tc0:amd64 0~git20131104-1. amd64 Texture compression library for Mesa ii libubsan0:amd64 5.4.0-6ubuntu1~1 amd64 UBSan -- undefined behaviour sanitizer (runtime) ii libubuntugestures5:amd6 1.3.1918+16.04.2 amd64 Ubuntu gestures library for Ubuntu UI Toolkit ii libubuntutoolkit5:amd64 1.3.1918+16.04.2 amd64 Ubuntu toolkit common library for Ubuntu UI Toolkit ii libudev1:amd64 229-4ubuntu21 amd64 libudev shared library ii libudisks2-0:amd64 2.1.7-1ubuntu1 amd64 GObject based library to access udisks2 ii libunistring0:amd64 0.9.3-5.2ubuntu1 amd64 Unicode string library for C ii libunity-action-qt1:amd 1.1.0+14.04.2014 amd64 Unity Action Qt API ii libunity-control-center 15.04.0+16.04.20 amd64 utilities to configure the GNOME desktop ii libunity-core-6.0-9:amd 7.4.0+16.04.2016 amd64 core library for the Unity interface ii libunity-gtk2-parser0:a 0.0.0+15.04.2015 amd64 GtkMenuShell to GMenuModel parser ii libunity-gtk3-parser0:a 0.0.0+15.04.2015 amd64 GtkMenuShell to GMenuModel parser ii libunity-misc4 4.0.5+14.04.2014 amd64 Miscellaneous functions for Unity - shared library ii libunity-protocol-priva 7.1.4+16.04.2016 amd64 binding to get places into the launcher - private l ii libunity-scopes-json-de 7.1.4+16.04.2016 all binding to get places into the launcher - desktop d ii libunity-settings-daemo 15.04.1+16.04.20 amd64 Helper library for accessing settings ii libunity-webapps0:amd64 2.5.0~+16.04.201 amd64 Web Apps integration with the Unity desktop ii libunity9:amd64 7.1.4+16.04.2016 amd64 binding to get places into the launcher - shared li ii libunwind8 1.1-4.1 amd64 library to determine the call-chain of a program - ii libupower-glib3:amd64 0.99.4-2ubuntu0. amd64 abstraction for power management - shared library ii liburi-perl 1.71-1 all module to manipulate and access URI strings ii liburl-dispatcher1:amd6 0.1+16.04.201511 amd64 library for sending requests to the url dispatcher ii libusb-0.1-4:amd64 2:0.1.12-28 amd64 userspace USB programming library ii libusb-1.0-0:amd64 2:1.0.20-1 amd64 userspace USB programming library ii libusbmuxd4:amd64 1.0.10-2ubuntu0. amd64 USB multiplexor daemon for iPhone and iPod Touch de ii libustr-1.0-1:amd64 1.0.4-5 amd64 Micro string library: shared library ii libutempter0:amd64 1.1.6-3 amd64 privileged helper for utmp/wtmp updates (runtime) ii libuuid-perl 0.24-1build1 amd64 Perl extension for using UUID interfaces as defined ii libuuid1:amd64 2.27.1-6ubuntu3. amd64 Universally Unique ID library ii libv4l-0:amd64 1.10.0-1 amd64 Collection of video4linux support libraries ii libv4lconvert0:amd64 1.10.0-1 amd64 Video4linux frame format conversion library ii libvisio-0.1-1:amd64 0.1.5-1ubuntu1 amd64 library for parsing the visio file structure ii libvisual-0.4-0:amd64 0.4.0-8 amd64 audio visualization framework ii libvncclient1:amd64 0.9.10+dfsg-3ubu amd64 API to write one's own VNC server - client library ii libvorbis0a:amd64 1.3.5-3 amd64 decoder library for Vorbis General Audio Compressio ii libvorbisenc2:amd64 1.3.5-3 amd64 encoder library for Vorbis General Audio Compressio ii libvorbisfile3:amd64 1.3.5-3 amd64 high-level API for Vorbis General Audio Compression ii libvpx3:amd64 1.5.0-2ubuntu1 amd64 VP8 and VP9 video codec (shared library) ii libvte-2.91-0:amd64 0.42.5-1ubuntu1 amd64 Terminal emulator widget for GTK+ 3.0 - runtime fil ii libvte-2.91-common 0.42.5-1ubuntu1 all Terminal emulator widget for GTK+ 3.0 - common file ii libwacom-bin 0.22-1~ubuntu16. amd64 Wacom model feature query library -- binaries ii libwacom-common 0.22-1~ubuntu16. all Wacom model feature query library (common files) ii libwacom2:amd64 0.22-1~ubuntu16. amd64 Wacom model feature query library ii libwavpack1:amd64 4.75.2-2 amd64 audio codec (lossy and lossless) - library ii libwayland-client0:amd6 1.12.0-1~ubuntu1 amd64 wayland compositor infrastructure - client library ii libwayland-cursor0:amd6 1.12.0-1~ubuntu1 amd64 wayland compositor infrastructure - cursor library ii libwayland-egl1-mesa:am 17.0.7-0ubuntu0. amd64 implementation of the Wayland EGL platform -- runti ii libwayland-server0:amd6 1.12.0-1~ubuntu1 amd64 wayland compositor infrastructure - server library ii libwbclient0:amd64 2:4.3.11+dfsg-0u amd64 Samba winbind client library ii libwebkit2gtk-4.0-37:am 2.18.0-0ubuntu0. amd64 Web content engine library for GTK+ ii libwebkit2gtk-4.0-37-gt 2.18.0-0ubuntu0. amd64 Web content engine library for GTK+ - GTK+2 plugin ii libwebp5:amd64 0.4.4-1 amd64 Lossy compression of digital photographic images. ii libwebpmux1:amd64 0.4.4-1 amd64 Lossy compression of digital photographic images. ii libwebrtc-audio-process 0.1-3ubuntu1~gcc amd64 AudioProcessing module from the WebRTC project. ii libwhoopsie-preferences 0.18 amd64 Ubuntu error tracker submission settings - shared l ii libwhoopsie0:amd64 0.2.52.5 amd64 Ubuntu error tracker submission - shared library ii libwind0-heimdal:amd64 1.7~git20150920+ amd64 Heimdal Kerberos - stringprep implementation ii libwinpr-crt0.1:amd64 1.1.0~git2014092 amd64 Windows Portable Runtime library (crt library) ii libwinpr-dsparse0.1:amd 1.1.0~git2014092 amd64 Windows Portable Runtime library (dsparse library) ii libwinpr-environment0.1 1.1.0~git2014092 amd64 Windows Portable Runtime library (environment libra ii libwinpr-file0.1:amd64 1.1.0~git2014092 amd64 Windows Portable Runtime library (file library) ii libwinpr-handle0.1:amd6 1.1.0~git2014092 amd64 Windows Portable Runtime library (handle library) ii libwinpr-heap0.1:amd64 1.1.0~git2014092 amd64 Windows Portable Runtime library (heap library) ii libwinpr-input0.1:amd64 1.1.0~git2014092 amd64 Windows Portable Runtime library (input library) ii libwinpr-interlocked0.1 1.1.0~git2014092 amd64 Windows Portable Runtime library (interlocked libra ii libwinpr-library0.1:amd 1.1.0~git2014092 amd64 Windows Portable Runtime library (library) ii libwinpr-path0.1:amd64 1.1.0~git2014092 amd64 Windows Portable Runtime library (path library) ii libwinpr-pool0.1:amd64 1.1.0~git2014092 amd64 Windows Portable Runtime library (pool library) ii libwinpr-registry0.1:am 1.1.0~git2014092 amd64 Windows Portable Runtime library (registry library) ii libwinpr-rpc0.1:amd64 1.1.0~git2014092 amd64 Windows Portable Runtime library (RPC library) ii libwinpr-sspi0.1:amd64 1.1.0~git2014092 amd64 Windows Portable Runtime library (sspi library) ii libwinpr-synch0.1:amd64 1.1.0~git2014092 amd64 Windows Portable Runtime library (synch library) ii libwinpr-sysinfo0.1:amd 1.1.0~git2014092 amd64 Windows Portable Runtime library (sysinfo library) ii libwinpr-thread0.1:amd6 1.1.0~git2014092 amd64 Windows Portable Runtime library (thread library) ii libwinpr-utils0.1:amd64 1.1.0~git2014092 amd64 Windows Portable Runtime library (utils library) ii libwmf0.2-7:amd64 0.2.8.4-10.5ubun amd64 Windows metafile conversion library ii libwmf0.2-7-gtk 0.2.8.4-10.5ubun amd64 Windows metafile conversion library ii libwnck-3-0:amd64 3.14.1-2 amd64 Window Navigator Construction Kit - runtime files ii libwnck-3-common 3.14.1-2 all Window Navigator Construction Kit - common files ii libwpd-0.10-10:amd64 0.10.1-1ubuntu1 amd64 Library for handling WordPerfect documents (shared ii libwpg-0.3-3:amd64 0.3.1-1ubuntu1 amd64 WordPerfect graphics import/convert library (shared ii libwps-0.4-4:amd64 0.4.3-1ubuntu1 amd64 Works text file format import filter library (share ii libwrap0:amd64 7.6.q-25 amd64 Wietse Venema's TCP wrappers library ii libwww-perl 6.15-1 all simple and consistent interface to the world-wide w ii libwww-robotrules-perl 6.01-1 all database of robots.txt-derived permissions ii libx11-6:amd64 2:1.6.3-1ubuntu2 amd64 X11 client-side library ii libx11-data 2:1.6.3-1ubuntu2 all X11 client-side library ii libx11-protocol-perl 0.56-7 all Perl module for the X Window System Protocol, versi ii libx11-xcb1:amd64 2:1.6.3-1ubuntu2 amd64 Xlib/XCB interface library ii libx86-1:amd64 1.1+ds1-10 amd64 x86 real-mode library ii libxapian22v5:amd64 1.2.22-2 amd64 Search engine library ii libxatracker2:amd64 17.0.7-0ubuntu0. amd64 X acceleration library -- runtime ii libxau6:amd64 1:1.0.8-1 amd64 X11 authorisation library ii libxaw7:amd64 2:1.0.13-1 amd64 X11 Athena Widget library ii libxcb-dri2-0:amd64 1.11.1-1ubuntu1 amd64 X C Binding, dri2 extension ii libxcb-dri3-0:amd64 1.11.1-1ubuntu1 amd64 X C Binding, dri3 extension ii libxcb-glx0:amd64 1.11.1-1ubuntu1 amd64 X C Binding, glx extension ii libxcb-icccm4:amd64 0.4.1-1ubuntu1 amd64 utility libraries for X C Binding -- icccm ii libxcb-image0:amd64 0.4.0-1build1 amd64 utility libraries for X C Binding -- image ii libxcb-keysyms1:amd64 0.4.0-1 amd64 utility libraries for X C Binding -- keysyms ii libxcb-present0:amd64 1.11.1-1ubuntu1 amd64 X C Binding, present extension ii libxcb-randr0:amd64 1.11.1-1ubuntu1 amd64 X C Binding, randr extension ii libxcb-render-util0:amd 0.3.9-1 amd64 utility libraries for X C Binding -- render-util ii libxcb-render0:amd64 1.11.1-1ubuntu1 amd64 X C Binding, render extension ii libxcb-shape0:amd64 1.11.1-1ubuntu1 amd64 X C Binding, shape extension ii libxcb-shm0:amd64 1.11.1-1ubuntu1 amd64 X C Binding, shm extension ii libxcb-sync1:amd64 1.11.1-1ubuntu1 amd64 X C Binding, sync extension ii libxcb-util1:amd64 0.4.0-0ubuntu3 amd64 utility libraries for X C Binding -- atom, aux and ii libxcb-xfixes0:amd64 1.11.1-1ubuntu1 amd64 X C Binding, xfixes extension ii libxcb-xkb1:amd64 1.11.1-1ubuntu1 amd64 X C Binding, XKEYBOARD extension ii libxcb1:amd64 1.11.1-1ubuntu1 amd64 X C Binding ii libxcomposite1:amd64 1:0.4.4-1 amd64 X11 Composite extension library ii libxcursor1:amd64 1:1.1.14-1 amd64 X cursor management library ii libxdamage1:amd64 1:1.1.4-2 amd64 X11 damaged region extension library ii libxdmcp6:amd64 1:1.1.2-1.1 amd64 X11 Display Manager Control Protocol library ii libxext6:amd64 2:1.3.3-1 amd64 X11 miscellaneous extension library ii libxfixes3:amd64 1:5.0.1-2 amd64 X11 miscellaneous 'fixes' extension library ii libxfont1:amd64 1:1.5.1-1ubuntu0 amd64 X11 font rasterisation library ii libxfont2:amd64 1:2.0.1-3~ubuntu amd64 X11 font rasterisation library ii libxft2:amd64 2.3.2-1 amd64 FreeType-based font drawing library for X ii libxi6:amd64 2:1.7.6-1 amd64 X11 Input extension library ii libxinerama1:amd64 2:1.1.3-1 amd64 X11 Xinerama extension library ii libxkbcommon-x11-0:amd6 0.5.0-1ubuntu2 amd64 library to create keymaps with the XKB X11 protocol ii libxkbcommon0:amd64 0.5.0-1ubuntu2 amd64 library interface to the XKB compiler - shared libr ii libxkbfile1:amd64 1:1.0.9-0ubuntu1 amd64 X11 keyboard file manipulation library ii libxklavier16:amd64 5.4-0ubuntu2 amd64 X Keyboard Extension high-level API ii libxml-parser-perl 2.44-1build1 amd64 Perl module for parsing XML files ii libxml-twig-perl 1:3.48-1 all Perl module for processing huge XML documents in tr ii libxml-xpathengine-perl 0.13-1 all re-usable XPath engine for DOM-like trees ii libxml2:amd64 2.9.3+dfsg1-1ubu amd64 GNOME XML library ii libxmu6:amd64 2:1.1.2-2 amd64 X11 miscellaneous utility library ii libxmuu1:amd64 2:1.1.2-2 amd64 X11 miscellaneous micro-utility library ii libxpm4:amd64 1:3.5.11-1ubuntu amd64 X11 pixmap library ii libxrandr2:amd64 2:1.5.0-1 amd64 X11 RandR extension library ii libxrender1:amd64 1:0.9.9-0ubuntu1 amd64 X Rendering Extension client library ii libxres1:amd64 2:1.0.7-1 amd64 X11 Resource extension library ii libxshmfence1:amd64 1.2-1 amd64 X shared memory fences - shared library ii libxslt1.1:amd64 1.1.28-2.1ubuntu amd64 XSLT 1.0 processing library - runtime library ii libxss1:amd64 1:1.2.2-1 amd64 X11 Screen Saver extension library ii libxt6:amd64 1:1.1.5-0ubuntu1 amd64 X11 toolkit intrinsics library ii libxtables11:amd64 1.6.0-2ubuntu3 amd64 netfilter xtables library ii libxtst6:amd64 2:1.2.2-1 amd64 X11 Testing -- Record extension library ii libxv1:amd64 2:1.0.10-1 amd64 X11 Video extension library ii libxvmc1:amd64 2:1.0.9-1ubuntu1 amd64 X11 Video extension library ii libxxf86dga1:amd64 2:1.1.4-1 amd64 X11 Direct Graphics Access extension library ii libxxf86vm1:amd64 1:1.1.4-1 amd64 X11 XFree86 video mode extension library ii libyajl2:amd64 2.1.0-2 amd64 Yet Another JSON Library ii libyaml-0-2:amd64 0.1.6-3 amd64 Fast YAML 1.1 parser and emitter library ii libyaml-libyaml-perl 0.41-6build1 amd64 Perl interface to libyaml, a YAML implementation ii libyaml-tiny-perl 1.69-1 all Perl module for reading and writing YAML files ii libyelp0:amd64 3.18.1-1ubuntu4 amd64 Library for the GNOME help browser ii libzeitgeist-1.0-1:amd6 0.3.18-1ubuntu3 amd64 library to access Zeitgeist - shared library ii libzeitgeist-2.0-0:amd6 0.9.16-0ubuntu4 amd64 library to access Zeitgeist - shared library ii light-themes 14.04+16.04.2016 all Light Themes (Ambiance and Radiance) ii lightdm 1.18.3-0ubuntu1. amd64 Display Manager ii lintian 2.5.43ubuntu0.1 all Debian package checker ii linux-base 4.0ubuntu1 all Linux image base package ii linux-firmware 1.157.13 all Firmware for Linux kernel drivers ii linux-generic-hwe-16.04 4.10.0.38.40 amd64 Complete Generic Linux kernel and headers ii linux-headers-4.10.0-28 4.10.0-28.32~16. all Header files related to Linux kernel version 4.10.0 ii linux-headers-4.10.0-28 4.10.0-28.32~16. amd64 Linux kernel headers for version 4.10.0 on 64 bit x ii linux-headers-4.10.0-37 4.10.0-37.41~16. all Header files related to Linux kernel version 4.10.0 ii linux-headers-4.10.0-37 4.10.0-37.41~16. amd64 Linux kernel headers for version 4.10.0 on 64 bit x ii linux-headers-4.10.0-38 4.10.0-38.42~16. all Header files related to Linux kernel version 4.10.0 ii linux-headers-4.10.0-38 4.10.0-38.42~16. amd64 Linux kernel headers for version 4.10.0 on 64 bit x ii linux-headers-generic-h 4.10.0.38.40 amd64 Generic Linux kernel headers ii linux-image-4.10.0-28-g 4.10.0-28.32~16. amd64 Linux kernel image for version 4.10.0 on 64 bit x86 ii linux-image-4.10.0-37-g 4.10.0-37.41~16. amd64 Linux kernel image for version 4.10.0 on 64 bit x86 ii linux-image-4.10.0-38-g 4.10.0-38.42~16. amd64 Linux kernel image for version 4.10.0 on 64 bit x86 ii linux-image-extra-4.10. 4.10.0-28.32~16. amd64 Linux kernel extra modules for version 4.10.0 on 64 ii linux-image-extra-4.10. 4.10.0-37.41~16. amd64 Linux kernel extra modules for version 4.10.0 on 64 ii linux-image-extra-4.10. 4.10.0-38.42~16. amd64 Linux kernel extra modules for version 4.10.0 on 64 ii linux-image-generic-hwe 4.10.0.38.40 amd64 Generic Linux kernel image ii linux-libc-dev:amd64 4.4.0-98.121 amd64 Linux Kernel Headers for development ii linux-sound-base 1.0.25+dfsg-0ubu all base package for ALSA and OSS sound systems ii locales 2.23-0ubuntu9 all GNU C Library: National Language (locale) data [sup ii login 1:4.2-3.1ubuntu5 amd64 system login tools ii logrotate 3.8.7-2ubuntu2.1 amd64 Log rotation utility ii lp-solve 5.5.0.13-7build2 amd64 Solve (mixed integer) linear programming problems ii lsb-base 9.20160110ubuntu all Linux Standard Base init script functionality ii lsb-release 9.20160110ubuntu all Linux Standard Base version reporting utility ii lshw 02.17-1.1ubuntu3 amd64 information about hardware configuration ii lsof 4.89+dfsg-0.1 amd64 Utility to list open files ii ltrace 0.7.3-5.1ubuntu4 amd64 Tracks runtime library calls in dynamically linked ii make 4.1-6 amd64 utility for directing compilation ii makedev 2.3.1-93ubuntu2~ all creates device files in /dev ii man-db 2.7.5-1 amd64 on-line manual pager ii manpages 4.04-2 all Manual pages about using a GNU/Linux system ii manpages-dev 4.04-2 all Manual pages about using GNU/Linux for development ii mawk 1.3.3-17ubuntu2 amd64 a pattern scanning and text processing language ii media-player-info 22-2 all Media player identification files ii memtest86+ 5.01-3ubuntu2 amd64 thorough real-mode memory tester ii metacity-common 1:3.18.7-0ubuntu all shared files for the Metacity window manager ii mime-support 3.59ubuntu1 all MIME files 'mime.types' & 'mailcap', and support pr ii mlocate 0.26-1ubuntu2 amd64 quickly find files on the filesystem based on their ii mobile-broadband-provid 20140317-1 all database of mobile broadband service providers ii modemmanager 1.4.12-1ubuntu1 amd64 D-Bus service for managing modems ii mount 2.27.1-6ubuntu3. amd64 tools for mounting and manipulating filesystems ii mountall 2.54ubuntu1 amd64 filesystem mounting tool ii mousetweaks 3.12.0-1ubuntu2 amd64 mouse accessibility enhancements for the GNOME desk ii mscompress 0.4-3 amd64 Microsoft "compress.exe/expand.exe" compatible (de) ii mtools 4.0.18-2ubuntu0. amd64 Tools for manipulating MSDOS files ii mtr-tiny 0.86-1ubuntu0.1 amd64 Full screen ncurses traceroute tool ii multiarch-support 2.23-0ubuntu9 amd64 Transitional package to ensure multiarch compatibil ii mysql-client 5.7.20-0ubuntu0. all MySQL database client (metapackage depending on the ii mysql-client-5.7 5.7.20-0ubuntu0. amd64 MySQL database client binaries ii mysql-client-core-5.7 5.7.20-0ubuntu0. amd64 MySQL database core client binaries ii mysql-common 5.7.20-0ubuntu0. all MySQL database common files, e.g. /etc/mysql/my.cnf ii mysql-server 5.7.20-0ubuntu0. all MySQL database server (metapackage depending on the ii mysql-server-5.7 5.7.20-0ubuntu0. amd64 MySQL database server binaries and system database ii mysql-server-core-5.7 5.7.20-0ubuntu0. amd64 MySQL database server binaries ii mythes-en-us 1:5.1.0-1ubuntu2 all English (USA) Thesaurus for LibreOffice ii nano 2.5.3-2ubuntu2 amd64 small, friendly text editor inspired by Pico ii nautilus 1:3.18.4.is.3.14 amd64 file manager and graphical shell for GNOME ii nautilus-data 1:3.18.4.is.3.14 all data files for nautilus ii nautilus-sendto 3.8.2-1ubuntu1 amd64 integrates Evolution and Pidgin into the Nautilus f ii nautilus-share 0.7.3-2ubuntu1 amd64 Nautilus extension to share folder using Samba ii ncurses-base 6.0+20160213-1ub all basic terminal type definitions ii ncurses-bin 6.0+20160213-1ub amd64 terminal-related programs and man pages ii ncurses-term 6.0+20160213-1ub all additional terminal type definitions ii net-tools 1.60-26ubuntu1 amd64 NET-3 networking toolkit ii netbase 5.3 all Basic TCP/IP networking system ii netcat-openbsd 1.105-7ubuntu1 amd64 TCP/IP swiss army knife ii netpbm 2:10.0-15.3 amd64 Graphics conversion tools between image formats ii network-manager 1.2.6-0ubuntu0.1 amd64 network management framework (daemon and userspace ii network-manager-gnome 1.2.6-0ubuntu0.1 amd64 network management framework (GNOME frontend) ii network-manager-pptp 1.1.93-1ubuntu1 amd64 network management framework (PPTP plugin core) ii network-manager-pptp-gn 1.1.93-1ubuntu1 amd64 network management framework (PPTP plugin GNOME GUI ii notify-osd 0.9.35+16.04.201 amd64 daemon that displays passive pop-up notifications ii notify-osd-icons 0.8+15.10.201510 all Notify-OSD icons ii ntfs-3g 1:2015.3.14AR.1- amd64 read/write NTFS driver for FUSE ii nux-tools 4.0.8+16.04.2016 amd64 Visual rendering toolkit for real-time applications ii onboard 1.2.0-0ubuntu5 amd64 Simple On-screen Keyboard ii onboard-data 1.2.0-0ubuntu5 all Language model files for the word suggestion featur ii open-vm-tools 2:10.0.7-3227872 amd64 Open VMware Tools for virtual machines hosted on VM ii open-vm-tools-desktop 2:10.0.7-3227872 amd64 Open VMware Tools for virtual machines hosted on VM ii open-vm-tools-dkms 2:10.0.7-3227872 all Open VMware Tools vmxnet kernel module (deprecated) ii openoffice.org-hyphenat 0.9 all Hyphenation patterns for OpenOffice.org ii openprinting-ppds 20160212-0ubuntu all OpenPrinting printer support - PostScript PPD files ii openssh-client 1:7.2p2-4ubuntu2 amd64 secure shell (SSH) client, for secure access to rem ii openssh-server 1:7.2p2-4ubuntu2 amd64 secure shell (SSH) server, for secure access from r ii openssh-sftp-server 1:7.2p2-4ubuntu2 amd64 secure shell (SSH) sftp server module, for SFTP acc ii openssl 1.0.2g-1ubuntu4. amd64 Secure Sockets Layer toolkit - cryptographic utilit ii oracle-java8-installer 8u151-1~webupd8~ all Oracle Java(TM) Development Kit (JDK) 8 ii os-prober 1.70ubuntu3.3 amd64 utility to detect other OSes on a set of drives ii overlay-scrollbar 0.2.17.1+16.04.2 all Scrollbar overlay - configuration ii overlay-scrollbar-gtk2: 0.2.17.1+16.04.2 amd64 GTK 2 module for overlay scrollbars ii oxideqt-codecs:amd64 1.21.5-0ubuntu0. amd64 Web browser engine for Qt (codecs) ii p11-kit 0.23.2-5~ubuntu1 amd64 p11-glue utilities ii p11-kit-modules:amd64 0.23.2-5~ubuntu1 amd64 p11-glue proxy and trust modules ii parted 3.2-15 amd64 disk partition manipulator ii passwd 1:4.2-3.1ubuntu5 amd64 change and administer password and group data ii patch 2.7.5-1 amd64 Apply a diff file to an original ii patchutils 0.3.4-1 amd64 Utilities to work with patches ii pciutils 1:3.3.1-1.1ubunt amd64 Linux PCI Utilities ii pcmciautils 018-8 amd64 PCMCIA utilities for Linux 2.6 ii perl 5.22.1-9 amd64 Larry Wall's Practical Extraction and Report Langua ii perl-base 5.22.1-9 amd64 minimal Perl system ii perl-modules-5.22 5.22.1-9 all Core Perl modules ii pinentry-curses 0.9.7-3 amd64 curses-based PIN or pass-phrase entry dialog for Gn ii pinentry-gnome3 0.9.7-3 amd64 GNOME 3 PIN or pass-phrase entry dialog for GnuPG ii pkg-config 0.29.1-0ubuntu1 amd64 manage compile and link flags for libraries ii plainbox-provider-check 0.25-1 amd64 CheckBox provider for PlainBox ii plainbox-provider-resou 0.23-1 amd64 CheckBox generic resource jobs provider ii plainbox-secure-policy 0.25-1 all policykit policy required to use plainbox (secure v ii plymouth 0.9.2-3ubuntu13. amd64 boot animation, logger and I/O multiplexer ii plymouth-label 0.9.2-3ubuntu13. amd64 boot animation, logger and I/O multiplexer - label ii plymouth-theme-ubuntu-l 0.9.2-3ubuntu13. amd64 boot animation, logger and I/O multiplexer - ubuntu ii plymouth-theme-ubuntu-t 0.9.2-3ubuntu13. amd64 boot animation, logger and I/O multiplexer - ubuntu ii pm-utils 1.4.1-16 all utilities and scripts for power management ii policykit-1 0.105-14.1 amd64 framework for managing administrative policies and ii policykit-1-gnome 0.105-2ubuntu2 amd64 GNOME authentication agent for PolicyKit-1 ii policykit-desktop-privi 0.20 all run common desktop actions without password ii poppler-data 0.4.7-7 all encoding data for the poppler PDF rendering library ii poppler-utils 0.41.0-0ubuntu1. amd64 PDF utilities (based on Poppler) ii popularity-contest 1.64ubuntu2 all Vote for your favourite packages automatically ii powermgmt-base 1.31+nmu1 all Common utils and configs for power management ii ppp 2.4.7-1+2ubuntu1 amd64 Point-to-Point Protocol (PPP) - daemon ii pppconfig 2.3.22 all Text menu based utility for configuring ppp ii pppoeconf 1.21ubuntu1 all configures PPPoE/ADSL connections ii pptp-linux 1.8.0-1 amd64 Point-to-Point Tunneling Protocol (PPTP) Client ii printer-driver-brlaser 3-5~ubuntu1 amd64 printer driver for (some) Brother laser printers ii printer-driver-c2esp 27-2 amd64 printer driver for Kodak ESP AiO color inkjet Serie ii printer-driver-foo2zjs 20151024dfsg0-1u amd64 printer driver for ZjStream-based printers ii printer-driver-foo2zjs- 20151024dfsg0-1u all printer driver for ZjStream-based printers - common ii printer-driver-gutenpri 5.2.11-1 amd64 printer drivers for CUPS ii printer-driver-hpcups 3.16.3+repack0-1 amd64 HP Linux Printing and Imaging - CUPS Raster driver ii printer-driver-min12xxw 0.0.9-9 amd64 printer driver for KonicaMinolta PagePro 1[234]xxW ii printer-driver-pnm2ppa 1.13+nondbs-0ubu amd64 printer driver for HP-GDI printers ii printer-driver-postscri 3.16.3+repack0-1 all HP Printers PostScript Descriptions ii printer-driver-ptouch 1.4-1 amd64 printer driver Brother P-touch label printers ii printer-driver-pxljr 1.4+repack0-4 amd64 printer driver for HP Color LaserJet 35xx/36xx ii printer-driver-sag-gdi 0.1-4ubuntu1 all printer driver for Ricoh Aficio SP 1000s/SP 1100s ii printer-driver-splix 2.0.0+svn315-4fa amd64 Driver for Samsung and Xerox SPL2 and SPLc laser pr ii procps 2:3.3.10-4ubuntu amd64 /proc file system utilities ii psmisc 22.21-2.1build1 amd64 utilities that use the proc file system ii pulseaudio 1:8.0-0ubuntu3.4 amd64 PulseAudio sound server ii pulseaudio-module-bluet 1:8.0-0ubuntu3.4 amd64 Bluetooth module for PulseAudio sound server ii pulseaudio-module-x11 1:8.0-0ubuntu3.4 amd64 X11 module for PulseAudio sound server ii pulseaudio-utils 1:8.0-0ubuntu3.4 amd64 Command line tools for the PulseAudio sound server ii pyotherside 1.4.0-2 all transitional dummy package ii python 2.7.11-1 amd64 interactive high-level object-oriented language (de ii python-all 2.7.11-1 amd64 package depending on all supported Python runtime v ii python-all-dev 2.7.11-1 amd64 package depending on all supported Python developme ii python-apt-common 1.1.0~beta1build all Python interface to libapt-pkg (locales) ii python-dev 2.7.11-1 amd64 header files and a static library for Python (defau ii python-minimal 2.7.11-1 amd64 minimal subset of the Python language (default vers ii python-pip 8.1.1-2ubuntu0.4 all alternative Python package installer ii python-pip-whl 8.1.1-2ubuntu0.4 all alternative Python package installer ii python-pkg-resources 20.7.0-1 all Package Discovery and Resource Access using pkg_res ii python-setuptools 20.7.0-1 all Python Distutils Enhancements ii python-talloc 2.1.5-2 amd64 hierarchical pool based memory allocator - Python b ii python-wheel 0.29.0-1 all built-package format for Python ii python2.7 2.7.12-1ubuntu0~ amd64 Interactive high-level object-oriented language (ve ii python2.7-dev 2.7.12-1ubuntu0~ amd64 Header files and a static library for Python (v2.7) ii python2.7-minimal 2.7.12-1ubuntu0~ amd64 Minimal subset of the Python language (version 2.7) ii python3 3.5.1-3 amd64 interactive high-level object-oriented language (de ii python3-apport 2.20.1-0ubuntu2. all Python 3 library for Apport crash report handling ii python3-apt 1.1.0~beta1build amd64 Python 3 interface to libapt-pkg ii python3-aptdaemon 1.1.1+bzr982-0ub all Python 3 module for the server and client of aptdae ii python3-aptdaemon.gtk3w 1.1.1+bzr982-0ub all Python 3 GTK+ 3 widgets to run an aptdaemon client ii python3-aptdaemon.pkcom 1.1.1+bzr982-0ub all PackageKit compatibilty for AptDaemon ii python3-blinker 1.3.dfsg2-1build all fast, simple object-to-object and broadcast signali ii python3-brlapi 5.3.1-2ubuntu2.1 amd64 Braille display access via BRLTTY - Python3 binding ii python3-bs4 4.4.1-1 all error-tolerant HTML parser for Python 3 ii python3-cairo 1.10.0+dfsg-5bui amd64 Python 3 bindings for the Cairo vector graphics lib ii python3-cffi-backend 1.5.2-1ubuntu1 amd64 Foreign Function Interface for Python 3 calling C c ii python3-chardet 2.3.0-2 all universal character encoding detector for Python3 ii python3-checkbox-suppor 0.22-1 all collection of Python modules used by PlainBox provi ii python3-commandnotfound 0.3ubuntu16.04.2 all Python 3 bindings for command-not-found. ii python3-cryptography 1.2.3-1ubuntu0.1 amd64 Python library exposing cryptographic recipes and p ii python3-cups 1.9.73-0ubuntu2 amd64 Python3 bindings for CUPS ii python3-cupshelpers 1.5.7+20160212-0 all Python modules for printer configuration with CUPS ii python3-dbus 1.2.0-3 amd64 simple interprocess messaging system (Python 3 inte ii python3-debian 0.1.27ubuntu2 all Python 3 modules to work with Debian-related data f ii python3-defer 1.0.6-2build1 all Small framework for asynchronous programming (Pytho ii python3-distupgrade 1:16.04.22 all manage release upgrades ii python3-feedparser 5.1.3-3build1 all Universal Feed Parser for Python 3 ii python3-gdbm:amd64 3.5.1-1 amd64 GNU dbm database support for Python 3.x ii python3-gi 3.20.0-0ubuntu1 amd64 Python 3 bindings for gobject-introspection librari ii python3-gi-cairo 3.20.0-0ubuntu1 amd64 Python 3 Cairo bindings for the GObject library ii python3-guacamole 0.9.2-1 all framework for creating command line applications (P ii python3-html5lib 0.999-4 all HTML parser/tokenizer based on the WHATWG HTML5 spe ii python3-httplib2 0.9.1+dfsg-1 all comprehensive HTTP client library written for Pytho ii python3-idna 2.0-3 all Python IDNA2008 (RFC 5891) handling (Python 3) ii python3-jinja2 2.8-1 all small but fast and easy to use stand-alone template ii python3-jwt 1.3.0-1ubuntu0.1 all Python 3 implementation of JSON Web Token ii python3-louis 2.6.4-2ubuntu0.1 all Python bindings for liblouis ii python3-lxml 3.5.0-1build1 amd64 pythonic binding for the libxml2 and libxslt librar ii python3-mako 1.0.3+ds1-1ubunt all fast and lightweight templating for the Python 3 pl ii python3-markupsafe 0.23-2build2 amd64 HTML/XHTML/XML string library for Python 3 ii python3-minimal 3.5.1-3 amd64 minimal subset of the Python language (default pyth ii python3-oauthlib 1.0.3-1 all generic, spec-compliant implementation of OAuth for ii python3-padme 1.1.1-2 all mostly transparent proxy class for Python 3 ii python3-pexpect 4.0.1-1 all Python 3 module for automating interactive applicat ii python3-pil:amd64 3.1.2-0ubuntu1.1 amd64 Python Imaging Library (Python3) ii python3-pkg-resources 20.7.0-1 all Package Discovery and Resource Access using pkg_res ii python3-plainbox 0.25-1 all toolkit for software and hardware testing (python3 ii python3-problem-report 2.20.1-0ubuntu2. all Python 3 library to handle problem reports ii python3-ptyprocess 0.5-1 all Run a subprocess in a pseudo terminal from Python 3 ii python3-pyasn1 0.1.9-1 all ASN.1 library for Python (Python 3 module) ii python3-pyatspi 2.18.0+dfsg-3 all Assistive Technology Service Provider Interface - P ii python3-pycurl 7.43.0-1ubuntu1 amd64 Python bindings to libcurl (Python 3) ii python3-pyparsing 2.0.3+dfsg1-1ubu all Python parsing module, Python3 package ii python3-renderpm:amd64 3.3.0-1 amd64 python low level render interface ii python3-reportlab 3.3.0-1 all ReportLab library to create PDF documents using Pyt ii python3-reportlab-accel 3.3.0-1 amd64 C coded extension accelerator for the ReportLab Too ii python3-requests 2.9.1-3 all elegant and simple HTTP library for Python3, built ii python3-six 1.10.0-3 all Python 2 and 3 compatibility library (Python 3 inte ii python3-software-proper 0.96.20.7 all manage the repositories that you install software f ii python3-speechd 0.8.3-1ubuntu3 all Python interface to Speech Dispatcher ii python3-systemd 231-2build1 amd64 Python 3 bindings for systemd ii python3-uno 1:5.1.6~rc2-0ubu amd64 Python-UNO bridge ii python3-update-manager 1:16.04.9 all python 3.x module for update-manager ii python3-urllib3 1.13.1-2ubuntu0. all HTTP library with thread-safe connection pooling fo ii python3-xdg 0.25-4 all Python 3 library to access freedesktop.org standard ii python3-xkit 0.5.0ubuntu2 all library for the manipulation of xorg.conf files (Py ii python3-xlsxwriter 0.7.3-1 all Python 3 module for creating Excel XLSX files ii python3.5 3.5.2-2ubuntu0~1 amd64 Interactive high-level object-oriented language (ve ii python3.5-minimal 3.5.2-2ubuntu0~1 amd64 Minimal subset of the Python language (version 3.5) ii qdbus 4:4.8.7+dfsg-5ub amd64 Qt 4 D-Bus tool ii qml-module-io-thp-pyoth 1.4.0-2 amd64 asynchronous Python 3 Bindings for Qt 5 (QML plugin ii qml-module-qt-labs-fold 5.5.1-2ubuntu6 amd64 Qt 5 folderlistmodel QML module ii qml-module-qt-labs-sett 5.5.1-2ubuntu6 amd64 Qt 5 settings QML module ii qml-module-qtfeedback:a 5.0~git20130529- amd64 Qt 5 Feedback QML module ii qml-module-qtgraphicale 5.5.1-1ubuntu1 amd64 Qt 5 Graphical Effects module ii qml-module-qtquick-layo 5.5.1-1ubuntu1 amd64 Qt 5 Quick Layouts QML module ii qml-module-qtquick-wind 5.5.1-2ubuntu6 amd64 Qt 5 window 2 QML module ii qml-module-qtquick2:amd 5.5.1-2ubuntu6 amd64 Qt 5 Qt Quick 2 QML module ii qml-module-qttest:amd64 5.5.1-2ubuntu6 amd64 Qt 5 test QML module ii qml-module-ubuntu-compo 1.3.1918+16.04.2 amd64 Qt Components for Ubuntu - Components QML plugin ii qml-module-ubuntu-layou 1.3.1918+16.04.2 amd64 Qt Components for Ubuntu - Layouts QML plugin ii qml-module-ubuntu-onlin 0.6+16.04.201511 amd64 Expose the Online Accounts API to QML applications ii qml-module-ubuntu-perfo 1.3.1918+16.04.2 amd64 Qt Components for Ubuntu - PerformanceMetrics QML p ii qml-module-ubuntu-test: 1.3.1918+16.04.2 amd64 Qt Components for Ubuntu - Test QML plugin ii qml-module-ubuntu-web:a 0.23+16.04.20161 amd64 Ubuntu web QML module ii qmlscene 5.5.1-2ubuntu6 amd64 Qt 5 QML scene viewer ii qpdf 6.0.0-2 amd64 tools for transforming and inspecting PDF files ii qt-at-spi:amd64 0.4.0-3 amd64 at-spi accessibility plugin for Qt ii qtchooser 52-gae5eeef-2bui amd64 Wrapper to select between Qt development binary ver ii qtcore4-l10n 4:4.8.7+dfsg-5ub all Qt 4 core module translations ii qtdeclarative5-accounts 0.6+16.04.201511 amd64 transitional dummy package for Online Accounts QML ii qtdeclarative5-dev-tool 5.5.1-2ubuntu6 amd64 Qt 5 declarative development programs ii qtdeclarative5-qtquick2 5.5.1-2ubuntu6 amd64 transitional dummy package Qt 5 Qt Quick 2 QML modu ii qtdeclarative5-test-plu 5.5.1-2ubuntu6 amd64 transitional dummy package for Qt 5 test QML module ii qtdeclarative5-ubuntu-u 1.3.1918+16.04.2 amd64 Transitional dummy package for Ubuntu UI Toolkit QM ii qtdeclarative5-unity-ac 1.1.0+14.04.2014 amd64 Unity Action QML Components ii qttranslations5-l10n 5.5.1-2build1 all translations for Qt 5 ii rake 10.5.0-2 all ruby make-like utility ii readline-common 6.3-8ubuntu2 all GNU readline and history libraries, common files ii remmina 1.1.2-3ubuntu1 amd64 remote desktop client for GNOME desktop environment ii remmina-common 1.1.2-3ubuntu1 all common files for remmina remote desktop client ii remmina-plugin-rdp 1.1.2-3ubuntu1 amd64 RDP plugin for remmina remote desktop client ii remmina-plugin-vnc 1.1.2-3ubuntu1 amd64 VNC plugin for remmina remote desktop client ii rename 0.20-4 all Perl extension for renaming multiple files ii resolvconf 1.78ubuntu4 all name server information handler ii rfkill 0.5-1ubuntu3 amd64 tool for enabling and disabling wireless devices ii rhythmbox 3.3-1ubuntu7 amd64 music player and organizer for GNOME ii rhythmbox-data 3.3-1ubuntu7 all data files for rhythmbox ii rhythmbox-plugin-zeitge 3.3-1ubuntu7 all zeitgeist plugin for rhythmbox music player ii rhythmbox-plugins 3.3-1ubuntu7 amd64 plugins for rhythmbox music player ii rsync 3.1.1-3ubuntu1 amd64 fast, versatile, remote (and local) file-copying to ii rsyslog 8.16.0-1ubuntu3 amd64 reliable system and kernel logging daemon ii rtkit 0.11-4 amd64 Realtime Policy and Watchdog Daemon ii ruby 1:2.3.0+1 all Interpreter of object-oriented scripting language R ii ruby-did-you-mean 1.0.0-2 all smart error messages for Ruby > 2.3 ii ruby-minitest 5.8.4-2 all Ruby test tools supporting TDD, BDD, mocking, and b ii ruby-net-telnet 0.1.1-2 all telnet client library ii ruby-power-assert 0.2.7-1 all library showing values of variables and method call ii ruby-test-unit 3.1.7-2 all unit testing framework for Ruby ii ruby2.3 2.3.1-2~16.04.2 amd64 Interpreter of object-oriented scripting language R ii rubygems-integration 1.10 all integration of Debian Ruby packages with Rubygems ii samba-libs:amd64 2:4.3.11+dfsg-0u amd64 Samba core libraries ii sane-utils 1.0.25+git201505 amd64 API library for scanners -- utilities ii sbsigntool 0.6-0ubuntu10.1 amd64 utility for signing and verifying files for UEFI Se ii seahorse 3.18.0-2ubuntu1 amd64 GNOME front end for GnuPG ii secureboot-db 1.1 amd64 Secure Boot updates for DB and DBX ii sed 4.2.2-7 amd64 The GNU sed stream editor ii sensible-utils 0.0.9 all Utilities for sensible alternative selection ii session-migration 0.2.3 amd64 Tool to migrate in user session settings ii session-shortcuts 1.2ubuntu0.16.04 all Allows you to shutdown, logout, and reboot from das ii sessioninstaller 0.20+bzr150-0ubu all APT based installer using PackageKit's session DBus ii sgml-base 1.26+nmu4ubuntu1 all SGML infrastructure and SGML catalog file support ii shared-mime-info 1.5-2ubuntu0.1 amd64 FreeDesktop.org shared MIME database and spec ii shotwell 0.22.0+git201601 amd64 digital photo organizer ii shotwell-common 0.22.0+git201601 all digital photo organizer - common files ii signon-keyring-extensio 0.6+14.10.201405 amd64 GNOME keyring extension for signond ii signon-plugin-oauth2 0.23+16.04.20151 amd64 Single Signon oauth2 plugin ii signon-plugin-password 8.58+16.04.20151 amd64 Plain Password plugin for Single Sign On ii signon-ui 0.17+16.04.20151 all Dummy transitional package for signon-ui ii signon-ui-service 0.17+16.04.20151 all D-Bus service file for signon-ui ii signon-ui-x11 0.17+16.04.20151 amd64 Single Sign-on UI ii signond 8.58+16.04.20151 amd64 Single Sign On framework ii simple-scan 3.20.0-0ubuntu1 amd64 Simple Scanning Utility ii snapd 2.27.5 amd64 Tool to interact with Ubuntu Core Snappy. ii snapd-login-service 1.13-0ubuntu0.16 amd64 Daemon to allow non-root access to snapd ii sni-qt:amd64 0.2.7+16.04.2017 amd64 indicator support for Qt ii software-properties-com 0.96.20.7 all manage the repositories that you install software f ii software-properties-gtk 0.96.20.7 all manage the repositories that you install software f ii sound-theme-freedesktop 0.8-1 all freedesktop.org sound theme ii speech-dispatcher 0.8.3-1ubuntu3 amd64 Common interface to speech synthesizers ii speech-dispatcher-audio 0.8.3-1ubuntu3 amd64 Speech Dispatcher: Audio output plugins ii squashfs-tools 1:4.3-3ubuntu2 amd64 Tool to create and append to squashfs filesystems ii ssh-import-id 5.5-0ubuntu1 all securely retrieve an SSH public key and install it ii ssl-cert 1.0.37 all simple debconf wrapper for OpenSSL ii strace 4.11-1ubuntu3 amd64 System call tracer ii sudo 1.8.16-0ubuntu1. amd64 Provide limited super user privileges to specific u ii suru-icon-theme 14.04+16.04.2016 all Ubuntu Suru Icon theme ii syslinux 3:6.03+dfsg-11ub amd64 collection of bootloaders (DOS FAT and NTFS bootloa ii syslinux-common 3:6.03+dfsg-11ub all collection of bootloaders (common) ii syslinux-legacy 2:3.63+dfsg-2ubu amd64 Bootloader for Linux/i386 using MS-DOS floppies ii system-config-printer-c 1.5.7+20160212-0 all Printer configuration GUI ii system-config-printer-g 1.5.7+20160212-0 all Printer configuration GUI ii system-config-printer-u 1.5.7+20160212-0 amd64 Printer auto-configuration facility based on udev ii systemd 229-4ubuntu21 amd64 system and service manager ii systemd-sysv 229-4ubuntu21 amd64 system and service manager - SysV links ii sysv-rc 2.88dsf-59.3ubun all System-V-like runlevel change mechanism ii sysvinit-utils 2.88dsf-59.3ubun amd64 System-V-like utilities ii t1utils 1.39-2 amd64 Collection of simple Type 1 font manipulation progr ii tar 1.28-2.1ubuntu0. amd64 GNU version of the tar archiving utility ii tcl 8.6.0+9 amd64 Tool Command Language (default version) - shell ii tcl8.6 8.6.5+dfsg-2 amd64 Tcl (the Tool Command Language) v8.6 - shell ii tcpd 7.6.q-25 amd64 Wietse Venema's TCP wrapper utilities ii tcpdump 4.9.2-0ubuntu0.1 amd64 command-line network traffic analyzer ii telnet 0.17-40 amd64 basic telnet client ii thermald 1.5-2ubuntu4 amd64 Thermal monitoring and controlling daemon ii thunderbird 1:52.4.0+build1- amd64 Email, RSS and newsgroup client with integrated spa ii thunderbird-gnome-suppo 1:52.4.0+build1- amd64 Email, RSS and newsgroup client - GNOME support ii thunderbird-locale-en 1:52.4.0+build1- amd64 English language pack for Thunderbird ii thunderbird-locale-en-u 1:52.4.0+build1- all Transitional English language pack for Thunderbird ii time 1.7-25.1 amd64 GNU time program for measuring CPU resource usage ii tk 8.6.0+9 amd64 Toolkit for Tcl and X11 (default version) - windowi ii tk8.6 8.6.5-1 amd64 Tk toolkit for Tcl and X11 v8.6 - windowing shell ii toshset 1.76-4 amd64 Access much of the Toshiba laptop hardware interfac ii totem 3.18.1-1ubuntu4 amd64 Simple media player for the GNOME desktop based on ii totem-common 3.18.1-1ubuntu4 all Data files for the Totem media player ii totem-plugins 3.18.1-1ubuntu4 amd64 Plugins for the Totem media player ii transmission-common 2.84-3ubuntu3 all lightweight BitTorrent client (common files) ii transmission-gtk 2.84-3ubuntu3 amd64 lightweight BitTorrent client (GTK+ interface) ii ttf-ancient-fonts-symbo 2.59-1 all symbolic font providing emoji characters from Unico ii ttf-ubuntu-font-family 1:0.83-0ubuntu2 all Ubuntu Font Family, sans-serif typeface hinted for ii tzdata 2016j-0ubuntu0.1 all time zone and daylight-saving time data ii ubuntu-artwork 1:14.04+16.04.20 all Ubuntu themes and artwork ii ubuntu-core-launcher 2.27.5 amd64 Transitional package for snapd ii ubuntu-docs 16.04.4 all Ubuntu Desktop Guide ii ubuntu-drivers-common 1:0.4.17.3 amd64 Detect and install additional Ubuntu driver package ii ubuntu-keyring 2012.05.19 all GnuPG keys of the Ubuntu archive ii ubuntu-minimal 1.361 amd64 Minimal core of Ubuntu ii ubuntu-mobile-icons 14.04+16.04.2016 all Ubuntu Mobile Icon theme ii ubuntu-mono 14.04+16.04.2016 all Ubuntu Mono Icon theme ii ubuntu-release-upgrader 1:16.04.22 all manage release upgrades ii ubuntu-release-upgrader 1:16.04.22 all manage release upgrades ii ubuntu-session 3.18.1.2-1ubuntu all Ubuntu session ii ubuntu-settings 15.10.8 all default settings for the Ubuntu desktop ii ubuntu-software 3.20.5-0ubuntu0. amd64 Utility for browsing, installing, and removing soft ii ubuntu-sounds 0.13 all Ubuntu's GNOME audio theme ii ubuntu-standard 1.361 amd64 The Ubuntu standard system ii ubuntu-system-service 0.3 all Dbus service to set various system-wide configurati ii ubuntu-touch-sounds 15.08 all sounds for the Ubuntu Touch image ii ubuntu-ui-toolkit-theme 1.3.1918+16.04.2 amd64 Qt Components for Ubuntu - Ubuntu Theme ii ubuntu-wallpapers 16.04.1-0ubuntu1 all Ubuntu Wallpapers ii ubuntu-wallpapers-xenia 16.04.1-0ubuntu1 all Ubuntu 16.04 Wallpapers ii ucf 3.0036 all Update Configuration File(s): preserve user changes ii udev 229-4ubuntu21 amd64 /dev/ and hotplug management daemon ii udisks2 2.1.7-1ubuntu1 amd64 D-Bus service to access and manipulate storage devi ii ufw 0.35-0ubuntu2 all program for managing a Netfilter firewall ii unattended-upgrades 0.90ubuntu0.8 all automatic installation of security upgrades ii unity 7.4.0+16.04.2016 amd64 Interface designed for efficiency of space and inte ii unity-accessibility-pro 0.1.10-0ubuntu3 all Accessibility Profile Manager - Unity profile data ii unity-asset-pool 0.8.24+15.04.201 all Unity Assets Pool ii unity-control-center 15.04.0+16.04.20 amd64 utilities to configure the GNOME desktop ii unity-control-center-fa 15.04.0+16.04.20 all utilities to configure the GNOME desktop - faces im ii unity-control-center-si 0.1.8+16.04.2016 amd64 Unity Control Center extension for single signon ii unity-greeter 16.04.2-0ubuntu1 amd64 Unity Greeter ii unity-gtk-module-common 0.0.0+15.04.2015 all Common files for GtkMenuShell D-Bus exporter ii unity-gtk2-module:amd64 0.0.0+15.04.2015 amd64 GtkMenuShell D-Bus exporter ii unity-gtk3-module:amd64 0.0.0+15.04.2015 amd64 GtkMenuShell D-Bus exporter ii unity-lens-applications 7.1.0+16.04.2016 amd64 Application lens for unity ii unity-lens-files 7.1.0+16.04.2015 amd64 File lens for unity ii unity-lens-music 6.9.1+16.04-0ubu amd64 Music lens for unity ii unity-lens-photos 1.0+14.04.201403 all Photos lens for Unity ii unity-lens-video 0.3.15+16.04.201 amd64 Unity Video lens ii unity-schemas 7.4.0+16.04.2016 all Interface designed for efficiency of space and inte ii unity-scope-calculator 0.1+14.04.201403 all Calculator scope for Unity ii unity-scope-chromiumboo 0.1+13.10.201307 all Chromium bookmarks scope for Unity ii unity-scope-colourlover 0.1+13.10.201307 all COLOURlovers scope for Unity ii unity-scope-devhelp 0.1+14.04.201403 all devhelp scope for Unity ii unity-scope-firefoxbook 0.1+13.10.201308 all Firefox bookmarks scope for Unity ii unity-scope-gdrive 0.9+16.04.201511 all Google Drive scope for Unity ii unity-scope-home 6.8.2+16.04.2016 amd64 Home scope that aggregates results from multiple sc ii unity-scope-manpages 3.0+14.04.201403 all Manual pages scope for Unity ii unity-scope-openclipart 0.1+13.10.201307 all OpenClipArt scope for Unity ii unity-scope-texdoc 0.1+14.04.201403 all Texdoc scope for Unity ii unity-scope-tomboy 0.1+13.10.201307 all Tomboy scope for Unity ii unity-scope-video-remot 0.3.15+16.04.201 amd64 Remote videos engine ii unity-scope-virtualbox 0.1+13.10.201307 all VirtualBox scope for Unity ii unity-scope-yelp 0.1+13.10.201307 all Help scope for Unity ii unity-scope-zotero 0.1+13.10.201307 all Zotero scope for Unity ii unity-scopes-master-def 6.8.2+16.04.2016 all Home scope that aggregates results from multiple sc ii unity-scopes-runner 7.1.4+16.04.2016 all desktop runner for misceallenous scopes ii unity-services 7.4.0+16.04.2016 amd64 Services for the Unity interface ii unity-settings-daemon 15.04.1+16.04.20 amd64 daemon handling the Unity session settings ii unity-webapps-common 2.4.17+15.10.201 all Unity WebApp integration scripts ii unity-webapps-qml 0.1+16.04.201601 amd64 Unity Webapps QML component ii unity-webapps-service 2.5.0~+16.04.201 amd64 Service for Web Apps integration with the Unity des ii uno-libs3 5.1.6~rc2-0ubunt amd64 LibreOffice UNO runtime environment -- public share ii unzip 6.0-20ubuntu1 amd64 De-archiver for .zip files ii update-inetd 4.43 all inetd configuration file updater ii update-manager 1:16.04.9 all GNOME application that manages apt updates ii update-manager-core 1:16.04.9 all manage release upgrades ii update-notifier 3.168.5 amd64 Daemon which notifies about package updates ii update-notifier-common 3.168.5 all Files shared between update-notifier and other pack ii upower 0.99.4-2ubuntu0. amd64 abstraction for power management ii upstart 1.13.2-0ubuntu21 amd64 event-based init daemon - essential binaries ii ure 5.1.6~rc2-0ubunt amd64 LibreOffice UNO runtime environment ii ureadahead 0.100.0-19 amd64 Read required files in advance ii usb-creator-common 0.3.2 amd64 create a startup disk using a CD or disc image (com ii usb-creator-gtk 0.3.2 amd64 create a startup disk using a CD or disc image (for ii usb-modeswitch 2.2.5+repack0-1u amd64 mode switching tool for controlling "flip flop" USB ii usb-modeswitch-data 20151101-1 all mode switching data for usb-modeswitch ii usbmuxd 1.1.0-2 amd64 USB multiplexor daemon for iPhone and iPod Touch de ii usbutils 1:007-4 amd64 Linux USB utilities ii util-linux 2.27.1-6ubuntu3. amd64 miscellaneous system utilities ii uuid-runtime 2.27.1-6ubuntu3. amd64 runtime components for the Universally Unique ID li ii vbetool 1.1-3 amd64 run real-mode video BIOS code to alter hardware sta ii vim 2:7.4.1689-3ubun amd64 Vi IMproved - enhanced vi editor ii vim-common 2:7.4.1689-3ubun amd64 Vi IMproved - Common files ii vim-runtime 2:7.4.1689-3ubun all Vi IMproved - Runtime files ii vim-tiny 2:7.4.1689-3ubun amd64 Vi IMproved - enhanced vi editor - compact version ii vino 3.8.1-0ubuntu9.2 amd64 VNC server for GNOME ii vsftpd 3.0.3-3ubuntu2 amd64 lightweight, efficient FTP server written for secur ii wamerican 7.1-1 all American English dictionary words for /usr/share/di ii wbritish 7.1-1 all British English dictionary words for /usr/share/dic ii webapp-container 0.23+16.04.20161 amd64 Ubuntu web applications container ii webbrowser-app 0.23+16.04.20161 amd64 Ubuntu web browser ii wget 1.17.1-1ubuntu1. amd64 retrieves files from the web ii whiptail 0.52.18-1ubuntu2 amd64 Displays user-friendly dialog boxes from shell scri ii whoopsie 0.2.52.5 amd64 Ubuntu error tracker submission ii whoopsie-preferences 0.18 amd64 System preferences for error reporting ii wireless-regdb 2015.07.20-1ubun all wireless regulatory database ii wireless-tools 30~pre9-8ubuntu1 amd64 Tools for manipulating Linux Wireless Extensions ii wpasupplicant 2.4-0ubuntu6.2 amd64 client support for WPA and WPA2 (IEEE 802.11i) ii x11-apps 7.7+5+nmu1ubuntu amd64 X applications ii x11-common 1:7.7+13ubuntu3 all X Window System (X.Org) infrastructure ii x11-session-utils 7.7+2 amd64 X session utilities ii x11-utils 7.7+3 amd64 X11 utilities ii x11-xkb-utils 7.7+2 amd64 X11 XKB utilities ii x11-xserver-utils 7.7+7 amd64 X server utilities ii xauth 1:1.0.9-1ubuntu2 amd64 X authentication utility ii xbitmaps 1.1.1-2 all Base X bitmaps ii xbrlapi 5.3.1-2ubuntu2.1 amd64 Access software for a blind person using a braille ii xcursor-themes 1.0.4-1 all Base X cursor themes ii xdg-user-dirs 0.15-2ubuntu6 amd64 tool to manage well known user directories ii xdg-user-dirs-gtk 0.10-1ubuntu1 amd64 tool to manage well known user directories (Gtk ext ii xdg-utils 1.1.1-1ubuntu1.1 all desktop integration utilities from freedesktop.org ii xdiagnose 3.8.4.1 all X.org diagnosis tool ii xfonts-base 1:1.0.4+nmu1 all standard fonts for X ii xfonts-encodings 1:1.0.4-2 all Encodings for X.Org fonts ii xfonts-scalable 1:1.0.3-1.1 all scalable fonts for X ii xfonts-utils 1:7.7+3ubuntu0.1 amd64 X Window System font utility programs ii xinit 1.3.4-3ubuntu0.1 amd64 X server initialisation tool ii xinput 1.6.2-1 amd64 Runtime configuration and test of XInput devices ii xkb-data 2.16-1ubuntu1 all X Keyboard Extension (XKB) configuration data ii xml-core 0.13+nmu2 all XML infrastructure and XML catalog file support ii xorg 1:7.7+13ubuntu3 amd64 X.Org X Window System ii xorg-docs-core 1:1.7.1-1ubuntu1 all Core documentation for the X.org X Window System ii xserver-common 2:1.18.4-0ubuntu all common files used by various X servers ii xserver-xorg-core-hwe-1 2:1.19.3-1ubuntu amd64 Xorg X server - core server ii xserver-xorg-hwe-16.04 1:7.7+16ubuntu3~ amd64 X.Org X server ii xserver-xorg-input-all- 1:7.7+16ubuntu3~ amd64 X.Org X server -- input driver metapackage ii xserver-xorg-input-evde 1:2.10.5-1ubuntu amd64 X.Org X server -- evdev input driver ii xserver-xorg-input-syna 1.9.0-1ubuntu1~1 amd64 Synaptics TouchPad driver for X.Org server ii xserver-xorg-input-waco 1:0.34.0-0ubuntu amd64 X.Org X server -- Wacom input driver ii xserver-xorg-legacy-hwe 2:1.19.3-1ubuntu amd64 setuid root Xorg server wrapper ii xserver-xorg-video-all- 1:7.7+16ubuntu3~ amd64 X.Org X server -- output driver metapackage ii xserver-xorg-video-amdg 1.3.0-0ubuntu1~1 amd64 X.Org X server -- AMDGPU display driver ii xserver-xorg-video-ati- 1:7.9.0-0ubuntu1 amd64 X.Org X server -- AMD/ATI display driver wrapper ii xserver-xorg-video-fbde 1:0.4.4-1build6~ amd64 X.Org X server -- fbdev display driver ii xserver-xorg-video-inte 2:2.99.917+git20 amd64 X.Org X server -- Intel i8xx, i9xx display driver ii xserver-xorg-video-nouv 1:1.0.14-0ubuntu amd64 X.Org X server -- Nouveau display driver ii xserver-xorg-video-qxl- 0.1.5-2build1~16 amd64 X.Org X server -- QXL display driver ii xserver-xorg-video-rade 1:7.9.0-0ubuntu1 amd64 X.Org X server -- AMD/ATI Radeon display driver ii xserver-xorg-video-vesa 1:2.3.4-1build3~ amd64 X.Org X server -- VESA display driver ii xserver-xorg-video-vmwa 1:13.2.1-1build1 amd64 X.Org X server -- VMware display driver ii xterm 322-1ubuntu1 amd64 X terminal emulator ii xul-ext-ubufox 3.4-0ubuntu0.16. all Ubuntu modifications for Firefox ii xz-utils 5.1.1alpha+20120 amd64 XZ-format compression utilities ii yelp 3.18.1-1ubuntu4 amd64 Help browser for GNOME ii yelp-xsl 3.18.1-1 all XSL stylesheets for the yelp help browser ii zeitgeist-core 0.9.16-0ubuntu4 amd64 event logging framework - engine ii zeitgeist-datahub 0.9.16-0ubuntu4 amd64 event logging framework - passive logging daemon ii zenity 3.18.1.1-1ubuntu amd64 Display graphical dialog boxes from shell scripts ii zenity-common 3.18.1.1-1ubuntu all Display graphical dialog boxes from shell scripts ( ii zerofree 1.0.3-1 amd64 zero free blocks from ext2, ext3 and ext4 file-syst ii zip 3.0-11 amd64 Archiver for .zip files ii zlib1g:amd64 1:1.2.8.dfsg-2ub amd64 compression library - runtime | cs |
* 위 명령어와 같이 grep을 사용하여 설치 여부를 바로 확인할 수 있습니다.
2. grep 을 사용한 예로 zip 관련 패키지 목록을 확인합니다.
1 2 3 4 5 6 7 8 | $ dpkg -l |grep zip ii bzip2 1.0.6-8 amd64 high-quality block-sorting file compressor - utilities ii gzip 1.6-4ubuntu1 amd64 GNU compression utilities ii libarchive-zip-perl 1.56-2 all Perl module for manipulation of ZIP archives ii libperlio-gzip-perl 0.19-1build1 amd64 module providing a PerlIO layer to gzip/gunzip ii unzip 6.0-20ubuntu1 amd64 De-archiver for .zip files ii zip 3.0-11 amd64 Archiver for .zip files | cs |
'Operating System > Linux' 카테고리의 다른 글
ubuntu curl 설치 (0) | 2017.11.07 |
---|---|
centos user 추가 (0) | 2017.11.06 |
centos python pip 설치 (0) | 2017.11.06 |
centos zip 설치, 압축 및 압축 해제 (0) | 2017.11.06 |
centos wget 설치 (0) | 2017.11.06 |