PATH:
usr
/
bin
#!/usr/bin/perl -w # # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. require 5.004; use strict; package apxs; ## ## Configuration ## # are we building in a cross compile environment? If so, destdir contains # the base directory of the cross compiled environment, otherwise destdir # is the empty string. my $destdir = ""; my $ddi = rindex($0, "/usr/bin"); if ($ddi >= 0) { $destdir = substr($0, 0, $ddi); } my %config_vars = (); my $installbuilddir = "/usr/lib64/apache2/build"; get_config_vars($destdir . "$installbuilddir/config_vars.mk",\%config_vars); # read the configuration variables once my $prefix = get_vars("prefix"); my $CFG_PREFIX = $prefix; my $exec_prefix = get_vars("exec_prefix"); my $datadir = get_vars("datadir"); my $localstatedir = get_vars("localstatedir"); my $CFG_TARGET = get_vars("progname"); my $CFG_SYSCONFDIR = get_vars("sysconfdir"); my $CFG_CFLAGS = join ' ', map { get_vars($_) } qw(SHLTCFLAGS CFLAGS NOTEST_CPPFLAGS EXTRA_CPPFLAGS EXTRA_CFLAGS); my $CFG_LDFLAGS = join ' ', map { get_vars($_) } qw(LDFLAGS NOTEST_LDFLAGS SH_LDFLAGS); my $includedir = $destdir . get_vars("includedir"); my $CFG_INCLUDEDIR = eval qq("$includedir"); my $CFG_CC = get_vars("CC"); my $libexecdir = $destdir . get_vars("libexecdir"); my $libdir = get_vars("libdir"); my $CFG_LIBEXECDIR = eval qq("$libexecdir"); my $sbindir = get_vars("sbindir"); my $CFG_SBINDIR = eval qq("$sbindir"); my $ltflags = $ENV{'LTFLAGS'}; $ltflags or $ltflags = "--silent"; my %internal_vars = map {$_ => 1} qw(TARGET CC CFLAGS CFLAGS_SHLIB LD_SHLIB LDFLAGS_SHLIB LIBS_SHLIB PREFIX SBINDIR INCLUDEDIR LIBEXECDIR SYSCONFDIR); ## ## parse argument line ## # defaults for parameters my $opt_n = ''; my $opt_g = ''; my $opt_c = 0; my $opt_o = ''; my @opt_D = (); my @opt_I = (); my @opt_L = (); my @opt_l = (); my @opt_W = (); my @opt_S = (); my $opt_e = 0; my $opt_i = 0; my $opt_a = 0; my $opt_A = 0; my $opt_q = 0; my $opt_h = 0; my $opt_p = 0; my $opt_v = 0; # this subroutine is derived from Perl's getopts.pl with the enhancement of # the "+" metacharacter at the format string to allow a list to be built by # subsequent occurrences of the same option. sub Getopts { my ($argumentative, @ARGV) = @_; my $errs = 0; local $_; my @args = split / */, $argumentative; while (@ARGV && ($_ = $ARGV[0]) =~ /^-(.)(.*)/) { my ($first, $rest) = ($1,$2); if ($_ =~ m|^--$|) { shift @ARGV; last; } my $pos = index($argumentative,$first); if ($pos >= 0) { if ($pos < $#args && $args[$pos+1] eq ':') { shift @ARGV; if ($rest eq '') { unless (@ARGV) { error("Incomplete option: $first (needs an argument)"); $errs++; } $rest = shift(@ARGV); } eval "\$opt_$first = \$rest;"; } elsif ($pos < $#args && $args[$pos+1] eq '+') { shift @ARGV; if ($rest eq '') { unless (@ARGV) { error("Incomplete option: $first (needs an argument)"); $errs++; } $rest = shift(@ARGV); } eval "push(\@opt_$first, \$rest);"; } else { eval "\$opt_$first = 1"; if ($rest eq '') { shift(@ARGV); } else { $ARGV[0] = "-$rest"; } } } else { error("Unknown option: $first"); $errs++; if ($rest ne '') { $ARGV[0] = "-$rest"; } else { shift(@ARGV); } } } return ($errs == 0, @ARGV); } sub usage { print STDERR "Usage: apxs -g [-S <var>=<val>] -n <modname>\n"; print STDERR " apxs -q [-v] [-S <var>=<val>] [<query> ...]\n"; print STDERR " apxs -c [-S <var>=<val>] [-o <dsofile>] [-D <name>[=<value>]]\n"; print STDERR " [-I <incdir>] [-L <libdir>] [-l <libname>] [-Wc,<flags>]\n"; print STDERR " [-Wl,<flags>] [-p] <files> ...\n"; print STDERR " apxs -i [-S <var>=<val>] [-a] [-A] [-n <modname>] <dsofile> ...\n"; print STDERR " apxs -e [-S <var>=<val>] [-a] [-A] [-n <modname>] <dsofile> ...\n"; exit(1); } # option handling my $rc; ($rc, @ARGV) = &Getopts("qn:gco:I+D+L+l+W+S+eiaApv", @ARGV); &usage if ($rc == 0); &usage if ($#ARGV == -1 and not $opt_g and not $opt_q); &usage if (not $opt_q and not ($opt_g and $opt_n) and not $opt_i and not $opt_c and not $opt_e); # argument handling my @args = @ARGV; my $name = 'unknown'; $name = $opt_n if ($opt_n ne ''); if (@opt_S) { my ($opt_S); foreach $opt_S (@opt_S) { if ($opt_S =~ m/^([^=]+)=(.*)$/) { my ($var) = $1; my ($val) = $2; my $oldval = eval "\$CFG_$var"; unless ($var and $oldval) { print STDERR "apxs:Error: no config variable $var\n"; &usage; } eval "\$CFG_${var}=\"${val}\""; } else { print STDERR "apxs:Error: malformatted -S option\n"; &usage; } } } ## ## Initial shared object support check ## unless ("yes" eq "yes") { error("Sorry, no shared object support for Apache"); error("available under your platform. Make sure"); error("the Apache module mod_so is compiled into"); error("the server binary."); exit 1; } sub get_config_vars{ my ($file, $rh_config) = @_; open IN, $file or die "cannot open $file: $!"; while (<IN>){ if (/^\s*(.*?)\s*=\s*(.*)$/){ $rh_config->{$1} = $2; } } close IN; } sub get_vars { my $result = ''; my $ok = 0; my $arg; foreach $arg (@_) { if (exists $config_vars{$arg} or exists $config_vars{lc $arg}) { my $val = exists $config_vars{$arg} ? $config_vars{$arg} : $config_vars{lc $arg}; $val =~ s/[()]//g; $result .= eval "qq($val)" if defined $val; $result .= ";;"; $ok = 1; } if (not $ok) { if (exists $internal_vars{$arg} or exists $internal_vars{lc $arg}) { my $val = exists $internal_vars{$arg} ? $arg : lc $arg; $val = eval "\$CFG_$val"; $result .= eval "qq($val)" if defined $val; $result .= ";;"; $ok = 1; } if (not $ok) { error("Invalid query string `$arg'"); exit(1); } } } $result =~ s|;;$||; return $result; } ## ## Operation ## # helper function for executing a list of # system command with return code checks sub execute_cmds { my (@cmds) = @_; my ($cmd, $rc); foreach $cmd (@cmds) { notice($cmd); $rc = system $cmd; if ($rc) { error(sprintf "Command failed with rc=%d\n", $rc << 8); exit 1 ; } } } if ($opt_g) { ## ## SAMPLE MODULE SOURCE GENERATION ## if (-d $name) { error("Directory `$name' already exists. Remove first"); exit(1); } my $data = join('', <DATA>); $data =~ s|%NAME%|$name|sg; $data =~ s|%TARGET%|$CFG_TARGET|sg; $data =~ s|%PREFIX%|$prefix|sg; $data =~ s|%INSTALLBUILDDIR%|$installbuilddir|sg; $data =~ s|%LIBDIR%|$libdir|sg; my ($mkf, $mods, $src) = ($data =~ m|^(.+)-=#=-\n(.+)-=#=-\n(.+)|s); notice("Creating [DIR] $name"); system("mkdir $name"); notice("Creating [FILE] $name/Makefile"); open(FP, ">${name}/Makefile") || die; print FP $mkf; close(FP); notice("Creating [FILE] $name/modules.mk"); open(FP, ">${name}/modules.mk") || die; print FP $mods; close(FP); notice("Creating [FILE] $name/mod_$name.c"); open(FP, ">${name}/mod_${name}.c") || die; print FP $src; close(FP); notice("Creating [FILE] $name/.deps"); system("touch ${name}/.deps"); exit(0); } if ($opt_q) { ## ## QUERY INFORMATION ## my $result; if ($#args >= 0) { $result = get_vars(@args); print "$result\n"; } else { # -q without var name prints all variables and their values # Additional -v pretty-prints output if ($opt_v) { # Variable names in alphabetic order my @vars = sort {uc($a) cmp uc($b)} keys %config_vars; # Make the left column as wide as the longest variable name my $width = 0; foreach (@vars) { my $l = length $_; $width = $l unless ($l <= $width); } foreach (@vars) { printf "%-${width}s = %s\n", $_, $config_vars{$_}; } } else { # Unprettified name=value list foreach (keys %config_vars) { print "$_=$config_vars{$_}\n"; } } } } my $apr_config = $destdir . get_vars("APR_CONFIG"); if (! -x "$apr_config") { error("$apr_config not found!"); exit(1); } my $apr_major_version = (split /\./, `$apr_config --version`)[0]; my $apu_config = ""; if ($apr_major_version < 2) { $apu_config = $destdir . get_vars("APU_CONFIG"); if (! -x "$apu_config") { error("$apu_config not found!"); exit(1); } } my $libtool = `$apr_config --apr-libtool`; chomp($libtool); my $apr_includedir = `$apr_config --includes`; chomp($apr_includedir); my $apu_includedir = ""; if ($apr_major_version < 2) { $apu_includedir = `$apu_config --includes`; chomp($apu_includedir); } if ($opt_c) { ## ## SHARED OBJECT COMPILATION ## # split files into sources and objects my @srcs = (); my @objs = (); my $f; foreach $f (@args) { if ($f =~ m|\.c$|) { push(@srcs, $f); } else { push(@objs, $f); } } # determine output file my $dso_file; if ($opt_o eq '') { if ($#srcs > -1) { $dso_file = $srcs[0]; $dso_file =~ s|\.[^.]+$|.la|; } elsif ($#objs > -1) { $dso_file = $objs[0]; $dso_file =~ s|\.[^.]+$|.la|; } else { $dso_file = "mod_unknown.la"; } } else { $dso_file = $opt_o; $dso_file =~ s|\.[^.]+$|.la|; } # create compilation commands my @cmds = (); my $opt = ''; my ($opt_Wc, $opt_I, $opt_D); foreach $opt_Wc (@opt_W) { $opt .= "$1 " if ($opt_Wc =~ m|^\s*c,(.*)$|); } foreach $opt_I (@opt_I) { $opt .= "-I$opt_I "; } foreach $opt_D (@opt_D) { $opt .= "-D$opt_D "; } my $cflags = "$CFG_CFLAGS"; my $s; my $mod; foreach $s (@srcs) { my $slo = $s; $slo =~ s|\.c$|.slo|; my $lo = $s; $lo =~ s|\.c$|.lo|; my $la = $s; $la =~ s|\.c$|.la|; my $o = $s; $o =~ s|\.c$|.o|; push(@cmds, "$libtool $ltflags --mode=compile $CFG_CC $cflags -I$CFG_INCLUDEDIR $apr_includedir $apu_includedir $opt -c -o $lo $s && touch $slo"); unshift(@objs, $lo); } # create link command my $o; my $lo; foreach $o (@objs) { $lo .= " $o"; } my ($opt_Wl, $opt_L, $opt_l); $opt = ''; foreach $opt_Wl (@opt_W) { $opt .= "$1 " if ($opt_Wl =~ m|^\s*l,(.*)$|); } foreach $opt_L (@opt_L) { $opt .= " -L$opt_L"; } foreach $opt_l (@opt_l) { $opt .= " -l$opt_l"; } my $ldflags = "$CFG_LDFLAGS"; if ($opt_p == 1) { my $apr_libs=`$apr_config --cflags --ldflags --link-libtool --libs`; chomp($apr_libs); my $apu_libs=""; if ($apr_major_version < 2) { $apu_libs=`$apu_config --ldflags --link-libtool --libs`; chomp($apu_libs); } $opt .= " ".$apu_libs." ".$apr_libs; } else { my $apr_ldflags=`$apr_config --ldflags`; chomp($apr_ldflags); $opt .= " -rpath $CFG_LIBEXECDIR -module -avoid-version $apr_ldflags"; } push(@cmds, "$libtool $ltflags --mode=link $CFG_CC $ldflags -o $dso_file $opt $lo"); # execute the commands &execute_cmds(@cmds); # allow one-step compilation and installation if ($opt_i or $opt_e) { @args = ( $dso_file ); } } if ($opt_i or $opt_e) { ## ## SHARED OBJECT INSTALLATION ## # determine installation commands # and corresponding LoadModule directive my @lmd = (); my @cmds = (); my $f; foreach $f (@args) { # ack all potential gcc, hp/ux, win32+os2+aix and os/x extensions if ($f !~ m#(\.so$|\.la$|\.sl$|\.dll$|\.dylib$|)#) { error("file $f is not a shared object"); exit(1); } my $t = $f; $t =~ s|^.+/([^/]+)$|$1|; # use .so unambigiously for installed shared library modules $t =~ s|\.[^./\\]+$|\.so|; if ($opt_i) { push(@cmds, $destdir . "$installbuilddir/instdso.sh SH_LIBTOOL='" . "$libtool' $f $CFG_LIBEXECDIR"); push(@cmds, "chmod 755 $CFG_LIBEXECDIR/$t"); } # determine module symbolname and filename my $filename = ''; if ($name eq 'unknown') { $name = ''; my $base = $f; $base =~ s|\.[^.]+$||; if (-f "$base.c") { open(FP, "<$base.c"); my $content = join('', <FP>); close(FP); if ($content =~ m|.*AP_DECLARE_MODULE\s*\(\s*([a-zA-Z0-9_]+)\s*\)\s*=.*|s || $content =~ m|.*module\s+(?:AP_MODULE_DECLARE_DATA\s+)?([a-zA-Z0-9_]+)_module\s*=\s*.*|s) { $name = "$1"; $filename = "$base.c"; $filename =~ s|^[^/]+/||; } } if ($name eq '') { if ($base =~ m|.*mod_([a-zA-Z0-9_]+)\..+|) { $name = "$1"; $filename = $base; $filename =~ s|^[^/]+/||; } } if ($name eq '') { error("Sorry, cannot determine bootstrap symbol name"); error("Please specify one with option `-n'"); exit(1); } } if ($filename eq '') { $filename = "mod_${name}.c"; } my $dir = $CFG_LIBEXECDIR; $dir =~ s|^$CFG_PREFIX/?||; $dir =~ s|(.)$|$1/|; $t =~ s|\.la$|.so|; push(@lmd, sprintf("LoadModule %-18s %s", "${name}_module", "$dir$t")); } # execute the commands &execute_cmds(@cmds); # activate module via LoadModule/AddModule directive if ($opt_a or $opt_A) { my $lmd; my $c = ''; $c = '#' if ($opt_A); foreach $lmd (@lmd) { my $what = $opt_A ? "preparing" : "activating"; $lmd =~ m|LoadModule\s+(.+?)_module.*|; my $modname = $1; my $fname = "$CFG_SYSCONFDIR.modules.d/mod_$modname.conf"; notice("[$what module `$modname' in $fname]"); if (open(FP, ">$fname.new")) { print FP "$c$lmd"; close(FP); system("cp -b --suffix=.bak $fname.new $fname && " . "rm $fname.new"); } else { notice("unable to open configuration file"); } } } } sub error{ print STDERR "apxs:Error: $_[0].\n"; } sub notice{ print STDERR "$_[0]\n"; } ##EOF## __DATA__ ## ## Makefile -- Build procedure for sample %NAME% Apache module ## Autogenerated via ``apxs -n %NAME% -g''. ## builddir=. top_srcdir=%PREFIX% top_builddir=%LIBDIR%/apache2 include %INSTALLBUILDDIR%/special.mk # the used tools APACHECTL=apachectl # additional defines, includes and libraries #DEFS=-Dmy_define=my_value #INCLUDES=-Imy/include/dir #LIBS=-Lmy/lib/dir -lmylib # the default target all: local-shared-build # install the shared object file into Apache install: install-modules-yes # cleanup clean: -rm -f mod_%NAME%.o mod_%NAME%.lo mod_%NAME%.slo mod_%NAME%.la # simple test test: reload lynx -mime_header http://localhost/%NAME% # install and activate shared object by reloading Apache to # force a reload of the shared object file reload: install restart # the general Apache start/restart/stop # procedures start: $(APACHECTL) start restart: $(APACHECTL) restart stop: $(APACHECTL) stop -=#=- mod_%NAME%.la: mod_%NAME%.slo $(SH_LINK) -rpath $(libexecdir) -module -avoid-version mod_%NAME%.lo DISTCLEAN_TARGETS = modules.mk shared = mod_%NAME%.la -=#=- /* ** mod_%NAME%.c -- Apache sample %NAME% module ** [Autogenerated via ``apxs -n %NAME% -g''] ** ** To play with this sample module first compile it into a ** DSO file and install it into Apache's modules directory ** by running: ** ** $ apxs -c -i mod_%NAME%.c ** ** Then activate it in Apache's %TARGET%.conf file for instance ** for the URL /%NAME% in as follows: ** ** # %TARGET%.conf ** LoadModule %NAME%_module modules/mod_%NAME%.so ** <Location /%NAME%> ** SetHandler %NAME% ** </Location> ** ** Then after restarting Apache via ** ** $ apachectl restart ** ** you immediately can request the URL /%NAME% and watch for the ** output of this module. This can be achieved for instance via: ** ** $ lynx -mime_header http://localhost/%NAME% ** ** The output should be similar to the following one: ** ** HTTP/1.1 200 OK ** Date: Tue, 31 Mar 1998 14:42:22 GMT ** Server: Apache/1.3.4 (Unix) ** Connection: close ** Content-Type: text/html ** ** The sample page from mod_%NAME%.c */ #include "httpd.h" #include "http_config.h" #include "http_protocol.h" #include "ap_config.h" /* The sample content handler */ static int %NAME%_handler(request_rec *r) { if (strcmp(r->handler, "%NAME%")) { return DECLINED; } r->content_type = "text/html"; if (!r->header_only) ap_rputs("The sample page from mod_%NAME%.c\n", r); return OK; } static void %NAME%_register_hooks(apr_pool_t *p) { ap_hook_handler(%NAME%_handler, NULL, NULL, APR_HOOK_MIDDLE); } /* Dispatch list for API hooks */ module AP_MODULE_DECLARE_DATA %NAME%_module = { STANDARD20_MODULE_STUFF, NULL, /* create per-dir config structures */ NULL, /* merge per-dir config structures */ NULL, /* create per-server config structures */ NULL, /* merge per-server config structures */ NULL, /* table of config file commands */ %NAME%_register_hooks /* register hooks */ };
[+]
..
[-] chfn
[edit]
[-] find
[edit]
[-] zdiff
[edit]
[-] linux-boot-prober
[edit]
[-] snapfuse
[edit]
[-] paperconf
[edit]
[-] dsync
[edit]
[-] paste
[edit]
[-] msgmerge
[edit]
[-] ntfsusermap
[edit]
[-] ckbcomp
[edit]
[-] sg_ident
[edit]
[-] pidof
[edit]
[-] perlbug
[edit]
[-] NF
[edit]
[-] lsns
[edit]
[-] dircolors
[edit]
[-] dbilogstrip
[edit]
[-] g++
[edit]
[-] pmap
[edit]
[-] unsquashfs
[edit]
[-] wall
[edit]
[-] slogin
[edit]
[-] ssh-import-id
[edit]
[-] sbsiglist
[edit]
[-] lzmainfo
[edit]
[-] do-release-upgrade
[edit]
[-] fc-validate
[edit]
[-] x86_64-linux-gnu-ar
[edit]
[-] fgrep
[edit]
[-] sg_map
[edit]
[-] dh_perl_dbi
[edit]
[-] systemd-mount
[edit]
[-] dglob
[edit]
[-] x86_64-linux-gnu-addr2line
[edit]
[-] sg_persist
[edit]
[-] vmtoolsd
[edit]
[-] gprof
[edit]
[-] perl
[edit]
[-] mysql_tzinfo_to_sql
[edit]
[-] ua
[edit]
[-] splain
[edit]
[-] ssh-agent
[edit]
[-] python3.8-config
[edit]
[-] gtk-launch
[edit]
[-] cpapi3
[edit]
[-] ps
[edit]
[-] pkttyagent
[edit]
[-] zdump
[edit]
[-] btrfs-convert
[edit]
[-] pod2readme
[edit]
[-] c_rehash
[edit]
[-] conch3
[edit]
[-] pinky
[edit]
[-] tic
[edit]
[-] eu-ar
[edit]
[-] byobu-disable-prompt
[edit]
[-] systemd-notify
[edit]
[-] eu-ranlib
[edit]
[-] eqn
[edit]
[-] trial3
[edit]
[-] msgfmt
[edit]
[-] sg_reset_wp
[edit]
[-] kernel-install
[edit]
[-] dnssec-settime
[edit]
[-] apropos
[edit]
[-] apport-bug
[edit]
[-] pyjwt3
[edit]
[-] x86_64-linux-gnu-ranlib
[edit]
[-] dpkg-checkbuilddeps
[edit]
[-] pr
[edit]
[-] dpkg-statoverride
[edit]
[-] ncursesw6-config
[edit]
[-] unattended-upgrades
[edit]
[-] view
[edit]
[-] strace
[edit]
[-] tabs
[edit]
[-] partx
[edit]
[-] ntfssecaudit
[edit]
[-] pathchk
[edit]
[-] ldd
[edit]
[-] x86_64
[edit]
[-] recode-sr-latin
[edit]
[-] login
[edit]
[-] gpgcompose
[edit]
[-] fallocate
[edit]
[-] byobu-launcher
[edit]
[-] dh_perl_openssl
[edit]
[-] vimdiff
[edit]
[-] grep-status
[edit]
[-] jsonschema
[edit]
[-] xzcat
[edit]
[-] logname
[edit]
[-] htdbm
[edit]
[-] screendump
[edit]
[-] lcf
[edit]
[-] kill
[edit]
[-] c++
[edit]
[-] top
[edit]
[-] ranlib
[edit]
[-] aspell-import
[edit]
[-] readlink
[edit]
[-] gpgtar
[edit]
[-] cautious-launcher
[edit]
[-] apt-get
[edit]
[-] whoami
[edit]
[-] nm
[edit]
[-] msguniq
[edit]
[-] mknod
[edit]
[-] x86_64-linux-gnu-c++filt
[edit]
[-] tbl
[edit]
[-] ypdomainname
[edit]
[-] sg_dd
[edit]
[-] x86_64-linux-gnu-ld.gold
[edit]
[-] lzcmp
[edit]
[-] helpztags
[edit]
[-] lzmore
[edit]
[-] py3compile
[edit]
[-] pftp
[edit]
[-] dpkg-gensymbols
[edit]
[-] fc-list
[edit]
[-] check-language-support
[edit]
[-] dpkg-genbuildinfo
[edit]
[-] ftp
[edit]
[-] dwp
[edit]
[-] sg_zone
[edit]
[-] ntfs-3g.probe
[edit]
[-] pidstat
[edit]
[-] eps2eps
[edit]
[-] cat
[edit]
[-] ea-php81-pecl
[edit]
[-] run-mailcap
[edit]
[-] fc-query
[edit]
[-] tty
[edit]
[-] ssh-argv0
[edit]
[-] byobu-launcher-uninstall
[edit]
[-] grep-available
[edit]
[-] seq
[edit]
[-] lowntfs-3g
[edit]
[-] eject
[edit]
[-] nisdomainname
[edit]
[-] apt-sortpkgs
[edit]
[-] scsi_temperature
[edit]
[-] animate
[edit]
[-] lz4cat
[edit]
[-] setmetamode
[edit]
[-] apt-file
[edit]
[-] genrb
[edit]
[-] rsh
[edit]
[-] HEAD
[edit]
[-] gcc-nm
[edit]
[-] sha512sum
[edit]
[-] rrsync
[edit]
[-] unxz
[edit]
[-] systemd-path
[edit]
[-] libtool
[edit]
[-] gtk-update-icon-cache
[edit]
[-] prezip
[edit]
[-] dirmngr
[edit]
[-] byobu-config
[edit]
[-] xzgrep
[edit]
[-] fc-conflist
[edit]
[-] update-mime-database
[edit]
[-] sg_modes
[edit]
[-] ip
[edit]
[-] systemd-ask-password
[edit]
[-] strings
[edit]
[-] make-first-existing-target
[edit]
[-] btrfs
[edit]
[-] btrfs-select-super
[edit]
[-] dnssec-revoke
[edit]
[-] systemd-sysusers
[edit]
[-] nproc
[edit]
[-] run-one-until-success
[edit]
[-] conjure
[edit]
[-] mysqlbinlog
[edit]
[-] ntfstruncate
[edit]
[-] scsi_start
[edit]
[-] gpg-zip
[edit]
[-] nawk
[edit]
[-] fakeroot
[edit]
[-] bzless
[edit]
[-] dpkg-mergechangelogs
[edit]
[-] pod2html
[edit]
[-] gpg-wks-server
[edit]
[-] xargs
[edit]
[-] ea-php73
[edit]
[-] grub-mkrelpath
[edit]
[-] bashbug
[edit]
[-] iostat
[edit]
[-] zcmp
[edit]
[-] scsi_satl
[edit]
[-] pgrep
[edit]
[-] bzip2
[edit]
[-] dpkg-buildflags
[edit]
[-] nsenter
[edit]
[-] mono
[edit]
[-] my_print_defaults
[edit]
[-] chmod
[edit]
[-] ps2ps2
[edit]
[-] kbd_mode
[edit]
[-] gcc-ranlib-9
[edit]
[-] col8
[edit]
[-] sg_write_x
[edit]
[-] showkey
[edit]
[-] chvt
[edit]
[-] eu-elflint
[edit]
[-] cpp
[edit]
[-] sg_referrals
[edit]
[-] sort
[edit]
[-] dpkg-maintscript-helper
[edit]
[-] myisampack
[edit]
[-] ssh-import-id-gh
[edit]
[-] shred
[edit]
[-] scp
[edit]
[-] w.procps
[edit]
[-] bsd-from
[edit]
[-] gsdj500
[edit]
[-] git-upload-pack
[edit]
[-] btrfs-map-logical
[edit]
[-] ssh
[edit]
[-] gapplication
[edit]
[-] broadwayd
[edit]
[-] bzcmp
[edit]
[-] mysql_config_editor
[edit]
[-] pyclean
[edit]
[-] byobu-ugraph
[edit]
[-] upower
[edit]
[-] ntfs-3g
[edit]
[-] pinentry-curses
[edit]
[-] ps2ps
[edit]
[-] imunify-fgw-dump
[edit]
[-] stdbuf
[edit]
[-] pwdx
[edit]
[-] vcs-run
[edit]
[-] systemd-socket-activate
[edit]
[-] ea-php81
[edit]
[-] base64
[edit]
[-] scsi_stop
[edit]
[-] cp
[edit]
[-] nroff
[edit]
[-] tail
[edit]
[-] perl5.30-x86_64-linux-gnu
[edit]
[-] update-alternatives
[edit]
[-] faked-tcp
[edit]
[-] colrm
[edit]
[-] glib-mkenums
[edit]
[-] bzexe
[edit]
[-] python2
[edit]
[-] setpriv
[edit]
[-] byobu-export
[edit]
[-] pphs
[edit]
[-] which-pkg-broke
[edit]
[-] rpm2cpio
[edit]
[-] man-recode
[edit]
[-] timeout
[edit]
[-] dbus-monitor
[edit]
[-] gendiff
[edit]
[-] lscpu
[edit]
[-] rpmquery
[edit]
[-] getkeycodes
[edit]
[-] cc
[edit]
[-] gdk-pixbuf-thumbnailer
[edit]
[-] eu-elfcmp
[edit]
[-] rbash
[edit]
[-] ar
[edit]
[-] savelog
[edit]
[-] col4
[edit]
[-] sg_write_same
[edit]
[-] ptardiff
[edit]
[-] msgen
[edit]
[-] lsusb
[edit]
[-] chrt
[edit]
[-] x86_64-linux-gnu-gcov-tool
[edit]
[-] sg_get_config
[edit]
[-] snap
[edit]
[-] test
[edit]
[-] resolvectl
[edit]
[-] getopt
[edit]
[-] more
[edit]
[-] pydoc2.7
[edit]
[-] sg_copy_results
[edit]
[-] byobu-status
[edit]
[-] rpmbuild
[edit]
[-] import
[edit]
[-] systemd-cat
[edit]
[-] httxt2dbm
[edit]
[-] grub-mkfont
[edit]
[-] icuinfo
[edit]
[-] lz4_decompress
[edit]
[-] clear
[edit]
[-] myisam_ftdump
[edit]
[-] x86_64-linux-gnu-gcc-ar
[edit]
[-] setterm
[edit]
[-] ctstat
[edit]
[-] col9
[edit]
[-] vigpg
[edit]
[-] fusermount
[edit]
[-] htpasswd
[edit]
[-] gettext
[edit]
[-] automat-visualize3
[edit]
[-] ea-php80-pear
[edit]
[-] grub-syslinux2cfg
[edit]
[-] grep-aptavail
[edit]
[-] crontab
[edit]
[-] ps2pdf
[edit]
[-] neqn
[edit]
[-] numfmt
[edit]
[-] fakeroot-sysv
[edit]
[-] netstat
[edit]
[-] slabtop
[edit]
[-] chgrp
[edit]
[-] sg_bg_ctl
[edit]
[-] byobu-select-profile
[edit]
[-] soelim
[edit]
[-] gencnval
[edit]
[-] ipcmk
[edit]
[-] btrfs-find-root
[edit]
[-] popbugs
[edit]
[-] delpart
[edit]
[-] pyhtmlizer3
[edit]
[-] showconsolefont
[edit]
[-] lsattr
[edit]
[-] setfacl
[edit]
[-] mysql_secure_installation
[edit]
[-] ifnames
[edit]
[-] zgrep
[edit]
[-] dzgrep
[edit]
[-] scsi_readcap
[edit]
[-] ubuntu-advantage
[edit]
[-] hexdump
[edit]
[-] dirmngr-client
[edit]
[-] byobu-prompt
[edit]
[-] mysql_ssl_rsa_setup
[edit]
[-] lsphp
[edit]
[-] column
[edit]
[-] gdparttopng
[edit]
[-] gawk
[edit]
[-] flock
[edit]
[-] dash
[edit]
[-] grub-fstest
[edit]
[-] pkgdata
[edit]
[-] pro
[edit]
[-] pydoc3
[edit]
[-] faillog
[edit]
[-] ptargrep
[edit]
[-] cksum
[edit]
[-] debconf-show
[edit]
[-] debman
[edit]
[-] mysqlslap
[edit]
[-] snapctl
[edit]
[-] imunify-agent-proxy
[edit]
[-] imunify360-command-wrapper
[edit]
[-] traceroute6
[edit]
[-] getconf
[edit]
[-] mono-hang-watchdog
[edit]
[-] msgcomm
[edit]
[-] bdftogd
[edit]
[-] ntfsls
[edit]
[-] tzselect
[edit]
[-] apport-collect
[edit]
[-] readelf
[edit]
[-] gcov-9
[edit]
[-] prtstat
[edit]
[-] mtr
[edit]
[-] mv
[edit]
[-] g++-9
[edit]
[-] dovecot-sysreport
[edit]
[-] sginfo
[edit]
[-] rpm
[edit]
[-] nslookup
[edit]
[-] dpkg-architecture
[edit]
[-] byobu-launcher-install
[edit]
[-] dirname
[edit]
[-] pure-pwconvert
[edit]
[-] loadkeys
[edit]
[-] select-editor
[edit]
[-] file
[edit]
[-] dnssec-keygen
[edit]
[-] choom
[edit]
[-] pastebinit
[edit]
[-] pl2pm
[edit]
[-] sosreport
[edit]
[-] ssh-add
[edit]
[-] apt-cache
[edit]
[-] su
[edit]
[-] sos
[edit]
[-] xdg-user-dirs-update
[edit]
[-] c99
[edit]
[-] patch
[edit]
[-] gcov-dump
[edit]
[-] mtrace
[edit]
[-] run-one-until-failure
[edit]
[-] lwp-request
[edit]
[-] pdb3
[edit]
[-] gdbus
[edit]
[-] x86_64-linux-gnu-cpp
[edit]
[-] aa-enabled
[edit]
[-] timedatectl
[edit]
[-] dpkg-shlibdeps
[edit]
[-] lua
[edit]
[-] base32
[edit]
[-] mysqldumpslow
[edit]
[-] eu-readelf
[edit]
[-] twistd3
[edit]
[-] scsi_logging_level
[edit]
[-] byobu-shell
[edit]
[-] chown
[edit]
[-] cloud-init
[edit]
[-] pure-pw
[edit]
[-] ntfsfix
[edit]
[-] systemd
[edit]
[-] python3
[edit]
[-] ea-php74-pecl
[edit]
[-] grub-editenv
[edit]
[-] uconv
[edit]
[-] stat
[edit]
[-] scandeps
[edit]
[-] gettextize
[edit]
[-] lua5.3
[edit]
[-] gdbmtool
[edit]
[-] linux32
[edit]
[-] landscape-sysinfo
[edit]
[-] sort-dctrl
[edit]
[-] h2xs
[edit]
[-] ea-php80
[edit]
[-] btrfstune
[edit]
[-] ntfsinfo
[edit]
[-] giftogd2
[edit]
[-] manifest
[edit]
[-] expand
[edit]
[-] dgrep
[edit]
[-] ssh-import-id-lp
[edit]
[-] ea-php73-pecl
[edit]
[-] ubuntu-security-status
[edit]
[-] lz4
[edit]
[-] montage
[edit]
[-] cpan
[edit]
[-] aa-exec
[edit]
[-] vmware-vmblock-fuse
[edit]
[-] sar
[edit]
[-] x86_64-linux-gnu-cpp-9
[edit]
[-] psfxtable
[edit]
[-] autoconf
[edit]
[-] pslog
[edit]
[-] jsondiff
[edit]
[-] imunify-antivirus
[edit]
[-] setlogcons
[edit]
[-] podchecker
[edit]
[-] ghostscript
[edit]
[-] wget
[edit]
[-] pstree
[edit]
[-] sg_reset
[edit]
[-] mcookie
[edit]
[-] eu-size
[edit]
[-] getfacl
[edit]
[-] ptx
[edit]
[-] fwupdmgr
[edit]
[-] sg_start
[edit]
[-] unlzma
[edit]
[-] pbputs
[edit]
[-] htdigest
[edit]
[-] dir
[edit]
[-] ucfr
[edit]
[-] xzless
[edit]
[-] gdbmtool-nolfs
[edit]
[-] gresource
[edit]
[-] bootctl
[edit]
[-] pkg-config
[edit]
[-] vmware-namespace-cmd
[edit]
[-] newgrp
[edit]
[-] last
[edit]
[-] diff
[edit]
[-] lessfile
[edit]
[-] dpkg-gencontrol
[edit]
[-] xzmore
[edit]
[-] unattended-upgrade
[edit]
[-] x86_64-linux-gnu-objdump
[edit]
[-] gcc-9
[edit]
[-] myisamchk
[edit]
[-] dh_autotools-dev_restoreconfig
[edit]
[-] json_xs
[edit]
[-] dpkg-parsechangelog
[edit]
[-] time
[edit]
[-] fc-cache
[edit]
[-] dbus-update-activation-environment
[edit]
[-] x86_64-linux-gnu-size
[edit]
[-] findmnt
[edit]
[-] identify
[edit]
[-] lwp-download
[edit]
[-] iscsiadm
[edit]
[-] glib-compile-resources
[edit]
[-] col5
[edit]
[-] sg_logs
[edit]
[-] install
[edit]
[-] mlock
[edit]
[-] dpkg-vendor
[edit]
[-] rnano
[edit]
[-] makeconv
[edit]
[-] ntfscluster
[edit]
[-] pure-statsdecode
[edit]
[-] unicode_start
[edit]
[-] apt-config
[edit]
[-] zip
[edit]
[-] less
[edit]
[-] sg_requests
[edit]
[-] pinentry
[edit]
[-] mawk
[edit]
[-] dnssec-signzone
[edit]
[-] dman
[edit]
[-] run-this-one
[edit]
[-] gencat
[edit]
[-] links
[edit]
[-] ibd2sdi
[edit]
[-] dpkg-scanpackages
[edit]
[-] gpgconf
[edit]
[-] setupcon
[edit]
[-] sg_unmap
[edit]
[-] ntfswipe
[edit]
[-] pdb2
[edit]
[-] chage
[edit]
[-] debget
[edit]
[-] rsync
[edit]
[-] perlml
[edit]
[-] iptables-xml
[edit]
[-] pkexec
[edit]
[-] debconf-copydb
[edit]
[-] gobject-query
[edit]
[-] chattr
[edit]
[-] shuf
[edit]
[-] sg_rdac
[edit]
[-] grotty
[edit]
[-] byobu-keybindings
[edit]
[-] ea-php82-pecl
[edit]
[-] sgm_dd
[edit]
[-] man
[edit]
[-] glib-genmarshal
[edit]
[-] grep-debtags
[edit]
[-] lnstat
[edit]
[-] ea-php83
[edit]
[-] uname
[edit]
[-] strace-log-merge
[edit]
[-] mt-gnu
[edit]
[-] edit
[edit]
[-] webpng
[edit]
[-] sg_format
[edit]
[-] pager
[edit]
[-] printf
[edit]
[-] xgettext
[edit]
[-] setarch
[edit]
[-] tar
[edit]
[-] x86_64-linux-gnu-strip
[edit]
[-] awk
[edit]
[-] csplit
[edit]
[-] rtstat
[edit]
[-] c89
[edit]
[-] truncate
[edit]
[-] ntfsfallocate
[edit]
[-] x86_64-linux-gnu-ld.bfd
[edit]
[-] ntfscmp
[edit]
[-] mcdiff
[edit]
[-] ea-php80-pecl
[edit]
[-] sg_read_buffer
[edit]
[-] mcedit
[edit]
[-] pygettext2.7
[edit]
[-] dnsdomainname
[edit]
[-] sg_vpd
[edit]
[-] prlimit
[edit]
[-] sprof
[edit]
[-] x86_64-linux-gnu-gcc-nm-9
[edit]
[-] openvt
[edit]
[-] gtbl
[edit]
[-] lessecho
[edit]
[-] gm
[edit]
[-] bzcat
[edit]
[-] named-checkconf
[edit]
[-] sg_write_verify
[edit]
[-] vim.basic
[edit]
[-] systemd-tmpfiles
[edit]
[-] msgunfmt
[edit]
[-] sg_decode_sense
[edit]
[-] pkcheck
[edit]
[-] growpart
[edit]
[-] enchant-lsmod-2
[edit]
[-] ld.gold
[edit]
[-] linux-update-symlinks
[edit]
[-] pyversions
[edit]
[-] cut
[edit]
[-] infotocap
[edit]
[-] colcrt
[edit]
[-] luac
[edit]
[-] usbreset
[edit]
[-] lzless
[edit]
[-] ipcrm
[edit]
[-] fakeroot-tcp
[edit]
[-] sg_compare_and_write
[edit]
[-] debugedit
[edit]
[-] gcc
[edit]
[-] systemd-tty-ask-password-agent
[edit]
[-] curl
[edit]
[-] whatis
[edit]
[-] yes
[edit]
[-] printafm
[edit]
[-] dumpkeys
[edit]
[-] loginctl
[edit]
[-] rgrep
[edit]
[-] gpg
[edit]
[-] linux-version
[edit]
[-] chacl
[edit]
[-] pycompile
[edit]
[-] vi
[edit]
[-] systemd-hwdb
[edit]
[-] debconf-apt-progress
[edit]
[-] mesg
[edit]
[-] systemd-escape
[edit]
[-] kmodsign
[edit]
[-] chardetect3
[edit]
[-] nstat
[edit]
[-] dbus-cleanup-sockets
[edit]
[-] perldoc
[edit]
[-] automake
[edit]
[-] pic
[edit]
[-] sqlite3
[edit]
[-] rpmsign
[edit]
[-] c99-gcc
[edit]
[-] xxd
[edit]
[-] run-one
[edit]
[-] cvtsudoers
[edit]
[-] smistrip
[edit]
[-] sbkeysync
[edit]
[-] systemd-detect-virt
[edit]
[-] fmt
[edit]
[-] mt
[edit]
[-] sg_sat_set_features
[edit]
[-] gsbj
[edit]
[-] tkconch3
[edit]
[-] byobu-quiet
[edit]
[-] scsi_mandat
[edit]
[-] eatmydata
[edit]
[-] elinks
[edit]
[-] splitfont
[edit]
[-] migrate-pubring-from-classic-gpg
[edit]
[-] pldd
[edit]
[-] mysql
[edit]
[-] journalctl
[edit]
[-] sha1sum
[edit]
[-] mktemp
[edit]
[-] traceroute6.iputils
[edit]
[-] users
[edit]
[-] ps2epsi
[edit]
[-] lwp-dump
[edit]
[-] h2load
[edit]
[-] dmesg
[edit]
[-] procan
[edit]
[-] loadunimap
[edit]
[-] sg_rep_zones
[edit]
[-] dpkg-scansources
[edit]
[-] purge-old-kernels
[edit]
[-] vmware-alias-import
[edit]
[-] rpmkeys
[edit]
[-] gd2togif
[edit]
[-] dzfgrep
[edit]
[-] rpmspec
[edit]
[-] corelist
[edit]
[-] stty
[edit]
[-] setleds
[edit]
[-] uptime
[edit]
[-] pcre2test
[edit]
[-] netkit-ftp
[edit]
[-] apxs
[edit]
[-] ncursesw5-config
[edit]
[-] fc-match
[edit]
[-] hd
[edit]
[-] gunzip
[edit]
[-] lspci
[edit]
[-] nsupdate
[edit]
[-] dbus-run-session
[edit]
[-] volname
[edit]
[-] git
[edit]
[-] ea-php73-pear
[edit]
[-] ea-php83-pecl
[edit]
[-] touch
[edit]
[-] debconf
[edit]
[-] cli-gacutil
[edit]
[-] gcov
[edit]
[-] byobu-tmux
[edit]
[-] grub-mklayout
[edit]
[-] dbus-send
[edit]
[-] mysqlsh
[edit]
[-] apport-unpack
[edit]
[-] systemd-stdio-bridge
[edit]
[-] udisksctl
[edit]
[-] gtk-builder-tool
[edit]
[-] xml2-config
[edit]
[-] rm
[edit]
[-] gcc-nm-9
[edit]
[-] sg_ses
[edit]
[-] rdma
[edit]
[-] date
[edit]
[-] gsnd
[edit]
[-] gcov-dump-9
[edit]
[-] mysqld_safe
[edit]
[-] sg_stpg
[edit]
[-] pkcon
[edit]
[-] kmod
[edit]
[-] calendar
[edit]
[-] dpkg-name
[edit]
[-] msgattrib
[edit]
[-] dh_autotools-dev_updateconfig
[edit]
[-] tac
[edit]
[-] enc2xs
[edit]
[-] x86_64-linux-gnu-pkg-config
[edit]
[-] x86_64-linux-gnu-g++-9
[edit]
[-] reset
[edit]
[-] pwd
[edit]
[-] bzegrep
[edit]
[-] fc-scan
[edit]
[-] named-nzd2nzf
[edit]
[-] watch
[edit]
[-] fincore
[edit]
[-] from
[edit]
[-] systemd-delta
[edit]
[-] lzdiff
[edit]
[-] sensible-browser
[edit]
[-] prove
[edit]
[-] preunzip
[edit]
[-] ea-php74
[edit]
[-] sg_prevent
[edit]
[-] autom4te
[edit]
[-] find-dbgsym-packages
[edit]
[-] busctl
[edit]
[-] sg_sat_phy_event
[edit]
[-] sqldiff
[edit]
[-] mysql_upgrade
[edit]
[-] x86_64-linux-gnu-python2.7-config
[edit]
[-] dpkg-divert
[edit]
[-] od
[edit]
[-] ntfsdecrypt
[edit]
[-] tput
[edit]
[-] wdctl
[edit]
[-] sensible-editor
[edit]
[-] ping
[edit]
[-] routef
[edit]
[-] dnssec-importkey
[edit]
[-] prezip-bin
[edit]
[-] dfu-tool
[edit]
[-] msginit
[edit]
[-] gettext.sh
[edit]
[-] os-prober
[edit]
[-] bzdiff
[edit]
[-] lastb
[edit]
[-] lesspipe
[edit]
[-] infobrowser
[edit]
[-] aspell
[edit]
[-] sg_test_rwbuf
[edit]
[-] resizepart
[edit]
[-] sadf
[edit]
[-] debconf-communicate
[edit]
[-] byobu-screen
[edit]
[-] sos-collector
[edit]
[-] xzcmp
[edit]
[-] apt
[edit]
[-] linux64
[edit]
[-] python3.8
[edit]
[-] toe
[edit]
[-] mysql-secret-store-login-path
[edit]
[-] tee
[edit]
[-] pydoc2
[edit]
[-] gpic
[edit]
[-] objcopy
[edit]
[-] mono-sgen
[edit]
[-] col
[edit]
[-] mksquashfs
[edit]
[-] add-apt-repository
[edit]
[-] msgfilter
[edit]
[-] fc-cat
[edit]
[-] mandb
[edit]
[-] ping6
[edit]
[-] fwupdtool
[edit]
[-] free
[edit]
[-] finalrd
[edit]
[-] whiptail
[edit]
[-] x86_64-linux-gnu-ld
[edit]
[-] mysqladmin
[edit]
[-] ispell-wrapper
[edit]
[-] b2sum
[edit]
[-] gcc-ar
[edit]
[-] debconf-set-selections
[edit]
[-] sg_read_block_limits
[edit]
[-] byobu-layout
[edit]
[-] dpkg
[edit]
[-] cpio
[edit]
[-] static-sh
[edit]
[-] zlib_decompress
[edit]
[-] pdb2.7
[edit]
[-] mysqlimport
[edit]
[-] xdg-user-dir
[edit]
[-] zipdetails
[edit]
[-] aclocal-1.16
[edit]
[-] byobu-enable
[edit]
[-] zipcloak
[edit]
[-] sudo
[edit]
[-] udevadm
[edit]
[-] socat
[edit]
[-] autoscan
[edit]
[-] link
[edit]
[-] xzfgrep
[edit]
[-] setfont
[edit]
[-] lsinitramfs
[edit]
[-] red
[edit]
[-] gslj
[edit]
[-] byobu-disable
[edit]
[-] eu-objdump
[edit]
[-] setpci
[edit]
[-] shasum
[edit]
[-] apt-add-repository
[edit]
[-] gtk-query-settings
[edit]
[-] sar.sysstat
[edit]
[-] sg_inq
[edit]
[-] lastlog
[edit]
[-] ntfsmove
[edit]
[-] cmp
[edit]
[-] keep-one-running
[edit]
[-] arpaname
[edit]
[-] gtester
[edit]
[-] logger
[edit]
[-] VGAuthService
[edit]
[-] mkfifo
[edit]
[-] systemd-inhibit
[edit]
[-] myisamlog
[edit]
[-] lchsh
[edit]
[-] uapi
[edit]
[-] keyctl
[edit]
[-] mcview
[edit]
[-] ncurses6-config
[edit]
[-] imunify360-agent
[edit]
[-] miniterm
[edit]
[-] oem-getlogs
[edit]
[-] msgcmp
[edit]
[-] cpp-9
[edit]
[-] grub-mknetdir
[edit]
[-] filan
[edit]
[-] luac5.3
[edit]
[-] python3-config
[edit]
[-] python2.7
[edit]
[-] x86_64-linux-gnu-gcc-nm
[edit]
[-] libpng-config
[edit]
[-] localectl
[edit]
[-] word-list-compress
[edit]
[-] gold
[edit]
[-] imunify-service
[edit]
[-] captoinfo
[edit]
[-] lsipc
[edit]
[-] pcre2-config
[edit]
[-] cal
[edit]
[-] ea-php82-pear
[edit]
[-] mkpasswd
[edit]
[-] who
[edit]
[-] sg_opcodes
[edit]
[-] btrfsck
[edit]
[-] passwd
[edit]
[-] xzegrep
[edit]
[-] basename
[edit]
[-] vmstat
[edit]
[-] x86_64-linux-gnu-gcc-9
[edit]
[-] cloud-init-per
[edit]
[-] cpan-mirrors
[edit]
[-] h2ph
[edit]
[-] pip
[edit]
[-] lz4c
[edit]
[-] grub-script-check
[edit]
[-] grub-menulst2cfg
[edit]
[-] sg_read_long
[edit]
[-] instmodsh
[edit]
[-] grub-mkrescue
[edit]
[-] findrule
[edit]
[-] eu-findtextrel
[edit]
[-] sg_xcopy
[edit]
[-] glib-gettextize
[edit]
[-] dbiproxy
[edit]
[-] pygettext3
[edit]
[-] dbus-daemon
[edit]
[-] md5sum
[edit]
[-] pdnsutil
[edit]
[-] rpmgraph
[edit]
[-] autoupdate
[edit]
[-] mount
[edit]
[-] byobu-ulevel
[edit]
[-] x86_64-linux-gnu-elfedit
[edit]
[-] mysqldump
[edit]
[-] unexpand
[edit]
[-] fgconsole
[edit]
[-] taskset
[edit]
[-] lesskey
[edit]
[-] tsort
[edit]
[-] wc
[edit]
[-] lsblk
[edit]
[-] at
[edit]
[-] debmany
[edit]
[-] cli
[edit]
[-] ps2txt
[edit]
[-] lwp-mirror
[edit]
[-] i386
[edit]
[-] zfgrep
[edit]
[-] tmux
[edit]
[-] col1
[edit]
[-] bzfgrep
[edit]
[-] x86_64-linux-gnu-dwp
[edit]
[-] gdbm_dump-nolfs
[edit]
[-] mysqlpump
[edit]
[-] nsec3hash
[edit]
[-] degrep
[edit]
[-] lslogins
[edit]
[-] nghttp
[edit]
[-] sg_seek
[edit]
[-] lexgrog
[edit]
[-] sg_luns
[edit]
[-] run-one-constantly
[edit]
[-] jsonpatch
[edit]
[-] byobu-enable-prompt
[edit]
[-] codepage
[edit]
[-] script
[edit]
[-] sg_write_buffer
[edit]
[-] rename.ul
[edit]
[-] pdf2dsc
[edit]
[-] zipinfo
[edit]
[-] vim
[edit]
[-] mmcli
[edit]
[-] dd
[edit]
[-] pygettext2
[edit]
[-] gpasswd
[edit]
[-] dnssec-dsfromkey
[edit]
[-] unlink
[edit]
[-] download-mibs
[edit]
[-] apt-ftparchive
[edit]
[-] head
[edit]
[-] getent
[edit]
[-] cpan5.30-x86_64-linux-gnu
[edit]
[-] sbattach
[edit]
[-] rlogin
[edit]
[-] telnet.netkit
[edit]
[-] df
[edit]
[-] dh_python2
[edit]
[-] gs
[edit]
[-] git-receive-pack
[edit]
[-] rpm2archive
[edit]
[-] rcp
[edit]
[-] zone2sql
[edit]
[-] fc-pattern
[edit]
[-] x86_64-pc-linux-gnu-pkg-config
[edit]
[-] json_reformat
[edit]
[-] rvim
[edit]
[-] pbget
[edit]
[-] POST
[edit]
[-] rmdir
[edit]
[-] dbxtool
[edit]
[-] png-fix-itxt
[edit]
[-] eu-nm
[edit]
[-] lsof
[edit]
[-] gcov-tool-9
[edit]
[-] cpansign
[edit]
[-] dpkg-genchanges
[edit]
[-] dpkg-source
[edit]
[-] setkeycodes
[edit]
[-] diff3
[edit]
[-] busybox
[edit]
[-] pngtogd
[edit]
[-] libpng16-config
[edit]
[-] zmore
[edit]
[-] json_pp
[edit]
[-] gdbm_dump
[edit]
[-] sh
[edit]
[-] bzgrep
[edit]
[-] join-dctrl
[edit]
[-] eu-elfcompress
[edit]
[-] json_verify
[edit]
[-] col7
[edit]
[-] usb-devices
[edit]
[-] sg_emc_trespass
[edit]
[-] uuidparse
[edit]
[-] sg_stream_ctl
[edit]
[-] vimtutor
[edit]
[-] lzgrep
[edit]
[-] ea-php82
[edit]
[-] sudoreplay
[edit]
[-] ckeygen3
[edit]
[-] strip
[edit]
[-] sotruss
[edit]
[-] genbrk
[edit]
[-] atrm
[edit]
[-] htop
[edit]
[-] sync
[edit]
[-] uuidgen
[edit]
[-] ld.bfd
[edit]
[-] dpkg-trigger
[edit]
[-] atq
[edit]
[-] named-checkzone
[edit]
[-] debconf-get-selections
[edit]
[-] m4
[edit]
[-] zless
[edit]
[-] install-info
[edit]
[-] col6
[edit]
[-] apt-mark
[edit]
[-] lsmem
[edit]
[-] perlivp
[edit]
[-] unzip
[edit]
[-] quotasync
[edit]
[-] cloud-id
[edit]
[-] snice
[edit]
[-] btrfs-image
[edit]
[-] jsonpatch-jsondiff
[edit]
[-] dpkg-distaddfile
[edit]
[-] vdir
[edit]
[-] split
[edit]
[-] rpcinfo
[edit]
[-] sg_rbuf
[edit]
[-] locale
[edit]
[-] grub-glue-efi
[edit]
[-] gacutil
[edit]
[-] gdcmpgif
[edit]
[-] ex
[edit]
[-] zipgrep
[edit]
[-] telnet
[edit]
[-] pdb3.8
[edit]
[-] rview
[edit]
[-] x86_64-linux-gnu-gold
[edit]
[-] sbsign
[edit]
[-] mogrify
[edit]
[-] pkmon
[edit]
[-] sbverify
[edit]
[-] dpigs
[edit]
[-] gpg-connect-agent
[edit]
[-] iconv
[edit]
[-] rpmdb
[edit]
[-] x86_64-linux-gnu-gcc
[edit]
[-] byobu
[edit]
[-] infocmp
[edit]
[-] sg_scan
[edit]
[-] rev
[edit]
[-] dpkg-deb
[edit]
[-] namei
[edit]
[-] grub-ntldr-img
[edit]
[-] ea-php81-pear
[edit]
[-] lua50
[edit]
[-] bash
[edit]
[-] psfgettable
[edit]
[-] ubuntu-bug
[edit]
[-] kbxutil
[edit]
[-] ucf
[edit]
[-] doveadm
[edit]
[-] logresolve
[edit]
[-] systemd-umount
[edit]
[-] sftp
[edit]
[-] dzegrep
[edit]
[-] scsi_ready
[edit]
[-] dbus-uuidgen
[edit]
[-] sg_rtpg
[edit]
[-] mountpoint
[edit]
[-] lzma
[edit]
[-] gtester-report
[edit]
[-] gsettings
[edit]
[-] gslp
[edit]
[-] networkctl
[edit]
[-] grub-mkstandalone
[edit]
[-] libnetcfg
[edit]
[-] gsdj
[edit]
[-] objdump
[edit]
[-] apt-key
[edit]
[-] dig
[edit]
[-] php
[edit]
[-] perror
[edit]
[-] pip3
[edit]
[-] gpg2
[edit]
[-] locale-check
[edit]
[-] autoreconf
[edit]
[-] tracepath
[edit]
[-] elfedit
[edit]
[-] sed
[edit]
[-] chcon
[edit]
[-] manpath
[edit]
[-] setsid
[edit]
[-] geqn
[edit]
[-] gpgsm
[edit]
[-] gdk-pixbuf-csource
[edit]
[-] tempfile
[edit]
[-] znew
[edit]
[-] size
[edit]
[-] zforce
[edit]
[-] 2to3-2.7
[edit]
[-] grub-file
[edit]
[-] scriptreplay
[edit]
[-] unzipsfx
[edit]
[-] sg_read_attr
[edit]
[-] host
[edit]
[-] eu-strings
[edit]
[-] systemd-machine-id-setup
[edit]
[-] vim.tiny
[edit]
[-] select-default-iwrap
[edit]
[-] tr
[edit]
[-] dvipdf
[edit]
[-] grub-mkimage
[edit]
[-] nice
[edit]
[-] gio-querymodules
[edit]
[-] utmpdump
[edit]
[-] gcc-ranlib
[edit]
[-] fwupdate
[edit]
[-] x86_64-linux-gnu-g++
[edit]
[-] derb
[edit]
[-] mysql_migrate_keyring
[edit]
[-] sg_rmsn
[edit]
[-] nohup
[edit]
[-] pcre2grep
[edit]
[-] info
[edit]
[-] dpkg-split
[edit]
[-] byobu-ctrl-a
[edit]
[-] catchsegv
[edit]
[-] vmware-toolbox-cmd
[edit]
[-] zabbix_sender
[edit]
[-] false
[edit]
[-] systemd-cgls
[edit]
[-] msggrep
[edit]
[-] sg_write_long
[edit]
[-] hostnamectl
[edit]
[-] vm-support
[edit]
[-] x86_64-linux-gnu-gprof
[edit]
[-] realpath
[edit]
[-] whois
[edit]
[-] nc
[edit]
[-] whereis
[edit]
[-] gio
[edit]
[-] ld
[edit]
[-] pdf2ps
[edit]
[-] pollinate
[edit]
[-] deb-systemd-invoke
[edit]
[-] ntfsrecover
[edit]
[-] vmhgfs-fuse
[edit]
[-] pydoc3.8
[edit]
[-] run-with-aspell
[edit]
[-] dnssec-keyfromlabel
[edit]
[-] c++filt
[edit]
[-] byobu-select-session
[edit]
[-] encguess
[edit]
[-] deb-systemd-helper
[edit]
[-] msgcat
[edit]
[-] write
[edit]
[-] gdbus-codegen
[edit]
[-] env
[edit]
[-] sbvarsign
[edit]
[-] sg_safte
[edit]
[-] dh_bash-completion
[edit]
[-] ps2ascii
[edit]
[-] arch
[edit]
[-] rpcgen
[edit]
[-] snmpkey
[edit]
[-] mc
[edit]
[-] pod2text
[edit]
[-] expiry
[edit]
[-] eu-unstrip
[edit]
[-] chsh
[edit]
[-] systemd-id128
[edit]
[-] debconf-escape
[edit]
[-] GET
[edit]
[-] msgconv
[edit]
[-] sg_wr_mode
[edit]
[-] lchfn
[edit]
[-] debconf-loadtemplate
[edit]
[-] hwe-support-status
[edit]
[-] sg_sync
[edit]
[-] cifsiostat
[edit]
[-] byobu-reconnect-sockets
[edit]
[-] as
[edit]
[-] ischroot
[edit]
[-] pdns_control
[edit]
[-] convert
[edit]
[-] dnssec-cds
[edit]
[-] sg_turs
[edit]
[+]
X11
[-] plymouth
[edit]
[-] vmware-checkvm
[edit]
[-] sg_map26
[edit]
[-] mapscrn
[edit]
[-] groff
[edit]
[-] ncal
[edit]
[-] named-compilezone
[edit]
[-] faked-sysv
[edit]
[-] grops
[edit]
[-] brotli
[edit]
[-] sg_get_lba_status
[edit]
[-] kbdinfo
[edit]
[-] sha256sum
[edit]
[-] ucfq
[edit]
[-] xmlwf
[edit]
[-] x86_64-linux-gnu-python3-config
[edit]
[-] pbput
[edit]
[-] gcc-ar-9
[edit]
[-] dpkg-buildpackage
[edit]
[-] dbiprof
[edit]
[-] lsb_release
[edit]
[-] expr
[edit]
[-] py3clean
[edit]
[-] pfbtopfa
[edit]
[-] x86_64-linux-gnu-objcopy
[edit]
[-] lzegrep
[edit]
[-] echo
[edit]
[-] pod2markdown
[edit]
[-] pod2man
[edit]
[-] domainname
[edit]
[-] ps2pdf14
[edit]
[-] on_ac_power
[edit]
[-] batch
[edit]
[-] vmware-vgauth-cmd
[edit]
[-] umount
[edit]
[-] which-pkg-broke-build
[edit]
[-] c89-gcc
[edit]
[-] xz
[edit]
[-] gpgsplit
[edit]
[-] ntfscat
[edit]
[-] display
[edit]
[-] ctail
[edit]
[-] doveconf
[edit]
[-] lzfgrep
[edit]
[-] symcryptrun
[edit]
[-] apport-cli
[edit]
[-] uniq
[edit]
[-] sg_sanitize
[edit]
[-] fuser
[edit]
[-] bc
[edit]
[-] usbhid-dump
[edit]
[-] gencfu
[edit]
[-] grog
[edit]
[-] automake-1.16
[edit]
[-] factor
[edit]
[-] pf2afm
[edit]
[-] tload
[edit]
[-] eu-addr2line
[edit]
[-] skill
[edit]
[-] innochecksum
[edit]
[-] systemd-run
[edit]
[-] psfaddtable
[edit]
[-] networkd-dispatcher
[edit]
[-] jsonpointer
[edit]
[-] sg_sat_identify
[edit]
[-] named-journalprint
[edit]
[-] pygettext3.8
[edit]
[-] ec2metadata
[edit]
[-] grub-mkpasswd-pbkdf2
[edit]
[-] systemd-cgtop
[edit]
[-] ionice
[edit]
[-] sha224sum
[edit]
[-] podselect
[edit]
[-] python2.7-config
[edit]
[-] sgp_dd
[edit]
[-] x86_64-linux-gnu-gcc-ranlib-9
[edit]
[-] enchant-2
[edit]
[-] chardet3
[edit]
[-] systemctl
[edit]
[-] ncurses5-config
[edit]
[-] x86_64-linux-gnu-gcov
[edit]
[-] ngettext
[edit]
[-] fold
[edit]
[-] mysqlshow
[edit]
[-] eu-strip
[edit]
[-] byobu-janitor
[edit]
[-] sg
[edit]
[-] addpart
[edit]
[-] ssh-copy-id
[edit]
[-] delv
[edit]
[-] glib-compile-schemas
[edit]
[-] cpapi1
[edit]
[-] groups
[edit]
[-] ea-php74-pear
[edit]
[-] gzip
[edit]
[-] zipsplit
[edit]
[-] hostid
[edit]
[-] twist3
[edit]
[-] ls
[edit]
[-] sg_timestamp
[edit]
[-] distro-info
[edit]
[-] clear_console
[edit]
[-] gzexe
[edit]
[-] tbl-dctrl
[edit]
[-] eu-make-debug-archive
[edit]
[-] funzip
[edit]
[-] autoheader
[edit]
[-] sum
[edit]
[-] lshw
[edit]
[-] sw-engine
[edit]
[-] renice
[edit]
[-] ps2pdf12
[edit]
[-] msgexec
[edit]
[-] x86_64-linux-gnu-gcc-ar-9
[edit]
[-] annotate
[edit]
[-] apt-cdrom
[edit]
[-] localedef
[edit]
[-] gdk-pixbuf-pixdata
[edit]
[-] boltctl
[edit]
[-] du
[edit]
[-] nano
[edit]
[-] piconv
[edit]
[-] mk_modmap
[edit]
[-] linux-check-removal
[edit]
[-] regexp-assemble
[edit]
[-] addr2line
[edit]
[-] killall
[edit]
[-] gpg-agent
[edit]
[-] systemd-analyze
[edit]
[-] egrep
[edit]
[-] ulockmgr_server
[edit]
[-] bunzip2
[edit]
[-] x86_64-linux-gnu-nm
[edit]
[-] ptar
[edit]
[-] ps2pdf13
[edit]
[-] debian-distro-info
[edit]
[-] nl
[edit]
[-] unmkinitramfs
[edit]
[-] sg_read
[edit]
[-] zegrep
[edit]
[-] pngtogd2
[edit]
[-] openssl
[edit]
[-] gdtopng
[edit]
[-] named-rrchecker
[edit]
[-] sha384sum
[edit]
[-] sg_readcap
[edit]
[-] netcat
[edit]
[-] aclocal
[edit]
[-] debconf-getlang
[edit]
[-] pico
[edit]
[-] x86_64-linux-gnu-as
[edit]
[-] perlthanks
[edit]
[-] gtk-encode-symbolic-svg
[edit]
[-] byobu-silent
[edit]
[-] x86_64-linux-gnu-gcov-dump-9
[edit]
[-] bsd-write
[edit]
[-] sg_sat_read_gplog
[edit]
[-] troff
[edit]
[-] ps2pdfwr
[edit]
[-] peekfd
[edit]
[-] lslocks
[edit]
[-] compose
[edit]
[-] gpgparsemail
[edit]
[-] nc.openbsd
[edit]
[-] tapestat
[edit]
[-] look
[edit]
[-] bzmore
[edit]
[-] ed
[edit]
[-] col2
[edit]
[-] pngfix
[edit]
[-] editor
[edit]
[-] ssh-keygen
[edit]
[-] byobu-select-backend
[edit]
[-] vmware-hgfsclient
[edit]
[-] x86_64-linux-gnu-gcc-ranlib
[edit]
[-] id
[edit]
[-] sleep
[edit]
[-] see
[edit]
[-] check-enhancements
[edit]
[-] unshare
[edit]
[-] resizecons
[edit]
[-] rescan-scsi-bus.sh
[edit]
[-] ss
[edit]
[-] grub-mount
[edit]
[-] x86_64-linux-gnu-readelf
[edit]
[-] gd2copypal
[edit]
[-] print
[edit]
[-] ea-php83-pear
[edit]
[-] x86_64-linux-gnu-gcov-9
[edit]
[-] zone2json
[edit]
[-] sensible-pager
[edit]
[-] lorder
[edit]
[-] gdbm_load
[edit]
[-] py3versions
[edit]
[-] config_data
[edit]
[-] envsubst
[edit]
[-] gpgv
[edit]
[-] cftp3
[edit]
[-] byobu-launch
[edit]
[-] ab
[edit]
[-] tidy_changelog
[edit]
[-] sdiff
[edit]
[-] x86_64-linux-gnu-strings
[edit]
[-] run-parts
[edit]
[-] preconv
[edit]
[-] runcon
[edit]
[-] sg_ses_microcode
[edit]
[-] sg_raw
[edit]
[-] w
[edit]
[-] hostname
[edit]
[-] cpapi2
[edit]
[-] join
[edit]
[-] xzdiff
[edit]
[-] sg_senddiag
[edit]
[-] quota
[edit]
[-] routel
[edit]
[-] dhomepage
[edit]
[-] xauth
[edit]
[-] mysqlcheck
[edit]
[-] ssh-keyscan
[edit]
[-] mtr-packet
[edit]
[-] watchgnupg
[edit]
[-] unicode_stop
[edit]
[-] dfgrep
[edit]
[-] pkaction
[edit]
[-] ln
[edit]
[-] apt-extracttemplates
[edit]
[-] vmware-rpctool
[edit]
[-] gdbm_load-nolfs
[edit]
[-] git-upload-archive
[edit]
[-] x86_64-linux-gnu-gcov-dump
[edit]
[-] gcov-tool
[edit]
[-] md5sum.textutils
[edit]
[-] grep-dctrl
[edit]
[-] lspgpot
[edit]
[-] composite
[edit]
[-] unlz4
[edit]
[-] grub-kbdcomp
[edit]
[-] gd2topng
[edit]
[-] dnssec-verify
[edit]
[-] true
[edit]
[-] byobu-status-detail
[edit]
[-] pod2usage
[edit]
[-] cert-sync
[edit]
[-] gendict
[edit]
[-] vmware-xferlogs
[edit]
[-] lsmod
[edit]
[-] screen
[edit]
[-] xsubpp
[edit]
[-] mysqld_multi
[edit]
[-] printerbanner
[edit]
[-] ipcs
[edit]
[-] ubuntu-distro-info
[edit]
[-] bzip2recover
[edit]
[-] make
[edit]
[-] mpstat
[edit]
[-] catman
[edit]
[-] comm
[edit]
[-] uncompress
[edit]
[-] www-browser
[edit]
[-] lzcat
[edit]
[-] tset
[edit]
[-] sg_verify
[edit]
[-] ping4
[edit]
[-] luac50
[edit]
[-] dpkg-query
[edit]
[-] which
[edit]
[-] pkill
[edit]
[-] precat
[edit]
[-] [
[edit]
[-] x86_64-linux-gnu-gcov-tool-9
[edit]
[-] git-shell
[edit]
[-] grep
[edit]
[-] ltrace
[edit]
[-] ginstall-info
[edit]
[-] psfstriptable
[edit]
[-] fwupdagent
[edit]
[-] col3
[edit]
[-] printenv
[edit]
[-] deallocvt
[edit]
[-] mailmail3
[edit]
[-] rpmverify
[edit]
[-] libtoolize
[edit]
[-] systemd-resolve
[edit]
[-] sg_reassign
[edit]
[-] ul
[edit]
[-] sudoedit
[edit]
[-] mkdir
[edit]
[-] keyring
[edit]
[-] eu-stack
[edit]
[-] wifi-status
[edit]
[-] pcre-config
[edit]
[-] zipnote
[edit]
[-] debconf-mergetemplate
[edit]
[-] zcat
[edit]
[-] x86_64-linux-gnu-python3.8-config
[edit]
[-] pstree.x11
[edit]
[-] mdig
[edit]
[-] perl5.30.0
[edit]
[-] grub-render-label
[edit]