PATH:
usr
/
bin
#!/usr/bin/env python # -*- mode:python; coding:utf-8; -*- # author: Eugene Zamriy <ezamriy@cloudlinux.com>, # Sergey Fokin <sfokin@cloudlinux.com> # editor: Eduard Chiganov <echiganov@cloudlinux.com> # created: 29.07.2015 15:46 # edited: Eduard Chiganov 05.2025 16:20 # description: Selects correct alt-php MySQL binding according to the system # configuration. import getopt import glob import logging import os import platform import re import subprocess import sys import traceback from decimal import Decimal try: import rpm except: class rpm: RPMMIRE_REGEX = None class pattern: def __init__(self, packages): self.packages = packages def pattern(self, field, flag, pattern): regexp = re.compile(pattern) self.packages = list(filter(regexp.match, self.packages)) def __getitem__(self, item): return self.packages[item] class TransactionSet: @staticmethod def dbMatch(): return rpm.pattern(os.popen('rpm -qa').readlines()) VER_PATTERNS = {"18.1": "5.6", "18.1.0": "5.6", "18.0": "5.5", "18.0.0": "5.5", "18": "5.5", "16": "5.1", "15": "5.0", "20.1": "5.7", "20.2": "5.7", "20.3": "5.7", "21.0": "8.0", "21.2": "8.0", "24.0.5": "8.4"} def is_debian(): """ Check if we running on Debian/Ubuntu @rtype : bool @return True or False """ if os.path.exists("/etc/redhat-release"): return False return True def is_plesk(): """ Check is it environment with installed plesk panel @rtype : bool @return True or False """ if not os.path.exists("/usr/sbin/plesk"): return False return True def has_cagefs(): """ Check if we're in environment with enabled cagefs @rtype : bool @return True or False """ if not os.path.exists("/usr/sbin/cagefsctl"): return False with open(os.devnull, 'wb') as devnull: result = subprocess.call( ["/usr/sbin/cagefsctl", "--cagefs-status"], stdout=devnull, stderr=devnull ) return result == 0 def is_bare_plesk(): """ Check is it environment with installed plesk panel on clean ELS system without cagefs @rtype : bool @return True or False """ return is_plesk() and not has_cagefs() def configure_logging(verbose): """ Logging configuration function. @type verbose: bool @param verbose: Enable additional debug output if True, display only errors otherwise. """ if verbose: level = logging.DEBUG else: level = logging.ERROR handler = logging.StreamHandler() handler.setLevel(level) log_format = "%(levelname)-8s: %(message)s" formatter = logging.Formatter(log_format, "%H:%M:%S %d.%m.%y") handler.setFormatter(formatter) logger = logging.getLogger() logger.addHandler(handler) logger.setLevel(level) return logger def symlink_abs_path(path): """ Recursively resolves symlink. @type path: str @param path: Symlink path. @rtype: str @return: Resolved symlink absolute path. """ processed_symlinks = set() if not isinstance(path, str): return None while os.path.islink(path): if path in processed_symlinks: return None path = os.path.join(os.path.dirname(path), os.readlink(path)) processed_symlinks.add(path) return os.path.abspath(path) def create_symlink_to_mysqli_ini(source_dir, target_dir): """ Creates or updates a symbolic link to mysqli.ini. @type source_dir: str @param source_dir: Directory containing the actual mysqli.ini file. @type target_dir: str @param target_dir: Directory where the symlink will be created or updated. @rtype: bool @return: True if symlink is created or updated successfully, False otherwise. """ source_path = os.path.join(source_dir, 'mysqli.ini') target_path = os.path.join(target_dir, 'mysqli.ini') if is_bare_plesk(): return False else: try: # Remove the target file/symlink if it exists (mimic --force) if os.path.exists(target_path) and not os.path.islink(target_path): os.remove(target_path) if source_path == symlink_abs_path(target_path): logging.debug(u"%s is already configured to %s" % (target_path, source_path)) return True # Create the symlink os.symlink(source_path, target_path) logging.info(u"Symlink created or updated: %s -> %s" % (target_path, source_path)) return True except Exception as e: logging.error(u"Error creating or updating symlink: %s" % str(e)) return False def find_interpreter_versions(interpreter="php"): """ Returns list of installed alt-php versions and their base directories. @rtype: list @return: List of version (e.g. 44, 55) and base directory tuples. """ int_versions = [] if interpreter == "ea-php": base_path_regex = "/opt/cpanel/ea-php[0-9][0-9]/root/" else: base_path_regex = "/opt/alt/%s[0-9][0-9]" % interpreter for int_dir in glob.glob(base_path_regex): int_versions.append((int_dir[-2:], int_dir)) int_versions.sort() return int_versions def find_mysql_executable(mysql="mysql"): """ Detects MySQL binary full path. @type mysql: str @param mysql: MySQL binary name (default is "mysql"). @rtype: str or None @return: MySQL binary full path or None if nothing is found. """ for path in os.environ["PATH"].split(os.pathsep): mysql_path = os.path.join(path, mysql) if os.path.exists(mysql_path) and os.access(mysql_path, os.X_OK): if os.path.islink(mysql_path): return os.readlink(mysql_path) else: return mysql_path def is_percona(major, minor): """ Check if Percona server is installed @type major: str @param major: major version of sql server @type minor: str @param minor: minor version of sql server @rtype: bool @return: True or False """ if is_debian(): if not os.system("dpkg -l | grep -i percona-server"): return True else: ts = rpm.TransactionSet() mi = ts.dbMatch() pattern = "Percona-Server-shared-{0}{1}|cl-Percona{0}{1}-shared".format( major, minor) mi.pattern('name', rpm.RPMMIRE_REGEX, pattern) for _ in mi: mysql_type = "percona" return True return False def parse_mysql_version(version): """ Extracts MySQL engine type and version from the version string (mysql -V output). @type version: str @param version: MySQL version string (mysql -V output). @rtype: tuple @return: MySQL engine type (e.g. mariadb, mysql) and version (e.g. 5.6, 10.0) tuple. """ ver_rslt = "" if re.search(r"mysql", version, re.IGNORECASE): ver_rslt = re.search(r"mysql\s+Ver\s+.*?Distrib\s+((\d+)\.(\d+)\S*?),?\s+for", version) if not ver_rslt: ver_rslt = re.search(r"mysql\s+Ver\s+((\d+)\.(\d+)\S*)", version) else: ver_rslt = re.search(r"mariadb\s+from\s+((\d+)\.(\d+)\S*?),?\s+", version) if not ver_rslt: ver_rslt = re.search(r"mariadb\s+Ver\s+.*?Distrib\s+((\d+)\.(\d+)\S*?),?" r"\s+for", version) if not ver_rslt: return None, None full_ver, major, minor = ver_rslt.groups() mysql_type = "mysql" mysql_ver = "%s.%s" % (major, minor) if re.search(r"mariadb", full_ver, re.IGNORECASE): mysql_type = "mariadb" # NOTE: there are no way to detect Percona by "mysql -V" output, so we # are looking for Percona-Server-shared* or cl-Percona*-shared package installed if is_percona(major, minor): mysql_type = "percona" return mysql_type, mysql_ver def get_mysql_version(mysql_path): """ Returns MySQL engine type and version of specified MySQL executable. @type mysql_path: str @param mysql_path: MySQL executable path. @rtype: tuple @return: MySQL engine type (mariadb or mysql) and version (e.g. 5.6, 10.0) tuple. """ proc = subprocess.Popen([mysql_path, "-V"], stdout=subprocess.PIPE, stderr=subprocess.STDOUT, universal_newlines=True) out, _ = proc.communicate() if proc.returncode != 0: raise Exception(u"cannot execute \"%s -V\": %s" % (mysql_path, out)) ver_string = out.strip() logging.debug(u"SQL version string is '%s'" % ver_string) return parse_mysql_version(ver_string) def detect_so_version(so_path): """ Parameters ---------- so_path : str or unicode Absolute path to .so library Returns ------- tuple Tuple of MySQL type name and MySQL version """ mysql_ver = None for ver_pattern in VER_PATTERNS: if re.search(re.escape(".so.%s" % ver_pattern), so_path): mysql_ver = VER_PATTERNS[ver_pattern] if is_debian(): mysql_ver = mysql_ver.replace(".", "") # in some Percona builds .so was renamed to libperconaserverclient.so if "libperconaserverclient.so" in so_path: return "percona", mysql_ver # search for markers (mariadb/percona) in .so strings proc = subprocess.Popen(["strings", so_path], stdout=subprocess.PIPE, stderr=subprocess.STDOUT, universal_newlines=True) out, _ = proc.communicate() if proc.returncode != 0: raise Exception(u"cannot execute \"strings %s\": %s" % (so_path, out)) mysql_type = "mysql" for line in out.split("\n"): if re.search(r"percona", line, re.IGNORECASE): return "percona", mysql_ver maria_version = re.search(r"^(1[0-1]\.[0-9]+)\.[0-9]*(-MariaDB)?$", line, re.IGNORECASE) if maria_version is not None and len(maria_version.groups()) != 0: return "mariadb", maria_version.group(1) if re.search(r"5\.5.*?-MariaDB", line, re.IGNORECASE): return "mariadb", "5.5" if re.search(r"mariadb", line, re.IGNORECASE): mysql_type = "mariadb" return mysql_type, mysql_ver def detect_lib_dir(): """ Returns ------- str lib if running on 32-bit system, lib64 otherwise """ if is_debian(): return "lib/x86_64-linux-gnu" if platform.architecture()[0] == "64bit": return "lib64" else: return "lib" def get_int_files_root_path(int_name, int_ver): """ Parameters ---------- int_name : str or unicode Interpreter name (php, python) int_ver : str or unicode Interpreter version (44, 70, 27, etc.) Returns ------- str Absolute path to interpreter root """ if int_name == "php": return "/opt/alt/php%s" % int_ver elif int_name == "ea-php": return "/opt/cpanel/ea-php%s/root/" % int_ver elif int_name == "python": return "/opt/alt/python%s" % int_ver else: raise NotImplementedError("Unknown interpreter") def get_dst_so_path(int_name, int_ver, so_name): """ Parameters ---------- int_name : str or unicode Interpreter name (php, python) int_ver : str or unicode Interpreter version (44, 70, 27, etc.) so_name : str or unicode MySQL shared library name Returns ------- str Absolute path to MySQL binding destination point """ lib_dir = detect_lib_dir() int_path = get_int_files_root_path(int_name, int_ver) int_dot_ver = "%s.%s" % (int_ver[0], int_ver[-1]) if int_name in ["php", "ea-php"]: if re.match(r".*_ts.so", so_name): return os.path.join(int_path, "usr", lib_dir, "php-zts/modules", re.sub(r'_ts\.so', '.so', so_name)) else: return os.path.join(int_path, "usr", lib_dir, "php/modules", so_name) elif int_name == "python": if os.path.exists("/opt/alt/python{0}/bin/python{1}".format(int_ver, int_ver[0])): proc = subprocess.Popen("/opt/alt/python{0}/bin/python{1} -c \"from distutils.sysconfig import get_python_lib; print(get_python_lib(True))\"".format(int_ver, int_ver[0]), shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, universal_newlines=True) out, _ = proc.communicate() return os.path.join(out.strip(),so_name) else: raise NotImplementedError("Unknown interpreter") def get_mysql_pkg_name(int_name, int_ver, mysql_type, mysql_ver, zts=False): """ Parameters ---------- int_name : str or unicode Interpreter name (php, python) int_ver : str or unicode Interpreter version (44, 27, 71, etc.) mysql_type : str or unicode Mysql base type (mysql, mariadb, percona) mysql_ver : str or unicode Mysql version (5.5, 10, 10.1) Returns ------- """ if int_name == "php": if not zts: return "alt-php%s-%s%s" % (int_ver, mysql_type, mysql_ver) else: return "alt-php%s-%s%s-zts" % (int_ver, mysql_type, mysql_ver) elif int_name == "ea-php": return "%s%s-php-%s%s" % (int_name, int_ver, mysql_type, mysql_ver) elif int_name == "python": return "alt-python%s-MySQL-%s%s" % (int_ver, mysql_type, mysql_ver) else: raise NotImplementedError("Unknown interpreter") def get_so_list(int_name): """ Parameters ---------- int_name : str Interpreter name (e.g. php, python, etc.) Returns ------- """ if int_name == "ea-php": return ["mysql.so", "mysqli.so", "pdo_mysql.so"] elif int_name == "php": if is_bare_plesk(): return ["mysql.so", "mysqli.so", "pdo_mysql.so"] else: return ["mysql.so", "mysqli.so", "pdo_mysql.so", "mysql_ts.so", "mysqli_ts.so", "pdo_mysql_ts.so"] elif int_name == "python": return ["_mysql.so"] else: raise NotImplementedError("Unknown interpreter") def match_so_to_mysql(): mysql = find_mysql_executable() # If we have no MySQL, then nothing should be done if not mysql: return possible_versions = list(VER_PATTERNS.values()) possible_versions += ["10", "10.0", "10.1", "10.2", "10.3", "10.4", "10.5", "10.6", "10.11", "11.4","11.04", "11.8"] mysql_type, mysql_ver = get_mysql_version(mysql) if is_debian(): mysql_ver = mysql_ver.replace(".", "") if mysql_type not in ["mysql", "mariadb", "percona"] or \ mysql_ver not in possible_versions: return if mysql_ver == "5.0": search_pattern = re.compile(r"(\S*libmysqlclient\.so\.15\S*)") elif mysql_ver == "5.1": search_pattern = re.compile(r"(\S*libmysqlclient\.so\.16\S*)") elif mysql_ver in ("5.5", "10", "10.0", "10.1"): search_pattern = re.compile(r"(\S*libmysqlclient\.so\.18\.0\S*)") elif mysql_ver == "5.6": search_pattern = re.compile(r"(\S*libmysqlclient\.so\.18\.1\S*)") elif mysql_ver == "5.7": search_pattern = re.compile(r"(\S*libmysqlclient\.so\.20\S*)") elif mysql_ver == "8.0": search_pattern = re.compile(r"(\S*libmysqlclient\.so\.21\S*)") elif mysql_ver == "8.4": search_pattern = re.compile(r"(\S*libmysqlclient\.so\.24\S*)") elif mysql_ver in ("10.2", "10.3", "10.4", "10.5", "10.6", "10.11", "11.04", "11.4", "11.8"): search_pattern = re.compile(r"(\S*libmariadb\.so\.3\S*)") else: raise Exception(u"Cannot match MySQL library to any version") if mysql_type == "percona": search_path = ["/usr/%s" % detect_lib_dir()] else: search_path = ["/usr/local/mysql/lib/", # Added path for Direect Admin "/usr/%s/" % detect_lib_dir(), "/usr/%s/mysql" % detect_lib_dir(), "/usr/%s/mariadb" % detect_lib_dir()] files = [] for libs_path in search_path: if os.path.exists(libs_path): for file in os.listdir(libs_path): files.append(os.path.join(libs_path, file)) for one_file in files: if search_pattern.match(one_file): return (search_pattern.match(one_file).string, mysql_type, mysql_ver) def get_mysql_so_files(): proc = subprocess.Popen(["/sbin/ldconfig", "-p"], stdout=subprocess.PIPE, universal_newlines=True) out, _ = proc.communicate() if proc.returncode != 0: raise Exception(u"cannot execute \"ldconfig -p\": %s" % out) so_re = re.compile(r"^.*?=>\s*(\S*?(libmysqlclient|" r"libmariadb|" r"libperconaserverclient)\.so\S*)") forced_so_file = match_so_to_mysql() if forced_so_file: so_files = [forced_so_file] else: so_files = [] for line in out.split("\n"): re_rslt = so_re.search(line) if not re_rslt: continue so_path = symlink_abs_path(re_rslt.group(1)) if not so_path or not os.path.exists(so_path): continue mysql_type, mysql_ver = detect_so_version(so_path) so_rec = (so_path, mysql_type, mysql_ver) if so_rec not in so_files: so_files.append(so_rec) return so_files def reconfigure_mysql(int_ver, mysql_type, mysql_ver, force=False, int_name="php"): """ Parameters ---------- int_ver : str or unicode Interpreter version (44, 70, 27, etc.) mysql_type : str or unicode MySQL type (mysql, mariadb, percona) mysql_ver : str or unicode MySQL version (5.5, 10.1, etc.) force : bool Force symlink reconfiguration if True, do nothing otherwise int_name : str or unicode Optional, defines interpreter name (php, python). Default is php Returns ------- bool True if reconfiguration was successful, False otherwise """ int_dir = get_int_files_root_path(int_name, int_ver) if is_bare_plesk(): so_list = get_so_list(int_name) for so_name in so_list: src_so = get_dst_so_path(int_name, int_ver, "nd_%s" % so_name) dst_so = get_dst_so_path(int_name, int_ver, so_name) if os.path.exists(src_so): try: if os.path.exists(dst_so): os.remove(dst_so) os.symlink(src_so, dst_so) except Exception as e: logging.error(u"Error creating symlink: %s" % str(e)) return True if mysql_type == "mariadb": if mysql_ver in ("10", "10.0"): mysql_ver = "10" elif mysql_ver.startswith("10."): mysql_ver = mysql_ver.replace(".", "") elif mysql_ver.startswith("11."): mysql_ver = mysql_ver.replace(".", "0") elif mysql_ver == "5.5": # NOTE: there are no special bindings for MariaDB 5.5 in Cloud Linux # so we are using the MySQL one mysql_type = "mysql" so_list = get_so_list(int_name) for so_name in so_list: src_so = os.path.join(int_dir, "etc", "%s%s" % (mysql_type, mysql_ver), so_name) if not os.path.exists(src_so): if (so_name in ("mysqli.so", "pdo_mysql.so") and int_ver == "44") \ or (so_name == "mysql.so" and int_ver.startswith("7")) \ or (so_name == "mysql.so" and int_ver.startswith("8")) \ or (re.match(r".*_ts.so", so_name) and int_ver != 72): # NOTE: there are no mysql.so for alt-php7X and mysqli.so / # pdo_mysql.so for alt-php44 continue # TODO: maybe find an appropriate replacement for missing # .so in other alt-php-(mysql|mariadb|percona) packages? mysql_pkg_name = get_mysql_pkg_name(int_name, int_ver, mysql_type, mysql_ver, bool(re.match(r".*_ts.so", so_name))) logging.debug(u"%s is not found. Please install " u"%s package" % (so_name, mysql_pkg_name)) return False dst_so = get_dst_so_path(int_name, int_ver, so_name) dst_so_real = symlink_abs_path(dst_so) if src_so == dst_so_real: logging.debug(u"%s is already updated" % dst_so) continue else: force = True if not isinstance(dst_so, str): return False if os.access(dst_so, os.R_OK): # seems alt-php is already configured - don't touch without force # argument if not force: logging.debug(u"current %s configuration is ok (%s)" % (dst_so, dst_so_real)) continue os.remove(dst_so) os.symlink(src_so, dst_so) logging.info(u"%s was reconfigured to %s" % (dst_so, src_so)) else: # seems current alt-php configuration is broken, reconfigure it try: os.remove(dst_so) except: pass os.symlink(src_so, dst_so) logging.info(u"%s was configured to %s" % (dst_so, src_so)) continue return True def check_alt_path_exists(int_path, int_name, int_ver): """ Parameters ---------- int_path : str or unicode Interpreter directory on the disk (/opt/alt/php51, etc.) int_name : str or unicode Interpreter name (php, python) int_ver : str or unicode Interpreter version (44, 70, 27, etc.) Returns ------- bool True if interpreter path exists, False otherwise """ if not os.path.isdir(int_path): sys.stderr.write("unknown {0} version {1}".format(int_name, int_ver)) return False return True def main(sys_args): try: opts, args = getopt.getopt(sys_args, "p:P:e:v", ["php=", "python=", "ea-php=", "verbose"]) except getopt.GetoptError as e: sys.stderr.write("cannot parse command line arguments: {0}".format(e)) return 1 verbose = False int_versions = [] int_name = "php" for opt, arg in opts: if opt in ("-p", "--php"): int_name = "php" int_path = "/opt/alt/php%s" % arg if check_alt_path_exists(int_path, int_name, arg): int_versions.append((arg, int_path)) else: return 1 elif opt in ("-e", "--ea-php"): int_name = "ea-php" int_path = "/opt/cpanel/ea-php%s/root/" % arg if check_alt_path_exists(int_path, int_name, arg): int_versions.append((arg, int_path)) else: return 1 elif opt == "--python": int_name = "python" int_path = "/opt/alt/python%s" % arg if check_alt_path_exists(int_path, int_name, arg): int_versions.append((arg, int_path)) else: return 1 if opt in ("-v", "--verbose"): verbose = True log = configure_logging(verbose) if int_name == "ea-php": int_group = int_name else: int_group = "alt-%s" % int_name if not int_versions: int_versions = find_interpreter_versions() log.info(u"installed %s versions are\n%s" % (int_group, "\n".join(["\t %s: %s" % (int_group, i) for i in int_versions]))) mysql_so_files = get_mysql_so_files() log.info(u"available SQL so files are\n%s" % "\n".join(["\t%s (%s-%s)" % i for i in mysql_so_files])) # skip reconfigure magick if file exists if os.path.exists("/opt/alt/alt-php-config/disable"): log.info(u"skip reconfiguration, because '/opt/alt/alt-php-config/disable' exists") return True try: mysql_path = find_mysql_executable() if not mysql_path: log.info(u"cannot find system SQL binary") for int_ver, int_dir in int_versions: status = False for so_name, so_type, so_ver in mysql_so_files: if reconfigure_mysql(int_ver, so_type, so_ver, force=False, int_name=int_name): status = True break if not status: log.debug(u"alt-%s%s reconfiguration is failed" % (int_name, int_ver)) else: log.debug(u"system SQL binary path is %s" % mysql_path) mysql_type, mysql_ver = get_mysql_version(mysql_path) log.debug(u"system SQL is %s-%s" % (mysql_type, mysql_ver)) # check if we have .so for the system SQL version mysql_so_exists = False for so_name, so_type, so_ver in mysql_so_files: if so_type == mysql_type and so_ver == mysql_ver: mysql_so_exists = True break # reconfigure alt-php symlinks for int_ver, int_dir in int_versions: # system SQL was correctly detected and we found .so for it - # reconfigure alt-php to use it instead of previous # configuration if (mysql_so_exists or is_bare_plesk()) and \ reconfigure_mysql(int_ver, mysql_type, mysql_ver, force=True, int_name=int_name): ini_src_path = "%s/etc/php.d.all" % get_int_files_root_path(int_name, int_ver) ini_dst_path = "%s/etc/php.d" % get_int_files_root_path(int_name, int_ver) if int_name == "php": create_symlink_to_mysqli_ini(ini_src_path,ini_dst_path) continue # we are unable to detect system SQL or it's .so is missing - # reconfigure alt-php to use .so that we have available, but # only if current configuration is broken status = False for so_name, so_type, so_ver in mysql_so_files: if reconfigure_mysql(int_ver, so_type, so_ver, force=False, int_name=int_name): status = True ini_src_path = "%s/etc/php.d.all" % get_int_files_root_path(int_name, int_ver) ini_dst_path = "%s/etc/php.d" % get_int_files_root_path(int_name, int_ver) if int_name == "php": create_symlink_to_mysqli_ini(ini_src_path,ini_dst_path) break if not status: log.debug(u"alt-%s%s reconfiguration is failed" % (int_name, int_ver)) except Exception as e: log.error(u"cannot reconfigure alt-%s SQL bindings: %s. " u"Traceback:\n%s" % (int_name, e, traceback.format_exc())) return 1 if __name__ == "__main__": sys.exit(main(sys.argv[1:]))
[+]
..
[-] pyzor-migrate
[edit]
[-] fgconsole
[edit]
[-] nl
[edit]
[-] pwd
[edit]
[-] libnetcfg
[edit]
[-] infokey
[edit]
[-] true
[edit]
[-] ps2ps
[edit]
[-] traceroute
[edit]
[-] atq
[edit]
[-] truncate
[edit]
[-] h2xs
[edit]
[-] pyzor
[edit]
[-] git-receive-pack
[edit]
[-] grub2-mkpasswd-pbkdf2
[edit]
[-] renice
[edit]
[-] js
[edit]
[-] xxd
[edit]
[-] dd
[edit]
[-] ea-php56-pear
[edit]
[-] nl-qdisc-add
[edit]
[-] splain
[edit]
[-] enchant
[edit]
[-] zlib_decompress
[edit]
[-] openal-info
[edit]
[-] fold
[edit]
[-] sftp
[edit]
[-] setterm
[edit]
[-] lchsh
[edit]
[-] tcumttest
[edit]
[-] nl-tctree-list
[edit]
[-] db_archive
[edit]
[-] awk
[edit]
[-] mkinitrd
[edit]
[-] gpgv2
[edit]
[-] nl-link-list
[edit]
[-] pathchk
[edit]
[-] ps2epsi
[edit]
[-] loginctl
[edit]
[-] netstat
[edit]
[-] psfstriptable
[edit]
[-] glib-genmarshal
[edit]
[-] db_checkpoint
[edit]
[-] ea-php74-pear
[edit]
[-] slabinfo
[edit]
[-] htpasswd
[edit]
[-] bunzip2
[edit]
[-] systemd-cat
[edit]
[-] systemd-sysv-convert
[edit]
[-] lsscsi
[edit]
[-] column
[edit]
[-] clear
[edit]
[-] instmodsh
[edit]
[-] mcdiff
[edit]
[-] dir
[edit]
[-] seq
[edit]
[-] systemd-ask-password
[edit]
[-] xsetpointer
[edit]
[-] c++filt
[edit]
[-] jetcli
[edit]
[-] node
[edit]
[-] memcached-tool
[edit]
[-] strings
[edit]
[-] chcon
[edit]
[-] dovecot-sysreport
[edit]
[-] xmodmap
[edit]
[-] krb5-config
[edit]
[-] sg_readcap
[edit]
[-] psfgettable
[edit]
[-] tty
[edit]
[-] zip
[edit]
[-] jetapi
[edit]
[-] unix-lpr.sh
[edit]
[-] tchmttest
[edit]
[-] strip
[edit]
[-] aserver
[edit]
[-] localedef
[edit]
[-] look
[edit]
[-] dracut
[edit]
[-] systemd-notify
[edit]
[-] dbus-uuidgen
[edit]
[-] mysql_tzinfo_to_sql
[edit]
[-] genl-ctrl-list
[edit]
[-] ipcs
[edit]
[-] db47_codegen
[edit]
[-] xsetroot
[edit]
[-] urlgrabber
[edit]
[-] newuidmap
[edit]
[-] xml2-config
[edit]
[-] basename
[edit]
[-] pod2man
[edit]
[-] nl-link-enslave
[edit]
[-] lz4_decompress
[edit]
[-] bdftruncate
[edit]
[-] newgrp
[edit]
[-] systemd-analyze
[edit]
[-] libpng-config
[edit]
[-] diff3
[edit]
[-] sg_inq
[edit]
[-] sprof
[edit]
[-] gml2gv
[edit]
[-] hexdump
[edit]
[-] switch_mod_lsapi
[edit]
[-] piconv
[edit]
[-] lesspipe.sh
[edit]
[-] taskset
[edit]
[-] machinectl
[edit]
[-] wmf2eps
[edit]
[-] su
[edit]
[-] view
[edit]
[-] whois
[edit]
[-] bdftogd
[edit]
[-] locale
[edit]
[-] npx
[edit]
[-] sandbox
[edit]
[-] cdda-player
[edit]
[-] ipcrm
[edit]
[-] preunzip
[edit]
[-] pwscore
[edit]
[-] ident
[edit]
[-] dpkg-divert
[edit]
[-] setmetamode
[edit]
[-] mailx
[edit]
[-] grub2-mkfont
[edit]
[-] myisampack
[edit]
[-] cpanp
[edit]
[-] repotrack
[edit]
[-] MagickCore-config
[edit]
[-] gd2copypal
[edit]
[-] printenv
[edit]
[-] cifsiostat
[edit]
[-] gtar
[edit]
[-] perlbug
[edit]
[-] glib-mkenums
[edit]
[-] bashbug-64
[edit]
[-] sg_read_long
[edit]
[-] mkfontdir
[edit]
[-] dumpkeys
[edit]
[-] ea-php72
[edit]
[-] ea-php70-pear
[edit]
[-] ispell
[edit]
[-] mysql_install_db
[edit]
[-] dotty
[edit]
[-] date
[edit]
[-] rvi
[edit]
[-] tracepath
[edit]
[-] infotocap
[edit]
[-] gs
[edit]
[-] pstruct
[edit]
[-] autotrace
[edit]
[-] co
[edit]
[-] MagickWand-config
[edit]
[-] gpgsplit
[edit]
[-] cpapi1
[edit]
[-] db_replicate
[edit]
[-] aulast
[edit]
[-] rm
[edit]
[-] xzfgrep
[edit]
[-] ps2pdf
[edit]
[-] bc
[edit]
[-] msgcat
[edit]
[-] odbc_config
[edit]
[-] sha256sum
[edit]
[-] db47_deadlock
[edit]
[-] autopoint
[edit]
[-] gsettings
[edit]
[-] zforce
[edit]
[-] vimdot
[edit]
[-] word-list-compress
[edit]
[-] chmem
[edit]
[-] mysqldumpslow
[edit]
[-] tcptraceroute
[edit]
[-] orc-bugreport
[edit]
[-] sg_reset
[edit]
[-] centrino-decode
[edit]
[-] dbus-monitor
[edit]
[-] wmf2svg
[edit]
[-] gcov
[edit]
[-] pldd
[edit]
[-] ndiff
[edit]
[-] watch
[edit]
[-] sg_unmap
[edit]
[-] nl-cls-list
[edit]
[-] setleds
[edit]
[-] mixartloader
[edit]
[-] replace
[edit]
[-] mysqlbinlog
[edit]
[-] cxpm
[edit]
[-] git-upload-pack
[edit]
[-] python2
[edit]
[-] giftogd2
[edit]
[-] ea-php56-pecl
[edit]
[-] auvirt
[edit]
[-] rpmkeys
[edit]
[-] stat
[edit]
[-] bzcmp
[edit]
[-] hb-ot-shape-closure
[edit]
[-] cpupower
[edit]
[-] h2ph
[edit]
[-] kill
[edit]
[-] prezip-bin
[edit]
[-] gdbus-codegen
[edit]
[-] nl-link-ifindex2name
[edit]
[-] sg_dd
[edit]
[-] nl-addr-delete
[edit]
[-] git
[edit]
[-] audit2why
[edit]
[-] hostnamectl
[edit]
[-] c2ph
[edit]
[-] vxloader
[edit]
[-] bzcat
[edit]
[-] msgconv
[edit]
[-] make
[edit]
[-] db47_archive
[edit]
[-] colrm
[edit]
[-] zless
[edit]
[-] glib-gettextize
[edit]
[-] ea-php56
[edit]
[-] sleep
[edit]
[-] xkill
[edit]
[-] zipcloak
[edit]
[-] jetapps
[edit]
[-] repoquery
[edit]
[-] imunify360-agent
[edit]
[-] pfbtopfa
[edit]
[-] nsupdate
[edit]
[-] ssh-copy-id
[edit]
[-] dbus-daemon
[edit]
[-] nl-list-caches
[edit]
[-] ea-php71-pear
[edit]
[-] xinput
[edit]
[-] secon
[edit]
[-] dbus-send
[edit]
[-] php
[edit]
[-] sg_write_buffer
[edit]
[-] pngtogd2
[edit]
[-] gcc-ranlib
[edit]
[-] tac
[edit]
[-] pk12util
[edit]
[-] myisam_ftdump
[edit]
[-] sed
[edit]
[-] chacl
[edit]
[-] fg
[edit]
[-] inotifywait
[edit]
[-] ccomps
[edit]
[-] gv2gml
[edit]
[-] yarn
[edit]
[-] tchtest
[edit]
[-] cairo-sphinx
[edit]
[-] mount
[edit]
[-] sg_raw
[edit]
[-] db_dump
[edit]
[-] HEAD
[edit]
[-] tcamgr
[edit]
[-] rlog
[edit]
[-] gsf-office-thumbnailer
[edit]
[-] echo
[edit]
[-] gpg-error-config
[edit]
[-] fipshmac
[edit]
[-] troff
[edit]
[-] ea-php74
[edit]
[-] tcatest
[edit]
[-] pango-list
[edit]
[-] myisamchk
[edit]
[-] grub2-editenv
[edit]
[-] lslogins
[edit]
[-] scsi_logging_level
[edit]
[-] atop
[edit]
[-] rview
[edit]
[-] xzcmp
[edit]
[-] sg_verify
[edit]
[-] gpg-agent
[edit]
[-] find2perl
[edit]
[-] cpio
[edit]
[-] whatis
[edit]
[-] bg
[edit]
[-] gpgv
[edit]
[-] dot2gxl
[edit]
[-] ipcmk
[edit]
[-] ifnames
[edit]
[-] podchecker
[edit]
[-] pod2html
[edit]
[-] nm-online
[edit]
[-] chmod
[edit]
[-] colcrt
[edit]
[-] yum-debug-dump
[edit]
[-] getopts
[edit]
[-] tcamttest
[edit]
[-] git-upload-archive
[edit]
[-] vlock
[edit]
[-] gvgen
[edit]
[-] db_tuner
[edit]
[-] envsubst
[edit]
[-] bison
[edit]
[-] unxz
[edit]
[-] openssl
[edit]
[-] mkfifo
[edit]
[-] sh
[edit]
[-] linux64
[edit]
[-] pkcs1-conv
[edit]
[-] tset
[edit]
[-] pygettext.py
[edit]
[-] ping6
[edit]
[-] gettext
[edit]
[-] cal
[edit]
[-] systemd-hwdb
[edit]
[-] mkfontscale
[edit]
[-] zegrep
[edit]
[-] net-snmp-create-v3-user
[edit]
[-] nano
[edit]
[-] gcc
[edit]
[-] lastb
[edit]
[-] xzdiff
[edit]
[-] lscpu
[edit]
[-] unzip
[edit]
[-] bzip2recover
[edit]
[-] nohup
[edit]
[-] yum-debug-restore
[edit]
[-] ea-php73-pecl
[edit]
[-] dbus-binding-tool
[edit]
[-] ssh
[edit]
[-] yum-config-manager
[edit]
[-] showkey
[edit]
[-] gneqn
[edit]
[-] sccmap
[edit]
[-] jobs
[edit]
[-] sg_rbuf
[edit]
[-] odbcinst
[edit]
[-] xzcat
[edit]
[-] h5perf_serial
[edit]
[-] dig
[edit]
[-] dwp
[edit]
[-] cd
[edit]
[-] rpmverify
[edit]
[-] scsi_readcap
[edit]
[-] post-grohtml
[edit]
[-] sg_turs
[edit]
[-] sg_emc_trespass
[edit]
[-] ranlib
[edit]
[-] funzip
[edit]
[-] memcached
[edit]
[-] teamdctl
[edit]
[-] xzgrep
[edit]
[-] cp
[edit]
[-] gzexe
[edit]
[-] compare
[edit]
[-] gdk-pixbuf-csource
[edit]
[-] msggrep
[edit]
[-] findmnt
[edit]
[-] ex
[edit]
[-] sendiso
[edit]
[-] last
[edit]
[-] xstdcmap
[edit]
[-] sort
[edit]
[-] alias
[edit]
[-] nl-fib-lookup
[edit]
[-] namei
[edit]
[-] unshare
[edit]
[-] usleep
[edit]
[-] gvmap
[edit]
[-] ld.gold
[edit]
[-] sasl2-sample-server
[edit]
[-] nmtui
[edit]
[-] grub2-kbdcomp
[edit]
[-] nail
[edit]
[-] dmesg
[edit]
[-] checkmodule
[edit]
[-] chrt
[edit]
[-] rpm2cpio
[edit]
[-] strace-log-merge
[edit]
[-] gxl2dot
[edit]
[-] trust
[edit]
[-] h5debug
[edit]
[-] mcookie
[edit]
[-] ul
[edit]
[-] gdtopng
[edit]
[-] tcucodec
[edit]
[-] db47_upgrade
[edit]
[-] easy_install
[edit]
[-] psfxtable
[edit]
[-] libtool
[edit]
[-] sum
[edit]
[-] cat
[edit]
[-] powernow-k8-decode
[edit]
[-] turbostat
[edit]
[-] pip-3
[edit]
[-] gdlib-config
[edit]
[-] run-parts
[edit]
[-] setfacl
[edit]
[-] bzmore
[edit]
[-] nslookup
[edit]
[-] gvpr
[edit]
[-] gobject-query
[edit]
[-] elfedit
[edit]
[-] sg_stpg
[edit]
[-] gprof
[edit]
[-] Mail
[edit]
[-] grub2-mkimage
[edit]
[-] od
[edit]
[-] sudoreplay
[edit]
[-] nl-link-release
[edit]
[-] mknod
[edit]
[-] pwdx
[edit]
[-] pngtogd
[edit]
[-] pr
[edit]
[-] unlink
[edit]
[-] whereis
[edit]
[-] more
[edit]
[-] imunify-service
[edit]
[-] gslp
[edit]
[-] sg_get_lba_status
[edit]
[-] db47_dump
[edit]
[-] peekfd
[edit]
[-] doveconf
[edit]
[-] nmcli
[edit]
[-] getconf
[edit]
[-] lastlog
[edit]
[-] zcmp
[edit]
[-] head
[edit]
[-] mandb
[edit]
[-] my_print_defaults
[edit]
[-] sfdp
[edit]
[-] users
[edit]
[-] msghack
[edit]
[-] xzegrep
[edit]
[-] imapsync
[edit]
[-] msgcomm
[edit]
[-] grub2-render-label
[edit]
[-] fc-cache
[edit]
[-] pynche
[edit]
[-] nl-neigh-add
[edit]
[-] gtbl
[edit]
[-] mkdir
[edit]
[-] dbilogstrip
[edit]
[-] tsort
[edit]
[-] db47_printlog
[edit]
[-] fc-pattern
[edit]
[-] ssh-add
[edit]
[-] icu-config
[edit]
[-] fallocate
[edit]
[-] false
[edit]
[-] xzdec
[edit]
[-] gd2togif
[edit]
[-] tmux
[edit]
[-] hunspell
[edit]
[-] make-dummy-cert
[edit]
[-] h5jam
[edit]
[-] sexp-conv
[edit]
[-] bzdiff
[edit]
[-] loadunimap
[edit]
[-] perl5.16.3
[edit]
[-] nf-ct-list
[edit]
[-] bashbug
[edit]
[-] mail
[edit]
[-] dbiproxy
[edit]
[-] nl-class-delete
[edit]
[-] ypdomainname
[edit]
[-] fc-conflist
[edit]
[-] nf-queue
[edit]
[-] pure-pwconvert
[edit]
[-] wmf2fig
[edit]
[-] gapplication
[edit]
[-] cpanp-run-perl
[edit]
[-] diff
[edit]
[-] cc
[edit]
[-] zfgrep
[edit]
[-] sg_copy_results
[edit]
[-] gr2fonttest
[edit]
[-] checkpolicy
[edit]
[-] db_hotbackup
[edit]
[-] batch
[edit]
[-] ps2pdf14
[edit]
[-] touch
[edit]
[-] tcfmttest
[edit]
[-] mysqladmin
[edit]
[-] setfont
[edit]
[-] pydoc3
[edit]
[-] mysql_plugin
[edit]
[-] wall
[edit]
[-] fc-list
[edit]
[-] db47_recover
[edit]
[-] md5sum
[edit]
[-] pstree.x11
[edit]
[-] systemd-delta
[edit]
[-] dbus-cleanup-sockets
[edit]
[-] soelim
[edit]
[-] nl-util-addr
[edit]
[-] hdsploader
[edit]
[-] montage
[edit]
[-] sg_vpd
[edit]
[-] catman
[edit]
[-] unflatten
[edit]
[-] tail
[edit]
[-] nl-class-add
[edit]
[-] tcbmttest
[edit]
[-] which
[edit]
[-] msgunfmt
[edit]
[-] ps2pdfwr
[edit]
[-] libgcrypt-config
[edit]
[-] pkaction
[edit]
[-] sg_map
[edit]
[-] comm
[edit]
[-] g++
[edit]
[-] autoupdate
[edit]
[-] tput
[edit]
[-] sim_client
[edit]
[-] firewall-cmd
[edit]
[-] mktemp
[edit]
[-] sha224sum
[edit]
[-] sgm_dd
[edit]
[-] libwmf-fontmap
[edit]
[-] tload
[edit]
[-] mv
[edit]
[-] msgen
[edit]
[-] pkla-check-authorization
[edit]
[-] elinks
[edit]
[-] lwp-request
[edit]
[-] qt-faststart
[edit]
[-] autotrace-config
[edit]
[-] mapscrn
[edit]
[-] crontab
[edit]
[-] sg_requests
[edit]
[-] sg_write_long
[edit]
[-] vimdiff
[edit]
[-] nproc
[edit]
[-] scl_source
[edit]
[-] audit2allow
[edit]
[-] xzmore
[edit]
[-] mm2gv
[edit]
[-] libpng15-config
[edit]
[-] lwp-download
[edit]
[-] pgawk
[edit]
[-] nroff
[edit]
[-] lsattr
[edit]
[-] ffprobe
[edit]
[-] gawk
[edit]
[-] xz
[edit]
[-] nsenter
[edit]
[-] sg_test_rwbuf
[edit]
[-] atopsar
[edit]
[-] ssh-keyscan
[edit]
[-] systemd-path
[edit]
[-] atrm
[edit]
[-] tclsh8.5
[edit]
[-] readelf
[edit]
[-] gsdj
[edit]
[-] tabs
[edit]
[-] mysqldump
[edit]
[-] fc-cache-64
[edit]
[-] snmpconf
[edit]
[-] pcre-config
[edit]
[-] pip-3.6
[edit]
[-] wait
[edit]
[-] timeout
[edit]
[-] lessecho
[edit]
[-] dvipdf
[edit]
[-] nl-link-stats
[edit]
[-] httxt2dbm
[edit]
[-] json_xs
[edit]
[-] gsbj
[edit]
[-] base64
[edit]
[-] ci
[edit]
[-] cd-read
[edit]
[-] cvtsudoers
[edit]
[-] ldd
[edit]
[-] paperconf
[edit]
[-] unshar
[edit]
[-] perlml
[edit]
[-] cl-linksafe-reconfigure
[edit]
[-] pinky
[edit]
[-] idle
[edit]
[-] firewall-offline-cmd
[edit]
[-] cd-paranoia
[edit]
[-] snice
[edit]
[-] flex
[edit]
[-] h5import
[edit]
[-] fc-query
[edit]
[-] autoconf
[edit]
[-] logresolve
[edit]
[-] alt-mysql-reconfigure
[edit]
[-] nl-neigh-delete
[edit]
[-] pf2afm
[edit]
[-] imunify-antivirus
[edit]
[-] ea-wappspector
[edit]
[-] gpg2
[edit]
[-] wmf2gd
[edit]
[-] setpriv
[edit]
[-] dijkstra
[edit]
[-] xsubpp
[edit]
[-] tred
[edit]
[-] ngettext
[edit]
[-] mysqlimport
[edit]
[-] uapi
[edit]
[-] mysql
[edit]
[-] nl-addr-add
[edit]
[-] groups
[edit]
[-] grub2-script-check
[edit]
[-] grub2-fstest
[edit]
[-] xrdb
[edit]
[-] gpg
[edit]
[-] scsi_temperature
[edit]
[-] iconv
[edit]
[-] domainname
[edit]
[-] corelist
[edit]
[-] numfmt
[edit]
[-] aspell
[edit]
[-] lslocks
[edit]
[-] setkeycodes
[edit]
[-] sg_reassign
[edit]
[-] cd-info
[edit]
[-] pinentry
[edit]
[-] systemd-inhibit
[edit]
[-] autom4te
[edit]
[-] jetmongo
[edit]
[-] nfsiostat-sysstat
[edit]
[-] patch
[edit]
[-] systemd-loginctl
[edit]
[-] imunify-agent-proxy
[edit]
[-] whoami
[edit]
[-] msgcmp
[edit]
[-] pkttyagent
[edit]
[-] m4
[edit]
[-] csslint-0.6
[edit]
[-] raw
[edit]
[-] cpp
[edit]
[-] grub2-mknetdir
[edit]
[-] sudoedit
[edit]
[-] link
[edit]
[-] cpan-mirrors
[edit]
[-] repo-graph
[edit]
[-] perlivp
[edit]
[-] pdf2ps
[edit]
[-] chattr
[edit]
[-] repoclosure
[edit]
[-] GET
[edit]
[-] dtrace
[edit]
[-] cksum
[edit]
[-] gcc-ar
[edit]
[-] gettextize
[edit]
[-] scl_enabled
[edit]
[-] quota
[edit]
[-] shred
[edit]
[-] sg_ident
[edit]
[-] import
[edit]
[-] lynx
[edit]
[-] wish8.5
[edit]
[-] reposync
[edit]
[-] expr
[edit]
[-] prtstat
[edit]
[-] ptaskset
[edit]
[-] at
[edit]
[-] resolve_stack_dump
[edit]
[-] nmtui-hostname
[edit]
[-] tbl
[edit]
[-] gdk-pixbuf-pixdata
[edit]
[-] mysqlcheck
[edit]
[-] ca-legacy
[edit]
[-] mysql_ssl_rsa_setup
[edit]
[-] alt-php-mysql-reconfigure.py
[edit]
[-] luac
[edit]
[-] autoscan
[edit]
[-] systemd-firstboot
[edit]
[-] nl-neigh-list
[edit]
[-] zipdetails
[edit]
[-] update-mime-database
[edit]
[-] scriptreplay
[edit]
[-] xsetmode
[edit]
[-] sudo
[edit]
[-] pphs
[edit]
[-] unzipsfx
[edit]
[-] x86_energy_perf_policy
[edit]
[-] fdp
[edit]
[-] whois.md
[edit]
[-] pod2text
[edit]
[-] glib-compile-schemas
[edit]
[-] chsh
[edit]
[-] tcbtest
[edit]
[-] h5repack
[edit]
[-] xgettext
[edit]
[-] chage
[edit]
[-] pmap
[edit]
[-] socat
[edit]
[-] sg_xcopy
[edit]
[-] teamd
[edit]
[-] pod2latex
[edit]
[-] c99
[edit]
[-] bind9-config
[edit]
[-] bzip2
[edit]
[-] zipnote
[edit]
[-] paste
[edit]
[-] ausyscall
[edit]
[-] signver
[edit]
[-] sg_get_config
[edit]
[-] podselect
[edit]
[-] ping
[edit]
[-] arpaname
[edit]
[-] getkeycodes
[edit]
[-] bond2team
[edit]
[-] x86_64
[edit]
[-] tapestat
[edit]
[-] wmf2x
[edit]
[-] xslt-config
[edit]
[-] composite
[edit]
[-] ptar
[edit]
[-] xgamma
[edit]
[-] display
[edit]
[-] pkg-config
[edit]
[-] join
[edit]
[-] sg_read_buffer
[edit]
[-] host
[edit]
[-] vi
[edit]
[-] x86_64-redhat-linux-g++
[edit]
[-] isql
[edit]
[-] neato
[edit]
[-] htop
[edit]
[-] pyvenv-3.6
[edit]
[-] db_verify
[edit]
[-] delv
[edit]
[-] ls
[edit]
[-] agentxtrap
[edit]
[-] uptime
[edit]
[-] c++
[edit]
[-] circo
[edit]
[-] gslj
[edit]
[-] readlink
[edit]
[-] filan
[edit]
[-] gc
[edit]
[-] rpcgen
[edit]
[-] h5ls
[edit]
[-] as
[edit]
[-] zipcmp
[edit]
[-] nf-exp-list
[edit]
[-] pidstat
[edit]
[-] twopi
[edit]
[-] linux-boot-prober
[edit]
[-] yes
[edit]
[-] igawk
[edit]
[-] vmstat
[edit]
[-] json_reformat
[edit]
[-] pydoc3.6
[edit]
[-] run-with-aspell
[edit]
[-] i386
[edit]
[-] makedb
[edit]
[-] setarch
[edit]
[-] prlimit
[edit]
[-] unexpand
[edit]
[-] s2p
[edit]
[-] mysql_config
[edit]
[-] dirname
[edit]
[-] objdump
[edit]
[-] gtester
[edit]
[-] atopconvert
[edit]
[-] tcttest
[edit]
[-] db_recover
[edit]
[-] sg_sync
[edit]
[-] pango-querymodules-64
[edit]
[-] dpkg-trigger
[edit]
[-] aulastlog
[edit]
[-] sha512sum
[edit]
[-] uname
[edit]
[-] kdumpctl
[edit]
[-] loadkeys
[edit]
[-] chfn
[edit]
[-] nping
[edit]
[-] ab
[edit]
[-] neqn
[edit]
[-] h5copy
[edit]
[-] sync
[edit]
[-] matdump
[edit]
[-] dgawk
[edit]
[-] killall
[edit]
[-] imunify360-command-wrapper
[edit]
[-] gtk-demo
[edit]
[-] nmtui-edit
[edit]
[-] sg_luns
[edit]
[-] page_owner_sort
[edit]
[-] manpath
[edit]
[-] cpapi2
[edit]
[-] mysql_upgrade
[edit]
[-] nl-pktloc-lookup
[edit]
[-] links
[edit]
[-] pinentry-curses
[edit]
[-] dnsdomainname
[edit]
[-] plesk_configure
[edit]
[-] sg_start
[edit]
[-] dpkg-deb
[edit]
[-] sg_map26
[edit]
[-] xrefresh
[edit]
[-] alt-php-mysql-reconfigure
[edit]
[-] pyzord
[edit]
[-] innochecksum
[edit]
[-] h5dump
[edit]
[-] glib-compile-resources
[edit]
[-] ea-php70-pecl
[edit]
[-] mesg
[edit]
[-] ziptorrent
[edit]
[-] lsns
[edit]
[-] sg_rmsn
[edit]
[-] setup-nsssysinit.sh
[edit]
[-] pdns_control
[edit]
[-] gunzip
[edit]
[-] verifytree
[edit]
[-] xmlcatalog
[edit]
[-] testgdbm
[edit]
[-] mmc-tool
[edit]
[-] grub2-mklayout
[edit]
[-] mysql_config_editor
[edit]
[-] hb-shape
[edit]
[-] db_load
[edit]
[-] pydoc
[edit]
[-] mysql_config-64
[edit]
[-] gpic
[edit]
[-] shuf
[edit]
[-] pip3
[edit]
[-] nl-qdisc-delete
[edit]
[-] gtester-report
[edit]
[-] ea-php73-pear
[edit]
[-] precat
[edit]
[-] nl-cls-add
[edit]
[-] ghostscript
[edit]
[-] printf
[edit]
[-] nf-monitor
[edit]
[-] atopd
[edit]
[-] sg_read_block_limits
[edit]
[-] grub2-mkrescue
[edit]
[-] sg_format
[edit]
[-] acyclic
[edit]
[-] pdf2dsc
[edit]
[-] certutil
[edit]
[-] msgexec
[edit]
[-] col
[edit]
[-] sgp_dd
[edit]
[-] objcopy
[edit]
[-] grub2-glue-efi
[edit]
[-] bcomps
[edit]
[-] sg_safte
[edit]
[-] ncurses5-config
[edit]
[-] x86_64-redhat-linux-gcc
[edit]
[-] sg
[edit]
[-] chgrp
[edit]
[-] expand
[edit]
[-] tctmttest
[edit]
[-] nmap
[edit]
[-] sg_sat_phy_event
[edit]
[-] dot
[edit]
[-] toe
[edit]
[-] scsi-rescan
[edit]
[-] iptables-xml
[edit]
[-] realpath
[edit]
[-] ea-php74-pecl
[edit]
[-] nl-list-sockets
[edit]
[-] perror
[edit]
[-] ptx
[edit]
[-] compile_et
[edit]
[-] ps2ascii
[edit]
[-] nc
[edit]
[-] nl-route-get
[edit]
[-] fipscheck
[edit]
[-] bzless
[edit]
[-] who
[edit]
[-] dbiprof
[edit]
[-] scsi_stop
[edit]
[-] nl-link-set
[edit]
[-] showrgb
[edit]
[-] sg_persist
[edit]
[-] db_stat
[edit]
[-] nl-monitor
[edit]
[-] dbus-run-session
[edit]
[-] update-ca-trust
[edit]
[-] eps2eps
[edit]
[-] wget
[edit]
[-] setup-nsssysinit
[edit]
[-] nl-addr-list
[edit]
[-] sg_compare_and_write
[edit]
[-] needs-restarting
[edit]
[-] gdparttopng
[edit]
[-] sessreg
[edit]
[-] scsi_mandat
[edit]
[-] a2p
[edit]
[-] json_verify
[edit]
[-] heif-thumbnailer
[edit]
[-] nss-policy-check
[edit]
[-] prezip
[edit]
[-] enchant-lsmod
[edit]
[-] mogrify
[edit]
[-] gtk-builder-convert
[edit]
[-] diffimg
[edit]
[-] flock
[edit]
[-] libwmf-config
[edit]
[-] zipgrep
[edit]
[-] idiag-socket-details
[edit]
[-] fc-validate
[edit]
[-] vim
[edit]
[-] gvmap.sh
[edit]
[-] unicode_start
[edit]
[-] mcedit
[edit]
[-] unalias
[edit]
[-] pkill
[edit]
[-] nm
[edit]
[-] geoipupdate
[edit]
[-] automake-1.13
[edit]
[-] os-prober
[edit]
[-] nisdomainname
[edit]
[-] nmtui-connect
[edit]
[-] convert
[edit]
[-] sg_rdac
[edit]
[-] uniq
[edit]
[-] yumdownloader
[edit]
[-] mc
[edit]
[-] POST
[edit]
[-] split
[edit]
[-] python2-config
[edit]
[-] grops
[edit]
[-] systemd-escape
[edit]
[-] icuinfo
[edit]
[-] config_data
[edit]
[-] sg_wr_mode
[edit]
[-] wc
[edit]
[-] identify
[edit]
[-] python3.6m
[edit]
[-] plymouth
[edit]
[-] mpstat
[edit]
[-] scsi_start
[edit]
[-] Wand-config
[edit]
[-] open
[edit]
[-] tic
[edit]
[-] sg_write_same
[edit]
[-] npm
[edit]
[-] grub2-syslinux2cfg
[edit]
[-] isc-config.sh
[edit]
[-] ncursesw5-config
[edit]
[-] lneato
[edit]
[-] sg_modes
[edit]
[-] sha1sum
[edit]
[-] dltest
[edit]
[-] unlz4
[edit]
[-] cmp
[edit]
[-] pstree
[edit]
[-] 2to3
[edit]
[-] pure-statsdecode
[edit]
[-] gpg-zip
[edit]
[-] h5stat
[edit]
[-] kernel-install
[edit]
[-] geoiplookup6
[edit]
[-] sg_logs
[edit]
[-] tailf
[edit]
[-] systemd-machine-id-setup
[edit]
[-] chardetect
[edit]
[-] umount
[edit]
[-] rvim
[edit]
[-] iostat
[edit]
[-] yarnpkg
[edit]
[-] geqn
[edit]
[-] python3.6
[edit]
[-] h5mkgrp
[edit]
[-] tcfmgr
[edit]
[-] ps
[edit]
[-] yum
[edit]
[-] uuclient
[edit]
[-] pchrt
[edit]
[-] zdiff
[edit]
[-] easy_install-2.7
[edit]
[-] kbdrate
[edit]
[-] groff
[edit]
[-] sg_sanitize
[edit]
[-] ffserver
[edit]
[-] systemd-tmpfiles
[edit]
[-] gtk-query-immodules-2.0-64
[edit]
[-] gvcolor
[edit]
[-] gpgparsemail
[edit]
[-] sg_referrals
[edit]
[-] gio
[edit]
[-] reset
[edit]
[-] write
[edit]
[-] scl
[edit]
[-] ndptool
[edit]
[-] ucs2any
[edit]
[-] gdk-pixbuf-query-loaders-64
[edit]
[-] ea-php70
[edit]
[-] lz4cat
[edit]
[-] c89
[edit]
[-] mdig
[edit]
[-] openvt
[edit]
[-] wish
[edit]
[-] dpkg-split
[edit]
[-] h5diff
[edit]
[-] sedismod
[edit]
[-] qemu-ga
[edit]
[-] ftp
[edit]
[-] heif-info
[edit]
[-] aec
[edit]
[-] lwp-dump
[edit]
[-] mysqlpump
[edit]
[-] gettext.sh
[edit]
[-] oldfind
[edit]
[-] lsipc
[edit]
[-] gif2h5
[edit]
[-] gdk-pixbuf-thumbnailer
[edit]
[-] nop
[edit]
[-] zipinfo
[edit]
[-] mysql_secure_installation
[edit]
[-] install
[edit]
[-] watchgnupg
[edit]
[-] factor
[edit]
[-] hostid
[edit]
[-] getopt
[edit]
[-] h52gif
[edit]
[-] busctl
[edit]
[-] info
[edit]
[-] libtoolize
[edit]
[-] stdbuf
[edit]
[-] systemd-coredumpctl
[edit]
[-] nf-exp-delete
[edit]
[-] newgidmap
[edit]
[-] strace
[edit]
[-] db_dump185
[edit]
[-] systemctl
[edit]
[-] id
[edit]
[-] sg_ses
[edit]
[-] grub2-menulst2cfg
[edit]
[-] xmllint
[edit]
[-] graphml2gv
[edit]
[-] uuidgen
[edit]
[-] update-gtk-immodules
[edit]
[-] pre-grohtml
[edit]
[-] sg_scan
[edit]
[-] tmpwatch
[edit]
[-] ncat
[edit]
[-] dircolors
[edit]
[-] zipmerge
[edit]
[-] freetype-config
[edit]
[-] gsoelim
[edit]
[-] gio-querymodules-64
[edit]
[-] recode-sr-latin
[edit]
[-] setvtrgb
[edit]
[-] top
[edit]
[-] rpm
[edit]
[-] scp
[edit]
[-] lesskey
[edit]
[-] rdate
[edit]
[-] sxpm
[edit]
[-] keyctl
[edit]
[-] fonttosfnt
[edit]
[-] prune
[edit]
[-] lwp-mirror
[edit]
[-] mcview
[edit]
[-] chvt
[edit]
[-] ptargrep
[edit]
[-] pflags
[edit]
[-] nl-link-name2ifindex
[edit]
[-] sar
[edit]
[-] pod2usage
[edit]
[-] semodule_package
[edit]
[-] cpapi3
[edit]
[-] grub2-file
[edit]
[-] cmsutil
[edit]
[-] git-shell
[edit]
[-] nettle-lfib-stream
[edit]
[-] gpg-error
[edit]
[-] gcc-nm
[edit]
[-] rpmquery
[edit]
[-] linux32
[edit]
[-] systemd-tty-ask-password-agent
[edit]
[-] nl-rule-list
[edit]
[-] scsi_satl
[edit]
[-] pftp
[edit]
[-] hostname
[edit]
[-] doveadm
[edit]
[-] vimtutor
[edit]
[-] sg_decode_sense
[edit]
[-] nf-log
[edit]
[-] ea-php72-pecl
[edit]
[-] python2.7
[edit]
[-] systemd-run
[edit]
[-] grub2-mkrelpath
[edit]
[-] captoinfo
[edit]
[-] deallocvt
[edit]
[-] x265
[edit]
[-] idn
[edit]
[-] skill
[edit]
[-] nl-route-delete
[edit]
[-] gpgconf
[edit]
[-] grep
[edit]
[-] isosize
[edit]
[-] udevadm
[edit]
[-] rcsmerge
[edit]
[-] python-config
[edit]
[-] curl
[edit]
[-] nf-exp-add
[edit]
[-] tee
[edit]
[-] aclocal-1.13
[edit]
[-] yum-builddep
[edit]
[-] timedatectl
[edit]
[-] less
[edit]
[-] cpan
[edit]
[-] dpkg
[edit]
[-] gsdj500
[edit]
[-] fc
[edit]
[-] ld.bfd
[edit]
[-] fribidi
[edit]
[-] rcs
[edit]
[-] infocmp
[edit]
[-] wdctl
[edit]
[-] db47_stat
[edit]
[-] ionice
[edit]
[-] zone2sql
[edit]
[-] systemd-nspawn
[edit]
[-] msgfmt.py
[edit]
[-] mysqlslap
[edit]
[-] db47_checkpoint
[edit]
[-] addr2line
[edit]
[-] gmake
[edit]
[-] htdigest
[edit]
[-] showconsolefont
[edit]
[-] preconv
[edit]
[-] nl-route-list
[edit]
[-] nl-qdisc-list
[edit]
[-] prove
[edit]
[-] df
[edit]
[-] jetbackup
[edit]
[-] journalctl
[edit]
[-] logger
[edit]
[-] pkla-admin-identities
[edit]
[-] rnano
[edit]
[-] perlthanks
[edit]
[-] berkeley_db47_svc
[edit]
[-] ea-php73
[edit]
[-] pwmake
[edit]
[-] slogin
[edit]
[-] gvpack
[edit]
[-] Magick-config
[edit]
[-] rsync
[edit]
[-] rsyslog-recover-qi.pl
[edit]
[-] gdbus
[edit]
[-] csplit
[edit]
[-] pic
[edit]
[-] arch
[edit]
[-] pip
[edit]
[-] msgattrib
[edit]
[-] iso-info
[edit]
[-] bzgrep
[edit]
[-] repo-rss
[edit]
[-] tcbmgr
[edit]
[-] find
[edit]
[-] apropos
[edit]
[-] ea-php71-pecl
[edit]
[-] apxs
[edit]
[-] python3
[edit]
[-] fc-cat
[edit]
[-] perl
[edit]
[-] ptardiff
[edit]
[-] testlibraw
[edit]
[-] h5repart
[edit]
[-] grotty
[edit]
[-] lsmem
[edit]
[-] cluster
[edit]
[-] systemd-cgls
[edit]
[-] msgmerge
[edit]
[-] sginfo
[edit]
[-] file
[edit]
[-] unicode_stop
[edit]
[-] procan
[edit]
[-] dpkg-maintscript-helper
[edit]
[-] sasl2-sample-client
[edit]
[-] kmod
[edit]
[-] heif-convert
[edit]
[-] gtroff
[edit]
[-] [
[edit]
[-] hmac256
[edit]
[-] dwz
[edit]
[-] patchwork
[edit]
[-] h5unjam
[edit]
[-] nl-route-add
[edit]
[-] ps2ps2
[edit]
[-] sg_sat_identify
[edit]
[-] nl-class-list
[edit]
[-] pl2pm
[edit]
[-] msginit
[edit]
[-] sg_opcodes
[edit]
[-] setsid
[edit]
[-] gm
[edit]
[-] telnet
[edit]
[-] mountpoint
[edit]
[-] webpng
[edit]
[-] annotate
[edit]
[-] slabtop
[edit]
[-] lz4
[edit]
[-] utmpdump
[edit]
[-] gencat
[edit]
[-] zipsplit
[edit]
[-] uudecode
[edit]
[-] db47_hotbackup
[edit]
[-] tctmgr
[edit]
[-] rpmdb
[edit]
[-] fgrep
[edit]
[-] nl-classid-lookup
[edit]
[-] ipcalc
[edit]
[-] show-installed
[edit]
[-] sedispol
[edit]
[-] stty
[edit]
[-] pip2
[edit]
[-] repomanage
[edit]
[-] db_upgrade
[edit]
[-] resolveip
[edit]
[-] sg_sat_set_features
[edit]
[-] icu-config-64
[edit]
[-] grub2-mkstandalone
[edit]
[-] systemd-detect-virt
[edit]
[-] debuginfo-install
[edit]
[-] cpan2dist
[edit]
[-] python
[edit]
[-] pango-view
[edit]
[-] crlutil
[edit]
[-] fc-scan
[edit]
[-] w
[edit]
[-] rmdir
[edit]
[-] stream
[edit]
[-] quotasync
[edit]
[-] xhost
[edit]
[-] myisamlog
[edit]
[-] msguniq
[edit]
[-] zone2json
[edit]
[-] whiptail
[edit]
[-] getent
[edit]
[-] dpkg-statoverride
[edit]
[-] db_deadlock
[edit]
[-] scsi_ready
[edit]
[-] sg_rtpg
[edit]
[-] pyvenv
[edit]
[-] bdftopcf
[edit]
[-] ar
[edit]
[-] msgfilter
[edit]
[-] passwd
[edit]
[-] spell
[edit]
[-] sadf
[edit]
[-] bootctl
[edit]
[-] ln
[edit]
[-] cut
[edit]
[-] ea-php71
[edit]
[-] catchsegv
[edit]
[-] gpasswd
[edit]
[-] nl-neightbl-list
[edit]
[-] env
[edit]
[-] named-rrchecker
[edit]
[-] dumpiso
[edit]
[-] getfacl
[edit]
[-] easy_install-3.6
[edit]
[-] smtpd.py
[edit]
[-] egrep
[edit]
[-] perldoc
[edit]
[-] shasum
[edit]
[-] db47_load
[edit]
[-] localectl
[edit]
[-] ssh-agent
[edit]
[-] dsync
[edit]
[-] lexgrog
[edit]
[-] db_printlog
[edit]
[-] uuencode
[edit]
[-] psfaddtable
[edit]
[-] flex++
[edit]
[-] pkcheck
[edit]
[-] automake
[edit]
[-] tzselect
[edit]
[-] traceroute6
[edit]
[-] ps2pdf13
[edit]
[-] lz4c
[edit]
[-] nettle-hash
[edit]
[-] sg_senddiag
[edit]
[-] kbd_mode
[edit]
[-] chown
[edit]
[-] pure-pw
[edit]
[-] ffplay
[edit]
[-] xset
[edit]
[-] iso-read
[edit]
[-] sg_prevent
[edit]
[-] dbus-test-tool
[edit]
[-] screen
[edit]
[-] ssltap
[edit]
[-] package-cleanup
[edit]
[-] tchmgr
[edit]
[-] command
[edit]
[-] bash
[edit]
[-] gtk-update-icon-cache
[edit]
[-] iusql
[edit]
[-] repodiff
[edit]
[-] systemd-stdio-bridge
[edit]
[-] size
[edit]
[-] sqlite3
[edit]
[-] find-repos-of-install
[edit]
[-] msgfmt
[edit]
[-] fmt
[edit]
[-] sg_read
[edit]
[-] x86_64-redhat-linux-c++
[edit]
[-] gd2topng
[edit]
[-] script
[edit]
[-] coredumpctl
[edit]
[-] cd-drive
[edit]
[-] systemd-cgtop
[edit]
[-] aclocal
[edit]
[-] man
[edit]
[-] ssh-keygen
[edit]
[-] python2.7-config
[edit]
[-] jetbackupapi
[edit]
[-] p11-kit
[edit]
[-] gnroff
[edit]
[-] Magick++-config
[edit]
[-] rev
[edit]
[-] rcsdiff
[edit]
[-] tracepath6
[edit]
[-] nice
[edit]
[-] heif-enc
[edit]
[-] lex
[edit]
[-] lsinitrd
[edit]
[-] xrandr
[edit]
[-] tr
[edit]
[-] xsltproc
[edit]
[-] imunify-fgw-dump
[edit]
[-] lprsetup.sh
[edit]
[-] logname
[edit]
[-] db47_verify
[edit]
[-] animate
[edit]
[-] show-changed-rco
[edit]
[-] sdiff
[edit]
[-] gdcmpgif
[edit]
[-] teamnl
[edit]
[-] dumpsexp
[edit]
[-] geoiplookup
[edit]
[-] zcat
[edit]
[-] modutil
[edit]
[-] gresource
[edit]
[-] xorg-x11-fonts-update-dirs
[edit]
[-] test
[edit]
[-] pip2.7
[edit]
[-] lefty
[edit]
[-] free
[edit]
[-] eject
[edit]
[-] ea-php72-pear
[edit]
[-] mysqld_pre_systemd
[edit]
[-] zgrep
[edit]
[-] autoheader
[edit]
[-] zmore
[edit]
[-] du
[edit]
[-] lchfn
[edit]
[-] xzless
[edit]
[-] tclsh
[edit]
[-] nl-cls-delete
[edit]
[-] gss-client
[edit]
[-] lua
[edit]
[-] tcftest
[edit]
[-] read
[edit]
[-] renew-dummy-cert
[edit]
[-] nf-ct-add
[edit]
[-] tar
[edit]
[-] inotifywatch
[edit]
[-] iceauth
[edit]
[-] tcutest
[edit]
[-] osage
[edit]
[-] dbus-update-activation-environment
[edit]
[-] autoreconf
[edit]
[-] openssl11
[edit]
[-] json_pp
[edit]
[-] sw-engine
[edit]
[-] fc-match
[edit]
[-] conjure
[edit]
[-] chcat
[edit]
[-] lsblk
[edit]
[-] resizecons
[edit]
[-] im360-k8s-syncer
[edit]
[-] runcon
[edit]
[-] sotruss
[edit]
[-] shar
[edit]
[-] dpkg-query
[edit]
[-] rcsclean
[edit]
[-] pdnsutil
[edit]
[-] dc
[edit]
[-] vdir
[edit]
[-] merge
[edit]
[-] pip3.6
[edit]
[-] znew
[edit]
[-] rename
[edit]
[-] sha384sum
[edit]
[-] gxl2gv
[edit]
[-] gzip
[edit]
[-] eqn
[edit]
[-] db_log_verify
[edit]
[-] login
[edit]
[-] gv2gxl
[edit]
[-] ffmpeg
[edit]
[-] mysqlshow
[edit]
[-] usx2yloader
[edit]
[-] gpg-connect-agent
[edit]
[-] printafm
[edit]
[-] htdbm
[edit]
[-] hb-view
[edit]
[-] umask
[edit]
[-] rcsfreeze
[edit]
[-] lsphp
[edit]
[-] kbdinfo
[edit]
[-] ps2pdf12
[edit]
[-] pgrep
[edit]
[-] pkexec
[edit]
[-] ld
[edit]
[-] rescan-scsi-bus.sh
[edit]
[-] gsnd
[edit]
[-] zsoelim
[edit]
[-] xmlwf
[edit]
[-] xargs
[edit]
[-] psed
[edit]
[-] yum-groups-manager
[edit]
[-] tmon
[edit]