PATH:
usr
/
bin
#! /usr/bin/perl -w # -*- perl -*- # Generated from autoreconf.in; do not edit by hand. eval 'case $# in 0) exec /usr/bin/perl -S "$0";; *) exec /usr/bin/perl -S "$0" "$@";; esac' if 0; # autoreconf - install the GNU Build System in a directory tree # Copyright (C) 1994, 1999-2012 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # Written by David J. MacKenzie. # Extended and rewritten in Perl by Akim Demaille. BEGIN { my $pkgdatadir = $ENV{'autom4te_perllibdir'} || '/usr/share/autoconf'; unshift @INC, $pkgdatadir; # Override SHELL. On DJGPP SHELL may not be set to a shell # that can handle redirection and quote arguments correctly, # e.g.: COMMAND.COM. For DJGPP always use the shell that configure # has detected. $ENV{'SHELL'} = '/bin/bash' if ($^O eq 'dos'); } use Autom4te::ChannelDefs; use Autom4te::Channels; use Autom4te::Configure_ac; use Autom4te::FileUtils; use Autom4te::General; use Autom4te::XFile; # Do not use Cwd::chdir, since it might hang. use Cwd 'cwd'; use strict; ## ----------- ## ## Variables. ## ## ----------- ## # $HELP # ----- $help = "Usage: $0 [OPTION]... [DIRECTORY]... Run `autoconf' (and `autoheader', `aclocal', `automake', `autopoint' (formerly `gettextize'), and `libtoolize' where appropriate) repeatedly to remake the GNU Build System files in specified DIRECTORIES and their subdirectories (defaulting to `.'). By default, it only remakes those files that are older than their sources. If you install new versions of the GNU Build System, you can make `autoreconf' remake all of the files by giving it the `--force' option. Operation modes: -h, --help print this help, then exit -V, --version print version number, then exit -v, --verbose verbosely report processing -d, --debug don't remove temporary files -f, --force consider all files obsolete -i, --install copy missing auxiliary files --no-recursive don't rebuild sub-packages -s, --symlink with -i, install symbolic links instead of copies -m, --make when applicable, re-run ./configure && make -W, --warnings=CATEGORY report the warnings falling in CATEGORY [syntax] " . Autom4te::ChannelDefs::usage . " The environment variable \`WARNINGS\' is honored. Some subtools might support other warning types, using \`all' is encouraged. Library directories: -B, --prepend-include=DIR prepend directory DIR to search path -I, --include=DIR append directory DIR to search path The environment variables AUTOM4TE, AUTOCONF, AUTOHEADER, AUTOMAKE, ACLOCAL, AUTOPOINT, LIBTOOLIZE, M4, and MAKE are honored. Report bugs to <bug-autoconf\@gnu.org>. GNU Autoconf home page: <http://www.gnu.org/software/autoconf/>. General help using GNU software: <http://www.gnu.org/gethelp/>. "; # $VERSION # -------- $version = "autoreconf (GNU Autoconf) 2.69 Copyright (C) 2012 Free Software Foundation, Inc. License GPLv3+/Autoconf: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>, <http://gnu.org/licenses/exceptions.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by David J. MacKenzie and Akim Demaille. "; # Lib files. my $autoconf = $ENV{'AUTOCONF'} || '/usr/bin/autoconf'; my $autoheader = $ENV{'AUTOHEADER'} || '/usr/bin/autoheader'; my $autom4te = $ENV{'AUTOM4TE'} || '/usr/bin/autom4te'; my $automake = $ENV{'AUTOMAKE'} || 'automake'; my $aclocal = $ENV{'ACLOCAL'} || 'aclocal'; my $libtoolize = $ENV{'LIBTOOLIZE'} || 'libtoolize'; my $autopoint = $ENV{'AUTOPOINT'} || 'autopoint'; my $make = $ENV{'MAKE'} || 'make'; # --install -- as --add-missing in other tools. my $install = 0; # symlink -- when --install, use symlinks instead. my $symlink = 0; # Does aclocal support --force? my $aclocal_supports_force = 0; # Does aclocal support -Wfoo? my $aclocal_supports_warnings = 0; # Does automake support --force-missing? my $automake_supports_force_missing = 0; # Does automake support -Wfoo? my $automake_supports_warnings = 0; my @prepend_include; my @include; # List of command line warning requests. my @warning; # Rerun `./configure && make'? my $run_make = 0; # Recurse into subpackages my $recursive = 1; ## ---------- ## ## Routines. ## ## ---------- ## # parse_args () # ------------- # Process any command line arguments. sub parse_args () { my $srcdir; getopt ("W|warnings=s" => \@warning, 'I|include=s' => \@include, 'B|prepend-include=s' => \@prepend_include, 'i|install' => \$install, 's|symlink' => \$symlink, 'm|make' => \$run_make, 'recursive!' => \$recursive); # Split the warnings as a list of elements instead of a list of # lists. @warning = map { split /,/ } @warning; parse_WARNINGS; parse_warnings '--warnings', @warning; # Even if the user specified a configure.ac, trim to get the # directory, and look for configure.ac again. Because (i) the code # is simpler, and (ii) we are still able to diagnose simultaneous # presence of configure.ac and configure.in. @ARGV = map { /configure\.(ac|in)$/ ? dirname ($_) : $_ } @ARGV; push @ARGV, '.' unless @ARGV; if ($verbose && $debug) { for my $prog ($autoconf, $autoheader, $automake, $aclocal, $autopoint, $libtoolize) { xsystem ("$prog --version | sed 1q >&2"); print STDERR "\n"; } } my $aclocal_help = `$aclocal --help 2>/dev/null`; my $automake_help = `$automake --help 2>/dev/null`; $aclocal_supports_force = $aclocal_help =~ /--force/; $aclocal_supports_warnings = $aclocal_help =~ /--warnings/; $automake_supports_force_missing = $automake_help =~ /--force-missing/; $automake_supports_warnings = $automake_help =~ /--warnings/; # Dispatch autoreconf's option to the tools. # --include; $aclocal .= join (' -I ', '', map { shell_quote ($_) } @include); $autoconf .= join (' --include=', '', map { shell_quote ($_) } @include); $autoconf .= join (' --prepend-include=', '', map { shell_quote ($_) } @prepend_include); $autoheader .= join (' --include=', '', map { shell_quote ($_) } @include); $autoheader .= join (' --prepend-include=', '', map { shell_quote ($_) } @prepend_include); # --install and --symlink; if ($install) { $automake .= ' --add-missing'; $automake .= ' --copy' unless $symlink; $libtoolize .= ' --copy' unless $symlink; } # --force; if ($force) { $aclocal .= ' --force' if $aclocal_supports_force; $autoconf .= ' --force'; $autoheader .= ' --force'; $automake .= ' --force-missing' if $automake_supports_force_missing; $autopoint .= ' --force'; $libtoolize .= ' --force'; } else { # The implementation of --no-force is bogus in all implementations # of Automake up to 1.8, so we avoid it in these cases. (Automake # 1.8 is the first version where aclocal supports force, hence # the condition.) $automake .= ' --no-force' if $aclocal_supports_force; } # --verbose --verbose or --debug; if ($verbose > 1 || $debug) { $autoconf .= ' --verbose'; $autoheader .= ' --verbose'; $automake .= ' --verbose'; $aclocal .= ' --verbose'; } if ($debug) { $autoconf .= ' --debug'; $autoheader .= ' --debug'; $libtoolize .= ' --debug'; } # --warnings; if (@warning) { my $warn = ' --warnings=' . join (',', @warning); $autoconf .= $warn; $autoheader .= $warn; $automake .= $warn if $automake_supports_warnings; $aclocal .= $warn if $aclocal_supports_warnings; } } # &run_aclocal ($ACLOCAL, $FLAGS) # ------------------------------- # Update aclocal.m4 as lazily as possible, as aclocal pre-1.8 always # overwrites aclocal.m4, hence triggers autoconf, autoheader, automake # etc. uselessly. aclocal 1.8+ does not need this. sub run_aclocal ($$) { my ($aclocal, $flags) = @_; # aclocal 1.8+ does all this for free. It can be recognized by its # --force support. if ($aclocal_supports_force) { xsystem ("$aclocal $flags"); } else { xsystem ("$aclocal $flags --output=aclocal.m4t"); # aclocal may produce no output. if (-f 'aclocal.m4t') { update_file ('aclocal.m4t', 'aclocal.m4'); # Make sure that the local m4 files are older than # aclocal.m4. # # Why is not always the case? Because we already run # aclocal at first (before tracing), which, for instance, # can find Gettext's macros in .../share/aclocal, so we may # have had the right aclocal.m4 already. Then autopoint is # run, and installs locally these M4 files. Then # autoreconf, via update_file, sees it is the _same_ # aclocal.m4, and doesn't change its timestamp. But later, # Automake's Makefile expresses that aclocal.m4 depends on # these local files, which are newer, so it triggers aclocal # again. # # To make sure aclocal.m4 is no older, we change the # modification times of the local M4 files to be not newer # than it. # # First, where are the local files? my $aclocal_local_dir = '.'; if ($flags =~ /-I\s+(\S+)/) { $aclocal_local_dir = $1; } # All the local files newer than aclocal.m4 are to be # made not newer than it. my $aclocal_m4_mtime = mtime ('aclocal.m4'); for my $file (glob ("$aclocal_local_dir/*.m4"), 'acinclude.m4') { if ($aclocal_m4_mtime < mtime ($file)) { debug "aging $file to be not newer than aclocal.m4"; utime $aclocal_m4_mtime, $aclocal_m4_mtime, $file; } } } } } # &autoreconf_current_directory # ----------------------------- sub autoreconf_current_directory () { my $configure_ac = find_configure_ac; # ---------------------- # # Is it using Autoconf? # # ---------------------- # my $uses_autoconf; my $uses_gettext; if (-f $configure_ac) { my $configure_ac_file = new Autom4te::XFile "< $configure_ac"; while ($_ = $configure_ac_file->getline) { s/#.*//; s/dnl.*//; $uses_autoconf = 1 if /AC_INIT/; # See below for why we look for gettext here. $uses_gettext = 1 if /^AM_GNU_GETTEXT_VERSION/; } } if (!$uses_autoconf) { verb "$configure_ac: not using Autoconf"; return; } # ------------------- # # Running autopoint. # # ------------------- # # Gettext is a bit of a problem: its macros are not necessarily # visible to aclocal, so if we start with a completely striped down # package (think of a fresh CVS checkout), running `aclocal' first # will fail: the Gettext macros are missing. # # Therefore, we can't use the traces to decide if we use Gettext or # not. I guess that once Gettext move to 2.5x we will be able to, # but in the meanwhile forget it. # # We can only grep for AM_GNU_GETTEXT_VERSION in configure.ac. You # might think this approach is naive, and indeed it is, as it # prevents one to embed AM_GNU_GETTEXT_VERSION in another *.m4, but # anyway we don't limit the generality, since... that's what # autopoint does. Actually, it is even more restrictive, as it # greps for `^AM_GNU_GETTEXT_VERSION('. We did this above, while # scanning configure.ac. if (!$uses_gettext) { verb "$configure_ac: not using Gettext"; } elsif (!$install) { verb "$configure_ac: not running autopoint: --install not given"; } else { xsystem_hint ("autopoint is needed because this package uses Gettext", "$autopoint"); } # ----------------- # # Running aclocal. # # ----------------- # # Run it first: it might discover new macros to add, e.g., # AC_PROG_LIBTOOL, which we will trace later to see if Libtool is # used. # # Always run it. Tracking its sources for up-to-dateness is too # complex and too error prone. The best we can do is avoiding # nuking the time stamp. my $uses_aclocal = 1; # Nevertheless, if aclocal.m4 exists and is not made by aclocal, # don't run aclocal. if (-f 'aclocal.m4') { my $aclocal_m4 = new Autom4te::XFile 'aclocal.m4'; $_ = $aclocal_m4->getline; $uses_aclocal = 0 unless defined ($_) && /generated.*by aclocal/; } # If there are flags for aclocal in Makefile.am, use them. my $aclocal_flags = ''; if ($uses_aclocal && -f 'Makefile.am') { my $makefile = new Autom4te::XFile 'Makefile.am'; while ($_ = $makefile->getline) { if (/^ACLOCAL_[A-Z_]*FLAGS\s*=\s*(.*)/) { $aclocal_flags = $1; last; } } } if (!$uses_aclocal) { verb "$configure_ac: not using aclocal"; } else { # Some file systems have sub-second time stamps, and if so we may # run into trouble later, after we rerun autoconf and set the # time stamps of input files to be no greater than aclocal.m4, # because the time-stamp-setting operation (utime) has a # resolution of only 1 second. Work around the problem by # ensuring that there is at least a one-second window before the # time stamp of aclocal.m4t in which no file time stamps can # fall. sleep 1; run_aclocal ($aclocal, $aclocal_flags); } # We might have to rerun aclocal if Libtool (or others) imports new # macros. my $rerun_aclocal = 0; # ------------------------------- # # See what tools will be needed. # # ------------------------------- # # Perform a single trace reading to avoid --force forcing a rerun # between two --trace, that's useless. If there is no AC_INIT, then # we are not interested: it looks like a Cygnus thingy. my $aux_dir; my $uses_gettext_via_traces; my $uses_libtool; my $uses_libltdl; my $uses_autoheader; my $uses_automake; my @subdir; verb "$configure_ac: tracing"; my $traces = new Autom4te::XFile ("$autoconf" . join (' ', map { ' --trace=' . $_ . ':\$n::\${::}%' } # If you change this list, update the # `Autoreconf-preselections' section of autom4te.in. 'AC_CONFIG_AUX_DIR', 'AC_CONFIG_HEADERS', 'AC_CONFIG_SUBDIRS', 'AC_INIT', 'AC_PROG_LIBTOOL', 'AM_PROG_LIBTOOL', 'LT_INIT', 'LT_CONFIG_LTDL_DIR', 'AM_GNU_GETTEXT', 'AM_INIT_AUTOMAKE', ) . ' |'); while ($_ = $traces->getline) { chomp; my ($macro, @args) = split (/::/); $aux_dir = $args[0] if $macro eq "AC_CONFIG_AUX_DIR"; $uses_autoconf = 1 if $macro eq "AC_INIT"; $uses_gettext_via_traces = 1 if $macro eq "AM_GNU_GETTEXT"; $uses_libtool = 1 if $macro eq "AC_PROG_LIBTOOL" || $macro eq "AM_PROG_LIBTOOL" || $macro eq "LT_INIT"; $uses_libltdl = 1 if $macro eq "LT_CONFIG_LTDL_DIR"; $uses_autoheader = 1 if $macro eq "AC_CONFIG_HEADERS"; $uses_automake = 1 if $macro eq "AM_INIT_AUTOMAKE"; push @subdir, split (' ', $args[0]) if $macro eq "AC_CONFIG_SUBDIRS" && $recursive; } # The subdirs are *optional*, they may not exist. foreach (@subdir) { if (-d) { verb "$configure_ac: adding subdirectory $_ to autoreconf"; autoreconf ($_); } else { verb "$configure_ac: subdirectory $_ not present"; } } # Gettext consistency checks... error "$configure_ac: AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION" if $uses_gettext_via_traces && ! $uses_gettext; error "$configure_ac: AM_GNU_GETTEXT_VERSION is used, but not AM_GNU_GETTEXT" if $uses_gettext && ! $uses_gettext_via_traces; # ---------------------------- # # Setting up the source tree. # # ---------------------------- # # libtoolize, automake --add-missing etc. will drop files in the # $AUX_DIR. But these tools fail to install these files if the # directory itself does not exist, which valid: just imagine a CVS # repository with hand written code only (there is not even a need # for a Makefile.am!). if (defined $aux_dir && ! -d $aux_dir) { verb "$configure_ac: creating directory $aux_dir"; mkdir $aux_dir, 0755 or error "cannot create $aux_dir: $!"; } # -------------------- # # Running libtoolize. # # -------------------- # if (!$uses_libtool) { verb "$configure_ac: not using Libtool"; } elsif ($install) { if ($uses_libltdl) { $libtoolize .= " --ltdl"; } xsystem_hint ("libtoolize is needed because this package uses Libtool", $libtoolize); $rerun_aclocal = 1; } else { verb "$configure_ac: not running libtoolize: --install not given"; } # ------------------- # # Rerunning aclocal. # # ------------------- # # If we re-installed Libtool or Gettext, the macros might have changed. # Automake also needs an up-to-date aclocal.m4. if ($rerun_aclocal) { if (!$uses_aclocal) { verb "$configure_ac: not using aclocal"; } else { run_aclocal ($aclocal, $aclocal_flags); } } # ------------------ # # Running autoconf. # # ------------------ # # Don't try to be smarter than `autoconf', which does its own up to # date checks. # # We prefer running autoconf before autoheader, because (i) the # latter runs the former, and (ii) autoconf is stricter than # autoheader. So all in all, autoconf should give better error # messages. xsystem ($autoconf); # -------------------- # # Running autoheader. # # -------------------- # # We now consider that if AC_CONFIG_HEADERS is used, then autoheader # is used too. # # Just as for autoconf, up to date ness is performed by the tool # itself. # # Run it before automake, since the latter checks the presence of # config.h.in when it sees an AC_CONFIG_HEADERS. if (!$uses_autoheader) { verb "$configure_ac: not using Autoheader"; } else { xsystem ($autoheader); } # ------------------ # # Running automake. # # ------------------ # if (!$uses_automake) { verb "$configure_ac: not using Automake"; } else { # We should always run automake, and let it decide whether it shall # update the file or not. In fact, the effect of `$force' is already # included in `$automake' via `--no-force'. xsystem ($automake); } # -------------- # # Running make. # # -------------- # if ($run_make) { if (!-f "config.status") { verb "no config.status: cannot re-make"; } else { xsystem ("./config.status --recheck"); xsystem ("./config.status"); if (!-f "Makefile") { verb "no Makefile: cannot re-make"; } else { xsystem ("$make"); } } } } # &autoreconf ($DIRECTORY) # ------------------------ # Reconf the $DIRECTORY. sub autoreconf ($) { my ($directory) = @_; my $cwd = cwd; # The format for this message is not free: taken from Emacs, itself # using GNU Make's format. verb "Entering directory `$directory'"; chdir $directory or error "cannot chdir to $directory: $!"; autoreconf_current_directory; # The format is not free: taken from Emacs, itself using GNU Make's # format. verb "Leaving directory `$directory'"; chdir $cwd or error "cannot chdir to $cwd: $!"; } ## ------ ## ## Main. ## ## ------ ## # When debugging, it is convenient that all the related temporary # files be at the same place. mktmpdir ('ar'); $ENV{'TMPDIR'} = $tmp; parse_args; # Autoreconf all the given configure.ac. Unless `--no-recursive' is passed, # AC_CONFIG_SUBDIRS will be traversed in &autoreconf_current_directory. $ENV{'AUTOM4TE'} = $autom4te; for my $directory (@ARGV) { require_configure_ac ($directory); autoreconf ($directory); } ### Setup "GNU" style for perl-mode and cperl-mode. ## Local Variables: ## perl-indent-level: 2 ## perl-continued-statement-offset: 2 ## perl-continued-brace-offset: 0 ## perl-brace-offset: 0 ## perl-brace-imaginary-offset: 0 ## perl-label-offset: -2 ## cperl-indent-level: 2 ## cperl-brace-offset: 0 ## cperl-continued-brace-offset: 0 ## cperl-label-offset: -2 ## cperl-extra-newline-before-brace: t ## cperl-merge-trailing-else: nil ## cperl-continued-statement-offset: 2 ## End:
[+]
..
[-] scsi_mandat
[edit]
[-] bzmore
[edit]
[-] x86_64-linux-gnu-gcov-dump
[edit]
[-] perl5.30.0
[edit]
[-] dh_dwz
[edit]
[-] stty
[edit]
[-] less
[edit]
[-] comm
[edit]
[-] msgexec
[edit]
[-] dd
[edit]
[-] sg_opcodes
[edit]
[-] setlogcons
[edit]
[-] sg_get_config
[edit]
[-] zless
[edit]
[-] dh_bugfiles
[edit]
[-] linux-boot-prober
[edit]
[-] aa-enabled
[edit]
[-] vcs-run
[edit]
[-] prove
[edit]
[-] dpkg-parsechangelog
[edit]
[-] prlimit
[edit]
[-] grub-editenv
[edit]
[-] pygettext3.8
[edit]
[-] vim.basic
[edit]
[-] byobu-launcher-install
[edit]
[-] iconv
[edit]
[-] patch
[edit]
[-] chardetect3
[edit]
[-] pl2pm
[edit]
[-] ntfsfix
[edit]
[-] systemd-tmpfiles
[edit]
[-] dh_auto_configure
[edit]
[-] sudoedit
[edit]
[-] jsonpatch-jsondiff
[edit]
[-] systemd-notify
[edit]
[-] flock
[edit]
[-] apt-cdrom
[edit]
[-] mktemp
[edit]
[-] dh_perl_dbi
[edit]
[-] aria_ftdump
[edit]
[-] growpart
[edit]
[-] htdbm
[edit]
[-] po2debconf
[edit]
[-] phar.phar7.4
[edit]
[-] col
[edit]
[-] pkaction
[edit]
[-] py3compile
[edit]
[-] dbiprof
[edit]
[-] volname
[edit]
[-] ntfscmp
[edit]
[-] from
[edit]
[-] dbus-run-session
[edit]
[-] x86_64-linux-gnu-ar
[edit]
[-] pr
[edit]
[-] x86_64-linux-gnu-gcc-ar
[edit]
[-] systemd-detect-virt
[edit]
[-] pyjwt3
[edit]
[-] busctl
[edit]
[-] run-one
[edit]
[-] vim.tiny
[edit]
[-] dh_installmodules
[edit]
[-] funzip
[edit]
[-] unicode_start
[edit]
[-] nisdomainname
[edit]
[-] dh_auto_build
[edit]
[-] ssh-keyscan
[edit]
[-] join
[edit]
[-] x86_64-linux-gnu-gcc-nm
[edit]
[-] g++-9
[edit]
[-] logger
[edit]
[-] script
[edit]
[-] pod2text
[edit]
[-] fwupdmgr
[edit]
[-] tabs
[edit]
[-] python3
[edit]
[-] unzip
[edit]
[-] sg_stream_ctl
[edit]
[-] gpg-agent
[edit]
[-] grog
[edit]
[-] host
[edit]
[-] snapfuse
[edit]
[-] phar7.4
[edit]
[-] uname
[edit]
[-] x86_64-linux-gnu-ld.bfd
[edit]
[-] debconf-show
[edit]
[-] setupcon
[edit]
[-] pkmon
[edit]
[-] bzip2recover
[edit]
[-] base32
[edit]
[-] timeout
[edit]
[-] nsupdate
[edit]
[-] sg_get_lba_status
[edit]
[-] symcryptrun
[edit]
[-] git-upload-archive
[edit]
[-] sg_sat_identify
[edit]
[-] zipinfo
[edit]
[-] dh_auto_install
[edit]
[-] cautious-launcher
[edit]
[-] phpize8.0
[edit]
[-] psfstriptable
[edit]
[-] automake-1.16
[edit]
[-] resolve_stack_dump
[edit]
[-] mtr-packet
[edit]
[-] sleep
[edit]
[-] dh_lintian
[edit]
[-] perror
[edit]
[-] mysqlshow
[edit]
[-] debconf-set-selections
[edit]
[-] sg_requests
[edit]
[-] lsinitramfs
[edit]
[-] nm
[edit]
[-] nawk
[edit]
[-] cmp
[edit]
[-] more
[edit]
[-] lzgrep
[edit]
[-] lsns
[edit]
[-] ckbcomp
[edit]
[-] systemd-id128
[edit]
[-] dh_installmenu
[edit]
[-] aria_read_log
[edit]
[-] dh_phpcomposer
[edit]
[-] scsi_logging_level
[edit]
[-] mysqld_multi
[edit]
[-] kernel-install
[edit]
[-] autoscan
[edit]
[-] lslogins
[edit]
[-] dircolors
[edit]
[-] scsi_stop
[edit]
[-] sg_write_x
[edit]
[-] grub-kbdcomp
[edit]
[-] ntfs-3g.probe
[edit]
[-] ping
[edit]
[-] pbget
[edit]
[-] gcc
[edit]
[-] pgrep
[edit]
[-] msginit
[edit]
[-] byobu-enable
[edit]
[-] x86_64-linux-gnu-elfedit
[edit]
[-] dir
[edit]
[-] pkcon
[edit]
[-] stdbuf
[edit]
[-] setmetamode
[edit]
[-] getent
[edit]
[-] podebconf-display-po
[edit]
[-] sg_timestamp
[edit]
[-] ntfsdecrypt
[edit]
[-] chage
[edit]
[-] awk
[edit]
[-] dh_installppp
[edit]
[-] git-upload-pack
[edit]
[-] rcp
[edit]
[-] sg_rtpg
[edit]
[-] systemd-ask-password
[edit]
[-] encguess
[edit]
[-] bash
[edit]
[-] numfmt
[edit]
[-] sbverify
[edit]
[-] aria_pack
[edit]
[-] rvim
[edit]
[-] systemd-cgtop
[edit]
[-] inotifywait
[edit]
[-] dh_testroot
[edit]
[-] sg_read_attr
[edit]
[-] unexpand
[edit]
[-] byobu-keybindings
[edit]
[-] run-one-constantly
[edit]
[-] linux-version
[edit]
[-] x86_64-linux-gnu-gcc
[edit]
[-] cal
[edit]
[-] x86_64-linux-gnu-gcov-tool-9
[edit]
[-] gcov-9
[edit]
[-] mv
[edit]
[-] rlogin
[edit]
[-] arch
[edit]
[-] file
[edit]
[-] gprof
[edit]
[-] lspci
[edit]
[-] dpkg-genbuildinfo
[edit]
[-] utmpdump
[edit]
[-] gold
[edit]
[-] sg_test_rwbuf
[edit]
[-] mysql_setpermission
[edit]
[-] linux-update-symlinks
[edit]
[-] scp
[edit]
[-] grub-mkfont
[edit]
[-] dh_systemd_start
[edit]
[-] autom4te
[edit]
[-] logresolve
[edit]
[-] groups
[edit]
[-] dh_installdocs
[edit]
[-] shtool
[edit]
[-] false
[edit]
[-] nano
[edit]
[-] sg_ses_microcode
[edit]
[-] [
[edit]
[-] scsi_readcap
[edit]
[-] dbus-monitor
[edit]
[-] prtstat
[edit]
[-] sg_logs
[edit]
[-] vmtoolsd
[edit]
[-] ubuntu-distro-info
[edit]
[-] bzfgrep
[edit]
[-] socat
[edit]
[-] x86_64-linux-gnu-ranlib
[edit]
[-] clear_console
[edit]
[-] head
[edit]
[-] dh_ucf
[edit]
[-] size
[edit]
[-] zegrep
[edit]
[-] dh_prep
[edit]
[-] kmodsign
[edit]
[-] rm
[edit]
[-] tput
[edit]
[-] col2
[edit]
[-] gpg-zip
[edit]
[-] mysqlanalyze
[edit]
[-] aa-exec
[edit]
[-] users
[edit]
[-] fuser
[edit]
[-] man
[edit]
[-] linux-check-removal
[edit]
[-] networkd-dispatcher
[edit]
[-] systemd-mount
[edit]
[-] mysql_install_db
[edit]
[-] ntfscat
[edit]
[-] dh_gconf
[edit]
[-] resolveip
[edit]
[-] calendar
[edit]
[-] ld
[edit]
[-] fcgistarter
[edit]
[-] ld.gold
[edit]
[-] lexgrog
[edit]
[-] ssh-keygen
[edit]
[-] dh_clean
[edit]
[-] captoinfo
[edit]
[-] ctail
[edit]
[-] nroff
[edit]
[-] free
[edit]
[-] checkgid
[edit]
[-] objdump
[edit]
[-] php8.0
[edit]
[-] mysql_convert_table_format
[edit]
[-] sg_read_long
[edit]
[-] udevadm
[edit]
[-] mysqld_safe_helper
[edit]
[-] tee
[edit]
[-] mtrace
[edit]
[-] php7.4
[edit]
[-] gpgtar
[edit]
[-] unzipsfx
[edit]
[-] systemd-cgls
[edit]
[-] gpg
[edit]
[-] printf
[edit]
[-] pwdx
[edit]
[-] usbhid-dump
[edit]
[-] ntfsfallocate
[edit]
[-] sos-collector
[edit]
[-] sg_referrals
[edit]
[-] mkdir
[edit]
[-] ipcs
[edit]
[-] sg_prevent
[edit]
[-] dbus-update-activation-environment
[edit]
[-] unlz4
[edit]
[-] tac
[edit]
[-] lzfgrep
[edit]
[-] top
[edit]
[-] dh_installdebconf
[edit]
[-] expr
[edit]
[-] ftp
[edit]
[-] mysqldump
[edit]
[-] manpath
[edit]
[-] see
[edit]
[-] gpgv
[edit]
[-] btrfs-image
[edit]
[-] dh_installmanpages
[edit]
[-] ulockmgr_server
[edit]
[-] byobu-shell
[edit]
[-] killall
[edit]
[-] ptx
[edit]
[-] dmesg
[edit]
[-] dh_install
[edit]
[-] sg_copy_results
[edit]
[-] ptardiff
[edit]
[-] enc2xs
[edit]
[-] setfont
[edit]
[-] chown
[edit]
[-] telnet
[edit]
[-] keep-one-running
[edit]
[-] fold
[edit]
[-] do-release-upgrade
[edit]
[-] odbcinst
[edit]
[-] apt
[edit]
[-] dpkg-gencontrol
[edit]
[-] update-mime-database
[edit]
[-] make-first-existing-target
[edit]
[-] xdg-user-dirs-update
[edit]
[-] lorder
[edit]
[-] pcre2-config
[edit]
[-] touch
[edit]
[-] uncompress
[edit]
[-] x86_64-linux-gnu-g++-9
[edit]
[-] pidof
[edit]
[-] json_pp
[edit]
[-] xzfgrep
[edit]
[-] sg_sat_read_gplog
[edit]
[-] networkctl
[edit]
[-] login
[edit]
[-] xdg-user-dir
[edit]
[-] dh_installinfo
[edit]
[-] dh_listpackages
[edit]
[-] grub-menulst2cfg
[edit]
[-] fallocate
[edit]
[-] x86_64-linux-gnu-strip
[edit]
[-] pkttyagent
[edit]
[-] dpkg-gensymbols
[edit]
[-] readlink
[edit]
[-] as
[edit]
[-] grub-script-check
[edit]
[-] nl
[edit]
[-] dig
[edit]
[-] x86_64-linux-gnu-size
[edit]
[-] resizepart
[edit]
[-] keyring
[edit]
[-] gcov
[edit]
[-] shred
[edit]
[-] phar7.4.phar
[edit]
[-] mysql_tzinfo_to_sql
[edit]
[-] gpgsplit
[edit]
[-] dpkg
[edit]
[-] ip
[edit]
[-] peekfd
[edit]
[-] libtoolize
[edit]
[-] systemd-sysusers
[edit]
[-] dh_installmime
[edit]
[-] dh_icons
[edit]
[-] snice
[edit]
[-] at
[edit]
[-] htop
[edit]
[-] sg_format
[edit]
[-] ls
[edit]
[-] cloud-id
[edit]
[-] crontab
[edit]
[-] scsi_satl
[edit]
[-] grops
[edit]
[-] scsi_temperature
[edit]
[-] ping4
[edit]
[-] xxd
[edit]
[-] apport-collect
[edit]
[-] grub-mklayout
[edit]
[-] mysqldumpslow
[edit]
[-] colcrt
[edit]
[-] wsrep_sst_rsync_wan
[edit]
[-] debconf-apt-progress
[edit]
[-] apt-mark
[edit]
[-] dpkg-name
[edit]
[-] pic
[edit]
[-] sensible-pager
[edit]
[-] dh_installtmpfiles
[edit]
[-] gcc-nm-9
[edit]
[-] aulastlog
[edit]
[-] envsubst
[edit]
[-] perldoc
[edit]
[-] fwupdate
[edit]
[-] gpg-wks-server
[edit]
[-] uuidparse
[edit]
[-] localedef
[edit]
[-] x86_64-linux-gnu-addr2line
[edit]
[-] systemd-umount
[edit]
[-] uptime
[edit]
[-] hwe-support-status
[edit]
[-] run-one-until-failure
[edit]
[-] htpasswd
[edit]
[-] mariadb
[edit]
[-] myisamchk
[edit]
[-] id
[edit]
[-] tkconch3
[edit]
[-] on_ac_power
[edit]
[-] acpi_listen
[edit]
[-] aulast
[edit]
[-] sg_stpg
[edit]
[-] savelog
[edit]
[-] x86_64-linux-gnu-pkg-config
[edit]
[-] skill
[edit]
[-] x86_64-linux-gnu-gold
[edit]
[-] mysqlbinlog
[edit]
[-] mysqlslap
[edit]
[-] piconv
[edit]
[-] watch
[edit]
[-] byobu-prompt
[edit]
[-] md5sum
[edit]
[-] delpart
[edit]
[-] cp
[edit]
[-] splain
[edit]
[-] btrfstune
[edit]
[-] locale
[edit]
[-] x86_64-linux-gnu-gcov-9
[edit]
[-] pico
[edit]
[-] deb-systemd-invoke
[edit]
[-] test
[edit]
[-] msggrep
[edit]
[-] vmware-vgauth-cmd
[edit]
[-] mysqlcheck
[edit]
[-] fakeroot
[edit]
[-] view
[edit]
[-] dh_auto_test
[edit]
[-] systemd-analyze
[edit]
[-] debian-distro-info
[edit]
[-] ausyscall
[edit]
[-] instmodsh
[edit]
[-] php-config.default
[edit]
[-] phar.phar8.0
[edit]
[-] ctstat
[edit]
[-] dbus-daemon
[edit]
[-] atrm
[edit]
[-] md5sum.textutils
[edit]
[-] sg_emc_trespass
[edit]
[-] lsmod
[edit]
[-] byobu-launcher-uninstall
[edit]
[-] sg_write_buffer
[edit]
[-] sg_persist
[edit]
[-] ed
[edit]
[-] phar.phar
[edit]
[-] readelf
[edit]
[-] byobu-disable-prompt
[edit]
[-] unicode_stop
[edit]
[-] gapplication
[edit]
[-] gpic
[edit]
[-] ischroot
[edit]
[-] install-info
[edit]
[-] xargs
[edit]
[-] systemd-inhibit
[edit]
[-] tset
[edit]
[-] galera_recovery
[edit]
[-] pollinate
[edit]
[-] fusermount
[edit]
[-] sg_senddiag
[edit]
[-] infotocap
[edit]
[-] getkeycodes
[edit]
[-] zcat
[edit]
[-] grub-mkstandalone
[edit]
[-] yes
[edit]
[-] pkgtools
[edit]
[-] ln
[edit]
[-] showconsolefont
[edit]
[-] git
[edit]
[-] x86_64-linux-gnu-ld
[edit]
[-] autopoint
[edit]
[-] myisam_ftdump
[edit]
[-] dpkg-deb
[edit]
[-] nproc
[edit]
[-] ubuntu-bug
[edit]
[-] catman
[edit]
[-] cat
[edit]
[-] lowntfs-3g
[edit]
[-] mariadb-check
[edit]
[-] check-language-support
[edit]
[-] dbiproxy
[edit]
[-] dh_md5sums
[edit]
[-] grub-mkrelpath
[edit]
[-] ul
[edit]
[-] dbus-send
[edit]
[-] gettext
[edit]
[-] rtstat
[edit]
[-] sg_wr_mode
[edit]
[-] rotatelogs
[edit]
[-] dh_autoreconf
[edit]
[-] grub-file
[edit]
[-] select-editor
[edit]
[-] seq
[edit]
[-] deb-systemd-helper
[edit]
[-] tic
[edit]
[-] isql
[edit]
[-] dh_installgsettings
[edit]
[-] btrfsck
[edit]
[-] cpp
[edit]
[-] pinky
[edit]
[-] addr2line
[edit]
[-] uuidgen
[edit]
[-] wifi-status
[edit]
[-] dpkg-maintscript-helper
[edit]
[-] h2ph
[edit]
[-] time
[edit]
[-] cut
[edit]
[-] bootctl
[edit]
[-] pstree
[edit]
[-] dh_installemacsen
[edit]
[-] dh_installwm
[edit]
[-] lnstat
[edit]
[-] vmware-hgfsclient
[edit]
[-] ssh-agent
[edit]
[-] grub-mkpasswd-pbkdf2
[edit]
[-] byobu-reconnect-sockets
[edit]
[-] dh_installudev
[edit]
[-] runcon
[edit]
[-] x86_64
[edit]
[-] tty
[edit]
[-] x86_64-linux-gnu-gprof
[edit]
[-] sg_verify
[edit]
[-] zmore
[edit]
[-] my_print_defaults
[edit]
[-] zgrep
[edit]
[-] procan
[edit]
[-] pkill
[edit]
[-] bashbug
[edit]
[-] vmware-checkvm
[edit]
[-] uniq
[edit]
[-] ucf
[edit]
[-] dh_missing
[edit]
[-] look
[edit]
[-] pwd
[edit]
[-] autoheader
[edit]
[-] hostid
[edit]
[-] paste
[edit]
[-] zipdetails
[edit]
[-] sftp
[edit]
[-] xzcmp
[edit]
[-] mcookie
[edit]
[-] run-this-one
[edit]
[-] ipcmk
[edit]
[-] lzless
[edit]
[-] routel
[edit]
[-] make
[edit]
[-] wdctl
[edit]
[-] lzcat
[edit]
[-] ab
[edit]
[-] sg_reassign
[edit]
[-] ckeygen3
[edit]
[-] ping6
[edit]
[-] mysqladmin
[edit]
[-] zdiff
[edit]
[-] dh_systemd_enable
[edit]
[-] pygettext3
[edit]
[-] truncate
[edit]
[-] x86_64-linux-gnu-dwp
[edit]
[-] vimdiff
[edit]
[-] c++filt
[edit]
[-] mksquashfs
[edit]
[-] inotifywatch
[edit]
[-] mysqlaccess
[edit]
[-] systemd-escape
[edit]
[-] pathchk
[edit]
[-] dwp
[edit]
[-] kbxutil
[edit]
[-] ssh-import-id-lp
[edit]
[-] ex
[edit]
[-] sbattach
[edit]
[-] lsmem
[edit]
[-] mandb
[edit]
[-] pecl
[edit]
[-] nohup
[edit]
[-] ntfscluster
[edit]
[-] dpkg-split
[edit]
[-] msgcomm
[edit]
[-] automake
[edit]
[-] unlink
[edit]
[-] col9
[edit]
[-] b2sum
[edit]
[-] timedatectl
[edit]
[-] deallocvt
[edit]
[-] kmod
[edit]
[-] byobu-config
[edit]
[-] php-config
[edit]
[-] tr
[edit]
[-] mysql_waitpid
[edit]
[-] validate-json
[edit]
[-] taskset
[edit]
[-] gunzip
[edit]
[-] screendump
[edit]
[-] sdiff
[edit]
[-] vimtutor
[edit]
[-] diff3
[edit]
[-] sg_sat_phy_event
[edit]
[-] dh_installsystemd
[edit]
[-] systemd-stdio-bridge
[edit]
[-] sginfo
[edit]
[-] pdb3
[edit]
[-] dpkg-shlibdeps
[edit]
[-] gdbus
[edit]
[-] stat
[edit]
[-] mysql_fix_extensions
[edit]
[-] sg_safte
[edit]
[-] vmware-vmblock-fuse
[edit]
[-] debconf-communicate
[edit]
[-] byobu-silent
[edit]
[-] vmhgfs-fuse
[edit]
[-] ssh-import-id-gh
[edit]
[-] bzgrep
[edit]
[-] netstat
[edit]
[-] xsubpp
[edit]
[-] vigpg
[edit]
[-] dpkg-mergechangelogs
[edit]
[-] byobu-quiet
[edit]
[-] ssh-argv0
[edit]
[-] fgrep
[edit]
[-] lesskey
[edit]
[-] run-mailcap
[edit]
[-] shuf
[edit]
[-] chsh
[edit]
[-] jsondiff
[edit]
[-] factor
[edit]
[-] env
[edit]
[-] openvt
[edit]
[-] telnet.netkit
[edit]
[-] dpkg-trigger
[edit]
[-] msgcmp
[edit]
[-] fwupdtpmevlog
[edit]
[-] debconf-gettextize
[edit]
[-] rsh
[edit]
[-] rpcgen
[edit]
[-] gio
[edit]
[-] dpkg-distaddfile
[edit]
[-] dh_auto_clean
[edit]
[-] sg_dd
[edit]
[-] bsd-from
[edit]
[-] podchecker
[edit]
[-] update-alternatives
[edit]
[-] ucfq
[edit]
[-] gcov-dump
[edit]
[-] tsort
[edit]
[-] x86_64-linux-gnu-objcopy
[edit]
[-] cvtsudoers
[edit]
[-] printerbanner
[edit]
[-] dpkg-buildflags
[edit]
[-] byobu-select-backend
[edit]
[-] mytop
[edit]
[-] du
[edit]
[-] pmap
[edit]
[-] resizecons
[edit]
[-] btrfs-find-root
[edit]
[-] x86_64-linux-gnu-objdump
[edit]
[-] dh_installinit
[edit]
[-] slogin
[edit]
[-] sg_read_buffer
[edit]
[-] sg_raw
[edit]
[-] showkey
[edit]
[-] x86_64-linux-gnu-gcc-ar-9
[edit]
[-] debconf-copydb
[edit]
[-] sg_inq
[edit]
[-] unmkinitramfs
[edit]
[-] ntfsusermap
[edit]
[-] sg_ses
[edit]
[-] msql2mysql
[edit]
[-] dbilogstrip
[edit]
[-] innotop
[edit]
[-] pastebinit
[edit]
[-] gpgconf
[edit]
[-] split
[edit]
[-] bunzip2
[edit]
[-] dbus-uuidgen
[edit]
[-] sg_turs
[edit]
[-] hibinit-agent
[edit]
[-] bsd-write
[edit]
[-] vmstat
[edit]
[-] unattended-upgrades
[edit]
[-] c89-gcc
[edit]
[-] sg_write_long
[edit]
[-] dh_installlogrotate
[edit]
[-] xzmore
[edit]
[-] lz4c
[edit]
[-] strace-log-merge
[edit]
[-] miniterm
[edit]
[-] csplit
[edit]
[-] loadkeys
[edit]
[-] ntfsrecover
[edit]
[-] kbdinfo
[edit]
[-] gettextize
[edit]
[-] vdir
[edit]
[-] btrfs-select-super
[edit]
[-] lesspipe
[edit]
[-] bzcmp
[edit]
[-] mariadb-service-convert
[edit]
[-] VGAuthService
[edit]
[-] dirmngr
[edit]
[-] dh_installlogcheck
[edit]
[-] sha512sum
[edit]
[-] jsonlint-php
[edit]
[-] snap
[edit]
[-] c_rehash
[edit]
[-] sotruss
[edit]
[-] strings
[edit]
[-] zfgrep
[edit]
[-] netcat
[edit]
[-] getconf
[edit]
[-] byobu-screen
[edit]
[-] byobu-select-session
[edit]
[-] update-microcode-initrd
[edit]
[-] systemctl
[edit]
[-] dpkg-genchanges
[edit]
[-] hibagent
[edit]
[-] psfaddtable
[edit]
[-] sg_write_same
[edit]
[-] gcov-tool
[edit]
[-] dpkg-divert
[edit]
[-] autoupdate
[edit]
[-] dfu-tool
[edit]
[-] nc.openbsd
[edit]
[-] znew
[edit]
[-] enable-ec2-spot-hibernation
[edit]
[-] msgmerge
[edit]
[-] c++
[edit]
[-] byobu-ugraph
[edit]
[-] wall
[edit]
[-] dh_installdirs
[edit]
[-] aclocal
[edit]
[-] dh_gencontrol
[edit]
[-] cpp-9
[edit]
[-] echo
[edit]
[-] xzdiff
[edit]
[-] systemd-hwdb
[edit]
[-] dh_autotools-dev_restoreconfig
[edit]
[-] dpkg-scanpackages
[edit]
[-] zforce
[edit]
[-] landscape-sysinfo
[edit]
[-] apt-config
[edit]
[-] unattended-upgrade
[edit]
[-] sos
[edit]
[-] usb-devices
[edit]
[-] pod2html
[edit]
[-] debconf
[edit]
[-] nice
[edit]
[-] grub-render-label
[edit]
[-] distro-info
[edit]
[-] sbkeysync
[edit]
[-] lzegrep
[edit]
[-] dh_perl
[edit]
[-] col7
[edit]
[-] conch3
[edit]
[-] editor
[edit]
[-] grub-mknetdir
[edit]
[-] setterm
[edit]
[-] ssh
[edit]
[-] NF
[edit]
[-] msgfilter
[edit]
[-] dh_installifupdown
[edit]
[-] pydoc3.8
[edit]
[-] ntfsmove
[edit]
[-] dh_installxfonts
[edit]
[-] sha1sum
[edit]
[-] sensible-editor
[edit]
[-] openssl
[edit]
[-] jsonpatch
[edit]
[-] dh_installpam
[edit]
[-] helpztags
[edit]
[-] ngettext
[edit]
[-] logname
[edit]
[-] systemd-resolve
[edit]
[-] pager
[edit]
[-] wsrep_sst_rsync
[edit]
[-] systemd-socket-activate
[edit]
[-] mysqlimport
[edit]
[-] mk_modmap
[edit]
[-] dumpkeys
[edit]
[-] ifnames
[edit]
[-] autoreconf
[edit]
[-] ssh-add
[edit]
[-] ec2metadata
[edit]
[-] diff
[edit]
[-] rrsync
[edit]
[-] mysql
[edit]
[-] sync
[edit]
[-] msgconv
[edit]
[-] sg_sanitize
[edit]
[-] dh
[edit]
[-] apt-key
[edit]
[-] ubuntu-advantage
[edit]
[-] od
[edit]
[-] troff
[edit]
[-] setleds
[edit]
[-] byobu-status-detail
[edit]
[-] linux64
[edit]
[-] sudo
[edit]
[-] x86_64-linux-gnu-gcc-ranlib-9
[edit]
[-] ntfswipe
[edit]
[-] aria_chk
[edit]
[-] systemd
[edit]
[-] base64
[edit]
[-] pftp
[edit]
[-] whoami
[edit]
[-] vim
[edit]
[-] zcmp
[edit]
[-] tar
[edit]
[-] findmnt
[edit]
[-] infocmp
[edit]
[-] strip
[edit]
[-] gettext.sh
[edit]
[-] slabtop
[edit]
[-] dpkg-source
[edit]
[-] x86_64-linux-gnu-gcov
[edit]
[-] lsof
[edit]
[-] col8
[edit]
[-] psfxtable
[edit]
[-] eatmydata
[edit]
[-] gzip
[edit]
[-] dirname
[edit]
[-] sgp_dd
[edit]
[-] ranlib
[edit]
[-] mysqlreport
[edit]
[-] static-sh
[edit]
[-] x86_64-linux-gnu-cpp
[edit]
[-] grub-fstest
[edit]
[-] pinentry
[edit]
[-] cc
[edit]
[-] auvirt
[edit]
[-] col5
[edit]
[-] run-parts
[edit]
[-] gpgsm
[edit]
[-] chmod
[edit]
[-] dh_strip_nondeterminism
[edit]
[-] chfn
[edit]
[-] mt-gnu
[edit]
[-] lsattr
[edit]
[-] splitfont
[edit]
[-] byobu-launch
[edit]
[-] ptar
[edit]
[-] byobu-export
[edit]
[-] scsi_ready
[edit]
[-] x86_64-linux-gnu-cpp-9
[edit]
[-] gcc-ar
[edit]
[-] scsi_start
[edit]
[-] sg_reset_wp
[edit]
[-] whatis
[edit]
[-] link
[edit]
[-] os-prober
[edit]
[-] xz
[edit]
[-] c89
[edit]
[-] routef
[edit]
[-] cksum
[edit]
[-] lzmainfo
[edit]
[-] rnano
[edit]
[-] vmware-xferlogs
[edit]
[-] resolvectl
[edit]
[-] elfedit
[edit]
[-] soelim
[edit]
[-] sg_rdac
[edit]
[-] batch
[edit]
[-] plymouth
[edit]
[-] byobu-ctrl-a
[edit]
[-] compose
[edit]
[-] colrm
[edit]
[-] delv
[edit]
[-] apport-unpack
[edit]
[-] perlivp
[edit]
[-] ptargrep
[edit]
[-] watchgnupg
[edit]
[-] nslookup
[edit]
[-] chrt
[edit]
[-] mdig
[edit]
[-] lscpu
[edit]
[-] finalrd
[edit]
[-] locale-check
[edit]
[-] clear
[edit]
[-] sg_reset
[edit]
[-] expiry
[edit]
[-] fakeroot-tcp
[edit]
[-] jsonschema
[edit]
[-] byobu-enable-prompt
[edit]
[-] sosreport
[edit]
[-] sg_unmap
[edit]
[-] gencat
[edit]
[-] innochecksum
[edit]
[-] grotty
[edit]
[-] dirmngr-client
[edit]
[-] sg_scan
[edit]
[-] byobu-launcher
[edit]
[-] wsrep_sst_mysqldump
[edit]
[-] run-one-until-success
[edit]
[-] htcacheclean
[edit]
[-] php-config8.0
[edit]
[-] strace
[edit]
[-] pdb3.8
[edit]
[-] git-receive-pack
[edit]
[-] apt-add-repository
[edit]
[-] rename.ul
[edit]
[-] unsquashfs
[edit]
[-] gpgparsemail
[edit]
[-] red
[edit]
[-] certbot
[edit]
[-] rescan-scsi-bus.sh
[edit]
[-] mesg
[edit]
[-] galera_new_cluster
[edit]
[-] add-apt-repository
[edit]
[-] mysql_find_rows
[edit]
[-] cpio
[edit]
[-] automat-visualize3
[edit]
[-] systemd-run
[edit]
[-] lsipc
[edit]
[-] peardev
[edit]
[-] infobrowser
[edit]
[-] mknod
[edit]
[-] xzgrep
[edit]
[-] msgen
[edit]
[-] composer
[edit]
[-] vmware-namespace-cmd
[edit]
[-] perl
[edit]
[-] m4
[edit]
[-] gcc-ranlib
[edit]
[-] sg_start
[edit]
[-] mysqld_safe
[edit]
[-] xzless
[edit]
[-] corelist
[edit]
[-] ssh-import-id
[edit]
[-] bzless
[edit]
[-] x86_64-linux-gnu-gcc-9
[edit]
[-] pbput
[edit]
[-] crc32
[edit]
[-] date
[edit]
[-] wget
[edit]
[-] sbsiglist
[edit]
[-] purge-old-kernels
[edit]
[-] php
[edit]
[-] dh_installman
[edit]
[-] setpci
[edit]
[-] g++
[edit]
[-] ps
[edit]
[-] oem-getlogs
[edit]
[-] setarch
[edit]
[-] byobu-select-profile
[edit]
[-] ginstall-info
[edit]
[-] write
[edit]
[-] whereis
[edit]
[-] systemd-delta
[edit]
[-] mysql_upgrade
[edit]
[-] byobu-ulevel
[edit]
[-] atq
[edit]
[-] msgunfmt
[edit]
[-] dh_installcatalogs
[edit]
[-] phar8.0.phar
[edit]
[-] x86_64-linux-gnu-readelf
[edit]
[-] pldd
[edit]
[-] mysql_embedded
[edit]
[-] mapscrn
[edit]
[-] grub-ntldr-img
[edit]
[-] debconf-escape
[edit]
[-] dh_installsystemduser
[edit]
[-] bzegrep
[edit]
[-] systemd-path
[edit]
[-] edit
[edit]
[-] sg_readcap
[edit]
[-] unshare
[edit]
[-] dh_builddeb
[edit]
[-] col1
[edit]
[-] dh_fixperms
[edit]
[-] grub-mkimage
[edit]
[-] lcf
[edit]
[-] col3
[edit]
[-] dh_installexamples
[edit]
[-] dpkg-scansources
[edit]
[-] sg_write_verify
[edit]
[-] replace
[edit]
[-] wsrep_sst_mariabackup
[edit]
[-] jsonpointer
[edit]
[-] codepage
[edit]
[-] tempfile
[edit]
[-] df
[edit]
[-] dh_autoreconf_clean
[edit]
[-] traceroute6.iputils
[edit]
[-] sg_map
[edit]
[-] sg_decode_sense
[edit]
[-] mailmail3
[edit]
[-] dh_compress
[edit]
[-] hd
[edit]
[-] nsenter
[edit]
[-] sum
[edit]
[-] vm-support
[edit]
[-] shtoolize
[edit]
[-] tracepath
[edit]
[-] lsblk
[edit]
[-] egrep
[edit]
[-] reset
[edit]
[-] x86_64-linux-gnu-as
[edit]
[-] msguniq
[edit]
[-] pydoc3
[edit]
[-] journalctl
[edit]
[-] ionice
[edit]
[-] setkeycodes
[edit]
[-] sg_luns
[edit]
[-] printenv
[edit]
[-] sg_map26
[edit]
[-] grub-mkrescue
[edit]
[-] xgettext
[edit]
[-] lsusb
[edit]
[-] renice
[edit]
[-] faked-sysv
[edit]
[-] sprof
[edit]
[-] autoconf
[edit]
[-] setsid
[edit]
[-] mysqloptimize
[edit]
[-] mkfifo
[edit]
[-] phar
[edit]
[-] xzcat
[edit]
[-] apt-ftparchive
[edit]
[-] iscsiadm
[edit]
[-] phpize
[edit]
[-] i386
[edit]
[-] which
[edit]
[-] lzdiff
[edit]
[-] tbl
[edit]
[-] pkg-config
[edit]
[-] msgfmt
[edit]
[-] namei
[edit]
[-] perl5.30-x86_64-linux-gnu
[edit]
[-] boltctl
[edit]
[-] iusql
[edit]
[-] dpkg-statoverride
[edit]
[-] gzexe
[edit]
[-] objcopy
[edit]
[-] x86_64-linux-gnu-c++filt
[edit]
[-] msgattrib
[edit]
[-] chgrp
[edit]
[-] podselect
[edit]
[-] ntfstruncate
[edit]
[-] mtr
[edit]
[-] sg_sync
[edit]
[-] sg_compare_and_write
[edit]
[-] zipgrep
[edit]
[-] byobu-layout
[edit]
[-] lsb_release
[edit]
[-] phar8.0
[edit]
[-] grub-syslinux2cfg
[edit]
[-] ua
[edit]
[-] cloud-init
[edit]
[-] dh_installinitramfs
[edit]
[-] traceroute6
[edit]
[-] lshw
[edit]
[-] sh
[edit]
[-] x86_64-linux-gnu-strings
[edit]
[-] tload
[edit]
[-] debconf-updatepo
[edit]
[-] curl
[edit]
[-] w.procps
[edit]
[-] sg_vpd
[edit]
[-] bzip2
[edit]
[-] sg
[edit]
[-] lessecho
[edit]
[-] sg_xcopy
[edit]
[-] myisampack
[edit]
[-] aria_dump_log
[edit]
[-] h2xs
[edit]
[-] htdigest
[edit]
[-] snapctl
[edit]
[-] cpio-filter
[edit]
[-] dh_link
[edit]
[-] wc
[edit]
[-] dh_bash-completion
[edit]
[-] python3.8
[edit]
[-] loadunimap
[edit]
[-] gtbl
[edit]
[-] rview
[edit]
[-] vi
[edit]
[-] faillog
[edit]
[-] dpkg-query
[edit]
[-] vmware-toolbox-cmd
[edit]
[-] dh_testdir
[edit]
[-] gio-querymodules
[edit]
[-] apport-cli
[edit]
[-] dpkg-buildpackage
[edit]
[-] tmux
[edit]
[-] rmdir
[edit]
[-] btrfs
[edit]
[-] hostname
[edit]
[-] toe
[edit]
[-] lastb
[edit]
[-] ntfs-3g
[edit]
[-] cftp3
[edit]
[-] ar
[edit]
[-] sg_rmsn
[edit]
[-] last
[edit]
[-] ldd
[edit]
[-] perlthanks
[edit]
[-] chardet3
[edit]
[-] pkcheck
[edit]
[-] grub-glue-efi
[edit]
[-] fwupdagent
[edit]
[-] phpize.default
[edit]
[-] gcov-dump-9
[edit]
[-] pod2usage
[edit]
[-] dpkg-vendor
[edit]
[-] lslocks
[edit]
[-] col6
[edit]
[-] eject
[edit]
[-] dh_movefiles
[edit]
[-] who
[edit]
[-] bzcat
[edit]
[-] grep
[edit]
[-] faked-tcp
[edit]
[-] gsettings
[edit]
[-] hexdump
[edit]
[-] col4
[edit]
[-] dpkg-checkbuilddeps
[edit]
[-] pyhtmlizer3
[edit]
[-] mawk
[edit]
[-] sort
[edit]
[-] bzdiff
[edit]
[-] ntfsls
[edit]
[-] byobu-tmux
[edit]
[-] pstree.x11
[edit]
[-] sg_ident
[edit]
[-] domainname
[edit]
[-] lessfile
[edit]
[-] preconv
[edit]
[-] loginctl
[edit]
[-] partx
[edit]
[-] lspgpot
[edit]
[-] glib-compile-schemas
[edit]
[-] systemd-machine-id-setup
[edit]
[-] kbd_mode
[edit]
[-] nc
[edit]
[-] chattr
[edit]
[-] fmt
[edit]
[-] iptables-xml
[edit]
[-] rgrep
[edit]
[-] btrfs-convert
[edit]
[-] gpg-connect-agent
[edit]
[-] x86_64-linux-gnu-nm
[edit]
[-] gpasswd
[edit]
[-] shasum
[edit]
[-] gcov-tool-9
[edit]
[-] vmware-alias-import
[edit]
[-] perlbug
[edit]
[-] byobu
[edit]
[-] gcc-9
[edit]
[-] neqn
[edit]
[-] sbvarsign
[edit]
[-] xauth
[edit]
[-] byobu-status
[edit]
[-] ss
[edit]
[-] mt
[edit]
[-] ncal
[edit]
[-] gresource
[edit]
[-] info
[edit]
[-] apt-extracttemplates
[edit]
[-] fgconsole
[edit]
[-] dh_usrlocal
[edit]
[-] byobu-janitor
[edit]
[-] trial3
[edit]
[-] pbputs
[edit]
[-] install
[edit]
[-] addpart
[edit]
[-] dbus-cleanup-sockets
[edit]
[-] dnsdomainname
[edit]
[-] tail
[edit]
[-] apport-bug
[edit]
[-] cpan
[edit]
[-] chcon
[edit]
[-] dpkg-architecture
[edit]
[-] mountpoint
[edit]
[-] gcc-ranlib-9
[edit]
[-] sg_read_block_limits
[edit]
[-] apt-get
[edit]
[-] dh_phppear
[edit]
[-] kill
[edit]
[-] py3versions
[edit]
[-] vmware-rpctool
[edit]
[-] rbash
[edit]
[-] x86_64-linux-gnu-gcov-dump-9
[edit]
[-] setpriv
[edit]
[-] filan
[edit]
[-] cloud-init-per
[edit]
[-] x86_64-linux-gnu-gcov-tool
[edit]
[-] catchsegv
[edit]
[-] gcc-ar-9
[edit]
[-] ubuntu-security-status
[edit]
[-] cpan5.30-x86_64-linux-gnu
[edit]
[-] dh_makeshlibs
[edit]
[-] ssh-copy-id
[edit]
[-] su
[edit]
[-] w
[edit]
[-] zdump
[edit]
[-] nstat
[edit]
[-] sg_bg_ctl
[edit]
[-] pslog
[edit]
[-] lastlog
[edit]
[-] myisamlog
[edit]
[-] umount
[edit]
[-] gawk
[edit]
[-] recode-sr-latin
[edit]
[-] mysql_secure_installation
[edit]
[-] systemd-tty-ask-password-agent
[edit]
[-] migrate-pubring-from-classic-gpg
[edit]
[-] sha384sum
[edit]
[-] twistd3
[edit]
[-] chvt
[edit]
[-] dash
[edit]
[-] sgm_dd
[edit]
[-] groff
[edit]
[-] scriptreplay
[edit]
[-] pod2man
[edit]
[-] lzma
[edit]
[-] lz4
[edit]
[-] busybox
[edit]
[-] systemd-cat
[edit]
[-] gpgcompose
[edit]
[-] choom
[edit]
[-] lz4cat
[edit]
[-] x86_64-linux-gnu-gcc-ranlib
[edit]
[-] pkexec
[edit]
[-] dwz
[edit]
[-] eqn
[edit]
[-] expand
[edit]
[-] fwupdtool
[edit]
[-] x86_64-linux-gnu-gcc-nm-9
[edit]
[-] sed
[edit]
[-] lzcmp
[edit]
[-] py3clean
[edit]
[-] pinentry-curses
[edit]
[-] find
[edit]
[-] mysqlrepair
[edit]
[-] ypdomainname
[edit]
[-] linux32
[edit]
[-] rev
[edit]
[-] x86_64-linux-gnu-g++
[edit]
[-] podebconf-report-po
[edit]
[-] newgrp
[edit]
[-] ld.bfd
[edit]
[-] grub-mount
[edit]
[-] byobu-disable
[edit]
[-] bc
[edit]
[-] xzegrep
[edit]
[-] usbreset
[edit]
[-] aclocal-1.16
[edit]
[-] c99-gcc
[edit]
[-] hostnamectl
[edit]
[-] sbsign
[edit]
[-] screen
[edit]
[-] unlzma
[edit]
[-] basename
[edit]
[-] x86_64-pc-linux-gnu-pkg-config
[edit]
[-] tzselect
[edit]
[-] rsync
[edit]
[-] ntfsinfo
[edit]
[-] whiptail
[edit]
[-] mysqlhotcopy
[edit]
[-] c99
[edit]
[-] mysql_plugin
[edit]
[-] ucfr
[edit]
[-] sg_zone
[edit]
[-] twist3
[edit]
[-] fincore
[edit]
[-] geqn
[edit]
[-] dh_update_autotools_config
[edit]
[-] sudoreplay
[edit]
[-] localectl
[edit]
[-] psfgettable
[edit]
[-] true
[edit]
[-] manifest
[edit]
[-] dh_shlibdeps
[edit]
[-] git-shell
[edit]
[-] fakeroot-sysv
[edit]
[-] sha224sum
[edit]
[-] man-recode
[edit]
[-] print
[edit]
[-] realpath
[edit]
[-] ltrace
[edit]
[-] unxz
[edit]
[-] sg_sat_set_features
[edit]
[-] dh_installdeb
[edit]
[-] column
[edit]
[-] lzmore
[edit]
[-] ipcrm
[edit]
[-] dh_autotools-dev_updateconfig
[edit]
[-] bzexe
[edit]
[-] pear
[edit]
[-] sg_read
[edit]
[-] apt-cache
[edit]
[-] sg_rbuf
[edit]
[-] mount
[edit]
[-] getopt
[edit]
[-] dh_installcron
[edit]
[-] sg_modes
[edit]
[-] apt-sortpkgs
[edit]
[-] netkit-ftp
[edit]
[-] dh_installchangelogs
[edit]
[-] ntfssecaudit
[edit]
[-] wsrep_sst_common
[edit]
[-] x86_64-linux-gnu-ld.gold
[edit]
[-] msgcat
[edit]
[-] passwd
[edit]
[-] sha256sum
[edit]
[-] sg_rep_zones
[edit]
[-] gcc-nm
[edit]
[-] dh_strip
[edit]
[-] sensible-browser
[edit]
[-] libnetcfg
[edit]
[-] rdma
[edit]
[-] btrfs-map-logical
[edit]
[-] apropos
[edit]
[-] sg_seek
[edit]