✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ server.blackpussy.asia ​🇻​♯➤ 5.14.0-611.20.1.el9_7.x86_64 #1 SMP 🇾​♯➤ 2026

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 163.245.207.76 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.243
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗞 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ mail,mb_send_mail
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /usr/share/bash-completion/completions//dnf
# dnf completion                                          -*- shell-script -*-
#
# This file is part of dnf.
#
# Copyright 2013 (C) Elad Alfassa <elad@fedoraproject.org>
# Copyright 2014-2015 (C) Igor Gnatenko <i.gnatenko.brain@gmail.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301  USA

__dnf_main_options="
    -4 -6 -b -c -C -d -e -h -q -R -v -x -y
    --advisory --advisories
    --allowerasing --assumeno
    --assumeyes
    --best --bugfix
    --bz
    --cacheonly --config
    --color --cve
    --debuglevel --debugsolver
    --disableexcludes --disableplugin
    --disableexcludepkgs --disablerepo
    --downloadonly --destdir
    --downloaddir
    --errorlevel --enableplugin
    --enablerepo --enhancement
    --exclude --excludepkgs
    --help --help-cmd
    --installroot
    --newpackage --nodocs
    --nogpgcheck --noplugins
    --noautoremove
    --obsoletes
    --quiet
    --randomwait --refresh
    --releasever --repofrompath
    --repo --repoid
    --rpmverbosity
    --sec-severity --secseverity
    --security --setopt
    --skip-broken --showduplicates
    --verbose --version
"

__dnf_history_subcmds="info list redo rollback undo userinstalled"

__dnf_secseverity_subcmds='Critical Important Low Moderate'

__dnf_clean_subcmds="all dbcache expire-cache metadata packages"

__dnf_module_subcmds="install remove update enable disable reset provides list info repoquery"

__dnf_repoquery_subcmds="
    -a -f -i -l -s
    --all --arch
    --archlist --available
    --alldeps
    --conflicts
    --deplist --duplicates
    --exactdeps --extras
    --envra --enhances
    --file
    --groupmember
    --installed --installonly
    --info
    --latest-limit --list
    --location
    --nevra  --nvr
    --provides
    --qf --queryformat
    --querytags
    --recent --requires-pre
    --recommends --requires
    --recursive --resolve
    --source --suggests
    --supplements --show-duplicates
    --srpm
    --tree
    --upgrades --unneeded
    --unsatisfied --userinstalled
    --whatconflicts --whatobsoletes
    --whatprovides --whatrequires
    --whatrecommends --whatenhances
    --whatsuggests --whatsupplements
"

__dnf_repopkgs_subcmds="
    check-update
    info install
    list
    move-to
    remove-or-reinstall remove-or-distro-sync
    reinstall reinstall-old
    upgrade upgrade-to
"

__dnf_cache_file="/var/cache/dnf/packages.db"

_dnf_query_db()
{
    local table=$1
    local prefix=$2
    local query="select pkg from $table where pkg like \"$prefix%\""
    if [ "$table" = "available" ]; then
        # The available table contains both installed and non-installed
        # packages. Exclude the installed packages.
	query="$query and pkg not in (select pkg from installed)"
    fi
    sqlite3 -batch -init /dev/null "$__dnf_cache_file" "$query"
}

__dnf_python_exec=
_dnf_set_python_exec()
{
    if [[ "$( readlink /usr/bin/dnf )" == "dnf-2" ]]; then
        __dnf_python_exec="/usr/bin/python2"
    else
        if [ -x /usr/libexec/platform-python ]; then
            __dnf_python_exec="/usr/libexec/platform-python"
        else
            __dnf_python_exec="/usr/bin/python3"
        fi
    fi
}

_dnf_commands_helper()
{
    local helper_cmd="import sys; from dnf.cli import completion_helper as ch; ch.main(sys.argv[1:])"
    local helper_opts="-d 0 -q -C --assumeno --nogpgcheck"
    "${__dnf_python_exec}" -c "$helper_cmd" "$@" $helper_opts 2>/dev/null </dev/null
}

