PATH:
usr
/
bin
#!/usr/bin/perl # Copyright (c) 2000, 2017, Oracle and/or its affiliates. # Copyright (c) 2010, 2017, MariaDB Corporation # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU Library General Public # License as published by the Free Software Foundation; version 2 # of the License. # # 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 # Library General Public License for more details. # # You should have received a copy of the GNU Library General Public # License along with this library; if not, write to the Free # Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, # MA 02110-1335 USA use Getopt::Long; use POSIX qw(strftime getcwd); use File::Path qw(mkpath); $|=1; $VER="3.0"; my @defaults_options; # Leading --no-defaults, --defaults-file, etc. $opt_example = 0; $opt_help = 0; $opt_log = undef(); $opt_mysqladmin = "/usr/bin/mariadb-admin"; $opt_mysqld = "/usr/sbin/mariadbd"; $opt_no_log = 0; $opt_password = undef(); $opt_tcp_ip = 0; $opt_user = "root"; $opt_version = 0; $opt_silent = 0; $opt_verbose = 0; $opt_wsrep_new_cluster = 0; my $my_print_defaults_exists= 1; my $logdir= undef(); my ($mysqld, $mysqladmin, $groupids, $homedir, $my_progname); $homedir = $ENV{HOME}; $my_progname = $0; $my_progname =~ s/.*[\/]//; if (defined($ENV{UMASK})) { my $UMASK = $ENV{UMASK}; my $m; my $fmode = "0640"; if(($UMASK =~ m/[^0246]/) || ($UMASK =~ m/^[^0]/) || (length($UMASK) != 4)) { printf("UMASK must be a 3-digit mode with an additional leading 0 to indicate octal.\n"); printf("The first digit will be corrected to 6, the others may be 0, 2, 4, or 6.\n"); } else { $fmode= substr $UMASK, 2, 2; $fmode= "06${fmode}"; } if($fmode != $UMASK) { printf("UMASK corrected from $UMASK to $fmode ...\n"); } $fmode= oct($fmode); umask($fmode); } main(); #### #### main sub routine #### sub main { my $flag_exit= 0; if (!defined(my_which(my_print_defaults))) { # We can't throw out yet, since --version, --help, or --example may # have been given print "WARNING: my_print_defaults command not found.\n"; print "Please make sure you have this command available and\n"; print "in your path. The command is available from the latest\n"; print "MariaDB distribution.\n"; $my_print_defaults_exists= 0; } # Remove leading defaults options from @ARGV while (@ARGV > 0) { last unless $ARGV[0] =~ /^--(?:no-defaults$|(?:defaults-file|defaults-extra-file)=)/; push @defaults_options, (shift @ARGV); } foreach (@defaults_options) { $_ = quote_shell_word($_); } # Add [mysqld_multi] options to front of @ARGV, ready for GetOptions() unshift @ARGV, defaults_for_group('mysqld_multi'); # We've already handled --no-defaults, --defaults-file, etc. if (!GetOptions("help", "example", "version", "mysqld=s", "mysqladmin=s", "user=s", "password=s", "log=s", "no-log", "tcp-ip", "silent", "verbose", "wsrep-new-cluster")) { $flag_exit= 1; } usage() if ($opt_help); if ($opt_verbose && $opt_silent) { print "Both --verbose and --silent have been given. Some of the warnings "; print "will be disabled\nand some will be enabled.\n\n"; } init_log() if (!defined($opt_log)); $groupids = $ARGV[1]; if ($opt_version) { print "$my_progname version $VER by Jani Tolonen\n"; exit(0); } example() if ($opt_example); if ($flag_exit) { print "Error with an option, see $my_progname --help for more info.\n"; exit(1); } if (!defined(my_which(my_print_defaults))) { print "ABORT: Can't find command 'my_print_defaults'.\n"; print "This command is available from the latest MariaDB\n"; print "distribution. Please make sure you have the command\n"; print "in your PATH.\n"; exit(1); } usage() if (!defined($ARGV[0]) || (!($ARGV[0] =~ m/^start$/i) && !($ARGV[0] =~ m/^stop$/i) && !($ARGV[0] =~ m/^reload$/i) && !($ARGV[0] =~ m/^report$/i))); if (!$opt_no_log) { w2log("$my_progname log file version $VER; run: ", "$opt_log", 1, 0); } else { print "$my_progname log file version $VER; run: "; print strftime "%a %b %e %H:%M:%S %Y", localtime; print "\n"; } if (($ARGV[0] =~ m/^start$/i) || ($ARGV[0] =~ m/^reload$/i)) { if (!defined(($mysqld= my_which($opt_mysqld))) && $opt_verbose) { print "WARNING: Couldn't find the default mysqld binary.\n"; print "Tried: $opt_mysqld\n"; print "This is OK, if you are using option \"mysqld=...\" in "; print "groups [mysqldN] separately for each.\n\n"; } if ($ARGV[0] =~ m/^start$/i) { start_mysqlds(); } elsif ($ARGV[0] =~ m/^reload$/i) { reload_mysqlds(); } } else { if (!defined(($mysqladmin= my_which($opt_mysqladmin))) && $opt_verbose) { print "WARNING: Couldn't find the default mysqladmin binary.\n"; print "Tried: $opt_mysqladmin\n"; print "This is OK, if you are using option \"mysqladmin=...\" in "; print "groups [mysqldN] separately for each.\n\n"; } if ($ARGV[0] =~ m/^report$/i) { report_mysqlds(); } else { stop_mysqlds(); } } } # # Quote word for shell # sub quote_shell_word { my ($option)= @_; $option =~ s!([^\w=./-])!\\$1!g; return $option; } #### #### get options for a group #### sub defaults_for_group { my ($group) = @_; return () unless $my_print_defaults_exists; my $com= join ' ', 'my_print_defaults', @defaults_options, $group; my @defaults = `$com`; chomp @defaults; return @defaults; } #### #### Init log file. Check for appropriate place for log file, in the following #### order: my_print_defaults mysqld datadir, /usr/share/mysql #### sub init_log { foreach my $opt (defaults_for_group('--mysqld')) { if ($opt =~ m/^--datadir=(.*)/ && -d "$1" && -w "$1") { $logdir= $1; } } if (!defined($logdir)) { $logdir= "/usr/share/mysql" if (-d "/usr/share/mysql" && -w "/usr/share/mysql"); } if (!defined($logdir)) { # Log file was not specified and we could not log to a standard place, # so log file be disabled for now. if (!$opt_silent) { print "WARNING: Log file disabled. Maybe directory or file isn't writable?\n"; } $opt_no_log= 1; } else { $opt_log= "$logdir/mysqld_multi.log"; } } #### #### Report living and not running MariaDB servers #### sub report_mysqlds { my (@groups, $com, $i, @options, $pec); print "Reporting MariaDB servers\n"; if (!$opt_no_log) { w2log("\nReporting MariaDB servers","$opt_log",0,0); } @groups = &find_groups($groupids); for ($i = 0; defined($groups[$i]); $i++) { $com= get_mysqladmin_options($i, @groups); $com.= " ping >> /dev/null 2>&1"; system($com); $pec = $? >> 8; if ($pec) { print "MariaDB server from group: $groups[$i] is not running\n"; if (!$opt_no_log) { w2log("MariaDB server from group: $groups[$i] is not running", "$opt_log", 0, 0); } } else { print "MariaDB server from group: $groups[$i] is running\n"; if (!$opt_no_log) { w2log("MariaDB server from group: $groups[$i] is running", "$opt_log", 0, 0); } } } if (!$i) { print "No groups to be reported (check your GNRs)\n"; if (!$opt_no_log) { w2log("No groups to be reported (check your GNRs)", "$opt_log", 0, 0); } } } #### #### start multiple servers #### sub start_mysqlds() { my (@groups, $com, $tmp, $i, @options, $j, $mysqld_found, $suffix_found, $info_sent); $suffix_found= 0; if (!$opt_no_log) { w2log("\nStarting MariaDB servers\n","$opt_log",0,0); } else { print "\nStarting MariaDB servers\n"; } @groups = &find_groups($groupids); for ($i = 0; defined($groups[$i]); $i++) { @options = defaults_for_group($groups[$i]); $basedir_found= 0; # The default $mysqld_found= 1; # The default $mysqld_found= 0 if (!length($mysqld)); $com= "$mysqld"; for ($j = 0, $tmp= ""; defined($options[$j]); $j++) { if ("--datadir=" eq substr($options[$j], 0, 10)) { $datadir = $options[$j]; $datadir =~ s/\-\-datadir\=//; eval { mkpath($datadir) }; if ($@) { print "FATAL ERROR: Cannot create data directory $datadir: $!\n"; exit(1); } if (! -d $datadir."/mysql") { if (-w $datadir) { print "\n\nInstalling new database in $datadir\n\n"; $install_cmd="/usr/bin/mysql_install_db "; $install_cmd.="--user=mysql "; $install_cmd.="--datadir=$datadir"; system($install_cmd); } else { print "\n"; print "FATAL ERROR: Tried to create mysqld under group [$groups[$i]],\n"; print "but the data directory is not writable.\n"; print "data directory used: $datadir\n"; exit(1); } } if (! -d $datadir."/mysql") { print "\n"; print "FATAL ERROR: Tried to start mysqld under group [$groups[$i]],\n"; print "but no data directory was found or could be created.\n"; print "data directory used: $datadir\n"; exit(1); } } if ("--mysqladmin=" eq substr($options[$j], 0, 13)) { # catch this and ignore } elsif ("--mysqld=" eq substr($options[$j], 0, 9)) { $options[$j]=~ s/\-\-mysqld\=//; $com= $options[$j]; $mysqld_found= 1; } elsif ("--basedir=" eq substr($options[$j], 0, 10)) { $basedir= $options[$j]; $basedir =~ s/^--basedir=//; $basedir_found= 1; $options[$j]= quote_shell_word($options[$j]); $tmp.= " $options[$j]"; } elsif ("--defaults-group-suffix=" eq substr($options[$j], 0, 24)) { $suffix_found= 1; } else { $options[$j]= quote_shell_word($options[$j]); $tmp.= " $options[$j]"; } } if ($opt_verbose && $com =~ m/\/(mariadbd-safe)$/ && !$info_sent) { print "WARNING: $1 is being used to start mariadbd. In this case you "; print "may need to pass\n\"ledir=...\" under groups [mysqldN] to "; print "$1 in order to find the actual mysqld binary.\n"; print "ledir (library executable directory) should be the path to the "; print "wanted mysqld binary.\n\n"; $info_sent= 1; } if (!$suffix_found) { $com.= " --defaults-group-suffix="; $com.= substr($groups[$i],6); } $com.= $tmp; if ($opt_wsrep_new_cluster) { $com.= " --wsrep-new-cluster"; } $com.= " >> $opt_log 2>&1" if (!$opt_no_log); $com.= " &"; if (!$mysqld_found) { print "\n"; print "FATAL ERROR: Tried to start mysqld under group [$groups[$i]], "; print "but no mysqld binary was found.\n"; print "Please add \"mysqld=...\" in group [mysqld_multi], or add it to "; print "group [$groups[$i]] separately.\n"; exit(1); } if ($basedir_found) { $curdir=getcwd(); chdir($basedir) or die "Can't change to datadir $basedir"; } system($com); if ($basedir_found) { chdir($curdir) or die "Can't change back to original dir $curdir"; } } if (!$i && !$opt_no_log) { w2log("No MariaDB servers to be started (check your GNRs)", "$opt_log", 0, 0); } } #### #### reload multiple servers #### sub reload_mysqlds() { my (@groups, $com, $tmp, $i, @options, $j); if (!$opt_no_log) { w2log("\nReloading MySQL servers\n","$opt_log",0,0); } else { print "\nReloading MySQL servers\n"; } @groups = &find_groups($groupids); for ($i = 0; defined($groups[$i]); $i++) { $mysqld_server = $mysqld; @options = defaults_for_group($groups[$i]); for ($j = 0, $tmp= ""; defined($options[$j]); $j++) { if ("--mysqladmin=" eq substr($options[$j], 0, 13)) { # catch this and ignore } elsif ("--mysqld=" eq substr($options[$j], 0, 9)) { $options[$j] =~ s/\-\-mysqld\=//; $mysqld_server = $options[$j]; } elsif ("--pid-file=" eq substr($options[$j], 0, 11)) { $options[$j] =~ s/\-\-pid-file\=//; $pid_file = $options[$j]; } } $com = "killproc -p $pid_file -HUP $mysqld_server"; system($com); $com = "touch $pid_file"; system($com); } if (!$i && !$opt_no_log) { w2log("No MySQL servers to be reloaded (check your GNRs)", "$opt_log", 0, 0); } } ### #### stop multiple servers #### sub stop_mysqlds() { my (@groups, $com, $i, @options); if (!$opt_no_log) { w2log("\nStopping MariaDB servers\n","$opt_log",0,0); } else { print "\nStopping MariaDB servers\n"; } @groups = &find_groups($groupids); for ($i = 0; defined($groups[$i]); $i++) { $com= get_mysqladmin_options($i, @groups); $com.= " shutdown"; $com.= " >> $opt_log 2>&1" if (!$opt_no_log); $com.= " &"; system($com); } if (!$i && !$opt_no_log) { w2log("No MariaDB servers to be stopped (check your GNRs)", "$opt_log", 0, 0); } } #### #### Sub function for mysqladmin option parsing #### sub get_mysqladmin_options { my ($i, @groups)= @_; my ($mysqladmin_found, $com, $tmp, $j); @options = defaults_for_group($groups[$i]); $mysqladmin_found= 1; # The default $mysqladmin_found= 0 if (!length($mysqladmin)); $com = "$mysqladmin"; $tmp = " -u $opt_user"; if (defined($opt_password)) { my $pw= $opt_password; # Protect single quotes in password $pw =~ s/'/'"'"'/g; $tmp.= " -p'$pw'"; } $tmp.= $opt_tcp_ip ? " -h 127.0.0.1" : ""; for ($j = 0; defined($options[$j]); $j++) { if ("--mysqladmin=" eq substr($options[$j], 0, 13)) { $options[$j]=~ s/\-\-mysqladmin\=//; $com= $options[$j]; $mysqladmin_found= 1; } elsif ((($options[$j] =~ m/^(\-\-socket\=)(.*)$/) && !$opt_tcp_ip) || ($options[$j] =~ m/^(\-\-port\=)(.*)$/)) { $tmp.= " $options[$j]"; } } if (!$mysqladmin_found) { print "\n"; print "FATAL ERROR: Tried to use mysqladmin in group [$groups[$i]], "; print "but no mysqladmin binary was found.\n"; print "Please add \"mysqladmin=...\" in group [mysqld_multi], or "; print "in group [$groups[$i]].\n"; exit(1); } $com.= $tmp; return $com; } # Return a list of option files which can be opened. Similar, but not # identical, to behavior of my_search_option_files() # TODO implement and use my_print_defaults --list-groups instead sub list_defaults_files { my %opt; foreach (@defaults_options) { return () if /^--no-defaults$/; $opt{$1} = $2 if /^--defaults-(extra-file|file)=(.*)$/; } return ($opt{file}) if exists $opt{file}; my @dirs; # same rule as in mysys/my_default.c if ('/etc') { push @dirs, '/etc/my.cnf'; } else { push @dirs, '/etc/my.cnf', '/etc/mysql/my.cnf'; } push @dirs, "$ENV{MYSQL_HOME}/my.cnf" if $ENV{MYSQL_HOME}; push @dirs, $opt{'extra-file'} if $opt{'extra-file'}; push @dirs, "$ENV{HOME}/.my.cnf" if $ENV{HOME}; return @dirs; } # Takes a specification of GNRs (see --help), and returns a list of matching # groups which actually are mentioned in a relevant config file sub find_groups { my ($raw_gids) = @_; my %gids; my @groups; if (defined($raw_gids)) { # Make a hash of the wanted group ids foreach my $raw_gid (split ',', $raw_gids) { # Match 123 or 123-456 my ($start, $end) = ($raw_gid =~ /^\s*(\d+)(?:\s*-\s*(\d+))?\s*$/); $end = $start if not defined $end; if (not defined $start or $end < $start or $start < 0) { print "ABORT: Bad GNR: $raw_gid; see $my_progname --help\n"; exit(1); } foreach my $i ($start .. $end) { # Use $i + 0 to normalize numbers (002 + 0 -> 2) $gids{$i + 0}= 1; } } } my %seen; my @defaults_files = list_defaults_files(); while (@defaults_files) { my $file = shift @defaults_files; next unless defined $file and not $seen{$file}++ and open CONF, '<', $file; while (<CONF>) { if (/^\s*\[\s*(mysqld)(\d+)\s*\]\s*$/) { #warn "Found a group: $1$2\n"; # Use $2 + 0 to normalize numbers (002 + 0 -> 2) if (not defined($raw_gids) or $gids{$2 + 0}) { push @groups, "$1$2"; } } elsif (/^\s*!include\s+(\S.*?)\s*$/) { push @defaults_files, $1; } elsif (/^\s*!includedir\s+(\S.*?)\s*$/) { push @defaults_files, <$1/*.cnf>; } } close CONF; } return @groups; } #### #### w2log: Write to a logfile. #### 1.arg: append to the log file (given string, or from a file. if a file, #### file will be read from $opt_logdir) #### 2.arg: logfile -name (w2log assumes that the logfile is in $opt_logdir). #### 3.arg. 0 | 1, if true, print current date to the logfile. 3. arg will #### be ignored, if 1. arg is a file. #### 4.arg. 0 | 1, if true, first argument is a file, else a string #### sub w2log { my ($msg, $file, $date_flag, $is_file)= @_; my (@data); open (LOGFILE, ">>$opt_log") or die "FATAL: w2log: Couldn't open log file: $opt_log\n"; if ($is_file) { open (FROMFILE, "<$msg") && (@data=<FROMFILE>) && close(FROMFILE) or die "FATAL: w2log: Couldn't open file: $msg\n"; foreach my $line (@data) { print LOGFILE "$line"; } } else { print LOGFILE "$msg"; print LOGFILE strftime "%a %b %e %H:%M:%S %Y", localtime if ($date_flag); print LOGFILE "\n"; } close (LOGFILE); return; } #### #### my_which is used, because we can't assume that every system has the #### which -command. my_which can take only one argument at a time. #### Return values: requested system command with the first found path, #### or undefined, if not found. #### sub my_which { my ($command) = @_; my (@paths, $path); # If the argument is not 'my_print_defaults' then it would be of the format # <absolute_path>/<program> return $command if ($command ne 'my_print_defaults' && -f $command && -x $command); @paths = split(':', $ENV{'PATH'}); foreach $path (@paths) { $path .= "/$command"; return $path if (-f $path && -x $path); } return undef(); } #### #### example #### sub example { print <<EOF; # This is an example of a my.cnf file for $my_progname. # Usually this file is located in home dir ~/.my.cnf or /etc/my.cnf # # SOME IMPORTANT NOTES FOLLOW: # # 1.COMMON USER # # Make sure that the MariaDB user, who is stopping the mysqld services, has # the same password to all MariaDB servers being accessed by $my_progname. # This user needs to have the 'Shutdown_priv' -privilege, but for security # reasons should have no other privileges. It is advised that you create a # common 'multi_admin' user for all MariaDB servers being controlled by # $my_progname. Here is an example how to do it: # # GRANT SHUTDOWN ON *.* TO multi_admin\@localhost IDENTIFIED BY 'password' # # You will need to apply the above to all MariaDB servers that are being # controlled by $my_progname. 'multi_admin' will shutdown the servers # using 'mysqladmin' -binary, when '$my_progname stop' is being called. # # 2.PID-FILE # # If you are using mariadbd-safe to start mariadbd, make sure that every # MariaDB server has a separate pid-file. In order to use mariadbd-safe # via $my_progname, you need to use two options: # # mysqld=/path/to/mariadbd-safe # ledir=/path/to/mariadbd-binary/ # # ledir (library executable directory), is an option that only mariadbd-safe # accepts, so you will get an error if you try to pass it to mysqld directly. # For this reason you might want to use the above options within [mysqld#] # group directly. # # 3.DATA DIRECTORY # # It is NOT advised to run many MariaDB servers within the same data directory. # You can do so, but please make sure to understand and deal with the # underlying caveats. In short they are: # - Speed penalty # - Risk of table/data corruption # - Data synchronising problems between the running servers # - Heavily media (disk) bound # - Relies on the system (external) file locking # - Is not applicable with all table types. (Such as InnoDB) # Trying so will end up with undesirable results. # # 4.TCP/IP Port # # Every server requires one and it must be unique. # # 5.[mysqld#] Groups # # In the example below the first and the fifth mysqld group was # intentionally left out. You may have 'gaps' in the config file. This # gives you more flexibility. # # 6.MariaDB Server User # # You can pass the user=... option inside [mysqld#] groups. This # can be very handy in some cases, but then you need to run $my_progname # as UNIX root. # # 7.A Start-up Manage Script for $my_progname # # In the recent MariaDB distributions you can find a file called # mysqld_multi.server.sh. It is a wrapper for $my_progname. This can # be used to start and stop multiple servers during boot and shutdown. # # You can place the file in /etc/init.d/mysqld_multi.server.sh and # make the needed symbolic links to it from various run levels # (as per Linux/Unix standard). You may even replace the # /etc/init.d/mysql.server script with it. # # Before using, you must create a my.cnf file either in /usr/my.cnf # or /root/.my.cnf and add the [mysqld_multi] and [mysqld#] groups. # # The script can be found from support-files/mysqld_multi.server.sh # in MariaDB distribution. (Verify the script before using) # [mysqld_multi] mysqld = /usr/bin/mariadbd-safe mysqladmin = /usr/bin/mariadb-admin user = multi_admin password = my_password [mysqld2] socket = /tmp/mysql.sock2 port = 3307 pid-file = /var/lib/mysql2/hostname.pid2 datadir = /var/lib/mysql2 language = /usr/share/mysql/mysql/english user = unix_user1 [mysqld3] mysqld = /path/to/mariadbd-safe ledir = /path/to/mariadbd-binary/ mysqladmin = /path/to/mariadb-admin socket = /tmp/mysql.sock3 port = 3308 pid-file = /var/lib/mysql3/hostname.pid3 datadir = /var/lib/mysql3 language = /usr/share/mysql/mysql/swedish user = unix_user2 [mysqld4] socket = /tmp/mysql.sock4 port = 3309 pid-file = /var/lib/mysql4/hostname.pid4 datadir = /var/lib/mysql4 language = /usr/share/mysql/mysql/estonia user = unix_user3 [mysqld6] socket = /tmp/mysql.sock6 port = 3311 pid-file = /var/lib/mysql6/hostname.pid6 datadir = /var/lib/mysql6 language = /usr/share/mysql/mysql/japanese user = unix_user4 EOF exit(0); } #### #### usage #### sub usage { print <<EOF; $my_progname version $VER by Jani Tolonen Description: $my_progname can be used to start, reload, or stop any number of separate mysqld processes running in different TCP/IP ports and UNIX sockets. $my_progname can read group [mysqld_multi] from my.cnf file. You may want to put options mysqld=... and mysqladmin=... there. Since version 2.10 these options can also be given under groups [mysqld#], which gives more control over different versions. One can have the default mysqld and mysqladmin under group [mysqld_multi], but this is not mandatory. Please note that if mysqld or mysqladmin is missing from both [mysqld_multi] and [mysqld#], a group that is tried to be used, $my_progname will abort with an error. $my_progname will search for groups named [mysqld#] from my.cnf (or the given --defaults-extra-file=...), where '#' can be any positive integer starting from 1. These groups should be the same as the regular [mysqld] group, but with those port, socket and any other options that are to be used with each separate mysqld process. The number in the group name has another function; it can be used for starting, reloading, stopping, or reporting any specific mysqld server. Usage: $my_progname [OPTIONS] {start|reload|stop|report} [GNR,GNR,GNR...] or $my_progname [OPTIONS] {start|reload|stop|report} [GNR-GNR,GNR,GNR-GNR,...] The GNR means the group number. You can start, reload, stop or report any GNR, or several of them at the same time. (See --example) The GNRs list can be comma separated or a dash combined. The latter means that all the GNRs between GNR1-GNR2 will be affected. Without GNR argument all the groups found will either be started, reloaded, stopped, or reported. Note that syntax for specifying GNRs must appear without spaces. Options: These options must be given before any others: --no-defaults Do not read any defaults file --defaults-file=... Read only this configuration file, do not read the standard system-wide and user-specific files --defaults-extra-file=... Read this configuration file in addition to the standard system-wide and user-specific files Using: @{[join ' ', @defaults_options]} --example Give an example of a config file with extra information. --help Print this help and exit. --log=... Log file. Full path to and the name for the log file. NOTE: If the file exists, everything will be appended. Using: $opt_log --mysqladmin=... mysqladmin binary to be used for a server shutdown. Since version 2.10 this can be given within groups [mysqld#] Using: $mysqladmin --mysqld=... mariadbd binary to be used. Note that you can give mariadbd-safe to this option also. The options are passed to mysqld. Just make sure you have mariadbd in your PATH or fix mariadbd-safe. Using: $mysqld Please note: Since mysqld_multi version 2.3 you can also give this option inside groups [mysqld#] in ~/.my.cnf, where '#' stands for an integer (number) of the group in question. This will be recognised as a special option and will not be passed to the mysqld. This will allow one to start different mysqld versions with mysqld_multi. --no-log Print to stdout instead of the log file. By default the log file is turned on. --password=... Password for mysqladmin user. --silent Disable warnings. --tcp-ip Connect to the MariaDB server(s) via the TCP/IP port instead of the UNIX socket. This affects stopping and reporting. If a socket file is missing, the server may still be running, but can be accessed only via the TCP/IP port. By default connecting is done via the UNIX socket. --user=... mysqladmin user. Using: $opt_user --verbose Be more verbose. --version Print the version number and exit. --wsrep-new-cluster Bootstrap a cluster. EOF exit(0); }
[+]
..
[-] isppackagesreducer
[edit]
[-] encode_keychange
[edit]
[-] tzselect
[edit]
[-] ipmicmd
[edit]
[-] snmptest
[edit]
[-] idiag-socket-details
[edit]
[-] tload
[edit]
[-] xgettext
[edit]
[-] MagickWand-config
[edit]
[-] pack200
[edit]
[-] xdriinfo
[edit]
[-] whereis
[edit]
[-] c99
[edit]
[-] ea-php73
[edit]
[-] eu-addr2line
[edit]
[-] ps2ascii
[edit]
[-] htdbm
[edit]
[-] x86_64-redhat-linux-g++
[edit]
[-] audit2allow
[edit]
[-] pod2html
[edit]
[-] od
[edit]
[-] machinectl
[edit]
[-] setfacl
[edit]
[-] mysql_upgrade
[edit]
[-] zipgrep
[edit]
[-] c++filt
[edit]
[-] wdctl
[edit]
[-] sigtool
[edit]
[-] loginctl
[edit]
[-] ptardiff
[edit]
[-] strace
[edit]
[-] unalias
[edit]
[-] m4
[edit]
[-] pmstore
[edit]
[-] login
[edit]
[-] b2sum
[edit]
[-] openal-info
[edit]
[-] watchgnupg
[edit]
[-] cfgmaker
[edit]
[-] gpgsplit
[edit]
[-] imh-python3.13
[edit]
[-] recode-sr-latin
[edit]
[-] clsupergid_process
[edit]
[-] gc
[edit]
[-] busctl
[edit]
[-] sg_emc_trespass
[edit]
[-] earlyoom
[edit]
[-] pkla-check-authorization
[edit]
[-] stty
[edit]
[-] garb-systemd
[edit]
[-] easy_install-3.6
[edit]
[-] debuginfod-find
[edit]
[-] cpan-mirrors
[edit]
[-] createlang
[edit]
[-] tcptraceroute
[edit]
[-] sha512sum
[edit]
[-] mysql_plugin
[edit]
[-] sg_ses_microcode
[edit]
[-] look
[edit]
[-] gnroff
[edit]
[-] irb
[edit]
[-] yum-debug-dump
[edit]
[-] podlint
[edit]
[-] pwscore
[edit]
[-] rpminfo
[edit]
[-] systemd-stdio-bridge
[edit]
[-] ld.bfd
[edit]
[-] snmpwalk
[edit]
[-] rpmdev-sum
[edit]
[-] checksctp
[edit]
[-] salt-call
[edit]
[-] ldd
[edit]
[-] sg_read_attr
[edit]
[-] linux32
[edit]
[-] skill
[edit]
[-] script
[edit]
[-] dumpsexp
[edit]
[-] sg_turs
[edit]
[-] setmetamode
[edit]
[-] mariadb-upgrade
[edit]
[-] snmpconf
[edit]
[-] orbd
[edit]
[-] check-binary-files
[edit]
[-] whoami
[edit]
[-] kcare-uname
[edit]
[-] usleep
[edit]
[-] imh-procwatch
[edit]
[-] sg_ses
[edit]
[-] aclocal-1.16
[edit]
[-] desktop-file-install
[edit]
[-] nl-cls-list
[edit]
[-] sctp_darn
[edit]
[-] mpicalc
[edit]
[-] isc-export-config.sh
[edit]
[-] createdb
[edit]
[-] dd
[edit]
[-] nl-qdisc-add
[edit]
[-] gsettings
[edit]
[-] sha1sum
[edit]
[-] sginfo
[edit]
[-] nop
[edit]
[-] colcrt
[edit]
[-] editcap
[edit]
[-] db_upgrade
[edit]
[-] snmpnetstat
[edit]
[-] tcatest
[edit]
[-] grub2-fstest
[edit]
[-] rmdir
[edit]
[-] sedismod
[edit]
[-] nano
[edit]
[-] sedispol
[edit]
[-] protoc-c
[edit]
[-] gtk-query-immodules-3.0-64
[edit]
[-] lsof
[edit]
[-] bootctl
[edit]
[-] erb
[edit]
[-] objectweb-asm-processor
[edit]
[-] tmpwatch
[edit]
[-] mpstat
[edit]
[-] evmctl
[edit]
[-] guile2-tools
[edit]
[-] nf-queue
[edit]
[-] xdg-email
[edit]
[-] snmpping
[edit]
[-] gv2gxl
[edit]
[-] wmf2fig
[edit]
[-] gvpack
[edit]
[-] pmiectl
[edit]
[-] cagefs_enter
[edit]
[-] runcon
[edit]
[-] ea-php70
[edit]
[-] twopi
[edit]
[-] sg_reset_wp
[edit]
[-] nl-class-list
[edit]
[-] protoc-gen-c
[edit]
[-] dconf
[edit]
[-] mysqld_safe_helper
[edit]
[-] sg_map
[edit]
[-] ncat
[edit]
[-] piconv
[edit]
[-] mysql_embedded
[edit]
[-] pg_basebackup
[edit]
[-] sadf
[edit]
[-] xgamma
[edit]
[-] myisam_ftdump
[edit]
[-] iostat
[edit]
[-] gettext
[edit]
[-] ea-php82
[edit]
[-] nl-rule-list
[edit]
[-] preconv
[edit]
[-] nmon
[edit]
[-] lzcat
[edit]
[-] xinput
[edit]
[-] xstdcmap
[edit]
[-] wsrep_sst_common
[edit]
[-] mariadb
[edit]
[-] tr
[edit]
[-] base32
[edit]
[-] dool
[edit]
[-] xdg-icon-resource
[edit]
[-] showrgb
[edit]
[-] snmptable
[edit]
[-] clwpos-daemon
[edit]
[-] msgcat
[edit]
[-] mysql
[edit]
[-] systemd-path
[edit]
[-] dnsdomainname
[edit]
[-] ls
[edit]
[-] debuginfo-install
[edit]
[-] enchant-lsmod-2
[edit]
[-] makedb
[edit]
[-] mail
[edit]
[-] xzdiff
[edit]
[-] myisampack
[edit]
[-] setvtrgb
[edit]
[-] repomanage
[edit]
[-] du
[edit]
[-] lessecho
[edit]
[-] gdb
[edit]
[-] scl_source
[edit]
[-] sg_unmap
[edit]
[-] gcov
[edit]
[-] printenv
[edit]
[-] snmpstatus
[edit]
[-] jdeps
[edit]
[-] gtk-update-icon-cache
[edit]
[-] mmdblookup
[edit]
[-] info
[edit]
[-] snmpps
[edit]
[-] chardetect-2
[edit]
[-] pmstat
[edit]
[-] libwacom-list-local-devices
[edit]
[-] gdbm_load
[edit]
[-] captoinfo
[edit]
[-] clamscan
[edit]
[-] signver
[edit]
[-] xmvn-install
[edit]
[-] wish
[edit]
[-] whiptail
[edit]
[-] orc-bugreport
[edit]
[-] ntpstat
[edit]
[-] fg
[edit]
[-] pydoc2.7
[edit]
[-] db_tuner
[edit]
[-] getent
[edit]
[-] batch
[edit]
[-] chmem
[edit]
[-] setleds
[edit]
[-] mariadb-tzinfo-to-sql
[edit]
[-] sg_reset
[edit]
[-] db_checkpoint
[edit]
[-] vi
[edit]
[-] hdsploader
[edit]
[-] wget
[edit]
[-] wc
[edit]
[-] autoreconf
[edit]
[-] tcutest
[edit]
[-] scsi_ready
[edit]
[-] systemd-machine-id-setup
[edit]
[-] import
[edit]
[-] zipsplit
[edit]
[-] gvpr
[edit]
[-] cpapi1
[edit]
[-] python3.6m
[edit]
[-] zforce
[edit]
[-] systemd-notify
[edit]
[-] sg_safte
[edit]
[-] git-shell
[edit]
[-] pmie
[edit]
[-] ac
[edit]
[-] nl-addr-delete
[edit]
[-] loadkeys
[edit]
[-] nl-qdisc-delete
[edit]
[-] scsi_readcap
[edit]
[-] python3
[edit]
[-] instmodsh
[edit]
[-] ea-php83-pecl
[edit]
[-] rateup
[edit]
[-] pmlogctl
[edit]
[-] ab
[edit]
[-] modulemd-validator
[edit]
[-] psfgettable
[edit]
[-] fmt
[edit]
[-] pmlogcheck
[edit]
[-] which
[edit]
[-] curl-config
[edit]
[-] col
[edit]
[-] snmptranslate
[edit]
[-] rvim
[edit]
[-] make
[edit]
[-] mariadb-slap
[edit]
[-] bzcat
[edit]
[-] flex
[edit]
[-] lchsh
[edit]
[-] gvgen
[edit]
[-] troff
[edit]
[-] db_stat
[edit]
[-] sha1hmac
[edit]
[-] head
[edit]
[-] cl-linksafe-apply-group
[edit]
[-] base64
[edit]
[-] dnf
[edit]
[-] tapestat
[edit]
[-] gettext.sh
[edit]
[-] mawk
[edit]
[-] ea-php81-pecl
[edit]
[-] dbus-update-activation-environment
[edit]
[-] nl-link-ifindex2name
[edit]
[-] false
[edit]
[-] crontab.cagefs
[edit]
[-] nf-ct-add
[edit]
[-] aria_ftdump
[edit]
[-] cvtsudoers
[edit]
[-] openssl
[edit]
[-] zegrep
[edit]
[-] snmptop
[edit]
[-] wait
[edit]
[-] auvirt
[edit]
[-] ccomps
[edit]
[-] rmid
[edit]
[-] isql
[edit]
[-] csslint-0.6
[edit]
[-] expand
[edit]
[-] fipshmac
[edit]
[-] pwmake
[edit]
[-] db_log_verify
[edit]
[-] sg_verify
[edit]
[-] xz
[edit]
[-] gcc-ranlib
[edit]
[-] wsman
[edit]
[-] pico
[edit]
[-] lsphp
[edit]
[-] rpm2archive
[edit]
[-] tcamgr
[edit]
[-] xsubpp
[edit]
[-] autoscan
[edit]
[-] pip-2.7
[edit]
[-] aria_chk
[edit]
[-] timeout
[edit]
[-] slabtop
[edit]
[-] ispell
[edit]
[-] scsi_stop
[edit]
[-] xzdec
[edit]
[-] ps2pdf
[edit]
[-] ea-php73-pear
[edit]
[-] lzfgrep
[edit]
[-] nss-policy-check
[edit]
[-] cmsutil
[edit]
[-] sg_format
[edit]
[-] python2
[edit]
[-] lzmainfo
[edit]
[-] x265
[edit]
[-] nf-monitor
[edit]
[-] ld
[edit]
[-] tclsh
[edit]
[-] gdk-pixbuf-thumbnailer
[edit]
[-] innochecksum
[edit]
[-] pmlogconf
[edit]
[-] less
[edit]
[-] pmlc
[edit]
[-] python3.6m-config
[edit]
[-] xkill
[edit]
[-] abs2rel
[edit]
[-] snmpbulkwalk
[edit]
[-] eu-stack
[edit]
[-] lslogins
[edit]
[-] dpkg-trigger
[edit]
[-] mariadb-install-db
[edit]
[-] sg_write_long
[edit]
[-] run_xcpu.sh
[edit]
[-] colrm
[edit]
[-] doveconf
[edit]
[-] xzgrep
[edit]
[-] sg_sanitize
[edit]
[-] json_xs
[edit]
[-] wmf2svg
[edit]
[-] objcopy
[edit]
[-] rpmdev-md5
[edit]
[-] mariadb-find-rows
[edit]
[-] build-classpath-directory
[edit]
[-] pinentry-curses
[edit]
[-] perl5.26.3
[edit]
[-] jps
[edit]
[-] setsid
[edit]
[-] kernel-install
[edit]
[-] ssh-add
[edit]
[-] pmafm
[edit]
[-] build-classpath
[edit]
[-] gs
[edit]
[-] protoc
[edit]
[-] h2ph
[edit]
[-] eu-nm
[edit]
[-] gpgrt-config
[edit]
[-] atq
[edit]
[-] smiquery
[edit]
[-] ssh
[edit]
[-] gendiff
[edit]
[-] sudoedit
[edit]
[-] at
[edit]
[-] fc
[edit]
[-] otfdump
[edit]
[-] dirmngr-client
[edit]
[-] diffimg
[edit]
[-] rpmdev-sha1
[edit]
[-] tar
[edit]
[-] gpgv2
[edit]
[-] infotocap
[edit]
[-] rpcgen
[edit]
[-] file
[edit]
[-] m17n-conv
[edit]
[-] gcc-ar
[edit]
[-] dot
[edit]
[-] update-gtk-immodules
[edit]
[-] deallocvt
[edit]
[-] jarsigner
[edit]
[-] pre-grohtml
[edit]
[-] chattr
[edit]
[-] lwp-mirror
[edit]
[-] ttree
[edit]
[-] chacl
[edit]
[-] gprof
[edit]
[-] ssh-agent
[edit]
[-] rpmverify
[edit]
[-] sessreg
[edit]
[-] toe
[edit]
[-] smidump
[edit]
[-] msgattrib
[edit]
[-] mcpp
[edit]
[-] pmlogsummary
[edit]
[-] pkcheck
[edit]
[-] cronnext
[edit]
[-] bison
[edit]
[-] automake
[edit]
[-] baksync
[edit]
[-] arpaname
[edit]
[-] gem
[edit]
[-] os-prober
[edit]
[-] ruby
[edit]
[-] solterm
[edit]
[-] systemd-tty-ask-password-agent
[edit]
[-] repo-graph
[edit]
[-] command
[edit]
[-] luac
[edit]
[-] jdb
[edit]
[-] libnetcfg
[edit]
[-] pydoc3
[edit]
[-] freetype-config
[edit]
[-] graphml2gv
[edit]
[-] xrdb
[edit]
[-] clamsubmit
[edit]
[-] addr2line
[edit]
[-] scl_enabled
[edit]
[-] createuser
[edit]
[-] ipcalc
[edit]
[-] keytool
[edit]
[-] prune
[edit]
[-] repotrack
[edit]
[-] fail2ban-server
[edit]
[-] psfstriptable
[edit]
[-] xmllint
[edit]
[-] pynche2
[edit]
[-] db_load
[edit]
[-] alias
[edit]
[-] screen
[edit]
[-] lve_wrapper
[edit]
[-] kcare-scanner-interface
[edit]
[-] pip-2
[edit]
[-] neqn
[edit]
[-] chown
[edit]
[-] fc-cache-64
[edit]
[-] lastcomm
[edit]
[-] smem
[edit]
[-] etags
[edit]
[-] arch
[edit]
[-] ea-php70-pecl
[edit]
[-] find
[edit]
[-] pslog
[edit]
[-] comm
[edit]
[-] lwp-request
[edit]
[-] env
[edit]
[-] scl
[edit]
[-] ea-php72
[edit]
[-] bcomps
[edit]
[-] rm
[edit]
[-] bunzip2
[edit]
[-] gzexe
[edit]
[-] db_dump185
[edit]
[-] galera_new_cluster
[edit]
[-] bzdiff
[edit]
[-] dpkg-deb
[edit]
[-] dbus-run-session
[edit]
[-] mysqladmin
[edit]
[-] gtk-launch
[edit]
[-] jstack
[edit]
[-] hostid
[edit]
[-] prtstat
[edit]
[-] lveutils-panel-cron
[edit]
[-] pyzor
[edit]
[-] run_xcapture.sh
[edit]
[-] systemd-analyze
[edit]
[-] emacsclient
[edit]
[-] update-tld-names
[edit]
[-] guild
[edit]
[-] fpmstatus
[edit]
[-] ngxstats
[edit]
[-] aulastlog
[edit]
[-] mariadb-secure-installation
[edit]
[-] htpasswd
[edit]
[-] gpg-error-config
[edit]
[-] tchtest
[edit]
[-] grub2-mkfont
[edit]
[-] netstat
[edit]
[-] atrm
[edit]
[-] png-fix-itxt
[edit]
[-] reset
[edit]
[-] xcapture
[edit]
[-] vim
[edit]
[-] sg
[edit]
[-] ncursesw6-config
[edit]
[-] mergecap
[edit]
[-] repoquery
[edit]
[-] lve_umount
[edit]
[-] pmpython
[edit]
[-] pynche2.7
[edit]
[-] xzmore
[edit]
[-] python2.7-config
[edit]
[-] find-repos-of-install
[edit]
[-] pomdump
[edit]
[-] tchmgr
[edit]
[-] ngettext
[edit]
[-] pmfind
[edit]
[-] smtpd2.py
[edit]
[-] egrep
[edit]
[-] glib-compile-schemas
[edit]
[-] lzma
[edit]
[-] pybabel
[edit]
[-] animate
[edit]
[-] zstdless
[edit]
[-] zipdetails
[edit]
[-] grotty
[edit]
[-] gdbus
[edit]
[-] soundstretch
[edit]
[-] resolveip
[edit]
[-] grub2-mkimage
[edit]
[-] xmodmap
[edit]
[-] localedef
[edit]
[-] Wand-config
[edit]
[-] vimdot
[edit]
[-] fribidi
[edit]
[-] dir
[edit]
[-] stdbuf
[edit]
[-] sudoreplay
[edit]
[-] nf-ct-events
[edit]
[-] xzcmp
[edit]
[-] cpp
[edit]
[-] ea-php80-pecl
[edit]
[-] shasum
[edit]
[-] lefty
[edit]
[-] view
[edit]
[-] sqlite3
[edit]
[-] idle2
[edit]
[-] gio
[edit]
[-] aria_pack
[edit]
[-] sg_seek
[edit]
[-] dnf-3
[edit]
[-] size
[edit]
[-] cd
[edit]
[-] systemd-socket-activate
[edit]
[-] grub2-mkrelpath
[edit]
[-] sgm_dd
[edit]
[-] fc-pattern
[edit]
[-] mariadb-access
[edit]
[-] garbd
[edit]
[-] msgfilter
[edit]
[-] dtrace
[edit]
[-] systemd-detect-virt
[edit]
[-] ea-php56-pear
[edit]
[-] showconsolefont
[edit]
[-] test
[edit]
[-] pcre-config
[edit]
[-] atopsar-2.11.1
[edit]
[-] sprof
[edit]
[-] resolve_stack_dump
[edit]
[-] findmnt
[edit]
[-] gsettings-data-convert
[edit]
[-] tctmgr
[edit]
[-] ionice
[edit]
[-] firewall-cmd
[edit]
[-] cpupower
[edit]
[-] vxloader
[edit]
[-] odbc_config
[edit]
[-] slencheck
[edit]
[-] apropos
[edit]
[-] cluster
[edit]
[-] dumpkeys
[edit]
[-] hostnamectl
[edit]
[-] pip-3.8
[edit]
[-] gpio-hammer
[edit]
[-] dbus-uuidgen
[edit]
[-] lwp-dump
[edit]
[-] c89
[edit]
[-] pom2
[edit]
[-] pidof
[edit]
[-] gio-querymodules-64
[edit]
[-] fallocate
[edit]
[-] xmlcatalog
[edit]
[-] fincore
[edit]
[-] atopcat
[edit]
[-] watch
[edit]
[-] rpmdev-cksum
[edit]
[-] gst-typefind-1.0
[edit]
[-] rpmdev-packager
[edit]
[-] sort
[edit]
[-] eu-strip
[edit]
[-] eu-strings
[edit]
[-] aserver
[edit]
[-] psfaddtable
[edit]
[-] xdg-desktop-menu
[edit]
[-] setarch
[edit]
[-] znew
[edit]
[-] gxl2dot
[edit]
[-] pdf2ps
[edit]
[-] gtk-query-immodules-2.0-64
[edit]
[-] gcc-nm
[edit]
[-] nail
[edit]
[-] gcov-tool
[edit]
[-] link
[edit]
[-] setfont
[edit]
[-] pg_dump
[edit]
[-] pip2.7
[edit]
[-] pg_restore
[edit]
[-] dbiprof
[edit]
[-] pmrepconf
[edit]
[-] easy_install-3
[edit]
[-] grub2-mkpasswd-pbkdf2
[edit]
[-] npm
[edit]
[-] gcore
[edit]
[-] sharkd
[edit]
[-] doveadm
[edit]
[-] ncurses6-config
[edit]
[-] nc
[edit]
[-] nl-route-get
[edit]
[-] ps2pdf14
[edit]
[-] unpack200
[edit]
[-] pidstat
[edit]
[-] fc-match
[edit]
[-] tee
[edit]
[-] lzdiff
[edit]
[-] clwpos-erase
[edit]
[-] uname26
[edit]
[-] glxgears
[edit]
[-] sg_write_buffer
[edit]
[-] netaddr3
[edit]
[-] dirname
[edit]
[-] rpmdev-sha512
[edit]
[-] automake-1.16
[edit]
[-] dpkg-realpath
[edit]
[-] bdftopcf
[edit]
[-] dpkg
[edit]
[-] edgepaint
[edit]
[-] ln
[edit]
[-] mysql_fix_extensions
[edit]
[-] sg_read_buffer
[edit]
[-] ucs2any
[edit]
[-] procan
[edit]
[-] tset
[edit]
[-] chardetect-2.7
[edit]
[-] gzip
[edit]
[-] wseventmgr
[edit]
[-] bashbug-64
[edit]
[-] sg_wr_mode
[edit]
[-] pkgconf
[edit]
[-] rpm2cpio
[edit]
[-] yumdownloader
[edit]
[-] eqn
[edit]
[-] cloudlinux-awp-admin
[edit]
[-] sg_senddiag
[edit]
[-] pl2pm
[edit]
[-] tcfmgr
[edit]
[-] ptaskset
[edit]
[-] prlimit
[edit]
[-] pure-pw
[edit]
[-] grub2-kbdcomp
[edit]
[-] zipcloak
[edit]
[-] backup
[edit]
[-] hostname
[edit]
[-] pstree
[edit]
[-] pango-list
[edit]
[-] fixperms
[edit]
[-] pg_dumpall
[edit]
[-] snmpinform
[edit]
[-] mariadb-waitpid
[edit]
[-] locale
[edit]
[-] ps2ps2
[edit]
[-] realpath
[edit]
[-] sg_read_long
[edit]
[-] systemd-tmpfiles
[edit]
[-] pmdiff
[edit]
[-] mknod
[edit]
[-] turbostat
[edit]
[-] sha512hmac
[edit]
[-] openipmicmd
[edit]
[-] wall
[edit]
[-] ul
[edit]
[-] eu-ar
[edit]
[-] mariadb-check
[edit]
[-] nl-neigh-add
[edit]
[-] nisdomainname
[edit]
[-] tclsh8.6
[edit]
[-] sfdp
[edit]
[-] jar
[edit]
[-] dbus-daemon
[edit]
[-] rview
[edit]
[-] zstdmt
[edit]
[-] ipmish
[edit]
[-] xhost
[edit]
[-] msgcomm
[edit]
[-] fc-cache
[edit]
[-] pcp
[edit]
[-] msgexec
[edit]
[-] event_rpcgen.py
[edit]
[-] diff-jars
[edit]
[-] diff3
[edit]
[-] krb5-config
[edit]
[-] indexmaker
[edit]
[-] cat
[edit]
[-] lz4cat
[edit]
[-] mariadb-plugin
[edit]
[-] curve_keygen
[edit]
[-] xorg-x11-fonts-update-dirs
[edit]
[-] mkfifo
[edit]
[-] ssh-keygen
[edit]
[-] setterm
[edit]
[-] fgrep
[edit]
[-] spectool
[edit]
[-] lsinitrd
[edit]
[-] sg_vpd
[edit]
[-] funzip
[edit]
[-] ssh-copy-id
[edit]
[-] gsnd
[edit]
[-] df
[edit]
[-] quotasync
[edit]
[-] libcare-cron
[edit]
[-] named-rrchecker
[edit]
[-] cloudlinux-awp-user
[edit]
[-] smistrip
[edit]
[-] enchant-2
[edit]
[-] libinput
[edit]
[-] lzmadec
[edit]
[-] filebeat
[edit]
[-] dig
[edit]
[-] pldd
[edit]
[-] host
[edit]
[-] cpan
[edit]
[-] rpmquery
[edit]
[-] needs-restarting
[edit]
[-] sg_test_rwbuf
[edit]
[-] nl-neightbl-list
[edit]
[-] eu-findtextrel
[edit]
[-] myisamlog
[edit]
[-] nf-exp-add
[edit]
[-] libpng-config
[edit]
[-] sg_compare_and_write
[edit]
[-] resolvectl
[edit]
[-] vdir
[edit]
[-] logger
[edit]
[-] factor
[edit]
[-] mv
[edit]
[-] htdigest
[edit]
[-] glxinfo64
[edit]
[-] mariadb-embedded
[edit]
[-] plymouth
[edit]
[-] smicache
[edit]
[-] mariadb-convert-table-format
[edit]
[-] desktop-file-validate
[edit]
[-] stream
[edit]
[-] pyzor-migrate
[edit]
[-] zless
[edit]
[-] g13
[edit]
[-] tracepath
[edit]
[-] lzgrep
[edit]
[-] db_recover
[edit]
[-] rvi
[edit]
[-] ptx
[edit]
[-] tail
[edit]
[-] cl-phpextdesc
[edit]
[-] ea-php80
[edit]
[-] rpmdev-setuptree
[edit]
[-] checkmodule
[edit]
[-] unlink
[edit]
[-] zsoelim
[edit]
[-] psn
[edit]
[-] gvmap.sh
[edit]
[-] snmpvacm
[edit]
[-] augmatch
[edit]
[-] gv2gml
[edit]
[-] db_deadlock
[edit]
[-] fixmailquotas
[edit]
[-] salt-pip
[edit]
[-] smixlate
[edit]
[-] clwpos-user
[edit]
[-] cairo-sphinx
[edit]
[-] python3.6m-x86_64-config
[edit]
[-] sss_ssh_authorizedkeys
[edit]
[-] dijkstra
[edit]
[-] lsgpio
[edit]
[-] pmlogger
[edit]
[-] pzstd
[edit]
[-] sha256sum
[edit]
[-] join
[edit]
[-] dwp
[edit]
[-] plesk_configure
[edit]
[-] fc-scan
[edit]
[-] pdf2dsc
[edit]
[-] eu-unstrip
[edit]
[-] ipcs
[edit]
[-] cksum
[edit]
[-] dbus-test-tool
[edit]
[-] ea-php74-pear
[edit]
[-] libtoolize
[edit]
[-] dsync
[edit]
[-] xsltproc
[edit]
[-] lzcmp
[edit]
[-] enc2xs
[edit]
[-] mrtg
[edit]
[-] libwmf-fontmap
[edit]
[-] sha224sum
[edit]
[-] as
[edit]
[-] kdumpctl
[edit]
[-] scp
[edit]
[-] ex
[edit]
[-] jstat
[edit]
[-] slabinfo
[edit]
[-] sg_get_config
[edit]
[-] chage
[edit]
[-] gtar
[edit]
[-] links
[edit]
[-] ps2pdf12
[edit]
[-] lz4
[edit]
[-] lexgrog
[edit]
[-] pg_ctl
[edit]
[-] libtool
[edit]
[-] update-ca-trust
[edit]
[-] mariadbd-multi
[edit]
[-] clambc
[edit]
[-] prezip-bin
[edit]
[-] msgcmp
[edit]
[-] tcttest
[edit]
[-] patch
[edit]
[-] serialver
[edit]
[-] nl-addr-list
[edit]
[-] manpath
[edit]
[-] sg_get_lba_status
[edit]
[-] bzip2
[edit]
[-] shuf
[edit]
[-] libgcrypt-config
[edit]
[-] pkg-config
[edit]
[-] bash
[edit]
[-] cmp
[edit]
[-] systemd-cgls
[edit]
[-] pygettext2.7.py
[edit]
[-] pod2man
[edit]
[-] monarx-agent
[edit]
[-] userdel.cagefs
[edit]
[-] cldetect
[edit]
[-] x86_64-redhat-linux-gnu-pkg-config
[edit]
[-] atophide
[edit]
[-] lex
[edit]
[-] pkexec
[edit]
[-] tic
[edit]
[-] sg_prevent
[edit]
[-] sg_read_block_limits
[edit]
[-] vimdiff
[edit]
[-] compile_et
[edit]
[-] dovecot-sysreport
[edit]
[-] mariadb-import
[edit]
[-] circo
[edit]
[-] pmap
[edit]
[-] schedlat
[edit]
[-] getcontrolpaneluserspackages
[edit]
[-] printf
[edit]
[-] rsync
[edit]
[-] ps2epsi
[edit]
[-] db_dump
[edit]
[-] coredumpctl
[edit]
[-] dpkg-split
[edit]
[-] mariadb-dump
[edit]
[-] composite
[edit]
[-] ifnames
[edit]
[-] pydoc2
[edit]
[-] lscpu
[edit]
[-] utmpdump
[edit]
[-] truncate
[edit]
[-] perlbug
[edit]
[-] ps2pdfwr
[edit]
[-] msgunfmt
[edit]
[-] rpmdev-sha224
[edit]
[-] unshare
[edit]
[-] hexdump
[edit]
[-] jcmd
[edit]
[-] sg_rtpg
[edit]
[-] node
[edit]
[-] semodule_package
[edit]
[-] eu-readelf
[edit]
[-] lesskey
[edit]
[-] otftobdf
[edit]
[-] eu-elflint
[edit]
[-] wireshark
[edit]
[-] imh-python3.9
[edit]
[-] msgconv
[edit]
[-] rpmdev-newinit
[edit]
[-] xdg-screensaver
[edit]
[-] rpmdev-sha256
[edit]
[-] zipinfo
[edit]
[-] x86_64-redhat-linux-gcc
[edit]
[-] split
[edit]
[-] gpg-wks-server
[edit]
[-] fail2ban-python
[edit]
[-] systemd-sysusers
[edit]
[-] column
[edit]
[-] xmvn-resolve
[edit]
[-] clusterdb
[edit]
[-] nsupdate
[edit]
[-] db_verify
[edit]
[-] wsrep_sst_rsync_wan
[edit]
[-] lve_bash
[edit]
[-] ea-php82-pear
[edit]
[-] bg
[edit]
[-] yum-debug-restore
[edit]
[-] rmic
[edit]
[-] systemd-mount
[edit]
[-] uniq
[edit]
[-] mysql_config
[edit]
[-] lsmem
[edit]
[-] mysqlimport
[edit]
[-] gpasswd
[edit]
[-] g++
[edit]
[-] tnameserv
[edit]
[-] gss-client
[edit]
[-] telegraf
[edit]
[-] openipmi_eventd
[edit]
[-] dbpmda
[edit]
[-] fc-conflist
[edit]
[-] npx
[edit]
[-] brotli
[edit]
[-] snmpusm
[edit]
[-] sg_timestamp
[edit]
[-] htop
[edit]
[-] python3.8
[edit]
[-] create-jar-links
[edit]
[-] tabs
[edit]
[-] x86_64
[edit]
[-] glxinfo
[edit]
[-] ea-php71-pecl
[edit]
[-] lftp
[edit]
[-] readlink
[edit]
[-] dwz
[edit]
[-] gconftool-2
[edit]
[-] autom4te
[edit]
[-] getkeycodes
[edit]
[-] systemd-delta
[edit]
[-] lchfn
[edit]
[-] sg_inq
[edit]
[-] mysql_find_rows
[edit]
[-] sg_sat_set_features
[edit]
[-] zfgrep
[edit]
[-] crb
[edit]
[-] ea-php84-pecl
[edit]
[-] nl-list-sockets
[edit]
[-] javac
[edit]
[-] isc-config.sh
[edit]
[-] c++
[edit]
[-] hiera
[edit]
[-] replace
[edit]
[-] sh
[edit]
[-] chardetect
[edit]
[-] gst-launch-1.0
[edit]
[-] logresolve
[edit]
[-] gpgv
[edit]
[-] whois
[edit]
[-] xdg-desktop-icon
[edit]
[-] scsi-rescan
[edit]
[-] nl-list-caches
[edit]
[-] setup-nsssysinit
[edit]
[-] git-upload-pack
[edit]
[-] wsrep_sst_mariabackup
[edit]
[-] eu-size
[edit]
[-] ranlib
[edit]
[-] nslookup
[edit]
[-] ld.gold
[edit]
[-] pinky
[edit]
[-] kbdrate
[edit]
[-] idlj
[edit]
[-] xdg-open
[edit]
[-] cloudlinux-awp-daemon
[edit]
[-] usx2yloader
[edit]
[-] mariadb-fix-extensions
[edit]
[-] flex++
[edit]
[-] lneato
[edit]
[-] zip
[edit]
[-] eu-make-debug-archive
[edit]
[-] sum
[edit]
[-] pmieconf
[edit]
[-] scsi_temperature
[edit]
[-] vacuumdb
[edit]
[-] build-jar-repository
[edit]
[-] scsi_start
[edit]
[-] git-upload-archive
[edit]
[-] localectl
[edit]
[-] grep
[edit]
[-] showkey
[edit]
[-] sotruss
[edit]
[-] spell
[edit]
[-] lve_tcsh
[edit]
[-] kvm_stat
[edit]
[-] lve_pdksh
[edit]
[-] loadunimap
[edit]
[-] rpmdev-sort
[edit]
[-] rsyslog-recover-qi.pl
[edit]
[-] bzfgrep
[edit]
[-] xzfgrep
[edit]
[-] sg_dd
[edit]
[-] catchsegv
[edit]
[-] lvemanager-service
[edit]
[-] sg_scan
[edit]
[-] xml2-config
[edit]
[-] pmlogsize
[edit]
[-] mytop
[edit]
[-] sg_write_x
[edit]
[-] csplit
[edit]
[-] semodule_expand
[edit]
[-] tmon
[edit]
[-] pinentry
[edit]
[-] cl-syncpkgs
[edit]
[-] zstdcat
[edit]
[-] touch
[edit]
[-] rpcinfo
[edit]
[-] json_verify
[edit]
[-] dbus-monitor
[edit]
[-] unicode_stop
[edit]
[-] idn
[edit]
[-] msgen
[edit]
[-] tcftest
[edit]
[-] nl-class-delete
[edit]
[-] mysqlcheck
[edit]
[-] rpmkeys
[edit]
[-] rescan-scsi-bus.sh
[edit]
[-] delv
[edit]
[-] sudo
[edit]
[-] ghostscript
[edit]
[-] bind9-config
[edit]
[-] fdp
[edit]
[-] unexpand
[edit]
[-] pstack
[edit]
[-] firewall-offline-cmd
[edit]
[-] xzcat
[edit]
[-] 2to3
[edit]
[-] pip3.8
[edit]
[-] nl-cls-add
[edit]
[-] ea-php74
[edit]
[-] perl
[edit]
[-] enchant-lsmod
[edit]
[-] nl-util-addr
[edit]
[-] gpgme-json
[edit]
[-] setup-nsssysinit.sh
[edit]
[-] native2ascii
[edit]
[-] lzegrep
[edit]
[-] tcbmgr
[edit]
[-] easy_install-3.8
[edit]
[-] nl-cls-delete
[edit]
[-] lslocks
[edit]
[-] snmpbulkget
[edit]
[-] gpg
[edit]
[-] dbilogstrip
[edit]
[-] make-dummy-cert
[edit]
[-] text2pcap
[edit]
[-] pmsearch
[edit]
[-] sg_sync
[edit]
[-] audit2why
[edit]
[-] logname
[edit]
[-] scsi_satl
[edit]
[-] gvcolor
[edit]
[-] pod2text
[edit]
[-] fc-query
[edit]
[-] geqn
[edit]
[-] git
[edit]
[-] bzgrep
[edit]
[-] uuidparse
[edit]
[-] pwd
[edit]
[-] rpmdev-newspec
[edit]
[-] enchant
[edit]
[-] udevadm
[edit]
[-] gtroff
[edit]
[-] sg_write_same
[edit]
[-] ftp
[edit]
[-] sw-engine
[edit]
[-] nl-link-enslave
[edit]
[-] wish8.6
[edit]
[-] ea-php71-pear
[edit]
[-] nm
[edit]
[-] xzegrep
[edit]
[-] nl-pktloc-lookup
[edit]
[-] dumpcap
[edit]
[-] droplang
[edit]
[-] groups
[edit]
[-] tshark
[edit]
[-] grub2-menulst2cfg
[edit]
[-] oddjob_request
[edit]
[-] teamdctl
[edit]
[-] ld.so
[edit]
[-] etags.emacs
[edit]
[-] pod2usage
[edit]
[-] elfedit
[edit]
[-] secon
[edit]
[-] sg_map26
[edit]
[-] httxt2dbm
[edit]
[-] autoheader
[edit]
[-] uuclient
[edit]
[-] pydoc-3
[edit]
[-] sdiff
[edit]
[-] timedatectl
[edit]
[-] chcat
[edit]
[-] yes
[edit]
[-] ssh-keyscan
[edit]
[-] vmstat
[edit]
[-] cal
[edit]
[-] bzcmp
[edit]
[-] tchmttest
[edit]
[-] xargs
[edit]
[-] passwd
[edit]
[-] MagickCore-config
[edit]
[-] nsenter
[edit]
[-] mm2gv
[edit]
[-] mrtg-traffic-sum
[edit]
[-] strip
[edit]
[-] sync
[edit]
[-] who
[edit]
[-] perror
[edit]
[-] fonttosfnt
[edit]
[-] rpmdev-diff
[edit]
[-] smtpd2.7.py
[edit]
[-] x86_energy_perf_policy
[edit]
[-] json_reformat
[edit]
[-] zcmp
[edit]
[-] infocmp
[edit]
[-] msginit
[edit]
[-] perlml
[edit]
[-] ps2pdf13
[edit]
[-] ea-php56-pecl
[edit]
[-] unzstd
[edit]
[-] hash
[edit]
[-] montage
[edit]
[-] page_owner_sort
[edit]
[-] update-mime-database
[edit]
[-] alt-php-mysql-reconfigure
[edit]
[-] pkla-admin-identities
[edit]
[-] pmprobe
[edit]
[-] pip2
[edit]
[-] bzegrep
[edit]
[-] db_hotbackup
[edit]
[-] ri
[edit]
[-] xslt-config
[edit]
[-] withsctp
[edit]
[-] chronyc
[edit]
[-] lsipc
[edit]
[-] lsiio
[edit]
[-] xrandr
[edit]
[-] broadwayd
[edit]
[-] mailx
[edit]
[-] pyvenv-3
[edit]
[-] pmseries
[edit]
[-] rawshark
[edit]
[-] sg_requests
[edit]
[-] javap
[edit]
[-] sdrcomp
[edit]
[-] mariadb-service-convert
[edit]
[-] uptime
[edit]
[-] numfmt
[edit]
[-] chvt
[edit]
[-] mysql_install_db
[edit]
[-] last
[edit]
[-] ipmilan
[edit]
[-] fadot
[edit]
[-] wmf2gd
[edit]
[-] lftpget
[edit]
[-] openvt
[edit]
[-] pngfix
[edit]
[-] tput
[edit]
[-] nl-tctree-list
[edit]
[-] geoiplookup
[edit]
[-] clamdscan
[edit]
[-] mysqlbinlog
[edit]
[-] yat2m
[edit]
[-] getopt
[edit]
[-] tcbmttest
[edit]
[-] sctp_status
[edit]
[-] mkdir
[edit]
[-] clamconf
[edit]
[-] man
[edit]
[-] ar
[edit]
[-] msgmerge
[edit]
[-] fgconsole
[edit]
[-] unlzma
[edit]
[-] rpmdev-wipetree
[edit]
[-] grub2-mklayout
[edit]
[-] sg_start
[edit]
[-] elinks
[edit]
[-] 2to3-3.6
[edit]
[-] dbus-cleanup-sockets
[edit]
[-] ea-php72-pear
[edit]
[-] gsoelim
[edit]
[-] iusql
[edit]
[-] lastb
[edit]
[-] type
[edit]
[-] Magick-config
[edit]
[-] pydoc3.6
[edit]
[-] nl-link-stats
[edit]
[-] sg_zone
[edit]
[-] snmptrap
[edit]
[-] namei
[edit]
[-] mkfontdir
[edit]
[-] renew-dummy-cert
[edit]
[-] lastlog
[edit]
[-] pstree.x11
[edit]
[-] gneqn
[edit]
[-] sg_decode_sense
[edit]
[-] ea-php70-pear
[edit]
[-] nproc
[edit]
[-] acyclic
[edit]
[-] ulimit
[edit]
[-] centrino-decode
[edit]
[-] gst-inspect-1.0
[edit]
[-] unflatten
[edit]
[-] rpmspec
[edit]
[-] bashbug
[edit]
[-] eu-ranlib
[edit]
[-] mariadb-binlog
[edit]
[-] nl
[edit]
[-] telnet
[edit]
[-] my_print_defaults
[edit]
[-] wsimport
[edit]
[-] rpmdev-sha384
[edit]
[-] db_printlog
[edit]
[-] servertool
[edit]
[-] selectorctl
[edit]
[-] bind9-export-config
[edit]
[-] dracut
[edit]
[-] capinfos
[edit]
[-] lesspipe.sh
[edit]
[-] cloudlinux_domains_collector
[edit]
[-] da-addsudoer
[edit]
[-] xsetroot
[edit]
[-] fipscheck
[edit]
[-] migration_ve1_to_v2.py
[edit]
[-] idle2.7
[edit]
[-] ngxutil
[edit]
[-] rmiregistry
[edit]
[-] semodule_link
[edit]
[-] envml
[edit]
[-] perf
[edit]
[-] ptar
[edit]
[-] nroff
[edit]
[-] python3-config
[edit]
[-] semodule_unpackage
[edit]
[-] paste
[edit]
[-] i386
[edit]
[-] cpio
[edit]
[-] openipmish
[edit]
[-] sim_client
[edit]
[-] atop-2.11.1
[edit]
[-] otflist
[edit]
[-] pkill
[edit]
[-] gpgconf
[edit]
[-] free
[edit]
[-] jq
[edit]
[-] zmore
[edit]
[-] sg_opcodes
[edit]
[-] pminfo
[edit]
[-] teamnl
[edit]
[-] wsgen
[edit]
[-] snmptls
[edit]
[-] lsblk
[edit]
[-] modulecmd
[edit]
[-] prove
[edit]
[-] podchecker
[edit]
[-] lve_suwrapper
[edit]
[-] stat
[edit]
[-] guile-tools
[edit]
[-] grub2-glue-efi
[edit]
[-] gcov-dump
[edit]
[-] gpg-agent
[edit]
[-] dropuser
[edit]
[-] dropdb
[edit]
[-] myisamchk
[edit]
[-] gdb-add-index
[edit]
[-] rpmdev-rmdevelrpms
[edit]
[-] systemctl
[edit]
[-] systemd-cgtop
[edit]
[-] users
[edit]
[-] appletviewer
[edit]
[-] authselect
[edit]
[-] umask
[edit]
[-] xdg-mime
[edit]
[-] pflags
[edit]
[-] seq
[edit]
[-] pango-view
[edit]
[-] mktemp
[edit]
[-] pmlogmv
[edit]
[-] jjs
[edit]
[-] ps
[edit]
[-] keyctl
[edit]
[-] systemd-ask-password
[edit]
[-] pygettext2.py
[edit]
[-] sg_copy_results
[edit]
[-] jobs
[edit]
[-] xset
[edit]
[-] yum-config-manager
[edit]
[-] ea-php84-pear
[edit]
[-] sss_ssh_knownhostsproxy
[edit]
[-] ipmi_sim
[edit]
[-] tctmttest
[edit]
[-] ptargrep
[edit]
[-] mixartloader
[edit]
[-] catman
[edit]
[-] psfxtable
[edit]
[-] mysql_waitpid
[edit]
[-] bc
[edit]
[-] traceroute6
[edit]
[-] chgrp
[edit]
[-] sg_bg_ctl
[edit]
[-] nice
[edit]
[-] eu-elfclassify
[edit]
[-] mandb
[edit]
[-] basename
[edit]
[-] mountpoint
[edit]
[-] unzipsfx
[edit]
[-] systemd-inhibit
[edit]
[-] pr
[edit]
[-] zgrep
[edit]
[-] sg_stpg
[edit]
[-] dpkg-statoverride
[edit]
[-] gdbmtool
[edit]
[-] dotty
[edit]
[-] jmap
[edit]
[-] tpage
[edit]
[-] curl
[edit]
[-] augtool
[edit]
[-] eject
[edit]
[-] pmevent
[edit]
[-] unicode_start
[edit]
[-] fail2ban-client
[edit]
[-] bzip2recover
[edit]
[-] fail2ban-regex
[edit]
[-] gconf-merge-tree
[edit]
[-] true
[edit]
[-] pathfix.py
[edit]
[-] pcre2-config
[edit]
[-] nf-exp-delete
[edit]
[-] dot2gxl
[edit]
[-] pip3.6
[edit]
[-] cl-linksafe-reconfigure
[edit]
[-] gpg-connect-agent
[edit]
[-] resizecons
[edit]
[-] pip-3
[edit]
[-] clear
[edit]
[-] chcon
[edit]
[-] systemd-run
[edit]
[-] dash
[edit]
[-] xjc
[edit]
[-] tcbtest
[edit]
[-] quota
[edit]
[-] json_pp
[edit]
[-] w
[edit]
[-] reposync
[edit]
[-] cifsiostat
[edit]
[-] ypdomainname
[edit]
[-] msgfmt
[edit]
[-] imh-python3
[edit]
[-] mdig
[edit]
[-] pmdate
[edit]
[-] odbcinst
[edit]
[-] tcfmttest
[edit]
[-] pmtrace
[edit]
[-] x86_64-redhat-linux-gcc-8
[edit]
[-] sg_reassign
[edit]
[-] display
[edit]
[-] eu-elfcmp
[edit]
[-] ipmi_ui
[edit]
[-] chmod
[edit]
[-] read
[edit]
[-] libpng16-config
[edit]
[-] net-snmp-create-v3-user
[edit]
[-] cagefs_enter.proxied
[edit]
[-] clean-binary-files
[edit]
[-] ea-php83
[edit]
[-] pftp
[edit]
[-] jinfo
[edit]
[-] autoconf
[edit]
[-] nl-neigh-delete
[edit]
[-] dc
[edit]
[-] sg_persist
[edit]
[-] prezip
[edit]
[-] msgfmt2.7.py
[edit]
[-] setkeycodes
[edit]
[-] fold
[edit]
[-] tac
[edit]
[-] pk12util
[edit]
[-] rebuild-jar-repository
[edit]
[-] rpmdev-extract
[edit]
[-] pyzord
[edit]
[-] pip-3.6
[edit]
[-] ipcrm
[edit]
[-] pmlogextract
[edit]
[-] mogrify
[edit]
[-] dotlockfile
[edit]
[-] xdg-settings
[edit]
[-] nl-qdisc-list
[edit]
[-] sha224hmac
[edit]
[-] systemd-escape
[edit]
[-] mysqlslap
[edit]
[-] easy_install-2
[edit]
[-] xzless
[edit]
[-] sg_read
[edit]
[-] rmcp_ping
[edit]
[-] atopconvert
[edit]
[-] linux64
[edit]
[-] more
[edit]
[-] wsrep_sst_rsync
[edit]
[-] top
[edit]
[-] GET
[edit]
[-] sha384hmac
[edit]
[-] gcc
[edit]
[-] eu-elfcompress
[edit]
[-] mcookie
[edit]
[-] strings
[edit]
[-] grub2-syslinux2cfg
[edit]
[-] HEAD
[edit]
[-] kmod
[edit]
[-] sg_xcopy
[edit]
[-] pure-statsdecode
[edit]
[-] mariadb-show
[edit]
[-] gctags
[edit]
[-] gpio-event-mon
[edit]
[-] nl-route-add
[edit]
[-] eu-srcfiles
[edit]
[-] unlz4
[edit]
[-] sg_logs
[edit]
[-] gencat
[edit]
[-] ea-php81-pear
[edit]
[-] diff
[edit]
[-] renice
[edit]
[-] whatis
[edit]
[-] javah
[edit]
[-] geoipupdate
[edit]
[-] mariadb-hotcopy
[edit]
[-] yum-groups-manager
[edit]
[-] pmsocks
[edit]
[-] cc
[edit]
[-] grub2-render-label
[edit]
[-] sg_ident
[edit]
[-] cp
[edit]
[-] dmesg
[edit]
[-] setpriv
[edit]
[-] compare
[edit]
[-] pathchk
[edit]
[-] sgp_dd
[edit]
[-] md5sum
[edit]
[-] mariadbd-safe-helper
[edit]
[-] newgrp
[edit]
[-] jhat
[edit]
[-] identify
[edit]
[-] ipcmk
[edit]
[-] grub2-editenv
[edit]
[-] neato
[edit]
[-] mkinitrd
[edit]
[-] autoupdate
[edit]
[-] zstd
[edit]
[-] cut
[edit]
[-] grops
[edit]
[-] gxl2gv
[edit]
[-] wmf2x
[edit]
[-] augparse
[edit]
[-] msggrep
[edit]
[-] unxz
[edit]
[-] nl-link-list
[edit]
[-] nl-addr-add
[edit]
[-] lve_zsh
[edit]
[-] word-list-compress
[edit]
[-] POST
[edit]
[-] java
[edit]
[-] jstatd
[edit]
[-] isosize
[edit]
[-] sed
[edit]
[-] gdk-pixbuf-query-loaders-64
[edit]
[-] dnstap-read
[edit]
[-] ttmkfdir
[edit]
[-] sg_sat_identify
[edit]
[-] alt-php-mysql-reconfigure.py
[edit]
[-] strace-log-merge
[edit]
[-] rpmdev-vercmp
[edit]
[-] memstrack
[edit]
[-] pmjson
[edit]
[-] grub2-mknetdir
[edit]
[-] sg_luns
[edit]
[-] pwdx
[edit]
[-] sccmap
[edit]
[-] vmtop
[edit]
[-] systemd-hwdb
[edit]
[-] pip3
[edit]
[-] Magick++-config
[edit]
[-] expr
[edit]
[-] crontab
[edit]
[-] cxpm
[edit]
[-] config_data
[edit]
[-] paperconf
[edit]
[-] cagefs.server
[edit]
[-] msgfmt2.py
[edit]
[-] sg_write_verify
[edit]
[-] python2-config
[edit]
[-] zdiff
[edit]
[-] systemd-resolve
[edit]
[-] python2.7
[edit]
[-] [
[edit]
[-] tsort
[edit]
[-] shade-jar
[edit]
[-] sg_readcap
[edit]
[-] aria_dump_log
[edit]
[-] db_replicate
[edit]
[-] intel-speed-select
[edit]
[-] ea-php73-pecl
[edit]
[-] splain
[edit]
[-] mariadbd-safe
[edit]
[-] easy_install-2.7
[edit]
[-] grub2-mkstandalone
[edit]
[-] zcat
[edit]
[-] rpmdev-bumpspec
[edit]
[-] reindexdb
[edit]
[-] gpg2
[edit]
[-] psql
[edit]
[-] tcucodec
[edit]
[-] tbl
[edit]
[-] secret-tool
[edit]
[-] uapi
[edit]
[-] grub2-file
[edit]
[-] mariadb_config
[edit]
[-] preunzip
[edit]
[-] mapscrn
[edit]
[-] gstack
[edit]
[-] taskset
[edit]
[-] db_archive
[edit]
[-] kbdinfo
[edit]
[-] fc-list
[edit]
[-] nl-link-release
[edit]
[-] php
[edit]
[-] mariadb-dumpslow
[edit]
[-] mysqlshow
[edit]
[-] h2xs
[edit]
[-] snmpdelta
[edit]
[-] crlutil
[edit]
[-] uuidgen
[edit]
[-] getopts
[edit]
[-] eu-objdump
[edit]
[-] imh-restic
[edit]
[-] clamdtop
[edit]
[-] sg_referrals
[edit]
[-] hunspell
[edit]
[-] dpkg-query
[edit]
[-] open
[edit]
[-] hsdb
[edit]
[-] date
[edit]
[-] traceroute
[edit]
[-] git-receive-pack
[edit]
[-] vimtutor
[edit]
[-] wsrep_sst_backup
[edit]
[-] smidiff
[edit]
[-] scsi_mandat
[edit]
[-] postmaster
[edit]
[-] msguniq
[edit]
[-] gpg-zip
[edit]
[-] socat
[edit]
[-] jfr
[edit]
[-] da-removesudoer
[edit]
[-] nl-link-set
[edit]
[-] pmdumplog
[edit]
[-] powernow-k8-decode
[edit]
[-] nl-classid-lookup
[edit]
[-] pydoc3.8
[edit]
[-] cldiag
[edit]
[-] javadoc
[edit]
[-] agentxtrap
[edit]
[-] lsns
[edit]
[-] systemd-cat
[edit]
[-] kbxutil
[edit]
[-] killall
[edit]
[-] gst-stats-1.0
[edit]
[-] nohup
[edit]
[-] install
[edit]
[-] dbus-binding-tool
[edit]
[-] gunzip
[edit]
[-] Mail
[edit]
[-] nl-neigh-list
[edit]
[-] gdbm_dump
[edit]
[-] ea-php72-pecl
[edit]
[-] pmval
[edit]
[-] gvmap
[edit]
[-] podselect
[edit]
[-] monarx-sample-upload
[edit]
[-] trust
[edit]
[-] id
[edit]
[-] ebrowse
[edit]
[-] policytool
[edit]
[-] schemagen
[edit]
[-] xmlwf
[edit]
[-] ea-php74-pecl
[edit]
[-] otfview
[edit]
[-] sleep
[edit]
[-] mysql_tzinfo_to_sql
[edit]
[-] precat
[edit]
[-] package_reinstaller.py
[edit]
[-] getconf
[edit]
[-] wsrep_sst_mysqldump
[edit]
[-] pchrt
[edit]
[-] repodiff
[edit]
[-] lzless
[edit]
[-] mysqldump
[edit]
[-] crc32
[edit]
[-] cpapi2
[edit]
[-] iio_generic_buffer
[edit]
[-] gapplication
[edit]
[-] mmdbresolve
[edit]
[-] mariadb-setpermission
[edit]
[-] msql2mysql
[edit]
[-] reordercap
[edit]
[-] dpkg-maintscript-helper
[edit]
[-] chrt
[edit]
[-] uname
[edit]
[-] nf-ct-list
[edit]
[-] newuidmap
[edit]
[-] gtbl
[edit]
[-] bzmore
[edit]
[-] certutil
[edit]
[-] genl-ctrl-list
[edit]
[-] pmgenmap
[edit]
[-] ssltap
[edit]
[-] iio_event_monitor
[edit]
[-] scriptreplay
[edit]
[-] gettextize
[edit]
[-] filan
[edit]
[-] run-parts
[edit]
[-] sha384sum
[edit]
[-] iceauth
[edit]
[-] sg_stream_ctl
[edit]
[-] sg_sat_phy_event
[edit]
[-] systemd-nspawn
[edit]
[-] jconsole
[edit]
[-] perlivp
[edit]
[-] rename
[edit]
[-] journalctl
[edit]
[-] ea-php83-pear
[edit]
[-] python3.6
[edit]
[-] atopsar
[edit]
[-] kcarectl
[edit]
[-] convert
[edit]
[-] freshclam
[edit]
[-] kill
[edit]
[-] run-with-aspell
[edit]
[-] perlthanks
[edit]
[-] grub2-script-check
[edit]
[-] zipnote
[edit]
[-] pgrep
[edit]
[-] checkpolicy
[edit]
[-] xmvn-subst
[edit]
[-] rhn_register
[edit]
[-] mariadb-conv
[edit]
[-] cpapi3
[edit]
[-] nl-fib-lookup
[edit]
[-] pmie2col
[edit]
[-] sctp_test
[edit]
[-] gawk
[edit]
[-] aulast
[edit]
[-] gpgsm
[edit]
[-] shred
[edit]
[-] nl-link-name2ifindex
[edit]
[-] extcheck
[edit]
[-] gr2fonttest
[edit]
[-] xsetpointer
[edit]
[-] snice
[edit]
[-] sg_rep_zones
[edit]
[-] ea-php84
[edit]
[-] dbus-send
[edit]
[-] alt-mysql-reconfigure
[edit]
[-] fc-validate
[edit]
[-] sg_rdac
[edit]
[-] xrefresh
[edit]
[-] sg_sat_read_gplog
[edit]
[-] ausyscall
[edit]
[-] mariadb-admin
[edit]
[-] newgidmap
[edit]
[-] pic
[edit]
[-] bzless
[edit]
[-] mkfontscale
[edit]
[-] ea-php71
[edit]
[-] clwpos-admin
[edit]
[-] patchwork
[edit]
[-] mesg
[edit]
[-] find-jar
[edit]
[-] geoiplookup6
[edit]
[-] jsadebugd
[edit]
[-] cl-quota
[edit]
[-] desktop-file-edit
[edit]
[-] osage
[edit]
[-] jrunscript
[edit]
[-] unzip
[edit]
[-] dpkg-divert
[edit]
[-] ngxconf
[edit]
[-] objdump
[edit]
[-] restic
[edit]
[-] hmac256
[edit]
[-] mariadb-config
[edit]
[-] galera_recovery
[edit]
[-] pure-pwconvert
[edit]
[-] iconv
[edit]
[-] rpmdev-checksig
[edit]
[-] sar
[edit]
[-] encguess
[edit]
[-] flock
[edit]
[-] ca-legacy
[edit]
[-] snmpkey
[edit]
[-] envsubst
[edit]
[-] ea-php80-pear
[edit]
[-] snmpget
[edit]
[-] fc-cat
[edit]
[-] gpgparsemail
[edit]
[-] kbd_mode
[edit]
[-] ncdu
[edit]
[-] groff
[edit]
[-] echo
[edit]
[-] teamd
[edit]
[-] ea-php82-pecl
[edit]
[-] tcamttest
[edit]
[-] lve_ksh
[edit]
[-] soelim
[edit]
[-] corelist
[edit]
[-] rpmdb
[edit]
[-] rpcbind
[edit]
[-] nl-route-list
[edit]
[-] mysqlaccess
[edit]
[-] gdlib-config
[edit]
[-] snmpgetnext
[edit]
[-] sg_rbuf
[edit]
[-] tty
[edit]
[-] ipmitool
[edit]
[-] sxpm
[edit]
[-] readelf
[edit]
[-] post-grohtml
[edit]
[-] imapsync
[edit]
[-] wmf2eps
[edit]
[-] domainname
[edit]
[-] linux-boot-prober
[edit]
[-] imh-scan
[edit]
[-] dirmngr
[edit]
[-] consolehelper
[edit]
[-] zstdgrep
[edit]
[-] lwp-download
[edit]
[-] mysqld_multi
[edit]
[-] sm3hmac
[edit]
[-] x86_64-redhat-linux-c++
[edit]
[-] update-desktop-database
[edit]
[-] unversioned-python
[edit]
[-] fips-finish-install
[edit]
[-] sandbox
[edit]
[-] python3.6-config
[edit]
[-] pmlogpaste
[edit]
[-] conjure
[edit]
[-] nl-monitor
[edit]
[-] eps2eps
[edit]
[-] getfacl
[edit]
[-] aspell
[edit]
[-] xmvn-builddep
[edit]
[-] sg_modes
[edit]
[-] update-crypto-policies
[edit]
[-] sg_raw
[edit]
[-] sg_rmsn
[edit]
[-] dircolors
[edit]
[-] rpmls
[edit]
[-] dltest
[edit]
[-] lua
[edit]
[-] aclocal
[edit]
[-] autopoint
[edit]
[-] rnano
[edit]
[-] systemd-umount
[edit]
[-] sftp
[edit]
[-] atop
[edit]
[-] postgresql-9.6-setup
[edit]
[-] ea-php56
[edit]
[-] lzmore
[edit]
[-] vlock
[edit]
[-] pkttyagent
[edit]
[-] nf-log
[edit]
[-] grub2-mkrescue
[edit]
[-] rdoc
[edit]
[-] repoclosure
[edit]
[-] whois.md
[edit]
[-] nl-route-delete
[edit]
[-] p11-kit
[edit]
[-] lz4c
[edit]
[-] ndptool
[edit]
[-] salt-minion
[edit]
[-] pigz
[edit]
[-] systemd-firstboot
[edit]
[-] clhsdb
[edit]
[-] randpkt
[edit]
[-] scalar
[edit]
[-] yum
[edit]
[-] fips-mode-setup
[edit]
[-] lsscsi
[edit]
[-] peekfd
[edit]
[-] modutil
[edit]
[-] rpm
[edit]
[-] gmake
[edit]
[-] yum-builddep
[edit]
[-] ea-php81
[edit]
[-] tcumttest
[edit]
[-] ping
[edit]
[-] sha256hmac
[edit]
[-] gpg-error
[edit]
[-] guile
[edit]
[-] captype
[edit]
[-] rpmbuild
[edit]
[-] pmloglabel
[edit]
[-] unpigz
[edit]
[-] aria_read_log
[edit]
[-] scsi_logging_level
[edit]
[-] raw
[edit]
[-] tred
[edit]
[-] ps2ps
[edit]
[-] package-cleanup
[edit]
[-] pod2latex
[edit]
[-] perldoc
[edit]
[-] guile2
[edit]
[-] lsattr
[edit]
[-] pyvenv-3.6
[edit]
[-] pkaction
[edit]
[-] gpic
[edit]
[-] mysqld_safe
[edit]
[-] bond2team
[edit]
[-] rev
[edit]
[-] xxd
[edit]
[-] awk
[edit]
[-] nl-class-add
[edit]
[-] snmpdf
[edit]
[-] snmpset
[edit]
[-] lynx
[edit]
[-] gml2gv
[edit]
[-] alt-java
[edit]
[-] nf-exp-list
[edit]
[-] smilint
[edit]