Windows 10のWindows Subsystem for Linux(WSL)でKali Linuxをインストールしましたが、最小構成なのでベースとなるメタパッケージをインストールしました。
Kali Linux Metapackages
https://www.kali.org/news/kali-linux-metapackages/
kali-linux
The kali-linux metapackage is a completely bare-bones installation of Kali Linux and includes various network services such as Apache and SSH, the Kali kernel, and a number of version control applications like git, svn, etc. All of the other metapackages listed below also contain kali-linux.
Installation Size: 1.5 GB
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 |
rootlinks@Win10:~$ sudo apt-get update rootlinks@Win10:~$ apt search kali-linux Sorting... Done Full Text Search... Done kali-linux/kali-rolling 2018.2.0 amd64 Kali Linux base system kali-linux-all/kali-rolling 2018.2.0 amd64 Kali Linux - all packages kali-linux-forensic/kali-rolling 2018.2.0 amd64 Kali Linux forensic tools kali-linux-full/kali-rolling 2018.2.0 amd64 Kali Linux complete system kali-linux-gpu/kali-rolling 2018.2.0 amd64 Kali Linux GPU tools kali-linux-nethunter/kali-rolling 2018.2.0 amd64 Kali Linux Nethunter tools kali-linux-pwtools/kali-rolling 2018.2.0 amd64 Kali Linux password cracking tools kali-linux-rfid/kali-rolling 2018.2.0 amd64 Kali Linux RFID tools kali-linux-sdr/kali-rolling 2018.2.0 amd64 Kali Linux SDR tools kali-linux-top10/kali-rolling 2018.2.0 amd64 Kali Linux Top 10 tools kali-linux-voip/kali-rolling 2018.2.0 amd64 Kali Linux VoIP tools kali-linux-web/kali-rolling 2018.2.0 amd64 Kali Linux webapp assessment tools kali-linux-wireless/kali-rolling 2018.2.0 amd64 Kali Linux wireless tools rootlinks@Win10:~$ sudo apt-get -y install kali-linux Reading package lists... Done Building dependency tree Reading state information... Done The following additional packages will be installed: adwaita-icon-theme apache2 apache2-bin apache2-data apache2-utils at-spi2-core atftpd attr axel bzip2 (sinip) |
apacheやsshのパッケージがインストールされました。
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 |
rootlinks@Win10:~$ sudo dpkg -l [sudo] password for rootlinks: 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 adduser 3.117 all add and remove users and groups ii adwaita-icon-theme 3.27.90-1 all default icon theme of GNOME ii apache2 2.4.29-2 amd64 Apache HTTP Server ii apache2-bin 2.4.29-2 amd64 Apache HTTP Server (modules and other binary files) ii apache2-data 2.4.29-2 all Apache HTTP Server (common files) ii apache2-utils 2.4.29-2 amd64 Apache HTTP Server (utility programs for web servers) ii apt 1.6~beta1 amd64 commandline package manager ii apt-utils 1.6~beta1 amd64 package management related utility programs ii at-spi2-core 2.26.2-2 amd64 Assistive Technology Service Provider Interface (dbus ii atftpd 0.7.git20120829-3 amd64 advanced TFTP server ii attr 1:2.4.47-2+b2 amd64 Utilities for manipulating filesystem extended attrib ii axel 2.16.1-1 amd64 light command line download accelerator ii base-files 1:2018.1.0 amd64 Debian base system miscellaneous files ii base-passwd 3.5.44 amd64 Debian base system master password and group files ii bash 4.4.18-1.1 amd64 GNU Bourne Again SHell ii bsdmainutils 11.1.2 amd64 collection of more utilities from FreeBSD ii bsdutils 1:2.31.1-0.4 amd64 basic utilities from 4.4BSD-Lite ii bzip2 1.0.6-8.1 amd64 high-quality block-sorting file compressor - utilitie ii ca-certificates 20170717 all Common CA certificates ii coreutils 8.28-1 amd64 GNU core utilities ii cpio 2.12+dfsg-6 amd64 GNU cpio -- a program to manage archives of files ii cpp 4:7.2.0-1d1 amd64 GNU C preprocessor (cpp) ii cpp-7 7.3.0-5 amd64 GNU C preprocessor ii crda 3.18-1 amd64 wireless Central Regulatory Domain Agent ii cron 3.0pl1-128.1 amd64 process scheduling daemon ii dash 0.5.8-2.10 amd64 POSIX-compliant shell ii dbus 1.12.6-2 amd64 simple interprocess messaging system (daemon and util ii dbus-user-session 1.12.6-2 amd64 simple interprocess messaging system (systemd --user ii dconf-cli 0.26.1-3 amd64 simple configuration storage system - utilities ii dconf-gsettings-backend: 0.26.1-3 amd64 simple configuration storage system - GSettings back- ii dconf-service 0.26.1-3 amd64 simple configuration storage system - D-Bus service ii debconf 1.5.66 all Debian configuration management system ii debconf-i18n 1.5.66 all full internationalization support for debconf ii debian-archive-keyring 2017.7 all GnuPG archive keys of the Debian archive ii debianutils 4.8.4 amd64 Miscellaneous utilities specific to Debian ii debtags 2.1.5 all Debian Package Tags support tools ii default-mysql-server 1.0.4 all MySQL database server binaries and system database se ii desktop-base 9.0.5+kali2 all common files for the Debian Desktop ii dh-python 2.20170125 all Debian helper tools for packaging Python libraries an ii dictionaries-common 1.27.2 all spelling dictionaries - common utilities ii diffutils 1:3.6-1 amd64 File comparison utilities ii dirmngr 2.2.5-1 amd64 GNU privacy guard - network certificate management se ii distro-info-data 0.37 all information about the distributions' releases (data f ii dmeventd 2:1.02.145-4.1 amd64 Linux Kernel Device Mapper event daemon ii dmidecode 3.1-1 amd64 SMBIOS/DMI table decoder ii dmsetup 2:1.02.145-4.1 amd64 Linux Kernel Device Mapper userspace library ii dpkg 1.19.0.5kali1 amd64 Debian package management system ii e2fsprogs 1.43.9-2 amd64 ext2/ext3/ext4 file system utilities ii easy-rsa 2.2.2-2 all Simple shell based CA utility ii emacsen-common 2.0.8 all Common facilities for all emacsen ii exe2hexbat 1.5-1kali1 all Convert EXE to bat ii expect 5.45.4-1 amd64 Automates interactive applications ii fdisk 2.31.1-0.4 amd64 collection of partitioning utilities ii file 1:5.32-2 amd64 Recognize the type of data in a file using "magic" nu ii findutils 4.6.0+git+2017082 amd64 utilities for finding files--find, xargs ii firefox-esr 52.6.0esr-2+b1 amd64 Mozilla Firefox web browser - Extended Support Releas ii florence 0.6.3-1+b2 amd64 extensible and scalable virtual keyboard for X ii fontconfig 2.12.6-0.1 amd64 generic font configuration library - support binaries ii fontconfig-config 2.12.6-0.1 all generic font configuration library - configuration ii fonts-dejavu-core 2.37-1 all Vera font family derivate with additional characters ii fuse 2.9.7-1 amd64 Filesystem in Userspace ii galera-3 25.3.22-1 amd64 Replication framework for transactional applications ii gawk 1:4.1.4+dfsg-1+b1 amd64 GNU awk, a pattern scanning and processing language ii gcc-7-base:amd64 7.3.0-5 amd64 GCC, the GNU Compiler Collection (base package) ii gcc-8-base:amd64 8-20180218-1 amd64 GCC, the GNU Compiler Collection (base package) ii gdbm-l10n 1.14.1-4 all GNU dbm database routines (translation files) ii gdisk 1.0.3-1 amd64 GPT fdisk text-mode partitioning tool ii git 1:2.16.1-1 amd64 fast, scalable, distributed revision control system ii git-man 1:2.16.1-1 all fast, scalable, distributed revision control system ( ii glib-networking:amd64 2.54.1-2 amd64 network-related giomodules for GLib ii glib-networking-common 2.54.1-2 all network-related giomodules for GLib - data files ii glib-networking-services 2.54.1-2 amd64 network-related giomodules for GLib - D-Bus services ii glusterfs-common 3.13.2-1 amd64 GlusterFS common libraries and translator modules ii gnome-brave-icon-theme 5.5.1-2 all blue variation of the GNOME-Colors icon theme ii gnome-colors-common 5.5.1-2 all common icons for all GNOME-Colors icon themes ii gnome-icon-theme 3.12.0-2 all GNOME Desktop icon theme ii gnupg 2.2.5-1 amd64 GNU privacy guard - a free PGP replacement ii gnupg-l10n 2.2.5-1 all GNU privacy guard - localization files ii gnupg-utils 2.2.5-1 amd64 GNU privacy guard - utility programs ii gnustep-base-common 1.25.1-2 all GNUstep Base library - common files ii gnustep-base-runtime 1.25.1-2 amd64 GNUstep Base library - daemons and tools ii gnustep-common 2.7.0-3 amd64 Common files for the core GNUstep environment ii gparted 0.30.0-3 amd64 GNOME partition editor ii gpg 2.2.5-1 amd64 GNU Privacy Guard -- minimalist public key operations ii gpg-agent 2.2.5-1 amd64 GNU privacy guard - cryptographic agent ii gpg-wks-client 2.2.5-1 amd64 GNU privacy guard - Web Key Service client ii gpg-wks-server 2.2.5-1 amd64 GNU privacy guard - Web Key Service server ii gpgconf 2.2.5-1 amd64 GNU privacy guard - core configuration utilities ii gpgsm 2.2.5-1 amd64 GNU privacy guard - S/MIME version ii gpgv 2.2.5-1 amd64 GNU privacy guard - signature verification tool ii grep 3.1-2 amd64 GNU grep, egrep and fgrep ii groff-base 1.22.3-10 amd64 GNU troff text-formatting system (base system compone ii gsettings-desktop-schema 3.27.90-1 all GSettings desktop-wide schemas ii gtk-update-icon-cache 3.22.28-1 amd64 icon theme caching utility ii gzip 1.6-5+b1 amd64 GNU compression utilities ii hicolor-icon-theme 0.17-1 all default fallback theme for FreeDesktop.org icon theme ii hostname 3.20 amd64 utility to set/show the host name or domain name ii hunspell-en-us 1:2017.08.24 all English_american dictionary for hunspell ii ibverbs-providers:amd64 17.0-1 amd64 User space provider drivers for libibverbs ii ifupdown 0.8.31 amd64 high level tools to configure network interfaces ii init 1.51kali1 amd64 metapackage ensuring an init system is installed ii init-system-helpers 1.51kali1 all helper tools for all init systems ii iproute2 4.15.0-2 amd64 networking and traffic control tools ii iptables 1.6.2-1 amd64 administration tools for packet filtering and NAT ii iputils-ping 3:20161105-1 amd64 Tools to test the reachability of network hosts ii isc-dhcp-client 4.3.5-3.1 amd64 DHCP client for automatically obtaining an IP address ii isc-dhcp-common 4.3.5-3.1 amd64 common manpages relevant to all of the isc-dhcp packa ii iso-codes 3.79-1 all ISO language, territory, currency, script codes and t ii iw 4.14-0.1 amd64 tool for configuring Linux wireless devices ii javascript-common 11 all Base support for JavaScript library packages ii kali-archive-keyring 2018.1 all GnuPG archive keys of the Kali archive ii kali-debtags 0.2 all Kali-specific debtags ii kali-defaults 2018.2.0 all Kali default settings ii kali-desktop-common 2018.2.0 all Meta-package with dependencies common to all desktops ii kali-linux 2018.2.0 amd64 Kali Linux base system ii kali-menu 2018.2.2 all Kali Linux custom menu ii kali-root-login 2017.2.1 all Bits of configuration to allow root logins ii kmod 25-1 amd64 tools for managing Linux kernel modules ii krb5-locales 1.16-2 all internationalization support for MIT Kerberos ii less 487-0.1 amd64 pager program similar to more ii libacl1:amd64 2.2.52-3+b1 amd64 Access control list shared library ii libacl1-dev 2.2.52-3+b1 amd64 Access control list static libraries and headers ii libaio1:amd64 0.3.110-5 amd64 Linux kernel AIO access library - shared library ii libapache2-mod-php7.2 7.2.3-1 amd64 server-side, HTML-embedded scripting language (Apache ii libapparmor1:amd64 2.12-3 amd64 changehat AppArmor library ii libapr1:amd64 1.6.3-2 amd64 Apache Portable Runtime Library ii libaprutil1:amd64 1.6.1-2 amd64 Apache Portable Runtime Utility Library ii libaprutil1-dbd-sqlite3: 1.6.1-2 amd64 Apache Portable Runtime Utility Library - SQLite3 Dri ii libaprutil1-ldap:amd64 1.6.1-2 amd64 Apache Portable Runtime Utility Library - LDAP Driver ii libapt-inst2.0:amd64 1.6~beta1 amd64 deb package format runtime library ii libapt-pkg5.0:amd64 1.6~beta1 amd64 package management runtime library ii libargon2-0:amd64 0~20161029-1.1 amd64 memory-hard hashing function - runtime library ii libasound2:amd64 1.1.3-5 amd64 shared library for ALSA applications ii libasound2-data 1.1.3-5 all Configuration files and profiles for ALSA drivers ii libassuan0:amd64 2.5.1-2 amd64 IPC library for the GnuPG components ii libatk-bridge2.0-0:amd64 2.26.1-1 amd64 AT-SPI 2 toolkit bridge - shared library ii libatk1.0-0:amd64 2.26.1-3 amd64 ATK accessibility toolkit ii libatk1.0-data 2.26.1-3 all Common files for the ATK accessibility toolkit ii libatkmm-1.6-1v5:amd64 2.24.2-3 amd64 C++ wrappers for ATK accessibility toolkit (shared li ii libatspi2.0-0:amd64 2.26.2-2 amd64 Assistive Technology Service Provider Interface - sha ii libattr1:amd64 1:2.4.47-2+b2 amd64 Extended attribute shared library ii libattr1-dev:amd64 1:2.4.47-2+b2 amd64 Extended attribute static libraries and headers ii libaudit-common 1:2.8.2-1 all Dynamic library for security auditing - common files ii libaudit1:amd64 1:2.8.2-1 amd64 Dynamic library for security auditing ii libauthen-sasl-perl 2.1600-1 all Authen::SASL - SASL Authentication framework ii libavahi-client3:amd64 0.7-3.1 amd64 Avahi client library ii libavahi-common-data:amd 0.7-3.1 amd64 Avahi common data files ii libavahi-common3:amd64 0.7-3.1 amd64 Avahi common library ii libblkid1:amd64 2.31.1-0.4 amd64 block device ID library ii libboost-iostreams1.62.0 1.62.0+dfsg-5 amd64 Boost.Iostreams Library ii libboost-random1.62.0:am 1.62.0+dfsg-5 amd64 Boost Random Number Library ii libboost-system1.62.0:am 1.62.0+dfsg-5 amd64 Operating system (e.g. diagnostics support) library ii libboost-thread1.62.0:am 1.62.0+dfsg-5 amd64 portable C++ multi-threading ii libbrotli1:amd64 1.0.3-1 amd64 library implementing brotli encoder and decoder (shar ii libbsd0:amd64 0.8.7-1 amd64 utility functions from BSD systems - shared library ii libbz2-1.0:amd64 1.0.6-8.1 amd64 high-quality block-sorting file compressor library - ii libc-bin 2.27-1 amd64 GNU C Library: Binaries ii libc-dev-bin 2.27-1 amd64 GNU C Library: Development binaries ii libc-l10n 2.27-1 all GNU C Library: localization files ii libc6:amd64 2.27-1 amd64 GNU C Library: Shared libraries ii libc6-dev:amd64 2.27-1 amd64 GNU C Library: Development Libraries and Header Files ii libcairo-gobject2:amd64 1.15.10-1 amd64 Cairo 2D vector graphics library (GObject library) ii libcairo2:amd64 1.15.10-1 amd64 Cairo 2D vector graphics library ii libcairomm-1.0-1v5:amd64 1.12.2-3 amd64 C++ wrappers for Cairo (shared libraries) ii libcap-ng0:amd64 0.7.7-3.1+b1 amd64 An alternate POSIX capabilities library ii libcap2:amd64 1:2.25-1.2 amd64 POSIX 1003.1e capabilities (library) ii libcap2-bin 1:2.25-1.2 amd64 POSIX 1003.1e capabilities (utilities) ii libccid 1.4.29-1 amd64 PC/SC driver for USB CCID smart card readers ii libcephfs1 10.2.5-7.2 amd64 Ceph distributed file system client library ii libcgi-fast-perl 1:2.13-1 all CGI subclass for work with FCGI ii libcgi-pm-perl 4.38-1 all module for Common Gateway Interface applications ii libcolord2:amd64 1.3.3-2 amd64 system service to manage device colour profiles -- ru ii libcom-err2:amd64 1.43.9-2 amd64 common error description library ii libconfig-inifiles-perl 2.94-1 all Read .ini-style configuration files ii libcroco3:amd64 0.6.12-2 amd64 Cascading Style Sheet (CSS) parsing and manipulation ii libcryptsetup12:amd64 2:2.0.1-1kali1 amd64 disk encryption support - shared library ii libcups2:amd64 2.2.6-5 amd64 Common UNIX Printing System(tm) - Core library ii libcurl3-gnutls:amd64 7.58.0-2 amd64 easy-to-use client-side URL transfer library (GnuTLS ii libdata-dump-perl 1.23-1 all Perl module to help dump data structures ii libdatrie1:amd64 0.2.10-7 amd64 Double-array trie library ii libdb5.3:amd64 5.3.28-13.1+b1 amd64 Berkeley v5.3 Database Libraries [runtime] ii libdbd-mysql-perl 4.046-1 amd64 Perl5 database interface to the MariaDB/MySQL databas ii libdbi-perl 1.640-1 amd64 Perl Database Interface (DBI) ii libdbus-1-3:amd64 1.12.6-2 amd64 simple interprocess messaging system (library) ii libdbus-glib-1-2:amd64 0.110-2 amd64 deprecated library for D-Bus IPC ii libdconf1:amd64 0.26.1-3 amd64 simple configuration storage system - runtime library ii libdebconfclient0:amd64 0.241 amd64 Debian Configuration Management System (C-implementat ii libdevmapper-event1.02.1 2:1.02.145-4.1 amd64 Linux Kernel Device Mapper event support library ii libdevmapper1.02.1:amd64 2:1.02.145-4.1 amd64 Linux Kernel Device Mapper userspace library ii libdns-export169 1:9.11.2.P1-1 amd64 Exported DNS Shared Library ii libdpkg-perl 1.19.0.5kali1 all Dpkg perl modules ii libdrm-amdgpu1:amd64 2.4.90-1 amd64 Userspace interface to amdgpu-specific kernel DRM ser ii libdrm-common 2.4.90-1 all Userspace interface to kernel DRM services -- common ii libdrm-intel1:amd64 2.4.90-1 amd64 Userspace interface to intel-specific kernel DRM serv ii libdrm-nouveau2:amd64 2.4.90-1 amd64 Userspace interface to nouveau-specific kernel DRM se ii libdrm-radeon1:amd64 2.4.90-1 amd64 Userspace interface to radeon-specific kernel DRM ser ii libdrm2:amd64 2.4.90-1 amd64 Userspace interface to kernel DRM services -- runtime ii libedit2:amd64 3.1-20170329-1 amd64 BSD editline and history libraries ii libegl-mesa0:amd64 17.3.6-1 amd64 free implementation of the EGL API -- Mesa vendor lib ii libegl1:amd64 1.0.0-2 amd64 Vendor neutral GL dispatch library -- EGL support ii libelf1:amd64 0.170-0.3 amd64 library to read and write ELF files ii libencode-locale-perl 1.05-1 all utility to determine the locale encoding ii libepoxy0:amd64 1.4.3-1 amd64 OpenGL function pointer management library ii liberror-perl 0.17025-1 all Perl module for error/exception handling in an OO-ish ii libestr0:amd64 0.1.10-2.1 amd64 Helper functions for handling strings (lib) ii libevent-2.1-6:amd64 2.1.8-stable-4 amd64 Asynchronous event notification library ii libexpat1:amd64 2.2.5-3 amd64 XML parsing C library - runtime library ii libext2fs2:amd64 1.43.9-2 amd64 ext2/ext3/ext4 file system libraries ii libfastjson4:amd64 0.99.8-2 amd64 fast json library for C ii libfcgi-perl 0.78-2+b2 amd64 helper module for FastCGI ii libfdisk1:amd64 2.31.1-0.4 amd64 fdisk partitioning library ii libffi6:amd64 3.2.1-8 amd64 Foreign Function Interface library runtime ii libfile-basedir-perl 0.07-1 all Perl module to use the freedesktop basedir specificat ii libfile-copy-recursive-p 0.40-1 all Perl extension for recursively copying files and dire ii libfile-desktopentry-per 0.22-1 all Perl module to handle freedesktop .desktop files ii libfile-fcntllock-perl 0.22-3+b4 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.28-1 all Perl module to determine file types ii libflorence-1.0-1:amd64 0.6.3-1+b2 amd64 extensible and scalable virtual keyboard for X ii libfont-afm-perl 1.20-2 all Font::AFM - Interface to Adobe Font Metrics files ii libfontconfig1:amd64 2.12.6-0.1 amd64 generic font configuration library - runtime ii libfontenc1:amd64 1:1.1.3-1+b2 amd64 X11 font encoding library ii libfreetype6:amd64 2.8.1-2 amd64 FreeType 2 font engine, shared library files ii libfuse2:amd64 2.9.7-1 amd64 Filesystem in Userspace (library) ii libgail-common:amd64 2.24.32-1 amd64 GNOME Accessibility Implementation Library -- common ii libgail18:amd64 2.24.32-1 amd64 GNOME Accessibility Implementation Library -- shared ii libgbm1:amd64 17.3.6-1 amd64 generic buffer management API -- runtime ii libgc1c2:amd64 1:7.4.2-8 amd64 conservative garbage collector for C and C++ ii libgcc1:amd64 1:8-20180218-1 amd64 GCC support library ii libgcrypt20:amd64 1.8.1-4 amd64 LGPL Crypto library - runtime library ii libgdbm-compat4:amd64 1.14.1-4 amd64 GNU dbm database routines (legacy support runtime ver ii libgdbm3:amd64 1.8.3-14 amd64 GNU dbm database routines (runtime version) ii libgdbm5:amd64 1.14.1-4 amd64 GNU dbm database routines (runtime version) ii libgdk-pixbuf2.0-0:amd64 2.36.11-1 amd64 GDK Pixbuf library ii libgdk-pixbuf2.0-bin 2.36.11-1 amd64 GDK Pixbuf library (thumbnailer) ii libgdk-pixbuf2.0-common 2.36.11-1 all GDK Pixbuf library - data files ii libgl1:amd64 1.0.0-2 amd64 Vendor neutral GL dispatch library -- legacy GL suppo ii libgl1-mesa-dri:amd64 17.3.6-1 amd64 free implementation of the OpenGL API -- DRI modules ii libgl1-mesa-glx:amd64 17.3.6-1 amd64 transitional dummy package ii libglapi-mesa:amd64 17.3.6-1 amd64 free implementation of the GL API -- shared library ii libglib2.0-0:amd64 2.54.3-2 amd64 GLib library of C routines ii libglib2.0-bin 2.54.3-2 amd64 Programs for the GLib library ii libglib2.0-data 2.54.3-2 all Common files for GLib library ii libglibmm-2.4-1v5:amd64 2.54.1-3 amd64 C++ wrapper for the GLib toolkit (shared libraries) ii libglvnd0:amd64 1.0.0-2 amd64 Vendor neutral GL dispatch library ii libglx-mesa0:amd64 17.3.6-1 amd64 free implementation of the OpenGL API -- GLX vendor l ii libglx0:amd64 1.0.0-2 amd64 Vendor neutral GL dispatch library -- GLX support ii libgmp10:amd64 2:6.1.2+dfsg-2 amd64 Multiprecision arithmetic library ii libgnustep-base1.25 1.25.1-2 amd64 GNUstep Base library ii libgnutls30:amd64 3.5.18-1 amd64 GNU TLS library - main runtime library ii libgpg-error0:amd64 1.27-6 amd64 library for common error values and messages in GnuPG ii libgpgme11:amd64 1.10.0-2 amd64 GPGME - GnuPG Made Easy (library) ii libgpm2:amd64 1.20.7-5 amd64 General Purpose Mouse - shared library ii libgraphite2-3:amd64 1.3.10-8 amd64 Font rendering engine for Complex Scripts -- library ii libgssapi-krb5-2:amd64 1.16-2 amd64 MIT Kerberos runtime libraries - krb5 GSS-API Mechani ii libgssglue1:amd64 0.4-2+b2 amd64 mechanism-switch gssapi library ii libgstreamer1.0-0:amd64 1.12.4-1 amd64 Core GStreamer libraries and elements ii libgtk-3-0:amd64 3.22.28-1 amd64 GTK+ graphical user interface library ii libgtk-3-bin 3.22.28-1 amd64 programs for the GTK+ graphical user interface librar ii libgtk-3-common 3.22.28-1 all common files for the GTK+ graphical user interface li ii libgtk2.0-0:amd64 2.24.32-1 amd64 GTK+ graphical user interface library ii libgtk2.0-bin 2.24.32-1 amd64 programs for the GTK+ graphical user interface librar ii libgtk2.0-common 2.24.32-1 all common files for the GTK+ graphical user interface li ii libgtkmm-2.4-1v5:amd64 1:2.24.5-2 amd64 C++ wrappers for GTK+ (shared libraries) ii libharfbuzz0b:amd64 1.7.2-1 amd64 OpenType text shaping engine (shared library) ii libhogweed4:amd64 3.4-1 amd64 low level cryptographic library (public-key cryptos) ii libhtml-form-perl 6.03-1 all module that represents an HTML form element ii libhtml-format-perl 2.12-1 all module for transforming HTML into various formats ii libhtml-parser-perl 3.72-3+b2 amd64 collection of modules that parse HTML text documents ii libhtml-tagset-perl 3.20-3 all Data tables pertaining to HTML ii libhtml-template-perl 2.97-1 all module for using HTML templates with Perl ii libhtml-tree-perl 5.07-1 all Perl module to represent and create HTML syntax trees ii libhttp-cookies-perl 6.04-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.14-1 all perl interface to HTTP style messages ii libhttp-negotiate-perl 6.00-2 all implementation of content negotiation ii libhunspell-1.6-0:amd64 1.6.2-1 amd64 spell checker and morphological analyzer (shared libr ii libibverbs1:amd64 17.0-1 amd64 Library for direct userspace use of RDMA (InfiniBand/ ii libice6:amd64 2:1.0.9-2 amd64 X11 Inter-Client Exchange library ii libicu57:amd64 57.1-8 amd64 International Components for Unicode ii libidn11:amd64 1.33-2.1 amd64 GNU Libidn library, implementation of IETF IDN specif ii libidn2-0:amd64 2.0.4-1.1 amd64 Internationalized domain names (IDNA2008/TR46) librar ii libio-html-perl 1.001-1 all open an HTML file with automatic charset detection ii libio-socket-ssl-perl 2.056-1 all Perl module implementing object oriented interface to ii libip4tc0:amd64 1.6.2-1 amd64 netfilter libip4tc library ii libip6tc0:amd64 1.6.2-1 amd64 netfilter libip6tc library ii libipc-system-simple-per 1.25-4 all Perl module to run commands simply, with detailed dia ii libiptc0:amd64 1.6.2-1 amd64 netfilter libiptc library ii libisc-export166:amd64 1:9.11.2.P1-1 amd64 Exported ISC Shared Library ii libisl15:amd64 0.18-1 amd64 manipulating sets and relations of integer points bou ii libjansson4:amd64 2.11-1 amd64 C library for encoding, decoding and manipulating JSO ii libjbig0:amd64 2.1-3.1+b2 amd64 JBIGkit libraries ii libjemalloc1 3.6.0-11 amd64 general-purpose scalable concurrent malloc(3) impleme ii libjpeg62-turbo:amd64 1:1.5.2-2+b1 amd64 libjpeg-turbo JPEG runtime library ii libjs-excanvas 0.r3-4 all HTML5 Canvas for Internet Explorer ii libjson-c3:amd64 0.12.1-1.3 amd64 JSON manipulation library - shared library ii libjson-glib-1.0-0:amd64 1.4.2-3 amd64 GLib JSON manipulation library ii libjson-glib-1.0-common 1.4.2-3 all GLib JSON manipulation library (common files) ii libjsoncpp1:amd64 1.7.4-3 amd64 library for reading and writing JSON for C++ ii libk5crypto3:amd64 1.16-2 amd64 MIT Kerberos runtime libraries - Crypto Library ii libkeyutils1:amd64 1.5.9-9.2 amd64 Linux Key Management Utilities (library) ii libkmod2:amd64 25-1 amd64 libkmod shared library ii libkrb5-3:amd64 1.16-2 amd64 MIT Kerberos runtime libraries ii libkrb5support0:amd64 1.16-2 amd64 MIT Kerberos runtime libraries - Support library ii libksba8:amd64 1.3.5-2 amd64 X.509 and CMS support library ii liblcms2-2:amd64 2.9-1 amd64 Little CMS 2 color management library ii libldap-2.4-2:amd64 2.4.45+dfsg-1 amd64 OpenLDAP libraries ii libldap-common 2.4.45+dfsg-1 all OpenLDAP common files for libraries ii libldb1:amd64 2:1.2.3-1 amd64 LDAP-like embedded database - shared library ii libllvm5.0:amd64 1:5.0.1-2 amd64 Modular compiler and toolchain technologies, runtime ii liblocale-gettext-perl 1.07-3+b3 amd64 module using libc functions for internationalization ii liblogging-stdlog0:amd64 1.0.6-3 amd64 easy to use and lightweight logging library ii liblognorm5:amd64 2.0.3-1 amd64 log normalizing library ii liblua5.2-0:amd64 5.2.4-1.1+b2 amd64 Shared library for the Lua interpreter version 5.2 ii liblvm2app2.2:amd64 2.02.176-4.1 amd64 LVM2 application library ii liblvm2cmd2.02:amd64 2.02.176-4.1 amd64 LVM2 command library ii liblwp-mediatypes-perl 6.02-1 all module to guess media type for a file or a URL ii liblwp-protocol-https-pe 6.07-2 all HTTPS driver for LWP::UserAgent ii liblz4-1:amd64 0.0~r131-2+b1 amd64 Fast LZ compression algorithm library - runtime ii liblzma5:amd64 5.2.2-1.3 amd64 XZ-format compression library ii liblzo2-2:amd64 2.08-1.2+b2 amd64 data compression library ii libmagic-mgc 1:5.32-2 amd64 File type determination library using "magic" numbers ii libmagic1:amd64 1:5.32-2 amd64 Recognize the type of data in a file using "magic" nu ii libmailtools-perl 2.18-1 all Manipulate email in perl programs ii libmariadbclient18:amd64 1:10.1.29-6 amd64 MariaDB database client library ii libmnl0:amd64 1.0.4-2 amd64 minimalistic Netlink communication library ii libmount1:amd64 2.31.1-0.4 amd64 device mounting library ii libmpc3:amd64 1.1.0-1 amd64 multiple precision complex floating-point library ii libmpdec2:amd64 2.4.2-1 amd64 library for decimal floating point arithmetic (runtim ii libmpfr6:amd64 4.0.0-7 amd64 multiple precision floating-point computation ii libncurses5:amd64 6.1-1 amd64 shared libraries for terminal handling ii libncursesw5:amd64 6.1-1 amd64 shared libraries for terminal handling (wide characte ii libnet-dbus-perl 1.1.0-4+b3 amd64 Perl extension for the DBus bindings ii libnet-http-perl 6.17-1 all module providing low-level HTTP connection client ii libnet-smtp-ssl-perl 1.04-1 all Perl module providing SSL support to Net::SMTP ii libnet-ssleay-perl 1.84-1 amd64 Perl module for Secure Sockets Layer (SSL) ii libnetfilter-conntrack3: 1.0.6-2 amd64 Netfilter netlink-conntrack library ii libnettle6:amd64 3.4-1 amd64 low level cryptographic library (symmetric and one-wa ii libnewt0.52:amd64 0.52.20-2 amd64 Not Erik's Windowing Toolkit - text mode windowing wi ii libnfnetlink0:amd64 1.0.1-3+b1 amd64 Netfilter netlink library ii libnghttp2-14:amd64 1.31.0-1 amd64 library implementing HTTP/2 protocol (shared library) ii libnl-3-200:amd64 3.2.27-2 amd64 library for dealing with netlink sockets ii libnl-genl-3-200:amd64 3.2.27-2 amd64 library for dealing with netlink sockets - generic ne ii libnl-route-3-200:amd64 3.2.27-2 amd64 library for dealing with netlink sockets - route inte ii libnotify4:amd64 0.7.7-3 amd64 sends desktop notifications to a notification daemon ii libnpth0:amd64 1.5-3 amd64 replacement for GNU Pth using system threads ii libnspr4:amd64 2:4.18-1 amd64 NetScape Portable Runtime Library ii libnss3:amd64 2:3.35-2 amd64 Network Security Service libraries ii libntfs-3g88 1:2017.3.23-2 amd64 read/write NTFS driver for FUSE (runtime library) ii libobjc4:amd64 8-20180218-1 amd64 Runtime library for GNU Objective-C applications ii libp11-kit0:amd64 0.23.9-2 amd64 library for loading and coordinating access to PKCS#1 ii libpam-cap:amd64 1:2.25-1.2 amd64 POSIX 1003.1e capabilities (PAM module) ii libpam-modules:amd64 1.1.8-3.7 amd64 Pluggable Authentication Modules for PAM ii libpam-modules-bin 1.1.8-3.7 amd64 Pluggable Authentication Modules for PAM - helper bin ii libpam-runtime 1.1.8-3.7 all Runtime support for the PAM library ii libpam-systemd:amd64 237-4 amd64 system and service manager - PAM module ii libpam0g:amd64 1.1.8-3.7 amd64 Pluggable Authentication Modules library ii libpango-1.0-0:amd64 1.40.14-1 amd64 Layout and rendering of internationalized text ii libpangocairo-1.0-0:amd6 1.40.14-1 amd64 Layout and rendering of internationalized text ii libpangoft2-1.0-0:amd64 1.40.14-1 amd64 Layout and rendering of internationalized text ii libpangomm-1.4-1v5:amd64 2.40.1-4 amd64 C++ Wrapper for pango (shared libraries) ii libparted-fs-resize0:amd 3.2-20 amd64 disk partition manipulator - shared FS resizing libra ii libparted2:amd64 3.2-20 amd64 disk partition manipulator - shared library ii libpcap0.8:amd64 1.8.1-6 amd64 system interface for user-level packet capture ii libpci3:amd64 1:3.5.2-1 amd64 Linux PCI Utilities (shared library) ii libpciaccess0:amd64 0.13.4-1+b2 amd64 Generic PCI access library for X ii libpcre2-8-0:amd64 10.22-6 amd64 New Perl Compatible Regular Expression Library- 8 bit ii libpcre3:amd64 2:8.39-9 amd64 Old Perl 5 Compatible Regular Expression Library - ru ii libpcsclite1:amd64 1.8.23-1 amd64 Middleware to access a smart card using PC/SC (librar ii libperl5.26:amd64 5.26.1-5 amd64 shared Perl library ii libpipeline1:amd64 1.5.0-1 amd64 pipeline manipulation library ii libpixman-1-0:amd64 0.34.0-2 amd64 pixel-manipulation library for X and cairo ii libpkcs11-helper1:amd64 1.22-4 amd64 library that simplifies the interaction with PKCS#11 ii libpng16-16:amd64 1.6.34-1 amd64 PNG library - runtime (version 1.6) ii libpopt0:amd64 1.16-10+b2 amd64 lib for parsing cmdline parameters ii libprocps6:amd64 2:3.3.12-4 amd64 library for accessing process information from /proc ii libproxy1v5:amd64 0.4.14-4 amd64 automatic proxy configuration management library (sha ii libpsl5:amd64 0.19.1-5 amd64 Library for Public Suffix List (shared libraries) ii libpython-stdlib:amd64 2.7.14-4 amd64 interactive high-level object-oriented language (defa ii libpython2.7:amd64 2.7.14-6 amd64 Shared Python runtime library (version 2.7) ii libpython2.7-minimal:amd 2.7.14-6 amd64 Minimal subset of the Python language (version 2.7) ii libpython2.7-stdlib:amd6 2.7.14-6 amd64 Interactive high-level object-oriented language (stan ii libpython3-stdlib:amd64 3.6.4-1 amd64 interactive high-level object-oriented language (defa ii libpython3.6-minimal:amd 3.6.4-4 amd64 Minimal subset of the Python language (version 3.6) ii libpython3.6-stdlib:amd6 3.6.4-4 amd64 Interactive high-level object-oriented language (stan ii librdmacm1:amd64 17.0-1 amd64 Library for managing RDMA connections ii libreadline5:amd64 5.2+dfsg-3+b1 amd64 GNU readline and history libraries, run-time librarie ii libreadline7:amd64 7.0-3 amd64 GNU readline and history libraries, run-time librarie ii librest-0.7-0:amd64 0.8.0-2 amd64 REST service access library ii librsvg2-2:amd64 2.40.20-2 amd64 SAX-based renderer library for SVG files (runtime) ii librsvg2-common:amd64 2.40.20-2 amd64 SAX-based renderer library for SVG files (extra runti ii librtmp1:amd64 2.4+20151223.gitf amd64 toolkit for RTMP streams (shared library) ii libsasl2-2:amd64 2.1.27~101-g07806 amd64 Cyrus SASL - authentication abstraction library ii libsasl2-modules:amd64 2.1.27~101-g07806 amd64 Cyrus SASL - pluggable authentication modules ii libsasl2-modules-db:amd6 2.1.27~101-g07806 amd64 Cyrus SASL - pluggable authentication modules (DB) ii libseccomp2:amd64 2.3.1-2.1 amd64 high level interface to Linux seccomp filter ii libselinux1:amd64 2.7-2+b1 amd64 SELinux runtime shared libraries ii libsemanage-common 2.7-2 all Common files for SELinux policy management libraries ii libsemanage1:amd64 2.7-2+b1 amd64 SELinux policy management library ii libsensors4:amd64 1:3.4.0-4 amd64 library to read temperature/voltage/fan sensors ii libsepol1:amd64 2.7-1 amd64 SELinux library for manipulating binary security poli ii libserf-1-1:amd64 1.3.9-4 amd64 high-performance asynchronous HTTP client library ii libsigc++-2.0-0v5:amd64 2.10.0-1 amd64 type-safe Signal Framework for C++ - runtime ii libsigsegv2:amd64 2.12-1 amd64 Library for handling page faults in a portable way ii libslang2:amd64 2.3.1a-3 amd64 S-Lang programming library - runtime version ii libsm6:amd64 2:1.2.2-1+b3 amd64 X11 Session Management library ii libsmartcols1:amd64 2.31.1-0.4 amd64 smart column output alignment library ii libsnmp-base 5.7.3+dfsg-1.8 all SNMP configuration script, MIBs and documentation ii libsnmp30:amd64 5.7.3+dfsg-1.8 amd64 SNMP (Simple Network Management Protocol) library ii libsodium23:amd64 1.0.16-2 amd64 Network communication, cryptography and signaturing l ii libsoup-gnome2.4-1:amd64 2.60.3-1 amd64 HTTP library implementation in C -- GNOME support lib ii libsoup2.4-1:amd64 2.60.3-1 amd64 HTTP library implementation in C -- Shared library ii libsqlite3-0:amd64 3.22.0-1 amd64 SQLite 3 shared library ii libss2:amd64 1.43.9-2 amd64 command-line interface parsing library ii libssh2-1:amd64 1.8.0-1 amd64 SSH2 client-side library ii libssl1.0.2:amd64 1.0.2n-1 amd64 Secure Sockets Layer toolkit - shared libraries ii libssl1.1:amd64 1.1.0g-2 amd64 Secure Sockets Layer toolkit - shared libraries ii libstartup-notification0 0.12-5 amd64 library for program launch feedback (shared library) ii libstdc++6:amd64 8-20180218-1 amd64 GNU Standard C++ Library v3 ii libsvn1:amd64 1.9.7-4 amd64 Shared libraries used by Apache Subversion ii libsystemd0:amd64 237-4 amd64 systemd utility library ii libtalloc2:amd64 2.1.10-2 amd64 hierarchical pool based memory allocator ii libtasn1-6:amd64 4.13-2 amd64 Manage ASN.1 structures (runtime) ii libtcl8.6:amd64 8.6.8+dfsg-3 amd64 Tcl (the Tool Command Language) v8.6 - run-time libra ii libtdb1:amd64 1.3.15-2 amd64 Trivial Database - shared library ii libterm-readkey-perl 2.37-1+b2 amd64 perl module for simple terminal control ii libtevent0:amd64 0.9.34-1 amd64 talloc-based event loop library - shared library ii libtext-charwidth-perl 0.04-7.1 amd64 get display widths of characters on the terminal ii libtext-iconv-perl 1.7-5+b6 amd64 converts between character sets in Perl ii libtext-wrapi18n-perl 0.06-7.1 all internationalized substitute of Text::Wrap ii libthai-data 0.1.27-2 all Data files for Thai language support library ii libthai0:amd64 0.1.27-2 amd64 Thai language support library ii libtie-ixhash-perl 1.23-2 all Perl module to order associative arrays ii libtiff5:amd64 4.0.9-4 amd64 Tag Image File Format (TIFF) library ii libtimedate-perl 2.3000-2 all collection of modules to manipulate date/time informa ii libtinfo5:amd64 6.1-1 amd64 shared low-level terminfo library for terminal handli ii libtry-tiny-perl 0.30-1 all module providing minimalistic try/catch ii libucl1:amd64 1.03+repack-4 amd64 Portable compression library - runtime ii libudev1:amd64 237-4 amd64 libudev shared library ii libunistring2:amd64 0.9.8-1 amd64 Unicode string library for C ii liburcu6:amd64 0.10.1-1 amd64 userspace RCU (read-copy-update) library ii liburi-perl 1.73-1 all module to manipulate and access URI strings ii libusb-1.0-0:amd64 2:1.0.21-2 amd64 userspace USB programming library ii libutempter0:amd64 1.1.6-3 amd64 privileged helper for utmp/wtmp updates (runtime) ii libuuid1:amd64 2.31.1-0.4 amd64 Universally Unique ID library ii libvpx5:amd64 1.7.0-3 amd64 VP8 and VP9 video codec (shared library) ii libwavpack1:amd64 5.1.0-2 amd64 audio codec (lossy and lossless) - library ii libwayland-client0:amd64 1.14.0-2 amd64 wayland compositor infrastructure - client library ii libwayland-cursor0:amd64 1.14.0-2 amd64 wayland compositor infrastructure - cursor library ii libwayland-egl1-mesa:amd 17.3.6-1 amd64 implementation of the Wayland EGL platform -- runtime ii libwayland-server0:amd64 1.14.0-2 amd64 wayland compositor infrastructure - server library ii libwbclient0:amd64 2:4.7.4+dfsg-1 amd64 Samba winbind client library ii libwrap0:amd64 7.6.q-27 amd64 Wietse Venema's TCP wrappers library ii libwww-perl 6.31-1 all simple and consistent interface to the world-wide web ii libwww-robotrules-perl 6.01-1 all database of robots.txt-derived permissions ii libx11-6:amd64 2:1.6.4-3 amd64 X11 client-side library ii libx11-data 2:1.6.4-3 all X11 client-side library ii libx11-protocol-perl 0.56-7 all Perl module for the X Window System Protocol, version ii libx11-xcb1:amd64 2:1.6.4-3 amd64 Xlib/XCB interface library ii libxapian30:amd64 1.4.5-1 amd64 Search engine library ii libxau6:amd64 1:1.0.8-1+b2 amd64 X11 authorisation library ii libxaw7:amd64 2:1.0.13-1+b2 amd64 X11 Athena Widget library ii libxcb-dri2-0:amd64 1.12-1 amd64 X C Binding, dri2 extension ii libxcb-dri3-0:amd64 1.12-1 amd64 X C Binding, dri3 extension ii libxcb-glx0:amd64 1.12-1 amd64 X C Binding, glx extension ii libxcb-present0:amd64 1.12-1 amd64 X C Binding, present extension ii libxcb-render0:amd64 1.12-1 amd64 X C Binding, render extension ii libxcb-shape0:amd64 1.12-1 amd64 X C Binding, shape extension ii libxcb-shm0:amd64 1.12-1 amd64 X C Binding, shm extension ii libxcb-sync1:amd64 1.12-1 amd64 X C Binding, sync extension ii libxcb-util0:amd64 0.3.8-3+b2 amd64 utility libraries for X C Binding -- atom, aux and ev ii libxcb-xfixes0:amd64 1.12-1 amd64 X C Binding, xfixes extension ii libxcb1:amd64 1.12-1 amd64 X C Binding ii libxcomposite1:amd64 1:0.4.4-2 amd64 X11 Composite extension library ii libxcursor1:amd64 1:1.1.15-1 amd64 X cursor management library ii libxdamage1:amd64 1:1.1.4-3 amd64 X11 damaged region extension library ii libxdmcp6:amd64 1:1.1.2-3 amd64 X11 Display Manager Control Protocol library ii libxext6:amd64 2:1.3.3-1+b2 amd64 X11 miscellaneous extension library ii libxfixes3:amd64 1:5.0.3-1 amd64 X11 miscellaneous 'fixes' extension library ii libxfont1:amd64 1:1.5.2-4 amd64 X11 font rasterisation library ii libxft2:amd64 2.3.2-1+b2 amd64 FreeType-based font drawing library for X ii libxi6:amd64 2:1.7.9-1 amd64 X11 Input extension library ii libxinerama1:amd64 2:1.1.3-1+b3 amd64 X11 Xinerama extension library ii libxkbcommon0:amd64 0.8.0-1 amd64 library interface to the XKB compiler - shared librar ii libxkbfile1:amd64 1:1.0.9-2 amd64 X11 keyboard file manipulation library ii libxml-parser-perl 2.44-2+b3 amd64 Perl module for parsing XML files ii libxml-twig-perl 1:3.50-1 all Perl module for processing huge XML documents in tree ii libxml-xpathengine-perl 0.14-1 all re-usable XPath engine for DOM-like trees ii libxml2:amd64 2.9.4+dfsg1-6.1 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.12-1 amd64 X11 pixmap library ii libxrandr2:amd64 2:1.5.1-1 amd64 X11 RandR extension library ii libxrender1:amd64 1:0.9.10-1 amd64 X Rendering Extension client library ii libxshmfence1:amd64 1.2-1+b2 amd64 X shared memory fences - shared library ii libxslt1.1:amd64 1.1.29-5 amd64 XSLT 1.0 processing library - runtime library ii libxt6:amd64 1:1.1.5-1 amd64 X11 toolkit intrinsics library ii libxtables12:amd64 1.6.2-1 amd64 netfilter xtables library ii libxtst6:amd64 2:1.2.3-1 amd64 X11 Testing -- Record extension library ii libxv1:amd64 2:1.0.11-1 amd64 X11 Video extension library ii libxxf86dga1:amd64 2:1.1.4-1+b3 amd64 X11 Direct Graphics Access extension library ii libxxf86vm1:amd64 1:1.1.4-1+b2 amd64 X11 XFree86 video mode extension library ii linux-libc-dev:amd64 4.14.17-1kali1 amd64 Linux support headers for userspace development ii locales-all 2.27-1 amd64 GNU C Library: Precompiled locale data ii login 1:4.5-1 amd64 system login tools ii logrotate 3.11.0-0.1 amd64 Log rotation utility ii lsb-base 9.20170808 all Linux Standard Base init script functionality ii lsb-release 9.20170808 all Linux Standard Base version reporting utility ii lsof 4.89+dfsg-0.1 amd64 Utility to list open files ii lvm2 2.02.176-4.1 amd64 Linux Logical Volume Manager ii manpages 4.15-1 all Manual pages about using a GNU/Linux system ii manpages-dev 4.15-1 all Manual pages about using GNU/Linux for development ii mariadb-client-10.1 1:10.1.29-6 amd64 MariaDB database client binaries ii mariadb-client-core-10.1 1:10.1.29-6 amd64 MariaDB database core client binaries ii mariadb-common 1:10.1.29-6 all MariaDB common metapackage ii mariadb-server-10.1 1:10.1.29-6 amd64 MariaDB database server binaries ii mariadb-server-core-10.1 1:10.1.29-6 amd64 MariaDB database core server files ii mawk 1.3.3-17+b3 amd64 a pattern scanning and text processing language ii mercurial 4.4.1-1 amd64 easy-to-use, scalable distributed version control sys ii mercurial-common 4.4.1-1 all easy-to-use, scalable distributed version control sys ii mime-support 3.60 all MIME files 'mime.types' & 'mailcap', and support prog ii mlocate 0.26-2 amd64 quickly find files on the filesystem based on their n ii mount 2.31.1-0.4 amd64 tools for mounting and manipulating filesystems ii mysql-common 5.8+1.0.4 all MySQL database common files, e.g. /etc/mysql/my.cnf ii nano 2.9.3-1 amd64 small, friendly text editor inspired by Pico ii ncurses-base 6.1-1 all basic terminal type definitions ii ncurses-bin 6.1-1 amd64 terminal-related programs and man pages ii ncurses-term 6.1-1 all additional terminal type definitions ii netbase 5.4 all Basic TCP/IP networking system ii netcat-traditional 1.10-41.1 amd64 TCP/IP swiss army knife ii notification-daemon 3.20.0-3 amd64 daemon for displaying passive pop-up notifications ii ntfs-3g 1:2017.3.23-2 amd64 read/write NTFS driver for FUSE ii opensc 0.17.0-3 amd64 Smart card utilities with support for PKCS#15 compati ii opensc-pkcs11:amd64 0.17.0-3 amd64 Smart card utilities with support for PKCS#15 compati ii openssh-client 1:7.6p1-4 amd64 secure shell (SSH) client, for secure access to remot ii openssh-server 1:7.6p1-4 amd64 secure shell (SSH) server, for secure access from rem ii openssh-sftp-server 1:7.6p1-4 amd64 secure shell (SSH) sftp server module, for SFTP acces ii openssl 1.1.0g-2 amd64 Secure Sockets Layer toolkit - cryptographic utility ii openvpn 2.4.5-1 amd64 virtual private network daemon ii p7zip 16.02+dfsg-6 amd64 7zr file archiver with high compression ratio ii p7zip-full 16.02+dfsg-6 amd64 7z and 7za file archivers with high compression ratio ii parted 3.2-20 amd64 disk partition manipulator ii passwd 1:4.5-1 amd64 change and administer password and group data ii patch 2.7.6-1 amd64 Apply a diff file to an original ii pcscd 1.8.23-1 amd64 Middleware to access a smart card using PC/SC (daemon ii perl 5.26.1-5 amd64 Larry Wall's Practical Extraction and Report Language ii perl-base 5.26.1-5 amd64 minimal Perl system ii perl-modules-5.26 5.26.1-5 all Core Perl modules ii perl-openssl-defaults:am 3 amd64 version compatibility baseline for Perl OpenSSL packa ii php 1:7.2+60 all server-side, HTML-embedded scripting language (defaul ii php-common 1:60 all Common files for PHP packages ii php-mysql 1:7.2+60 all MySQL module for PHP [default] ii php7.2 7.2.3-1 all server-side, HTML-embedded scripting language (metapa ii php7.2-cli 7.2.3-1 amd64 command-line interpreter for the PHP scripting langua ii php7.2-common 7.2.3-1 amd64 documentation, examples and common module for PHP ii php7.2-json 7.2.3-1 amd64 JSON module for PHP ii php7.2-mysql 7.2.3-1 amd64 MySQL module for PHP ii php7.2-opcache 7.2.3-1 amd64 Zend OpCache module for PHP ii php7.2-readline 7.2.3-1 amd64 readline module for PHP ii pinentry-curses 1.1.0-1 amd64 curses-based PIN or pass-phrase entry dialog for GnuP ii procps 2:3.3.12-4 amd64 /proc file system utilities ii psmisc 23.1-1 amd64 utilities that use the proc file system ii publicsuffix 20180223.1310-1 all accurate, machine-readable list of domain name suffix ii python 2.7.14-4 amd64 interactive high-level object-oriented language (defa ii python-apt-common 1.4.0~beta3 all Python interface to libapt-pkg (locales) ii python-asn1crypto 0.24.0-1 all Fast ASN.1 parser and serializer (Python 2) ii python-certifi 2018.1.18-2 all root certificates for validating SSL certs and verify ii python-cffi-backend 1.11.5-1 amd64 Foreign Function Interface for Python calling C code ii python-chardet 3.0.4-1 all universal character encoding detector for Python2 ii python-crypto 2.6.1-8 amd64 cryptographic algorithms and protocols for Python ii python-cryptography 2.1.4-1 amd64 Python library exposing cryptographic recipes and pri ii python-dnspython 1.15.0-1 all DNS toolkit for Python ii python-enum34 1.1.6-2 all backport of Python 3.4's enum package ii python-idna 2.6-1 all Python IDNA2008 (RFC 5891) handling (Python 2) ii python-ipaddress 1.0.17-1 all Backport of Python 3 ipaddress module (Python 2) ii python-jwt 1.5.3+ds1-1 all Python implementation of JSON Web Token ii python-ldb:amd64 2:1.2.3-1 amd64 Python bindings for LDB ii python-minimal 2.7.14-4 amd64 minimal subset of the Python language (default versio ii python-openssl 17.5.0-1 all Python 2 wrapper around the OpenSSL library ii python-pkg-resources 38.4.0-1 all Package Discovery and Resource Access using pkg_resou ii python-prettytable 0.7.2-3 all library to represent tabular data in visually appeali ii python-requests 2.18.4-2 all elegant and simple HTTP library for Python2, built fo ii python-samba 2:4.7.4+dfsg-1 amd64 Python bindings for Samba ii python-six 1.11.0-2 all Python 2 and 3 compatibility library (Python 2 interf ii python-talloc 2.1.10-2 amd64 hierarchical pool based memory allocator - Python bin ii python-tdb 1.3.15-2 amd64 Python bindings for TDB ii python-urllib3 1.22-1 all HTTP library with thread-safe connection pooling for ii python2.7 2.7.14-6 amd64 Interactive high-level object-oriented language (vers ii python2.7-minimal 2.7.14-6 amd64 Minimal subset of the Python language (version 2.7) ii python3 3.6.4-1 amd64 interactive high-level object-oriented language (defa ii python3-apt 1.4.0~beta3+b1 amd64 Python 3 interface to libapt-pkg ii python3-chardet 3.0.4-1 all universal character encoding detector for Python3 ii python3-debian 0.1.32 all Python 3 modules to work with Debian-related data for ii python3-distutils 3.6.4-4 all distutils package for Python 3.x ii python3-lib2to3 3.6.4-4 all Interactive high-level object-oriented language (2to3 ii python3-minimal 3.6.4-1 amd64 minimal subset of the Python language (default python ii python3-pkg-resources 38.4.0-1 all Package Discovery and Resource Access using pkg_resou ii python3-six 1.11.0-2 all Python 2 and 3 compatibility library (Python 3 interf ii python3.6 3.6.4-4 amd64 Interactive high-level object-oriented language (vers ii python3.6-minimal 3.6.4-4 amd64 Minimal subset of the Python language (version 3.6) ii rdesktop 1.8.3-2+b1 amd64 RDP client for Windows NT/2000 Terminal Server and Wi ii readline-common 7.0-3 all GNU readline and history libraries, common files ii rfkill 2.31.1-0.4 amd64 tool for enabling and disabling wireless devices ii rsync 3.1.2-2.1 amd64 fast, versatile, remote (and local) file-copying tool ii rsyslog 8.32.0-1 amd64 reliable system and kernel logging daemon ii samba 2:4.7.4+dfsg-1 amd64 SMB/CIFS file, print, and login server for Unix ii samba-common 2:4.7.4+dfsg-1 all common files used by both the Samba server and client ii samba-common-bin 2:4.7.4+dfsg-1 amd64 Samba common files used by both the server and the cl ii samba-dsdb-modules 2:4.7.4+dfsg-1 amd64 Samba Directory Services Database ii samba-libs:amd64 2:4.7.4+dfsg-1 amd64 Samba core libraries ii samba-vfs-modules 2:4.7.4+dfsg-1 amd64 Samba Virtual FileSystem plugins ii screen 4.6.2-1 amd64 terminal multiplexer with VT100/ANSI terminal emulati ii sed 4.4-2 amd64 GNU stream editor for filtering/transforming text ii sensible-utils 0.0.11 all Utilities for sensible alternative selection ii shared-mime-info 1.9-2 amd64 FreeDesktop.org shared MIME database and spec ii snmp 5.7.3+dfsg-1.8 amd64 SNMP (Simple Network Management Protocol) application ii snmpd 5.7.3+dfsg-1.8 amd64 SNMP (Simple Network Management Protocol) agents ii socat 1.7.3.2-2 amd64 multipurpose relay for bidirectional data transfer ii ssl-cert 1.0.39 all simple debconf wrapper for OpenSSL ii subversion 1.9.7-4 amd64 Advanced version control system ii sudo 1.8.21p2-3 amd64 Provide limited super user privileges to specific use ii systemd 237-4 amd64 system and service manager ii systemd-sysv 237-4 amd64 system and service manager - SysV links ii sysvinit-utils 2.88dsf-59.10 amd64 System-V-like utilities ii tar 1.29b-2 amd64 GNU version of the tar archiving utility ii tasksel 3.43 all tool for selecting tasks for installation on Debian s ii tasksel-data 3.43 all official tasks used for installation of Debian system ii tcl-expect:amd64 5.45.4-1 amd64 Automates interactive applications (Tcl package) ii tcl8.6 8.6.8+dfsg-3 amd64 Tcl (the Tool Command Language) v8.6 - shell ii tcpdump 4.9.2-2 amd64 command-line network traffic analyzer ii tdb-tools 1.3.15-2 amd64 Trivial Database - bundled binaries ii testdisk 7.0-3+b2 amd64 Partition scanner and disk recovery tool, and PhotoRe ii tftp 0.17-18+b2 amd64 Trivial file transfer protocol client ii thin-provisioning-tools 0.7.4-2 amd64 Tools for handling thinly provisioned device-mapper m ii tightvncserver 1:1.3.9-9 amd64 virtual network computing server software ii tmux 2.6-3 amd64 terminal multiplexer ii tzdata 2018c-1 all time zone and daylight-saving time data ii ucf 3.0038 all Update Configuration File(s): preserve user changes t ii udev 237-4 amd64 /dev/ and hotplug management daemon ii unar 1.10.1-2+b1 amd64 Unarchiver for a variety of file formats ii update-inetd 4.44 all inetd configuration file updater ii upx-ucl 3.94-4 amd64 efficient live-compressor for executables ii util-linux 2.31.1-0.4 amd64 miscellaneous system utilities ii vim 2:8.0.1453-1+b1 amd64 Vi IMproved - enhanced vi editor ii vim-common 2:8.0.1453-1 all Vi IMproved - Common files ii vim-runtime 2:8.0.1453-1 all Vi IMproved - Runtime files ii vim-tiny 2:8.0.1453-1+b1 amd64 Vi IMproved - enhanced vi editor - compact version ii whiptail 0.52.20-2 amd64 Displays user-friendly dialog boxes from shell script ii whois 5.3.0 amd64 intelligent WHOIS client ii wireless-regdb 2016.06.10-1 all wireless regulatory database ii x11-common 1:7.7+19 all X Window System (X.Org) infrastructure ii x11-utils 7.7+3+b1 amd64 X11 utilities ii x11-xkb-utils 7.7+3+b1 amd64 X11 XKB utilities ii x11-xserver-utils 7.7+7+b1 amd64 X server utilities ii xauth 1:1.0.10-1 amd64 X authentication utility ii xdg-user-dirs 0.16-1 amd64 tool to manage well known user directories ii xdg-utils 1.1.2-2 all desktop integration utilities from freedesktop.org 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-utils 1:7.7+4 amd64 X Window System font utility programs ii xfsprogs 4.15.1-1 amd64 Utilities for managing the XFS filesystem ii xinetd 1:2.3.15.3-1 amd64 replacement for inetd with many enhancements ii xkb-data 2.23.1-1 all X Keyboard Extension (XKB) configuration data ii xserver-common 2:1.19.6-1 all common files used by various X servers ii xserver-xorg-legacy 2:1.19.6-1 amd64 setuid root Xorg server wrapper ii xxd 2:8.0.1453-1+b1 amd64 tool to make (or reverse) a hex dump ii xz-utils 5.2.2-1.3 amd64 XZ-format compression utilities ii zerofree 1.0.4-1 amd64 zero free blocks from ext2, ext3 and ext4 file-system ii zlib1g:amd64 1:1.2.8.dfsg-5 amd64 compression library - runtime rootlinks@Win10:~$ ls -l /etc/init.d/ total 137 -rwxr-xr-x 1 root root 8181 Jan 14 20:01 apache2 -rwxr-xr-x 1 root root 2489 Jan 14 20:01 apache-htcacheclean -rwxr-xr-x 1 root root 1614 Sep 6 2016 atftpd -rwxr-xr-x 1 root root 3049 Oct 3 22:38 cron -rwxr-xr-x 1 root root 2813 Mar 2 10:36 dbus -rwxr-xr-x 1 root root 1399 Feb 16 16:22 gdomap -rwxr-xr-x 1 root root 3809 Feb 14 23:53 hwclock.sh -rwxr-xr-x 1 root root 2044 Jan 19 01:51 kmod -rwxr-xr-x 1 root root 695 Nov 10 04:28 lvm2 -rwxr-xr-x 1 root root 571 Nov 10 04:28 lvm2-lvmetad -rwxr-xr-x 1 root root 586 Nov 10 04:28 lvm2-lvmpolld -rwxr-xr-x 1 root root 5930 Nov 23 16:03 mysql -rwxr-xr-x 1 root root 4445 Oct 26 03:40 networking -rwxr-xr-x 1 root root 1938 Jan 11 22:15 nmbd -rwxr-xr-x 1 root root 9138 Mar 5 06:23 openvpn -rwxr-xr-x 1 root root 3720 Dec 19 23:40 pcscd -rwxr-xr-x 1 root root 1191 Feb 10 08:59 procps -rwxr-xr-x 1 root root 4355 Dec 13 15:34 rsync -rwxr-xr-x 1 root root 2864 Jan 14 20:48 rsyslog -rwxr-xr-x 1 root root 2263 Jan 11 22:15 samba-ad-dc -rwxr-xr-x 1 root root 1222 May 22 2017 screen-cleanup -rwxr-xr-x 1 root root 1879 Jan 11 22:15 smbd -rwxr-xr-x 1 root root 2578 Jun 20 2016 snmpd -rwxr-xr-x 1 root root 3837 Jan 26 08:13 ssh -rwxr-xr-x 1 root root 1030 Dec 19 13:55 sudo -rwxr-xr-x 1 root root 5974 Feb 15 07:07 udev -rwxr-xr-x 1 root root 2757 Nov 23 2016 x11-common -rwxr-xr-x 1 root root 2443 Feb 6 03:31 xinetd |
試しにkali-linux-wirelessもインストールしてみましたが依存関係でエラーになりました。
oclhashcatがインストールされていないと…
1 2 3 4 5 6 7 8 9 10 11 12 13 |
rootlinks@Win10:~$ sudo apt-get -y install kali-linux-wireless Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation: The following packages have unmet dependencies: kali-linux-wireless : Depends: oclhashcat but it is not installable E: Unable to correct problems, you have held broken packages. |
oclhashcatパッケージが無いのでhashcatをインストールしてみましたが同様のエラーでNGでした。
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 |
rootlinks@Win10:~$ sudo apt search oclhascat Sorting... Done Full Text Search... Done rootlinks@Win10:~$ sudo apt search ^hashcat [sudo] password for rootlinks: Sorting... Done Full Text Search... Done hashcat/kali-rolling,now 4.0.1-1 amd64 [installed] World's fastest and most advanced password recovery utility hashcat-data/kali-rolling,now 4.0.1-1 all [installed,automatic] Data files for hashcat advanced password recovery utility hashcat-utils/kali-rolling 1.7-0kali1 amd64 Set of small utilities for advanced password cracking hashcat-utils-dbgsym/kali-rolling 1.7-0kali1 amd64 Debug symbols for hashcat-utils rootlinks@Win10:~$ sudo apt-get -y install hashcat Reading package lists... Done Building dependency tree Reading state information... Done The following additional packages will be installed: binfmt-support binutils binutils-common binutils-x86-64-linux-gnu clang-4.0 hashcat-data libasan4 libatomic1 (snip) |
デスクトップ環境が無いのでインストールできないパッケージも多そうですが、それも楽しみの一つと言うことで:-P