PATH:
usr
/
bin
#!/bin/sh # Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB # This file is public domain and comes with NO WARRANTY of any kind # # Script to start the MySQL daemon and restart it if it dies unexpectedly # # This should be executed in the MySQL base directory if you are using a # binary installation that is not installed in its compile-time default # location # # mysql.server works by first doing a cd to the base directory and from there # executing mysqld_safe # Initialize script globals KILL_MYSQLD=1; MYSQLD= niceness=0 nowatch=0 mysqld_ld_preload= mysqld_ld_library_path= flush_caches=0 numa_interleave=0 wsrep_on=0 dry_run=0 defaults_group_suffix= # Initial logging status: error log is not open, and not using syslog logging=init want_syslog=0 syslog_tag= user='mysql' group='mysql' pid_file= err_log= err_log_base= skip_err_log=0 syslog_tag_mysqld=mysqld syslog_tag_mysqld_safe=mysqld_safe trap '' 1 2 3 15 # we shouldn't let anyone kill us # MySQL-specific environment variable. First off, it's not really a umask, # it's the desired mode. Second, it follows umask(2), not umask(3) in that # octal needs to be explicit. Our shell might be a proper sh without printf, # multiple-base arithmetic, and binary arithmetic, so this will get ugly. # We reject decimal values to keep things at least half-sane. umask 007 # fallback UMASK="${UMASK-0640}" fmode=`echo "$UMASK" | sed -e 's/[^0246]//g'` octalp=`echo "$fmode"|cut -c1` fmlen=`echo "$fmode"|wc -c|sed -e 's/ //g'` if [ "x$octalp" != "x0" -o "x$UMASK" != "x$fmode" -o "x$fmlen" != "x5" ] then fmode=0640 echo "UMASK must be a 3-digit mode with an additional leading 0 to indicate octal." >&2 echo "The first digit will be corrected to 6, the others may be 0, 2, 4, or 6." >&2 fi fmode=`echo "$fmode"|cut -c3-4` fmode="6$fmode" if [ "x$UMASK" != "x0$fmode" ] then echo "UMASK corrected from $UMASK to 0$fmode ..." fi defaults= case "$1" in --no-defaults|--defaults-file=*|--defaults-extra-file=*) defaults="$1"; shift ;; esac usage () { cat <<EOF Usage: $0 [OPTIONS] --no-defaults Don't read the system defaults file --defaults-file=FILE Use the specified defaults file --defaults-extra-file=FILE Also use defaults from the specified file --defaults-group-suffix=X Additionally read default groups with X appended as a suffix --ledir=DIRECTORY Look for mysqld in the specified directory --open-files-limit=LIMIT Limit the number of open files --crash-script=FILE Script to call when mysqld crashes --core-file-size=LIMIT Limit core files to the specified size --timezone=TZ Set the system timezone --malloc-lib=LIB Preload shared library LIB if available --mysqld=FILE Use the specified file as mysqld --mysqld-version=VERSION Use "mysqld-VERSION" as mysqld --dry-run Simulate the start to detect errors but don't start --nice=NICE Set the scheduling priority of mysqld --no-auto-restart Exit after starting mysqld --nowatch Exit after starting mysqld --plugin-dir=DIR Plugins are under DIR or DIR/VERSION, if VERSION is given --skip-kill-mysqld Don't try to kill stray mysqld processes --syslog Log messages to syslog with 'logger' --skip-syslog Log messages to error log (default) --syslog-tag=TAG Pass -t "mysqld-TAG" to 'logger' --flush-caches Flush and purge buffers/caches before starting the server --numa-interleave Run mysqld with its memory interleaved on all NUMA nodes All other options are passed to the mysqld program. EOF exit 1 } find_in_bin() { if test -x "$MY_BASEDIR_VERSION/bin/$1" then echo "$MY_BASEDIR_VERSION/bin/$1" elif test -x "/usr/bin/$1" then echo "/usr/bin/$1" else echo "$1" fi } log_generic () { [ $dry_run -eq 1 ] && return priority="$1" shift msg="`date +'%y%m%d %H:%M:%S'` mysqld_safe $*" echo "$msg" case $logging in init) ;; # Just echo the message, don't save it anywhere file) if [ "$helper_exist" -eq "0" ]; then echo "$msg" | "$helper" "$user" log "$err_log" fi ;; syslog) logger -t "$syslog_tag_mysqld_safe" -p "$priority" "$*" ;; *) echo "Internal program error (non-fatal):" \ " unknown logging method '$logging'" >&2 ;; esac } log_error () { log_generic daemon.error "$@" >&2 } log_notice () { log_generic daemon.notice "$@" } eval_log_error () { local cmd="$1" case $logging in file) if [ "$helper_exist" -eq "0" ]; then cmd="$cmd 2>&1 | "`shell_quote_string "$helper"`" $user log "`shell_quote_string "$err_log"` fi ;; syslog) # mysqld often prefixes its messages with a timestamp, which is # redundant when logging to syslog (which adds its own timestamp) # However, we don't strip the timestamp with sed here, because # sed buffers output (only GNU sed supports a -u (unbuffered) option) # which means that messages may not get sent to syslog until the # mysqld process quits. cmd="$cmd 2>&1 | logger -t '$syslog_tag_mysqld' -p daemon.error" ;; *) echo "Internal program error (non-fatal):" \ " unknown logging method '$logging'" >&2 ;; esac if test $nowatch -eq 1 then # We'd prefer to exec $cmd here, but SELinux needs to be fixed first #/usr/bin/logger "Running mysqld: $cmd" eval "$cmd &" exit 0 else #echo "Running mysqld: [$cmd]" eval "$cmd" fi } shell_quote_string() { # This sed command makes sure that any special chars are quoted, # so the arg gets passed exactly to the server. echo "$1" | sed -e 's,\([^a-zA-Z0-9/_.=-]\),\\\1,g' } wsrep_pick_url() { [ $# -eq 0 ] && return 0 log_error "WSREP: 'wsrep_urls' is DEPRECATED! Use wsrep_cluster_address to specify multiple addresses instead." if ! command -v nc >/dev/null then log_error "ERROR: nc tool not found in PATH! Make sure you have it installed." return 1 fi local url # Assuming URL in the form scheme://host:port # If host and port are not NULL, the liveness of URL is assumed to be tested # If port part is absent, the url is returned literally and unconditionally # If every URL has port but none is reachable, nothing is returned for url in `echo $@ | sed s/,/\ /g` 0; do local host=`echo $url | cut -d \: -f 2 | sed s/^\\\/\\\///` local port=`echo $url | cut -d \: -f 3` [ -z "$port" ] && break nc -z "$host" $port >/dev/null && break done if [ "$url" == "0" ]; then log_error "ERROR: none of the URLs in '$@' is reachable." return 1 fi echo $url } # Run mysqld with --wsrep-recover and parse recovered position from log. # Position will be stored in wsrep_start_position_opt global. wsrep_start_position_opt="" wsrep_recover_position() { local mysqld_cmd="$@" local euid=$(id -u) local ret=0 local wr_logfile=$(mktemp /tmp/wsrep_recovery.XXXXXX) # safety checks if [ -z $wr_logfile ]; then log_error "WSREP: mktemp failed" return 1 fi if [ -f $wr_logfile ]; then # NOTE! Do not change ownership of the temporary file, as on newer kernel # versions fs.protected_regular is set to '2' and redirecting output with > # as root to a file not owned by root will fail with "Permission denied" chmod 600 $wr_logfile else log_error "WSREP: mktemp failed" return 1 fi local wr_pidfile="$DATADIR/"`hostname`"-recover.pid" local wr_options="--disable-log-error --pid-file='$wr_pidfile'" log_notice "WSREP: Running position recovery with $wr_options" eval "$mysqld_cmd --wsrep_recover $wr_options 2> $wr_logfile" if [ ! -s "$wr_logfile" ]; then log_error "Log file $wr_logfile was empty, cannot proceed. Is system running fs.protected_regular?" exit 1 fi local rp="$(grep 'WSREP: Recovered position:' $wr_logfile)" if [ -z "$rp" ]; then local skipped="$(grep WSREP $wr_logfile | grep 'skipping position recovery')" if [ -z "$skipped" ]; then log_error "WSREP: Failed to recover position: '`cat $wr_logfile`'" ret=1 else log_notice "WSREP: Position recovery skipped" fi else local start_pos="$(echo $rp | sed 's/.*WSREP\:\ Recovered\ position://' \ | sed 's/^[ \t]*//')" log_notice "WSREP: Recovered position $start_pos" wsrep_start_position_opt="--wsrep_start_position=$start_pos" fi [ $ret -eq 0 ] && rm $wr_logfile return $ret } parse_arguments() { for arg do val=`echo "$arg" | sed -e "s;--[^=]*=;;"` case "$arg" in # these get passed explicitly to mysqld --basedir=*) MY_BASEDIR_VERSION="$val" ;; --datadir=*|--data=*) DATADIR="$val" ;; --pid[-_]file=*) pid_file="$val" ;; --plugin[-_]dir=*) PLUGIN_DIR="$val" ;; --user=*) user="$val"; SET_USER=1 ;; --group=*) group="$val"; SET_USER=1 ;; --log[-_]basename=*|--hostname=*|--loose[-_]log[-_]basename=*) pid_file="$val.pid"; err_log_base="$val"; ;; # these might have been set in a [mysqld_safe] section of my.cnf # they are added to mysqld command line to override settings from my.cnf --skip[-_]log[-_]error) err_log=; skip_err_log=1; ;; --log[-_]error=*) err_log="$val"; skip_err_log=0; ;; --port=*) mysql_tcp_port="$val" ;; --socket=*) mysql_unix_port="$val" ;; # mysqld_safe-specific options - must be set in my.cnf ([mysqld_safe])! --core[-_]file[-_]size=*) core_file_size="$val" ;; --ledir=*) ledir="$val" ;; --malloc[-_]lib=*) set_malloc_lib "$val" ;; --crash[-_]script=*) crash_script="$val" ;; --mysqld=*) MYSQLD="$val" ;; --mysqld[-_]version=*) if test -n "$val" then MYSQLD="mysqld-$val" PLUGIN_VARIANT="/$val" else MYSQLD="mysqld" fi ;; --dry[-_]run) dry_run=1 ;; --nice=*) niceness="$val" ;; --nowatch|--no[-_]watch|--no[-_]auto[-_]restart) nowatch=1 ;; --open[-_]files[-_]limit=*) open_files="$val" ;; --skip[-_]kill[-_]mysqld*) KILL_MYSQLD=0 ;; --syslog) want_syslog=1 ;; --skip[-_]syslog) want_syslog=0 ;; --syslog[-_]tag=*) syslog_tag="$val" ;; --timezone=*) TZ="$val"; export TZ; ;; --flush[-_]caches) flush_caches=1 ;; --numa[-_]interleave) numa_interleave=1 ;; --wsrep[-_]on) wsrep_on=1 append_arg_to_args "$arg" ;; --skip[-_]wsrep[-_]on) wsrep_on=0 append_arg_to_args "$arg" ;; --wsrep[-_]on=*) if echo $val | grep -iq '\(ON\|1\)'; then wsrep_on=1 else wsrep_on=0 fi append_arg_to_args "$arg" ;; --wsrep[-_]urls=*) wsrep_urls="$val"; ;; --wsrep[-_]provider=*) if test -n "$val" && test "$val" != "none" then wsrep_restart=1 fi append_arg_to_args "$arg" ;; --defaults-group-suffix=*) defaults_group_suffix="$arg" ;; --help) usage ;; *) case "$unrecognized_handling" in collect) append_arg_to_args "$arg" ;; complain) log_error "unknown option '$arg'" ;; esac esac done } # Add a single shared library to the list of libraries which will be added to # LD_PRELOAD for mysqld # # Since LD_PRELOAD is a space-separated value (for historical reasons), if a # shared lib's path contains spaces, that path will be prepended to # LD_LIBRARY_PATH and stripped from the lib value. add_mysqld_ld_preload() { lib_to_add="$1" log_notice "Adding '$lib_to_add' to LD_PRELOAD for mysqld" case "$lib_to_add" in *' '*) # Must strip path from lib, and add it to LD_LIBRARY_PATH lib_file=`basename "$lib_to_add"` case "$lib_file" in *' '*) # The lib file itself has a space in its name, and can't # be used in LD_PRELOAD log_error "library name '$lib_to_add' contains spaces and can not be used with LD_PRELOAD" exit 1 ;; esac lib_path=`dirname "$lib_to_add"` lib_to_add="$lib_file" [ -n "$mysqld_ld_library_path" ] && mysqld_ld_library_path="$mysqld_ld_library_path:" mysqld_ld_library_path="$mysqld_ld_library_path$lib_path" ;; esac # LD_PRELOAD is a space-separated [ -n "$mysqld_ld_preload" ] && mysqld_ld_preload="$mysqld_ld_preload " mysqld_ld_preload="${mysqld_ld_preload}$lib_to_add" } # Returns LD_PRELOAD (and LD_LIBRARY_PATH, if needed) text, quoted to be # suitable for use in the eval that calls mysqld. # # All values in mysqld_ld_preload are prepended to LD_PRELOAD. mysqld_ld_preload_text() { text= if [ -n "$mysqld_ld_preload" ]; then new_text="$mysqld_ld_preload" [ -n "$LD_PRELOAD" ] && new_text="$new_text $LD_PRELOAD" text="${text}LD_PRELOAD="`shell_quote_string "$new_text"`' ' fi if [ -n "$mysqld_ld_library_path" ]; then new_text="$mysqld_ld_library_path" [ -n "$LD_LIBRARY_PATH" ] && new_text="$new_text:$LD_LIBRARY_PATH" text="${text}LD_LIBRARY_PATH="`shell_quote_string "$new_text"`' ' fi echo "$text" } # set_malloc_lib LIB # - If LIB is empty, do nothing and return # - If LIB starts with 'tcmalloc' or 'jemalloc', look for the shared library # using `ldconfig`. # tcmalloc is part of the Google perftools project. # - If LIB is an absolute path, assume it is a malloc shared library # # Put LIB in mysqld_ld_preload, which will be added to LD_PRELOAD when # running mysqld. See ld.so for details. set_malloc_lib() { malloc_lib="$1" if expr "$malloc_lib" : "\(tcmalloc\|jemalloc\)" > /dev/null ; then export PATH=$PATH:/sbin if ! command -v ldconfig > /dev/null 2>&1 then log_error "ldconfig command not found, required for ldconfig -p" exit 1 fi # format from ldconfig: # "libjemalloc.so.1 (libc6,x86-64) => /usr/lib/x86_64-linux-gnu/libjemalloc.so.1" libmalloc_path="$(ldconfig -p | sed -n "/lib${malloc_lib}/p" | cut -d '>' -f2)" if [ -z "$libmalloc_path" ]; then log_error "no shared library for lib$malloc_lib.so.[0-9] found." exit 1 fi for f in $libmalloc_path; do if [ -f "$f" ]; then malloc_lib=$f # get the first path if many break fi done fi # Allow --malloc-lib='' to override other settings [ -z "$malloc_lib" ] && return case "$malloc_lib" in /*) if [ ! -r "$malloc_lib" ]; then log_error "--malloc-lib '$malloc_lib' can not be read and will not be used" exit 1 fi ;; *) log_error "--malloc-lib must be an absolute path, 'tcmalloc' or " \ "'jemalloc'; ignoring value '$malloc_lib'" exit 1 ;; esac add_mysqld_ld_preload "$malloc_lib" } # # First, try to find BASEDIR and ledir (where mysqld is) # MY_PWD=`dirname $0` MY_PWD=`cd "$MY_PWD"/.. && pwd` # Check for the directories we would expect from a binary release install if test -n "$MY_BASEDIR_VERSION" -a -d "$MY_BASEDIR_VERSION" then # BASEDIR is already overridden on command line. Do not re-set. # Use BASEDIR to discover le. if test -x "$MY_BASEDIR_VERSION/libexec/mysqld" then ledir="$MY_BASEDIR_VERSION/libexec" elif test -x "$MY_BASEDIR_VERSION/sbin/mysqld" then ledir="$MY_BASEDIR_VERSION/sbin" else ledir="$MY_BASEDIR_VERSION/bin" fi elif test -x "$MY_PWD/bin/mysqld" then MY_BASEDIR_VERSION="$MY_PWD" # Where bin, share and data are ledir="$MY_PWD/bin" # Where mysqld is # Check for the directories we would expect from a source install elif test -x "$MY_PWD/libexec/mysqld" then MY_BASEDIR_VERSION="$MY_PWD" # Where libexec, share and var are ledir="$MY_PWD/libexec" # Where mysqld is elif test -x "$MY_PWD/sbin/mysqld" then MY_BASEDIR_VERSION="$MY_PWD" # Where sbin, share and var are ledir="$MY_PWD/sbin" # Where mysqld is # Since we didn't find anything, used the compiled-in defaults else MY_BASEDIR_VERSION='/usr' ledir='/usr/sbin' fi helper=`find_in_bin mysqld_safe_helper` print_defaults=`find_in_bin my_print_defaults` # Check if helper exists command -v $helper --help >/dev/null 2>&1 helper_exist=$? # # Second, try to find the data directory # # Try where the binary installs put it if test -d $MY_BASEDIR_VERSION/data/mysql then DATADIR=$MY_BASEDIR_VERSION/data # Next try where the source installs put it elif test -d $MY_BASEDIR_VERSION/var/mysql then DATADIR=$MY_BASEDIR_VERSION/var # Or just give up and use our compiled-in default else DATADIR=/var/lib/mysql fi if test -z "$MYSQL_HOME" then if test -r "$DATADIR/my.cnf" then log_error "WARNING: Found $DATADIR/my.cnf The data directory is not a valid location for my.cnf, please move it to $MY_BASEDIR_VERSION/my.cnf" fi MYSQL_HOME=$MY_BASEDIR_VERSION fi export MYSQL_HOME append_arg_to_args () { args="$args "`shell_quote_string "$1"` } args= # Get first arguments from the my.cnf file, groups [mysqld] and [mysqld_safe] # and then merge with the command line arguments SET_USER=2 parse_arguments `$print_defaults $defaults --loose-verbose --mysqld` if test $SET_USER -eq 2 then SET_USER=0 fi # If arguments come from [mysqld_safe] section of my.cnf # we complain about unrecognized options unrecognized_handling=complain parse_arguments `$print_defaults $defaults --loose-verbose mysqld_safe safe_mysqld mariadb_safe` # We only need to pass arguments through to the server if we don't # handle them here. So, we collect unrecognized options (passed on # the command line) into the args variable. unrecognized_handling=collect parse_arguments "$@" # # Try to find the plugin directory # # Use user-supplied argument if [ -n "${PLUGIN_DIR}" ]; then plugin_dir="${PLUGIN_DIR}" else # Try to find plugin dir relative to basedir for dir in lib64/mysql/plugin lib64/plugin lib/mysql/plugin lib/plugin do if [ -d "${MY_BASEDIR_VERSION}/${dir}" ]; then plugin_dir="${MY_BASEDIR_VERSION}/${dir}" break fi done # Give up and use compiled-in default if [ -z "${plugin_dir}" ]; then plugin_dir='/usr/lib/x86_64-linux-gnu/mariadb19/plugin' fi fi plugin_dir="${plugin_dir}${PLUGIN_VARIANT}" # Determine what logging facility to use # Ensure that 'logger' exists, if it's requested if [ $want_syslog -eq 1 ] then if ! command -v logger > /dev/null then log_error "--syslog requested, but no 'logger' program found. Please ensure that 'logger' is in your PATH, or do not specify the --syslog option to mysqld_safe." exit 1 fi fi if [ $skip_err_log -eq 1 ] then append_arg_to_args "--skip-log-error" fi if [ -n "$err_log" -o $want_syslog -eq 0 ] then if [ -n "$err_log" ] then # mysqld adds ".err" if there is no extension on the --log-error # argument; must match that here, or mysqld_safe will write to a # different log file than mysqld # mysqld does not add ".err" to "--log-error=foo."; it considers a # trailing "." as an extension if expr "$err_log" : '.*\.[^/]*$' > /dev/null then : else err_log="$err_log".err fi case "$err_log" in /* ) ;; * ) err_log="$DATADIR/$err_log" ;; esac else if [ -n "$err_log_base" ] then err_log=$err_log_base.err case "$err_log" in /* ) ;; * ) err_log="$DATADIR/$err_log" ;; esac else err_log=$DATADIR/`hostname`.err fi fi append_arg_to_args "--log-error=$err_log" if [ $want_syslog -eq 1 ] then # User explicitly asked for syslog, so warn that it isn't used log_error "Can't log to error log and syslog at the same time. Remove all --log-error configuration options for --syslog to take effect." want_syslog=0 fi # Log to err_log file log_notice "Logging to '$err_log'." logging=file else if [ -n "$syslog_tag" ] then # Sanitize the syslog tag syslog_tag=`echo "$syslog_tag" | sed -e 's/[^a-zA-Z0-9_-]/_/g'` syslog_tag_mysqld_safe="${syslog_tag_mysqld_safe}-$syslog_tag" syslog_tag_mysqld="${syslog_tag_mysqld}-$syslog_tag" fi log_notice "Logging to syslog." logging=syslog fi USER_OPTION="" if test -w / -o "$USER" = "root" then if test "$user" != "root" -o $SET_USER = 1 then USER_OPTION="--user=$user" # To be used if/when we enable --system-group as an option to mysqld GROUP_OPTION="--group=$group" fi if test -n "$open_files" then ulimit -n $open_files fi fi if test -n "$open_files" then append_arg_to_args "--open-files-limit=$open_files" fi safe_mysql_unix_port=${mysql_unix_port:-${MYSQL_UNIX_PORT:-/var/run/mysqld/mysqld.sock}} # Make sure that directory for $safe_mysql_unix_port exists mysql_unix_port_dir=`dirname $safe_mysql_unix_port` if [ ! -d $mysql_unix_port_dir -a $dry_run -eq 0 ] then if ! mkdir -p $mysql_unix_port_dir then log_error "Fatal error Can't create database directory '$mysql_unix_port'" exit 1 fi if [ "$user" -a "$group" ]; then chown $user:$group $mysql_unix_port_dir else [ "$user" ] && chown $user $mysql_unix_port_dir [ "$group" ] && chgrp $group $mysql_unix_port_dir fi chmod 755 $mysql_unix_port_dir fi # If the user doesn't specify a binary, we assume name "mysqld" if test -z "$MYSQLD" then MYSQLD=mysqld fi if test ! -x "$ledir/$MYSQLD" then log_error "The file $ledir/$MYSQLD does not exist or is not executable. Please cd to the mysql installation directory and restart this script from there as follows: ./bin/mysqld_safe& See https://mariadb.com/kb/en/mysqld_safe for more information" exit 1 fi if test -z "$pid_file" then pid_file="`hostname`.pid" fi # MariaDB wants pid file without datadir append_arg_to_args "--pid-file=$pid_file" case "$pid_file" in /* ) ;; * ) pid_file="$DATADIR/$pid_file" ;; esac if test -n "$mysql_unix_port" then append_arg_to_args "--socket=$mysql_unix_port" fi if test -n "$mysql_tcp_port" then append_arg_to_args "--port=$mysql_tcp_port" fi if test $niceness -eq 0 then NOHUP_NICENESS="nohup" else NOHUP_NICENESS="nohup nice -$niceness" fi # Using nice with no args to get the niceness level is GNU-specific. # This check could be extended for other operating systems (e.g., # BSD could use "nohup sh -c 'ps -o nice -p $$' | tail -1"). # But, it also seems that GNU nohup is the only one which messes # with the priority, so this is okay. if nohup nice > /dev/null 2>&1 then normal_niceness=`nice` nohup_niceness=`nohup nice 2>/dev/null` numeric_nice_values=1 for val in $normal_niceness $nohup_niceness do case "$val" in -[0-9] | -[0-9][0-9] | -[0-9][0-9][0-9] | \ [0-9] | [0-9][0-9] | [0-9][0-9][0-9] ) ;; * ) numeric_nice_values=0 ;; esac done if test $numeric_nice_values -eq 1 then nice_value_diff=`expr $nohup_niceness - $normal_niceness` if test $? -eq 0 && test $nice_value_diff -gt 0 && \ nice --$nice_value_diff echo testing > /dev/null 2>&1 then # nohup increases the priority (bad), and we are permitted # to lower the priority with respect to the value the user # might have been given niceness=`expr $niceness - $nice_value_diff` NOHUP_NICENESS="nice -$niceness nohup" fi fi else if nohup echo testing > /dev/null 2>&1 then : else # nohup doesn't work on this system NOHUP_NICENESS="" fi fi # Try to set the core file size (even if we aren't root) because many systems # don't specify a hard limit on core file size. if test -n "$core_file_size" then ulimit -c $core_file_size fi # # If there exists an old pid file, check if the daemon is already running # Note: The switches to 'ps' may depend on your operating system if test -f "$pid_file" && [ $dry_run -eq 0 ] then PID=`cat "$pid_file"` if kill -0 $PID > /dev/null 2> /dev/null then if ps wwwp $PID | grep -v mysqld_safe | grep -- $MYSQLD > /dev/null then # The pid contains a mysqld process log_error "A mysqld process already exists" exit 1 fi fi rm -f "$pid_file" if test -f "$pid_file" then log_error "Fatal error: Can't remove the pid file: $pid_file Please remove it manually and start $0 again; mysqld daemon not started" exit 1 fi fi # # Flush and purge buffers/caches. # if true && test $flush_caches -eq 1 then # Locate sync, ensure it exists. if ! command -v sync > /dev/null then log_error "sync command not found, required for --flush-caches" exit 1 # Flush file system buffers. elif ! sync then # Huh, the sync() function is always successful... log_error "sync failed, check if sync is properly installed" fi # Locate sysctl, ensure it exists. if ! command -v sysctl > /dev/null then log_error "sysctl command not found, required for --flush-caches" exit 1 # Purge page cache, dentries and inodes. elif ! sysctl -q -w vm.drop_caches=3 then log_error "sysctl failed, check the error message for details" exit 1 fi elif test $flush_caches -eq 1 then log_error "--flush-caches is not supported on this platform" exit 1 fi # # Uncomment the following lines if you want all tables to be automatically # checked and repaired during startup. You should add sensible key_buffer # and sort_buffer values to my.cnf to improve check performance or require # less disk space. # Alternatively, you can start mysqld with the "myisam-recover" option. See # the manual for details. # # echo "Checking tables in $DATADIR" # $MY_BASEDIR_VERSION/bin/myisamchk --silent --force --fast --medium-check $DATADIR/*/*.MYI # $MY_BASEDIR_VERSION/bin/isamchk --silent --force $DATADIR/*/*.ISM # Does this work on all systems? #if type ulimit | grep "shell builtin" > /dev/null #then # ulimit -n 256 > /dev/null 2>&1 # Fix for BSD and FreeBSD systems #fi cmd="`mysqld_ld_preload_text`$NOHUP_NICENESS" [ $dry_run -eq 1 ] && cmd='' # # Set mysqld's memory interleave policy. # if true && test $numa_interleave -eq 1 then # Locate numactl, ensure it exists. if ! command -v numactl > /dev/null then log_error "numactl command not found, required for --numa-interleave" exit 1 # Attempt to run a command, ensure it works. elif ! numactl --interleave=all true then log_error "numactl failed, check if numactl is properly installed" fi # Launch mysqld with numactl. [ $dry_run -eq 0 ] && cmd="$cmd numactl --interleave=all" elif test $numa_interleave -eq 1 then log_error "--numa-interleave is not supported on this platform" exit 1 fi for i in "$ledir/$MYSQLD" "$defaults_group_suffix" "$defaults" "--basedir=$MY_BASEDIR_VERSION" \ "--datadir=$DATADIR" "--plugin-dir=$plugin_dir" "$USER_OPTION" do cmd="$cmd "`shell_quote_string "$i"` done cmd="$cmd $args" if [ $dry_run -eq 1 ] then # RETURN or EXIT depending if the script is being sourced or not. (return 2> /dev/null) && return || exit fi # Avoid 'nohup: ignoring input' warning test -n "$NOHUP_NICENESS" && cmd="$cmd < /dev/null" log_notice "Starting $MYSQLD daemon with databases from $DATADIR" # variable to track the current number of "fast" (a.k.a. subsecond) restarts fast_restart=0 # maximum number of restarts before trottling kicks in max_fast_restarts=5 # flag whether a usable sleep command exists have_sleep=1 # close stdout and stderr, everything goes to $logging now if expr "${-}" : '.*x' > /dev/null then : else exec 1>/dev/null exec 2>/dev/null fi # maximum number of wsrep restarts max_wsrep_restarts=0 while true do rm -f "$pid_file" # Some extra safety start_time=`date +%M%S` # Perform wsrep position recovery if wsrep_on=1, skip otherwise. if test $wsrep_on -eq 1 then # this sets wsrep_start_position_opt wsrep_recover_position "$cmd" [ $? -ne 0 ] && exit 1 # [ -n "$wsrep_urls" ] && url=`wsrep_pick_url $wsrep_urls` # check connect address if [ -z "$url" ] then eval_log_error "$cmd $wsrep_start_position_opt" else eval_log_error "$cmd $wsrep_start_position_opt --wsrep_cluster_address=$url" fi else eval_log_error "$cmd" fi end_time=`date +%M%S` if test ! -f "$pid_file" # This is removed if normal shutdown then break fi # sanity check if time reading is sane and there's sleep if test $end_time -gt 0 -a $have_sleep -gt 0 then # throttle down the fast restarts if test $end_time -eq $start_time then fast_restart=`expr $fast_restart + 1` if test $fast_restart -ge $max_fast_restarts then log_notice "The server is respawning too fast. Sleeping for 1 second." sleep 1 sleep_state=$? if test $sleep_state -gt 0 then log_notice "The server is respawning too fast and no working sleep command. Turning off trottling." have_sleep=0 fi fast_restart=0 fi else fast_restart=0 fi fi if true && test $KILL_MYSQLD -eq 1 then # Test if one process was hanging. # This is only a fix for Linux (running as base 3 mysqld processes) # but should work for the rest of the servers. # The only thing is ps x => redhat 5 gives warnings when using ps -x. # kill -9 is used or the process won't react on the kill. numofproces=`ps xaww | grep -v "grep" | grep "$ledir/$MYSQLD\>" | grep -c "pid-file=$pid_file"` log_notice "Number of processes running now: $numofproces" I=1 while test "$I" -le "$numofproces" do PROC=`ps xaww | grep "$ledir/$MYSQLD\>" | grep -v "grep" | grep "pid-file=$pid_file" | sed -n '$p'` for T in $PROC do break done # echo "TEST $I - $T **" if kill -9 $T then log_error "$MYSQLD process hanging, pid $T - killed" else break fi I=`expr $I + 1` done fi if [ -n "$wsrep_restart" ] then if [ $wsrep_restart -le $max_wsrep_restarts ] then wsrep_restart=`expr $wsrep_restart + 1` log_notice "WSREP: sleeping 15 seconds before restart" sleep 15 else log_notice "WSREP: not restarting wsrep node automatically" break fi fi log_notice "mysqld restarted" if test -n "$crash_script" then crash_script_output=`$crash_script 2>&1` log_error "$crash_script_output" fi done log_notice "mysqld from pid file $pid_file ended"
[+]
..
[-] scsi_mandat
[edit]
[-] bzmore
[edit]
[-] x86_64-linux-gnu-gcov-dump
[edit]
[-] perl5.30.0
[edit]
[-] dh_dwz
[edit]
[-] stty
[edit]
[-] less
[edit]
[-] comm
[edit]
[-] msgexec
[edit]
[-] dd
[edit]
[-] sg_opcodes
[edit]
[-] setlogcons
[edit]
[-] sg_get_config
[edit]
[-] zless
[edit]
[-] dh_bugfiles
[edit]
[-] linux-boot-prober
[edit]
[-] aa-enabled
[edit]
[-] vcs-run
[edit]
[-] prove
[edit]
[-] dpkg-parsechangelog
[edit]
[-] prlimit
[edit]
[-] grub-editenv
[edit]
[-] pygettext3.8
[edit]
[-] vim.basic
[edit]
[-] byobu-launcher-install
[edit]
[-] iconv
[edit]
[-] patch
[edit]
[-] chardetect3
[edit]
[-] pl2pm
[edit]
[-] ntfsfix
[edit]
[-] systemd-tmpfiles
[edit]
[-] dh_auto_configure
[edit]
[-] sudoedit
[edit]
[-] jsonpatch-jsondiff
[edit]
[-] systemd-notify
[edit]
[-] flock
[edit]
[-] apt-cdrom
[edit]
[-] mktemp
[edit]
[-] dh_perl_dbi
[edit]
[-] aria_ftdump
[edit]
[-] growpart
[edit]
[-] htdbm
[edit]
[-] po2debconf
[edit]
[-] phar.phar7.4
[edit]
[-] col
[edit]
[-] pkaction
[edit]
[-] py3compile
[edit]
[-] dbiprof
[edit]
[-] volname
[edit]
[-] ntfscmp
[edit]
[-] from
[edit]
[-] dbus-run-session
[edit]
[-] x86_64-linux-gnu-ar
[edit]
[-] pr
[edit]
[-] x86_64-linux-gnu-gcc-ar
[edit]
[-] systemd-detect-virt
[edit]
[-] pyjwt3
[edit]
[-] busctl
[edit]
[-] run-one
[edit]
[-] vim.tiny
[edit]
[-] dh_installmodules
[edit]
[-] funzip
[edit]
[-] unicode_start
[edit]
[-] nisdomainname
[edit]
[-] dh_auto_build
[edit]
[-] ssh-keyscan
[edit]
[-] join
[edit]
[-] x86_64-linux-gnu-gcc-nm
[edit]
[-] g++-9
[edit]
[-] logger
[edit]
[-] script
[edit]
[-] pod2text
[edit]
[-] fwupdmgr
[edit]
[-] tabs
[edit]
[-] python3
[edit]
[-] unzip
[edit]
[-] sg_stream_ctl
[edit]
[-] gpg-agent
[edit]
[-] grog
[edit]
[-] host
[edit]
[-] snapfuse
[edit]
[-] phar7.4
[edit]
[-] uname
[edit]
[-] x86_64-linux-gnu-ld.bfd
[edit]
[-] debconf-show
[edit]
[-] setupcon
[edit]
[-] pkmon
[edit]
[-] bzip2recover
[edit]
[-] base32
[edit]
[-] timeout
[edit]
[-] nsupdate
[edit]
[-] sg_get_lba_status
[edit]
[-] symcryptrun
[edit]
[-] git-upload-archive
[edit]
[-] sg_sat_identify
[edit]
[-] zipinfo
[edit]
[-] dh_auto_install
[edit]
[-] cautious-launcher
[edit]
[-] phpize8.0
[edit]
[-] psfstriptable
[edit]
[-] automake-1.16
[edit]
[-] resolve_stack_dump
[edit]
[-] mtr-packet
[edit]
[-] sleep
[edit]
[-] dh_lintian
[edit]
[-] perror
[edit]
[-] mysqlshow
[edit]
[-] debconf-set-selections
[edit]
[-] sg_requests
[edit]
[-] lsinitramfs
[edit]
[-] nm
[edit]
[-] nawk
[edit]
[-] cmp
[edit]
[-] more
[edit]
[-] lzgrep
[edit]
[-] lsns
[edit]
[-] ckbcomp
[edit]
[-] systemd-id128
[edit]
[-] dh_installmenu
[edit]
[-] aria_read_log
[edit]
[-] dh_phpcomposer
[edit]
[-] scsi_logging_level
[edit]
[-] mysqld_multi
[edit]
[-] kernel-install
[edit]
[-] autoscan
[edit]
[-] lslogins
[edit]
[-] dircolors
[edit]
[-] scsi_stop
[edit]
[-] sg_write_x
[edit]
[-] grub-kbdcomp
[edit]
[-] ntfs-3g.probe
[edit]
[-] ping
[edit]
[-] pbget
[edit]
[-] gcc
[edit]
[-] pgrep
[edit]
[-] msginit
[edit]
[-] byobu-enable
[edit]
[-] x86_64-linux-gnu-elfedit
[edit]
[-] dir
[edit]
[-] pkcon
[edit]
[-] stdbuf
[edit]
[-] setmetamode
[edit]
[-] getent
[edit]
[-] podebconf-display-po
[edit]
[-] sg_timestamp
[edit]
[-] ntfsdecrypt
[edit]
[-] chage
[edit]
[-] awk
[edit]
[-] dh_installppp
[edit]
[-] git-upload-pack
[edit]
[-] rcp
[edit]
[-] sg_rtpg
[edit]
[-] systemd-ask-password
[edit]
[-] encguess
[edit]
[-] bash
[edit]
[-] numfmt
[edit]
[-] sbverify
[edit]
[-] aria_pack
[edit]
[-] rvim
[edit]
[-] systemd-cgtop
[edit]
[-] inotifywait
[edit]
[-] dh_testroot
[edit]
[-] sg_read_attr
[edit]
[-] unexpand
[edit]
[-] byobu-keybindings
[edit]
[-] run-one-constantly
[edit]
[-] linux-version
[edit]
[-] x86_64-linux-gnu-gcc
[edit]
[-] cal
[edit]
[-] x86_64-linux-gnu-gcov-tool-9
[edit]
[-] gcov-9
[edit]
[-] mv
[edit]
[-] rlogin
[edit]
[-] arch
[edit]
[-] file
[edit]
[-] gprof
[edit]
[-] lspci
[edit]
[-] dpkg-genbuildinfo
[edit]
[-] utmpdump
[edit]
[-] gold
[edit]
[-] sg_test_rwbuf
[edit]
[-] mysql_setpermission
[edit]
[-] linux-update-symlinks
[edit]
[-] scp
[edit]
[-] grub-mkfont
[edit]
[-] dh_systemd_start
[edit]
[-] autom4te
[edit]
[-] logresolve
[edit]
[-] groups
[edit]
[-] dh_installdocs
[edit]
[-] shtool
[edit]
[-] false
[edit]
[-] nano
[edit]
[-] sg_ses_microcode
[edit]
[-] [
[edit]
[-] scsi_readcap
[edit]
[-] dbus-monitor
[edit]
[-] prtstat
[edit]
[-] sg_logs
[edit]
[-] vmtoolsd
[edit]
[-] ubuntu-distro-info
[edit]
[-] bzfgrep
[edit]
[-] socat
[edit]
[-] x86_64-linux-gnu-ranlib
[edit]
[-] clear_console
[edit]
[-] head
[edit]
[-] dh_ucf
[edit]
[-] size
[edit]
[-] zegrep
[edit]
[-] dh_prep
[edit]
[-] kmodsign
[edit]
[-] rm
[edit]
[-] tput
[edit]
[-] col2
[edit]
[-] gpg-zip
[edit]
[-] mysqlanalyze
[edit]
[-] aa-exec
[edit]
[-] users
[edit]
[-] fuser
[edit]
[-] man
[edit]
[-] linux-check-removal
[edit]
[-] networkd-dispatcher
[edit]
[-] systemd-mount
[edit]
[-] mysql_install_db
[edit]
[-] ntfscat
[edit]
[-] dh_gconf
[edit]
[-] resolveip
[edit]
[-] calendar
[edit]
[-] ld
[edit]
[-] fcgistarter
[edit]
[-] ld.gold
[edit]
[-] lexgrog
[edit]
[-] ssh-keygen
[edit]
[-] dh_clean
[edit]
[-] captoinfo
[edit]
[-] ctail
[edit]
[-] nroff
[edit]
[-] free
[edit]
[-] checkgid
[edit]
[-] objdump
[edit]
[-] php8.0
[edit]
[-] mysql_convert_table_format
[edit]
[-] sg_read_long
[edit]
[-] udevadm
[edit]
[-] mysqld_safe_helper
[edit]
[-] tee
[edit]
[-] mtrace
[edit]
[-] php7.4
[edit]
[-] gpgtar
[edit]
[-] unzipsfx
[edit]
[-] systemd-cgls
[edit]
[-] gpg
[edit]
[-] printf
[edit]
[-] pwdx
[edit]
[-] usbhid-dump
[edit]
[-] ntfsfallocate
[edit]
[-] sos-collector
[edit]
[-] sg_referrals
[edit]
[-] mkdir
[edit]
[-] ipcs
[edit]
[-] sg_prevent
[edit]
[-] dbus-update-activation-environment
[edit]
[-] unlz4
[edit]
[-] tac
[edit]
[-] lzfgrep
[edit]
[-] top
[edit]
[-] dh_installdebconf
[edit]
[-] expr
[edit]
[-] ftp
[edit]
[-] mysqldump
[edit]
[-] manpath
[edit]
[-] see
[edit]
[-] gpgv
[edit]
[-] btrfs-image
[edit]
[-] dh_installmanpages
[edit]
[-] ulockmgr_server
[edit]
[-] byobu-shell
[edit]
[-] killall
[edit]
[-] ptx
[edit]
[-] dmesg
[edit]
[-] dh_install
[edit]
[-] sg_copy_results
[edit]
[-] ptardiff
[edit]
[-] enc2xs
[edit]
[-] setfont
[edit]
[-] chown
[edit]
[-] telnet
[edit]
[-] keep-one-running
[edit]
[-] fold
[edit]
[-] do-release-upgrade
[edit]
[-] odbcinst
[edit]
[-] apt
[edit]
[-] dpkg-gencontrol
[edit]
[-] update-mime-database
[edit]
[-] make-first-existing-target
[edit]
[-] xdg-user-dirs-update
[edit]
[-] lorder
[edit]
[-] pcre2-config
[edit]
[-] touch
[edit]
[-] uncompress
[edit]
[-] x86_64-linux-gnu-g++-9
[edit]
[-] pidof
[edit]
[-] json_pp
[edit]
[-] xzfgrep
[edit]
[-] sg_sat_read_gplog
[edit]
[-] networkctl
[edit]
[-] login
[edit]
[-] xdg-user-dir
[edit]
[-] dh_installinfo
[edit]
[-] dh_listpackages
[edit]
[-] grub-menulst2cfg
[edit]
[-] fallocate
[edit]
[-] x86_64-linux-gnu-strip
[edit]
[-] pkttyagent
[edit]
[-] dpkg-gensymbols
[edit]
[-] readlink
[edit]
[-] as
[edit]
[-] grub-script-check
[edit]
[-] nl
[edit]
[-] dig
[edit]
[-] x86_64-linux-gnu-size
[edit]
[-] resizepart
[edit]
[-] keyring
[edit]
[-] gcov
[edit]
[-] shred
[edit]
[-] phar7.4.phar
[edit]
[-] mysql_tzinfo_to_sql
[edit]
[-] gpgsplit
[edit]
[-] dpkg
[edit]
[-] ip
[edit]
[-] peekfd
[edit]
[-] libtoolize
[edit]
[-] systemd-sysusers
[edit]
[-] dh_installmime
[edit]
[-] dh_icons
[edit]
[-] snice
[edit]
[-] at
[edit]
[-] htop
[edit]
[-] sg_format
[edit]
[-] ls
[edit]
[-] cloud-id
[edit]
[-] crontab
[edit]
[-] scsi_satl
[edit]
[-] grops
[edit]
[-] scsi_temperature
[edit]
[-] ping4
[edit]
[-] xxd
[edit]
[-] apport-collect
[edit]
[-] grub-mklayout
[edit]
[-] mysqldumpslow
[edit]
[-] colcrt
[edit]
[-] wsrep_sst_rsync_wan
[edit]
[-] debconf-apt-progress
[edit]
[-] apt-mark
[edit]
[-] dpkg-name
[edit]
[-] pic
[edit]
[-] sensible-pager
[edit]
[-] dh_installtmpfiles
[edit]
[-] gcc-nm-9
[edit]
[-] aulastlog
[edit]
[-] envsubst
[edit]
[-] perldoc
[edit]
[-] fwupdate
[edit]
[-] gpg-wks-server
[edit]
[-] uuidparse
[edit]
[-] localedef
[edit]
[-] x86_64-linux-gnu-addr2line
[edit]
[-] systemd-umount
[edit]
[-] uptime
[edit]
[-] hwe-support-status
[edit]
[-] run-one-until-failure
[edit]
[-] htpasswd
[edit]
[-] mariadb
[edit]
[-] myisamchk
[edit]
[-] id
[edit]
[-] tkconch3
[edit]
[-] on_ac_power
[edit]
[-] acpi_listen
[edit]
[-] aulast
[edit]
[-] sg_stpg
[edit]
[-] savelog
[edit]
[-] x86_64-linux-gnu-pkg-config
[edit]
[-] skill
[edit]
[-] x86_64-linux-gnu-gold
[edit]
[-] mysqlbinlog
[edit]
[-] mysqlslap
[edit]
[-] piconv
[edit]
[-] watch
[edit]
[-] byobu-prompt
[edit]
[-] md5sum
[edit]
[-] delpart
[edit]
[-] cp
[edit]
[-] splain
[edit]
[-] btrfstune
[edit]
[-] locale
[edit]
[-] x86_64-linux-gnu-gcov-9
[edit]
[-] pico
[edit]
[-] deb-systemd-invoke
[edit]
[-] test
[edit]
[-] msggrep
[edit]
[-] vmware-vgauth-cmd
[edit]
[-] mysqlcheck
[edit]
[-] fakeroot
[edit]
[-] view
[edit]
[-] dh_auto_test
[edit]
[-] systemd-analyze
[edit]
[-] debian-distro-info
[edit]
[-] ausyscall
[edit]
[-] instmodsh
[edit]
[-] php-config.default
[edit]
[-] phar.phar8.0
[edit]
[-] ctstat
[edit]
[-] dbus-daemon
[edit]
[-] atrm
[edit]
[-] md5sum.textutils
[edit]
[-] sg_emc_trespass
[edit]
[-] lsmod
[edit]
[-] byobu-launcher-uninstall
[edit]
[-] sg_write_buffer
[edit]
[-] sg_persist
[edit]
[-] ed
[edit]
[-] phar.phar
[edit]
[-] readelf
[edit]
[-] byobu-disable-prompt
[edit]
[-] unicode_stop
[edit]
[-] gapplication
[edit]
[-] gpic
[edit]
[-] ischroot
[edit]
[-] install-info
[edit]
[-] xargs
[edit]
[-] systemd-inhibit
[edit]
[-] tset
[edit]
[-] galera_recovery
[edit]
[-] pollinate
[edit]
[-] fusermount
[edit]
[-] sg_senddiag
[edit]
[-] infotocap
[edit]
[-] getkeycodes
[edit]
[-] zcat
[edit]
[-] grub-mkstandalone
[edit]
[-] yes
[edit]
[-] pkgtools
[edit]
[-] ln
[edit]
[-] showconsolefont
[edit]
[-] git
[edit]
[-] x86_64-linux-gnu-ld
[edit]
[-] autopoint
[edit]
[-] myisam_ftdump
[edit]
[-] dpkg-deb
[edit]
[-] nproc
[edit]
[-] ubuntu-bug
[edit]
[-] catman
[edit]
[-] cat
[edit]
[-] lowntfs-3g
[edit]
[-] mariadb-check
[edit]
[-] check-language-support
[edit]
[-] dbiproxy
[edit]
[-] dh_md5sums
[edit]
[-] grub-mkrelpath
[edit]
[-] ul
[edit]
[-] dbus-send
[edit]
[-] gettext
[edit]
[-] rtstat
[edit]
[-] sg_wr_mode
[edit]
[-] rotatelogs
[edit]
[-] dh_autoreconf
[edit]
[-] grub-file
[edit]
[-] select-editor
[edit]
[-] seq
[edit]
[-] deb-systemd-helper
[edit]
[-] tic
[edit]
[-] isql
[edit]
[-] dh_installgsettings
[edit]
[-] btrfsck
[edit]
[-] cpp
[edit]
[-] pinky
[edit]
[-] addr2line
[edit]
[-] uuidgen
[edit]
[-] wifi-status
[edit]
[-] dpkg-maintscript-helper
[edit]
[-] h2ph
[edit]
[-] time
[edit]
[-] cut
[edit]
[-] bootctl
[edit]
[-] pstree
[edit]
[-] dh_installemacsen
[edit]
[-] dh_installwm
[edit]
[-] lnstat
[edit]
[-] vmware-hgfsclient
[edit]
[-] ssh-agent
[edit]
[-] grub-mkpasswd-pbkdf2
[edit]
[-] byobu-reconnect-sockets
[edit]
[-] dh_installudev
[edit]
[-] runcon
[edit]
[-] x86_64
[edit]
[-] tty
[edit]
[-] x86_64-linux-gnu-gprof
[edit]
[-] sg_verify
[edit]
[-] zmore
[edit]
[-] my_print_defaults
[edit]
[-] zgrep
[edit]
[-] procan
[edit]
[-] pkill
[edit]
[-] bashbug
[edit]
[-] vmware-checkvm
[edit]
[-] uniq
[edit]
[-] ucf
[edit]
[-] dh_missing
[edit]
[-] look
[edit]
[-] pwd
[edit]
[-] autoheader
[edit]
[-] hostid
[edit]
[-] paste
[edit]
[-] zipdetails
[edit]
[-] sftp
[edit]
[-] xzcmp
[edit]
[-] mcookie
[edit]
[-] run-this-one
[edit]
[-] ipcmk
[edit]
[-] lzless
[edit]
[-] routel
[edit]
[-] make
[edit]
[-] wdctl
[edit]
[-] lzcat
[edit]
[-] ab
[edit]
[-] sg_reassign
[edit]
[-] ckeygen3
[edit]
[-] ping6
[edit]
[-] mysqladmin
[edit]
[-] zdiff
[edit]
[-] dh_systemd_enable
[edit]
[-] pygettext3
[edit]
[-] truncate
[edit]
[-] x86_64-linux-gnu-dwp
[edit]
[-] vimdiff
[edit]
[-] c++filt
[edit]
[-] mksquashfs
[edit]
[-] inotifywatch
[edit]
[-] mysqlaccess
[edit]
[-] systemd-escape
[edit]
[-] pathchk
[edit]
[-] dwp
[edit]
[-] kbxutil
[edit]
[-] ssh-import-id-lp
[edit]
[-] ex
[edit]
[-] sbattach
[edit]
[-] lsmem
[edit]
[-] mandb
[edit]
[-] pecl
[edit]
[-] nohup
[edit]
[-] ntfscluster
[edit]
[-] dpkg-split
[edit]
[-] msgcomm
[edit]
[-] automake
[edit]
[-] unlink
[edit]
[-] col9
[edit]
[-] b2sum
[edit]
[-] timedatectl
[edit]
[-] deallocvt
[edit]
[-] kmod
[edit]
[-] byobu-config
[edit]
[-] php-config
[edit]
[-] tr
[edit]
[-] mysql_waitpid
[edit]
[-] validate-json
[edit]
[-] taskset
[edit]
[-] gunzip
[edit]
[-] screendump
[edit]
[-] sdiff
[edit]
[-] vimtutor
[edit]
[-] diff3
[edit]
[-] sg_sat_phy_event
[edit]
[-] dh_installsystemd
[edit]
[-] systemd-stdio-bridge
[edit]
[-] sginfo
[edit]
[-] pdb3
[edit]
[-] dpkg-shlibdeps
[edit]
[-] gdbus
[edit]
[-] stat
[edit]
[-] mysql_fix_extensions
[edit]
[-] sg_safte
[edit]
[-] vmware-vmblock-fuse
[edit]
[-] debconf-communicate
[edit]
[-] byobu-silent
[edit]
[-] vmhgfs-fuse
[edit]
[-] ssh-import-id-gh
[edit]
[-] bzgrep
[edit]
[-] netstat
[edit]
[-] xsubpp
[edit]
[-] vigpg
[edit]
[-] dpkg-mergechangelogs
[edit]
[-] byobu-quiet
[edit]
[-] ssh-argv0
[edit]
[-] fgrep
[edit]
[-] lesskey
[edit]
[-] run-mailcap
[edit]
[-] shuf
[edit]
[-] chsh
[edit]
[-] jsondiff
[edit]
[-] factor
[edit]
[-] env
[edit]
[-] openvt
[edit]
[-] telnet.netkit
[edit]
[-] dpkg-trigger
[edit]
[-] msgcmp
[edit]
[-] fwupdtpmevlog
[edit]
[-] debconf-gettextize
[edit]
[-] rsh
[edit]
[-] rpcgen
[edit]
[-] gio
[edit]
[-] dpkg-distaddfile
[edit]
[-] dh_auto_clean
[edit]
[-] sg_dd
[edit]
[-] bsd-from
[edit]
[-] podchecker
[edit]
[-] update-alternatives
[edit]
[-] ucfq
[edit]
[-] gcov-dump
[edit]
[-] tsort
[edit]
[-] x86_64-linux-gnu-objcopy
[edit]
[-] cvtsudoers
[edit]
[-] printerbanner
[edit]
[-] dpkg-buildflags
[edit]
[-] byobu-select-backend
[edit]
[-] mytop
[edit]
[-] du
[edit]
[-] pmap
[edit]
[-] resizecons
[edit]
[-] btrfs-find-root
[edit]
[-] x86_64-linux-gnu-objdump
[edit]
[-] dh_installinit
[edit]
[-] slogin
[edit]
[-] sg_read_buffer
[edit]
[-] sg_raw
[edit]
[-] showkey
[edit]
[-] x86_64-linux-gnu-gcc-ar-9
[edit]
[-] debconf-copydb
[edit]
[-] sg_inq
[edit]
[-] unmkinitramfs
[edit]
[-] ntfsusermap
[edit]
[-] sg_ses
[edit]
[-] msql2mysql
[edit]
[-] dbilogstrip
[edit]
[-] innotop
[edit]
[-] pastebinit
[edit]
[-] gpgconf
[edit]
[-] split
[edit]
[-] bunzip2
[edit]
[-] dbus-uuidgen
[edit]
[-] sg_turs
[edit]
[-] hibinit-agent
[edit]
[-] bsd-write
[edit]
[-] vmstat
[edit]
[-] unattended-upgrades
[edit]
[-] c89-gcc
[edit]
[-] sg_write_long
[edit]
[-] dh_installlogrotate
[edit]
[-] xzmore
[edit]
[-] lz4c
[edit]
[-] strace-log-merge
[edit]
[-] miniterm
[edit]
[-] csplit
[edit]
[-] loadkeys
[edit]
[-] ntfsrecover
[edit]
[-] kbdinfo
[edit]
[-] gettextize
[edit]
[-] vdir
[edit]
[-] btrfs-select-super
[edit]
[-] lesspipe
[edit]
[-] bzcmp
[edit]
[-] mariadb-service-convert
[edit]
[-] VGAuthService
[edit]
[-] dirmngr
[edit]
[-] dh_installlogcheck
[edit]
[-] sha512sum
[edit]
[-] jsonlint-php
[edit]
[-] snap
[edit]
[-] c_rehash
[edit]
[-] sotruss
[edit]
[-] strings
[edit]
[-] zfgrep
[edit]
[-] netcat
[edit]
[-] getconf
[edit]
[-] byobu-screen
[edit]
[-] byobu-select-session
[edit]
[-] update-microcode-initrd
[edit]
[-] systemctl
[edit]
[-] dpkg-genchanges
[edit]
[-] hibagent
[edit]
[-] psfaddtable
[edit]
[-] sg_write_same
[edit]
[-] gcov-tool
[edit]
[-] dpkg-divert
[edit]
[-] autoupdate
[edit]
[-] dfu-tool
[edit]
[-] nc.openbsd
[edit]
[-] znew
[edit]
[-] enable-ec2-spot-hibernation
[edit]
[-] msgmerge
[edit]
[-] c++
[edit]
[-] byobu-ugraph
[edit]
[-] wall
[edit]
[-] dh_installdirs
[edit]
[-] aclocal
[edit]
[-] dh_gencontrol
[edit]
[-] cpp-9
[edit]
[-] echo
[edit]
[-] xzdiff
[edit]
[-] systemd-hwdb
[edit]
[-] dh_autotools-dev_restoreconfig
[edit]
[-] dpkg-scanpackages
[edit]
[-] zforce
[edit]
[-] landscape-sysinfo
[edit]
[-] apt-config
[edit]
[-] unattended-upgrade
[edit]
[-] sos
[edit]
[-] usb-devices
[edit]
[-] pod2html
[edit]
[-] debconf
[edit]
[-] nice
[edit]
[-] grub-render-label
[edit]
[-] distro-info
[edit]
[-] sbkeysync
[edit]
[-] lzegrep
[edit]
[-] dh_perl
[edit]
[-] col7
[edit]
[-] conch3
[edit]
[-] editor
[edit]
[-] grub-mknetdir
[edit]
[-] setterm
[edit]
[-] ssh
[edit]
[-] NF
[edit]
[-] msgfilter
[edit]
[-] dh_installifupdown
[edit]
[-] pydoc3.8
[edit]
[-] ntfsmove
[edit]
[-] dh_installxfonts
[edit]
[-] sha1sum
[edit]
[-] sensible-editor
[edit]
[-] openssl
[edit]
[-] jsonpatch
[edit]
[-] dh_installpam
[edit]
[-] helpztags
[edit]
[-] ngettext
[edit]
[-] logname
[edit]
[-] systemd-resolve
[edit]
[-] pager
[edit]
[-] wsrep_sst_rsync
[edit]
[-] systemd-socket-activate
[edit]
[-] mysqlimport
[edit]
[-] mk_modmap
[edit]
[-] dumpkeys
[edit]
[-] ifnames
[edit]
[-] autoreconf
[edit]
[-] ssh-add
[edit]
[-] ec2metadata
[edit]
[-] diff
[edit]
[-] rrsync
[edit]
[-] mysql
[edit]
[-] sync
[edit]
[-] msgconv
[edit]
[-] sg_sanitize
[edit]
[-] dh
[edit]
[-] apt-key
[edit]
[-] ubuntu-advantage
[edit]
[-] od
[edit]
[-] troff
[edit]
[-] setleds
[edit]
[-] byobu-status-detail
[edit]
[-] linux64
[edit]
[-] sudo
[edit]
[-] x86_64-linux-gnu-gcc-ranlib-9
[edit]
[-] ntfswipe
[edit]
[-] aria_chk
[edit]
[-] systemd
[edit]
[-] base64
[edit]
[-] pftp
[edit]
[-] whoami
[edit]
[-] vim
[edit]
[-] zcmp
[edit]
[-] tar
[edit]
[-] findmnt
[edit]
[-] infocmp
[edit]
[-] strip
[edit]
[-] gettext.sh
[edit]
[-] slabtop
[edit]
[-] dpkg-source
[edit]
[-] x86_64-linux-gnu-gcov
[edit]
[-] lsof
[edit]
[-] col8
[edit]
[-] psfxtable
[edit]
[-] eatmydata
[edit]
[-] gzip
[edit]
[-] dirname
[edit]
[-] sgp_dd
[edit]
[-] ranlib
[edit]
[-] mysqlreport
[edit]
[-] static-sh
[edit]
[-] x86_64-linux-gnu-cpp
[edit]
[-] grub-fstest
[edit]
[-] pinentry
[edit]
[-] cc
[edit]
[-] auvirt
[edit]
[-] col5
[edit]
[-] run-parts
[edit]
[-] gpgsm
[edit]
[-] chmod
[edit]
[-] dh_strip_nondeterminism
[edit]
[-] chfn
[edit]
[-] mt-gnu
[edit]
[-] lsattr
[edit]
[-] splitfont
[edit]
[-] byobu-launch
[edit]
[-] ptar
[edit]
[-] byobu-export
[edit]
[-] scsi_ready
[edit]
[-] x86_64-linux-gnu-cpp-9
[edit]
[-] gcc-ar
[edit]
[-] scsi_start
[edit]
[-] sg_reset_wp
[edit]
[-] whatis
[edit]
[-] link
[edit]
[-] os-prober
[edit]
[-] xz
[edit]
[-] c89
[edit]
[-] routef
[edit]
[-] cksum
[edit]
[-] lzmainfo
[edit]
[-] rnano
[edit]
[-] vmware-xferlogs
[edit]
[-] resolvectl
[edit]
[-] elfedit
[edit]
[-] soelim
[edit]
[-] sg_rdac
[edit]
[-] batch
[edit]
[-] plymouth
[edit]
[-] byobu-ctrl-a
[edit]
[-] compose
[edit]
[-] colrm
[edit]
[-] delv
[edit]
[-] apport-unpack
[edit]
[-] perlivp
[edit]
[-] ptargrep
[edit]
[-] watchgnupg
[edit]
[-] nslookup
[edit]
[-] chrt
[edit]
[-] mdig
[edit]
[-] lscpu
[edit]
[-] finalrd
[edit]
[-] locale-check
[edit]
[-] clear
[edit]
[-] sg_reset
[edit]
[-] expiry
[edit]
[-] fakeroot-tcp
[edit]
[-] jsonschema
[edit]
[-] byobu-enable-prompt
[edit]
[-] sosreport
[edit]
[-] sg_unmap
[edit]
[-] gencat
[edit]
[-] innochecksum
[edit]
[-] grotty
[edit]
[-] dirmngr-client
[edit]
[-] sg_scan
[edit]
[-] byobu-launcher
[edit]
[-] wsrep_sst_mysqldump
[edit]
[-] run-one-until-success
[edit]
[-] htcacheclean
[edit]
[-] php-config8.0
[edit]
[-] strace
[edit]
[-] pdb3.8
[edit]
[-] git-receive-pack
[edit]
[-] apt-add-repository
[edit]
[-] rename.ul
[edit]
[-] unsquashfs
[edit]
[-] gpgparsemail
[edit]
[-] red
[edit]
[-] certbot
[edit]
[-] rescan-scsi-bus.sh
[edit]
[-] mesg
[edit]
[-] galera_new_cluster
[edit]
[-] add-apt-repository
[edit]
[-] mysql_find_rows
[edit]
[-] cpio
[edit]
[-] automat-visualize3
[edit]
[-] systemd-run
[edit]
[-] lsipc
[edit]
[-] peardev
[edit]
[-] infobrowser
[edit]
[-] mknod
[edit]
[-] xzgrep
[edit]
[-] msgen
[edit]
[-] composer
[edit]
[-] vmware-namespace-cmd
[edit]
[-] perl
[edit]
[-] m4
[edit]
[-] gcc-ranlib
[edit]
[-] sg_start
[edit]
[-] mysqld_safe
[edit]
[-] xzless
[edit]
[-] corelist
[edit]
[-] ssh-import-id
[edit]
[-] bzless
[edit]
[-] x86_64-linux-gnu-gcc-9
[edit]
[-] pbput
[edit]
[-] crc32
[edit]
[-] date
[edit]
[-] wget
[edit]
[-] sbsiglist
[edit]
[-] purge-old-kernels
[edit]
[-] php
[edit]
[-] dh_installman
[edit]
[-] setpci
[edit]
[-] g++
[edit]
[-] ps
[edit]
[-] oem-getlogs
[edit]
[-] setarch
[edit]
[-] byobu-select-profile
[edit]
[-] ginstall-info
[edit]
[-] write
[edit]
[-] whereis
[edit]
[-] systemd-delta
[edit]
[-] mysql_upgrade
[edit]
[-] byobu-ulevel
[edit]
[-] atq
[edit]
[-] msgunfmt
[edit]
[-] dh_installcatalogs
[edit]
[-] phar8.0.phar
[edit]
[-] x86_64-linux-gnu-readelf
[edit]
[-] pldd
[edit]
[-] mysql_embedded
[edit]
[-] mapscrn
[edit]
[-] grub-ntldr-img
[edit]
[-] debconf-escape
[edit]
[-] dh_installsystemduser
[edit]
[-] bzegrep
[edit]
[-] systemd-path
[edit]
[-] edit
[edit]
[-] sg_readcap
[edit]
[-] unshare
[edit]
[-] dh_builddeb
[edit]
[-] col1
[edit]
[-] dh_fixperms
[edit]
[-] grub-mkimage
[edit]
[-] lcf
[edit]
[-] col3
[edit]
[-] dh_installexamples
[edit]
[-] dpkg-scansources
[edit]
[-] sg_write_verify
[edit]
[-] replace
[edit]
[-] wsrep_sst_mariabackup
[edit]
[-] jsonpointer
[edit]
[-] codepage
[edit]
[-] tempfile
[edit]
[-] df
[edit]
[-] dh_autoreconf_clean
[edit]
[-] traceroute6.iputils
[edit]
[-] sg_map
[edit]
[-] sg_decode_sense
[edit]
[-] mailmail3
[edit]
[-] dh_compress
[edit]
[-] hd
[edit]
[-] nsenter
[edit]
[-] sum
[edit]
[-] vm-support
[edit]
[-] shtoolize
[edit]
[-] tracepath
[edit]
[-] lsblk
[edit]
[-] egrep
[edit]
[-] reset
[edit]
[-] x86_64-linux-gnu-as
[edit]
[-] msguniq
[edit]
[-] pydoc3
[edit]
[-] journalctl
[edit]
[-] ionice
[edit]
[-] setkeycodes
[edit]
[-] sg_luns
[edit]
[-] printenv
[edit]
[-] sg_map26
[edit]
[-] grub-mkrescue
[edit]
[-] xgettext
[edit]
[-] lsusb
[edit]
[-] renice
[edit]
[-] faked-sysv
[edit]
[-] sprof
[edit]
[-] autoconf
[edit]
[-] setsid
[edit]
[-] mysqloptimize
[edit]
[-] mkfifo
[edit]
[-] phar
[edit]
[-] xzcat
[edit]
[-] apt-ftparchive
[edit]
[-] iscsiadm
[edit]
[-] phpize
[edit]
[-] i386
[edit]
[-] which
[edit]
[-] lzdiff
[edit]
[-] tbl
[edit]
[-] pkg-config
[edit]
[-] msgfmt
[edit]
[-] namei
[edit]
[-] perl5.30-x86_64-linux-gnu
[edit]
[-] boltctl
[edit]
[-] iusql
[edit]
[-] dpkg-statoverride
[edit]
[-] gzexe
[edit]
[-] objcopy
[edit]
[-] x86_64-linux-gnu-c++filt
[edit]
[-] msgattrib
[edit]
[-] chgrp
[edit]
[-] podselect
[edit]
[-] ntfstruncate
[edit]
[-] mtr
[edit]
[-] sg_sync
[edit]
[-] sg_compare_and_write
[edit]
[-] zipgrep
[edit]
[-] byobu-layout
[edit]
[-] lsb_release
[edit]
[-] phar8.0
[edit]
[-] grub-syslinux2cfg
[edit]
[-] ua
[edit]
[-] cloud-init
[edit]
[-] dh_installinitramfs
[edit]
[-] traceroute6
[edit]
[-] lshw
[edit]
[-] sh
[edit]
[-] x86_64-linux-gnu-strings
[edit]
[-] tload
[edit]
[-] debconf-updatepo
[edit]
[-] curl
[edit]
[-] w.procps
[edit]
[-] sg_vpd
[edit]
[-] bzip2
[edit]
[-] sg
[edit]
[-] lessecho
[edit]
[-] sg_xcopy
[edit]
[-] myisampack
[edit]
[-] aria_dump_log
[edit]
[-] h2xs
[edit]
[-] htdigest
[edit]
[-] snapctl
[edit]
[-] cpio-filter
[edit]
[-] dh_link
[edit]
[-] wc
[edit]
[-] dh_bash-completion
[edit]
[-] python3.8
[edit]
[-] loadunimap
[edit]
[-] gtbl
[edit]
[-] rview
[edit]
[-] vi
[edit]
[-] faillog
[edit]
[-] dpkg-query
[edit]
[-] vmware-toolbox-cmd
[edit]
[-] dh_testdir
[edit]
[-] gio-querymodules
[edit]
[-] apport-cli
[edit]
[-] dpkg-buildpackage
[edit]
[-] tmux
[edit]
[-] rmdir
[edit]
[-] btrfs
[edit]
[-] hostname
[edit]
[-] toe
[edit]
[-] lastb
[edit]
[-] ntfs-3g
[edit]
[-] cftp3
[edit]
[-] ar
[edit]
[-] sg_rmsn
[edit]
[-] last
[edit]
[-] ldd
[edit]
[-] perlthanks
[edit]
[-] chardet3
[edit]
[-] pkcheck
[edit]
[-] grub-glue-efi
[edit]
[-] fwupdagent
[edit]
[-] phpize.default
[edit]
[-] gcov-dump-9
[edit]
[-] pod2usage
[edit]
[-] dpkg-vendor
[edit]
[-] lslocks
[edit]
[-] col6
[edit]
[-] eject
[edit]
[-] dh_movefiles
[edit]
[-] who
[edit]
[-] bzcat
[edit]
[-] grep
[edit]
[-] faked-tcp
[edit]
[-] gsettings
[edit]
[-] hexdump
[edit]
[-] col4
[edit]
[-] dpkg-checkbuilddeps
[edit]
[-] pyhtmlizer3
[edit]
[-] mawk
[edit]
[-] sort
[edit]
[-] bzdiff
[edit]
[-] ntfsls
[edit]
[-] byobu-tmux
[edit]
[-] pstree.x11
[edit]
[-] sg_ident
[edit]
[-] domainname
[edit]
[-] lessfile
[edit]
[-] preconv
[edit]
[-] loginctl
[edit]
[-] partx
[edit]
[-] lspgpot
[edit]
[-] glib-compile-schemas
[edit]
[-] systemd-machine-id-setup
[edit]
[-] kbd_mode
[edit]
[-] nc
[edit]
[-] chattr
[edit]
[-] fmt
[edit]
[-] iptables-xml
[edit]
[-] rgrep
[edit]
[-] btrfs-convert
[edit]
[-] gpg-connect-agent
[edit]
[-] x86_64-linux-gnu-nm
[edit]
[-] gpasswd
[edit]
[-] shasum
[edit]
[-] gcov-tool-9
[edit]
[-] vmware-alias-import
[edit]
[-] perlbug
[edit]
[-] byobu
[edit]
[-] gcc-9
[edit]
[-] neqn
[edit]
[-] sbvarsign
[edit]
[-] xauth
[edit]
[-] byobu-status
[edit]
[-] ss
[edit]
[-] mt
[edit]
[-] ncal
[edit]
[-] gresource
[edit]
[-] info
[edit]
[-] apt-extracttemplates
[edit]
[-] fgconsole
[edit]
[-] dh_usrlocal
[edit]
[-] byobu-janitor
[edit]
[-] trial3
[edit]
[-] pbputs
[edit]
[-] install
[edit]
[-] addpart
[edit]
[-] dbus-cleanup-sockets
[edit]
[-] dnsdomainname
[edit]
[-] tail
[edit]
[-] apport-bug
[edit]
[-] cpan
[edit]
[-] chcon
[edit]
[-] dpkg-architecture
[edit]
[-] mountpoint
[edit]
[-] gcc-ranlib-9
[edit]
[-] sg_read_block_limits
[edit]
[-] apt-get
[edit]
[-] dh_phppear
[edit]
[-] kill
[edit]
[-] py3versions
[edit]
[-] vmware-rpctool
[edit]
[-] rbash
[edit]
[-] x86_64-linux-gnu-gcov-dump-9
[edit]
[-] setpriv
[edit]
[-] filan
[edit]
[-] cloud-init-per
[edit]
[-] x86_64-linux-gnu-gcov-tool
[edit]
[-] catchsegv
[edit]
[-] gcc-ar-9
[edit]
[-] ubuntu-security-status
[edit]
[-] cpan5.30-x86_64-linux-gnu
[edit]
[-] dh_makeshlibs
[edit]
[-] ssh-copy-id
[edit]
[-] su
[edit]
[-] w
[edit]
[-] zdump
[edit]
[-] nstat
[edit]
[-] sg_bg_ctl
[edit]
[-] pslog
[edit]
[-] lastlog
[edit]
[-] myisamlog
[edit]
[-] umount
[edit]
[-] gawk
[edit]
[-] recode-sr-latin
[edit]
[-] mysql_secure_installation
[edit]
[-] systemd-tty-ask-password-agent
[edit]
[-] migrate-pubring-from-classic-gpg
[edit]
[-] sha384sum
[edit]
[-] twistd3
[edit]
[-] chvt
[edit]
[-] dash
[edit]
[-] sgm_dd
[edit]
[-] groff
[edit]
[-] scriptreplay
[edit]
[-] pod2man
[edit]
[-] lzma
[edit]
[-] lz4
[edit]
[-] busybox
[edit]
[-] systemd-cat
[edit]
[-] gpgcompose
[edit]
[-] choom
[edit]
[-] lz4cat
[edit]
[-] x86_64-linux-gnu-gcc-ranlib
[edit]
[-] pkexec
[edit]
[-] dwz
[edit]
[-] eqn
[edit]
[-] expand
[edit]
[-] fwupdtool
[edit]
[-] x86_64-linux-gnu-gcc-nm-9
[edit]
[-] sed
[edit]
[-] lzcmp
[edit]
[-] py3clean
[edit]
[-] pinentry-curses
[edit]
[-] find
[edit]
[-] mysqlrepair
[edit]
[-] ypdomainname
[edit]
[-] linux32
[edit]
[-] rev
[edit]
[-] x86_64-linux-gnu-g++
[edit]
[-] podebconf-report-po
[edit]
[-] newgrp
[edit]
[-] ld.bfd
[edit]
[-] grub-mount
[edit]
[-] byobu-disable
[edit]
[-] bc
[edit]
[-] xzegrep
[edit]
[-] usbreset
[edit]
[-] aclocal-1.16
[edit]
[-] c99-gcc
[edit]
[-] hostnamectl
[edit]
[-] sbsign
[edit]
[-] screen
[edit]
[-] unlzma
[edit]
[-] basename
[edit]
[-] x86_64-pc-linux-gnu-pkg-config
[edit]
[-] tzselect
[edit]
[-] rsync
[edit]
[-] ntfsinfo
[edit]
[-] whiptail
[edit]
[-] mysqlhotcopy
[edit]
[-] c99
[edit]
[-] mysql_plugin
[edit]
[-] ucfr
[edit]
[-] sg_zone
[edit]
[-] twist3
[edit]
[-] fincore
[edit]
[-] geqn
[edit]
[-] dh_update_autotools_config
[edit]
[-] sudoreplay
[edit]
[-] localectl
[edit]
[-] psfgettable
[edit]
[-] true
[edit]
[-] manifest
[edit]
[-] dh_shlibdeps
[edit]
[-] git-shell
[edit]
[-] fakeroot-sysv
[edit]
[-] sha224sum
[edit]
[-] man-recode
[edit]
[-] print
[edit]
[-] realpath
[edit]
[-] ltrace
[edit]
[-] unxz
[edit]
[-] sg_sat_set_features
[edit]
[-] dh_installdeb
[edit]
[-] column
[edit]
[-] lzmore
[edit]
[-] ipcrm
[edit]
[-] dh_autotools-dev_updateconfig
[edit]
[-] bzexe
[edit]
[-] pear
[edit]
[-] sg_read
[edit]
[-] apt-cache
[edit]
[-] sg_rbuf
[edit]
[-] mount
[edit]
[-] getopt
[edit]
[-] dh_installcron
[edit]
[-] sg_modes
[edit]
[-] apt-sortpkgs
[edit]
[-] netkit-ftp
[edit]
[-] dh_installchangelogs
[edit]
[-] ntfssecaudit
[edit]
[-] wsrep_sst_common
[edit]
[-] x86_64-linux-gnu-ld.gold
[edit]
[-] msgcat
[edit]
[-] passwd
[edit]
[-] sha256sum
[edit]
[-] sg_rep_zones
[edit]
[-] gcc-nm
[edit]
[-] dh_strip
[edit]
[-] sensible-browser
[edit]
[-] libnetcfg
[edit]
[-] rdma
[edit]
[-] btrfs-map-logical
[edit]
[-] apropos
[edit]
[-] sg_seek
[edit]