# decide "path-like?" per initial: dot (./f.rpm, ../b.rpm), / (full path) or ~
_dnf_is_path()
{
    [[ "$1" = \.* ]] || [[ "$1" = \/* ]] || [[ "$1" = \~* ]]
}

_dnf_show_packages()
{
    local args cmd=$1
    _count_args
    # do not print packages if command wasnt chosen yet
    # eg.: dnf inTAB
    [[ "$args" -eq 1 ]] && return

    # return when "-" follows command
    # eg.: dnf up -
    [[ "$cur" == -* ]] && return

    shift

    if ! _dnf_is_path "$cur"; then
        if [ -r "$__dnf_cache_file" ] && [ -x /usr/bin/sqlite3 ]; then
            case "$cmd$*" in
            listinstalled|listupdates|\
            dg|downgrade|\
            ri|rei|reinstall|\
            rm|remove*|erase*|\
            um|u-m|upgrade|upgrade-n*|\
            up|up-min|update|update-n*)
                COMPREPLY+=( $(_dnf_query_db installed "$cur") )
                ;;
            *)
                COMPREPLY+=( $(_dnf_query_db available "$cur") )
                ;;
            esac
        else
            COMPREPLY+=( $(compgen -W "$( _dnf_commands_helper $cmd "$@" "$cur" )") )
        fi
    fi

    [[ $COMPREPLY ]] && return

    COMPREPLY+=( $(compgen -o default -f -X "!*.@(rpm)" -- "$cur" ) )
}

_dnf_get_first_command()
{
    local cmd i

    for (( i=1; i < ${#COMP_WORDS[@]}; i++ )); do
        if [[ "$1"  == *${COMP_WORDS[i]}* ]]; then
            cmd=${COMP_WORDS[i]}
            break
        fi
    done

    echo "$cmd"
}

_dnf()
{
    _dnf_set_python_exec

    local complete_commands complete_options extra_options command cmd_list
    local cur prev words cword split
    _init_completion -s || return

    cmd_list="$( _dnf_commands_helper "_cmds" "" )"
    command="$( _dnf_get_first_command "$cmd_list" )"

    case $prev in
    --version)
       return ;;

    -h|--help|--help-cmd)
        [[ $cword -eq 3 ]] && return ;;

    -d|--debuglevel|-e|--errorlevel)
        COMPREPLY=( $( compgen -W '0 1 2 3 4 5 6 7 8 9 10' -- "$cur" ) )
        return
        ;;

    --installroot)
        _filedir -d
        return ;;

    --enablerepo)
        COMPREPLY=( $(compgen -W "$( _dnf_commands_helper repolist disabled "$cur" )" -- "$cur") )
        return ;;

    --disablerepo)
        COMPREPLY=( $(compgen -W "$( _dnf_commands_helper repolist enabled "$cur" )" -- "$cur") )
        return ;;

    --color)
        COMPREPLY=( $(compgen -W "yes no true false 0 1" -- "$cur" ) )
        return ;;

    --destdir|--downloaddir)
        _filedir -d
        return ;;

    --sec*severity)
        COMPREPLY=( $( compgen -W "$__dnf_secseverity_subcmds" -- "$cur" ) )
        return ;;
    *)
        ;;
    esac

    complete_commands=

    case "$command" in
    autoremove|autoremove-n*)
        _dnf_show_packages list installed
        ;;

    check)
        extra_options="--all --dependencies --duplicates --obsoleted --provides"
        complete_commands="all dependencies duplicates obsoleted provides"
        ;;

    check-update|check-upgrade)
        _dnf_show_packages list updates
        ;;

    clean)
        complete_commands="$__dnf_clean_subcmds"
        ;;

    dup|dist-upgrade|dsync|distro*sync|distribution-synchronization)
        _dnf_show_packages list installed
        ;;

    dg|downgrade)
        _dnf_show_packages $command
        ;;

    group|groups|grouperase|groupinfo|groupinstall|grouplist|groupremove|groupupdate)
        extra_options="--with-optional --hidden --installed --available"
        ;;

    help)
        [[ $cword -eq 3 ]] && return 0
        complete_commands="$cmd_list"
        ;;

    history)
        complete_commands="$__dnf_history_subcmds"
        ;;

    info|list)
        local subcmd="available installed updates upgrades
                      --available --installed --updates --upgrades"
        case "$( _dnf_get_first_command "$subcmd" )" in
            --installed|installed)
                _dnf_show_packages list installed ;;

            --available|available)
                _dnf_show_packages list available ;;

            --updates|--upgrades|updates|upgrades)
                _dnf_show_packages list updates ;;

            *)
                _dnf_show_packages list
            ;;

        esac

        extra_options="--all --available --installed --extras --updates
                       --upgrades --autoremove --recent"
        ;;

    info-*|list-*|updateinfo|summary-updateinfo)
        extra_options="--summary --list --info"
        complete_commands="summary list info"
        ;;

    in|install*|localinstall)
        _dnf_show_packages $command
        ;;

    mark)
        _dnf_show_packages list installed
        ;;

    mc|ref|makecache|refresh)
        [[ "$prev" == *"timer" ]] && return
        extra_options="--timer"
        complete_commands="timer"
        ;;

    module)
        extra_options="--enabled --disabled --installed --profile --available --all"
        complete_commands="$__dnf_module_subcmds"
        case $prev in
            info)
                extra_options="--profile"
                ;;
            remove)
                extra_options="--all"
                ;;
            list)
                extra_options="--all --enabled --disabled --installed"
                ;;
            repoquery)
                extra_options="--available --installed"
                ;;
        esac
        ;;

    provides)
        ;;

    ri|rei|reinstall)
        _dnf_show_packages $command
        ;;

    rm|remove*|erase*)
        _dnf_show_packages $command
        extra_options="--oldinstallonly --duplicates --duplicated"
        ;;

    repoinfo|repolist)
        extra_options="--all --enabled --disabled"
        case $prev in
        enabled|--enabled)
            complete_commands="$( _dnf_commands_helper $command enabled "$cur" )"
            ;;
        disabled|--disabled)
            complete_commands="$( _dnf_commands_helper $command disabled "$cur" )"
            ;;
        all|--all|*)
            complete_commands="$( _dnf_commands_helper $command all "$cur" )"
        esac
        ;;

    repoquery*)
        extra_options="$__dnf_repoquery_subcmds"
        ;;

    repo*-pkgs|repo*-packages)
        complete_commands="$__dnf_repopkgs_subcmds"
        ;;

    se|search)
        [[ "$prev" == *"all" ]] && return
        extra_options="--all"
        complete_commands="all"
        ;;

    sh|shell) ;;

    swap) ;;

    um|u-m|upgrade|upgrade-n*)
        _dnf_show_packages $command
        ;;

    up|up-min|update|update-n*)
        _dnf_show_packages $command
        ;;

    whatprovides) ;;

    *)
        complete_commands="$cmd_list"
        ;;
    esac

    $split && return

    case $cur in
    -*)
        complete_options="$__dnf_main_options $extra_options"
        COMPREPLY=( $(compgen -W "$complete_options" -- "$cur" ))
        ;;
    *)
        if [[ $cur == $command ]]; then
            complete_commands="$cmd_list"
        fi

        if [[ "$complete_commands" ]]; then
            COMPREPLY=( $(compgen -W "$complete_commands" -- "$cur" ))
        fi
    esac

    [[ $COMPREPLY == *= ]] && compopt -o nospace
    return 0
}

complete -F _dnf dnf dnf-2 dnf-3

Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]

Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
8 Sep 2026 9.54 AM
root / root
0755
addpart
0.473 KB
6 May 2021 10.55 AM
root / root
0644
appstream-util
2.703 KB
7 Sep 2020 10.20 AM
root / root
0644
biosdecode
0.663 KB
24 Apr 2024 9.26 AM
root / root
0644
blkdiscard
0.67 KB
6 May 2021 10.55 AM
root / root
0644
blkid
2.101 KB
6 May 2021 10.55 AM
root / root
0644
blkzone
0.99 KB
6 May 2021 10.55 AM
root / root
0644
blockdev
0.742 KB
6 May 2021 10.55 AM
root / root
0644
bootctl
3.695 KB
25 Jun 2026 12.26 AM
root / root
0644
busctl
7.239 KB
31 Oct 2022 6.59 PM
root / root
0644
bwrap
1.068 KB
12 Aug 2024 6.00 PM
root / root
0644
cal
0.431 KB
6 May 2021 10.55 AM
root / root
0644
cfdisk
0.594 KB
6 Jan 2022 1.52 PM
root / root
0644
chcpu
1.486 KB
2 Feb 2021 3.41 PM
root / root
0644
chfn
0.435 KB
2 Feb 2021 3.41 PM
root / root
0644
chmem
0.489 KB
2 Feb 2021 3.41 PM
root / root
0644
chrt
0.898 KB
2 Feb 2021 3.41 PM
root / root
0644
chsh
0.492 KB
2 Feb 2021 3.41 PM
root / root
0644
col
0.449 KB
2 Feb 2021 3.41 PM
root / root
0644
colcrt
0.473 KB
2 Feb 2021 3.41 PM
root / root
0644
colrm
0.497 KB
2 Feb 2021 3.41 PM
root / root
0644
column
1.415 KB
6 May 2021 10.55 AM
root / root
0644
coredumpctl
3.646 KB
31 Oct 2022 6.59 PM
root / root
0644
cpupower
3.421 KB
11 Sep 2026 1.33 PM
root / root
0644
ctrlaltdel
0.327 KB
2 Feb 2021 3.41 PM
root / root
0644
dconf
1.152 KB
13 Mar 2021 1.05 AM
root / root
0644
delpart
0.55 KB
6 May 2021 10.55 AM
root / root
0644
devlink
26.762 KB
5 Apr 2026 8.31 AM
root / root
0644
dmesg
1.201 KB
14 Feb 2022 7.49 AM
root / root
0644
dmidecode
1.131 KB
24 Apr 2024 9.26 AM
root / root
0644
dnf
10.965 KB
9 Sep 2022 11.21 AM
root / root
0644
dpll
9.592 KB
5 Apr 2026 8.31 AM
root / root
0644
dracut
4.444 KB
14 Aug 2026 12.41 AM
root / root
0644
eject
1.219 KB
6 May 2021 10.55 AM
root / root
0644
ethtool
24.612 KB
13 May 2025 9.50 AM
root / root
0644
fallocate
0.704 KB
2 Feb 2021 3.41 PM
root / root
0644
fdformat
0.553 KB
2 Feb 2021 3.41 PM
root / root
0644
fdisk
1.87 KB
6 May 2021 10.55 AM
root / root
0644
fincore
0.895 KB
2 Feb 2021 3.41 PM
root / root
0644
findfs
0.679 KB
2 Feb 2021 3.41 PM
root / root
0644
findmnt
3.12 KB
2 Feb 2021 3.41 PM
root / root
0644
firewall-cmd
13.213 KB
4 Aug 2026 8.19 PM
root / root
0644
flatpak
1.321 KB
17 Apr 2024 5.19 PM
root / root
0644
flock
0.854 KB
2 Feb 2021 3.41 PM
root / root
0644
fsck
0.752 KB
6 May 2021 10.55 AM
root / root
0644
fsck.cramfs
0.686 KB
6 May 2021 10.55 AM
root / root
0644
fsck.minix
0.408 KB
6 May 2021 10.55 AM
root / root
0644
fsfreeze
0.512 KB
2 Feb 2021 3.41 PM
root / root
0644
fstrim
0.726 KB
6 May 2021 10.55 AM
root / root
0644
fwupdmgr
9.531 KB
13 Apr 2026 8.35 AM
root / root
0644
fwupdtool
8.133 KB
13 Apr 2026 8.35 AM
root / root
0644
gapplication
1.356 KB
19 Aug 2021 3.27 PM
root / root
0644
gdbus
0.913 KB
19 Aug 2021 3.27 PM
root / root
0644
getopt
0.796 KB
2 Feb 2021 3.41 PM
root / root
0644
gio
3.74 KB
19 Aug 2021 3.27 PM
root / root
0644
gresource
1.324 KB
19 Aug 2021 3.27 PM
root / root
0644
grub
11.407 KB
6 Apr 2026 12.55 PM
root / root
0644
gsettings
2.763 KB
19 Aug 2021 3.27 PM
root / root
0644
gst-inspect-1.0
2.539 KB
29 Apr 2024 7.09 PM
root / root
0644
gst-launch-1.0
3.404 KB
29 Apr 2024 7.09 PM
root / root
0644
hardlink
0.59 KB
2 Feb 2021 3.41 PM
root / root
0644
hexdump
0.983 KB
2 Feb 2021 3.41 PM
root / root
0644
hostnamectl
2.688 KB
31 Oct 2022 6.59 PM
root / root
0644
hwclock
0.938 KB
14 Feb 2022 7.49 AM
root / root
0644
imunify360-agent
12.229 KB
19 Aug 2026 7.51 AM
root / root
0644
ionice
1.134 KB
2 Feb 2021 3.41 PM
root / root
0644
ipcmk
0.563 KB
2 Feb 2021 3.41 PM
root / root
0644
ipcrm
1.39 KB
2 Feb 2021 3.41 PM
root / root
0644
ipcs
0.502 KB
2 Feb 2021 3.41 PM
root / root
0644
irqtop
0.868 KB
14 Feb 2022 7.49 AM
root / root
0644
isosize
0.517 KB
2 Feb 2021 3.41 PM
root / root
0644
journalctl
6.104 KB
31 Oct 2022 6.59 PM
root / root
0644
kernel-install
2.031 KB
25 Jun 2026 12.26 AM
root / root
0644
kmod
3.159 KB
5 May 2014 4.52 AM
root / root
0644
last
0.927 KB
2 Feb 2021 3.41 PM
root / root
0644
ldattach
1.438 KB
2 Feb 2021 3.41 PM
root / root
0644
localectl
3.248 KB
31 Oct 2022 6.59 PM
root / root
0644
logger
1.517 KB
2 Feb 2021 3.41 PM
root / root
0644
loginctl
4.05 KB
31 Oct 2022 6.59 PM
root / root
0644
look
0.667 KB
2 Feb 2021 3.41 PM
root / root
0644
losetup
1.697 KB
2 Feb 2021 3.41 PM
root / root
0644
lsblk
2.104 KB
14 Feb 2022 7.49 AM
root / root
0644
lscpu
1.041 KB
2 Feb 2021 3.41 PM
root / root
0644
lsinitrd
2.066 KB
14 Aug 2026 12.41 AM
root / root
0644
lsipc
1.279 KB
2 Feb 2021 3.41 PM
root / root
0644
lsirq
0.797 KB
6 May 2021 10.55 AM
root / root
0644
lslocks
1.059 KB
2 Feb 2021 3.41 PM
root / root
0644
lslogins
1.71 KB
6 May 2021 10.55 AM
root / root
0644
lsmem
1.044 KB
2 Feb 2021 3.41 PM
root / root
0644
lsns
1.163 KB
2 Feb 2021 3.41 PM
root / root
0644
mcookie
0.585 KB
2 Feb 2021 3.41 PM
root / root
0644
mesg
0.402 KB
2 Feb 2021 3.41 PM
root / root
0644
mkfs
0.644 KB
6 May 2021 10.55 AM
root / root
0644
mkfs.cramfs
0.819 KB
6 May 2021 10.55 AM
root / root
0644
mkfs.minix
0.731 KB
6 May 2021 10.55 AM
root / root
0644
mkswap
0.855 KB
6 May 2021 10.55 AM
root / root
0644
mokutil
1.161 KB
19 Mar 2024 8.45 AM
root / root
0644
more
0.734 KB
6 May 2021 10.55 AM
root / root
0644
mountpoint
0.486 KB
6 May 2021 10.55 AM
root / root
0644
namei
0.488 KB
2 Feb 2021 3.41 PM
root / root
0644
nmcli
3.977 KB
12 Dec 2025 3.24 PM
root / root
0644
nsenter
1.155 KB
14 Feb 2022 7.49 AM
root / root
0644
nvme
41.834 KB
4 Nov 2025 9.36 AM
root / root
0644
ownership
0.577 KB
24 Apr 2024 9.26 AM
root / root
0644
p11-kit
0.658 KB
26 Oct 2023 9.56 AM
root / root
0644
partx
1.271 KB
6 May 2021 10.55 AM
root / root
0644
pip3
0.284 KB
23 May 2026 8.59 AM
root / root
0644
pivot_root
0.378 KB
2 Feb 2021 3.41 PM
root / root
0644
prlimit
1.298 KB
2 Feb 2021 3.41 PM
root / root
0644
readprofile
0.663 KB
2 Feb 2021 3.41 PM
root / root
0644
rename
0.653 KB
14 Feb 2022 7.49 AM
root / root
0644
renice
0.766 KB
2 Feb 2021 3.41 PM
root / root
0644
resizepart
0.591 KB
6 May 2021 10.55 AM
root / root
0644
rev
0.422 KB
2 Feb 2021 3.41 PM
root / root
0644
rfkill
0.922 KB
2 Feb 2021 3.41 PM
root / root
0644
rtcwake
1.056 KB
2 Feb 2021 3.41 PM
root / root
0644
runuser
0.871 KB
14 Feb 2022 7.49 AM
root / root
0644
script
1.036 KB
6 May 2021 10.55 AM
root / root
0644
scriptlive
0.744 KB
6 May 2021 10.55 AM
root / root
0644
scriptreplay
0.896 KB
6 May 2021 10.55 AM
root / root
0644
semanage
6.759 KB
5 Apr 2026 11.05 AM
root / root
0644
setarch
0.771 KB
2 Feb 2021 3.41 PM
root / root
0644
setpriv
2.771 KB
2 Feb 2021 3.41 PM
root / root
0644
setsebool
2.737 KB
4 Apr 2026 11.51 PM
root / root
0644
setsid
0.43 KB
2 Feb 2021 3.41 PM
root / root
0644
setterm
2.53 KB
2 Feb 2021 3.41 PM
root / root
0644
sfdisk
2.074 KB
14 Feb 2022 7.49 AM
root / root
0644
stunnel.bash
0.556 KB
2 Oct 2024 9.15 PM
root / root
0644
su
0.871 KB
14 Feb 2022 7.49 AM
root / root
0644
swaplabel
0.62 KB
2 Feb 2021 3.41 PM
root / root
0644
swapoff
0.726 KB
2 Feb 2021 3.41 PM
root / root
0644
swapon
1.96 KB
2 Feb 2021 3.41 PM
root / root
0644
systemctl
13.853 KB
25 Jun 2026 12.27 AM
root / root
0644
systemd-analyze
7.14 KB
25 Jun 2026 12.24 AM
root / root
0644
systemd-cat
1.679 KB
31 Oct 2022 6.59 PM
root / root
0644
systemd-cgls
2.195 KB
31 Oct 2022 6.59 PM
root / root
0644
systemd-cgtop
2.188 KB
31 Oct 2022 6.59 PM
root / root
0644
systemd-cryptenroll
3.228 KB
31 Oct 2022 6.59 PM
root / root
0644
systemd-delta
1.748 KB
31 Oct 2022 6.59 PM
root / root
0644
systemd-detect-virt
1.321 KB
25 Jun 2026 12.26 AM
root / root
0644
systemd-id128
2.095 KB
31 Oct 2022 6.59 PM
root / root
0644
systemd-path
1.7 KB
31 Oct 2022 6.59 PM
root / root
0644
systemd-run
5.394 KB
31 Oct 2022 6.59 PM
root / root
0644
taskset
1.185 KB
2 Feb 2021 3.41 PM
root / root
0644
tc
26.297 KB
5 Apr 2026 8.31 AM
root / root
0644
timedatectl
2.945 KB
31 Oct 2022 6.59 PM
root / root
0644
tracker3
0.964 KB
11 Jun 2021 10.30 PM
root / root
0644
trust
2.005 KB
24 Oct 2023 12.58 PM
root / root
0644
udevadm
9.661 KB
31 Oct 2022 6.59 PM
root / root
0644
udisksctl
0.837 KB
20 Oct 2025 1.58 PM
root / root
0644
ul
0.64 KB
2 Feb 2021 3.41 PM
root / root
0644
unshare
0.914 KB
6 May 2021 10.55 AM
root / root
0644
utmpdump
0.464 KB
2 Feb 2021 3.41 PM
root / root
0644
uuidgen
0.642 KB
2 Feb 2021 3.41 PM
root / root
0644
uuidparse
0.71 KB
2 Feb 2021 3.41 PM
root / root
0644
vpddecode
0.79 KB
24 Apr 2024 9.26 AM
root / root
0644
wall
0.619 KB
2 Feb 2021 3.41 PM
root / root
0644
wdctl
1.339 KB
2 Feb 2021 3.41 PM
root / root
0644
whereis
0.522 KB
14 Feb 2022 7.49 AM
root / root
0644
wipefs
1.209 KB
6 May 2021 10.55 AM
root / root
0644
write
0.421 KB
2 Feb 2021 3.41 PM
root / root
0644
zramctl
1.26 KB
2 Feb 2021 3.41 PM
root / root
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF