Linux srv25.usacloudserver.us 5.14.0-570.39.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 4 05:08:52 EDT 2025 x86_64
LiteSpeed
Server IP : 23.137.84.82 & Your IP : 216.73.216.127
Domains :
Cant Read [ /etc/named.conf ]
User : epicgamerzoneco
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
dracut /
modules.d /
98dracut-systemd /
Delete
Unzip
Name
Size
Permission
Date
Action
dracut-cmdline-ask.service
843
B
-rw-r--r--
2022-06-19 22:35
dracut-cmdline-ask.sh
431
B
-rwxr-xr-x
2022-06-19 22:35
dracut-cmdline.service
867
B
-rw-r--r--
2022-06-19 22:35
dracut-cmdline.service.8
1.52
KB
-rw-r--r--
2022-07-08 16:50
dracut-cmdline.service.8.asc
442
B
-rw-r--r--
2022-06-19 22:35
dracut-cmdline.sh
2.2
KB
-rwxr-xr-x
2022-06-19 22:35
dracut-emergency.service
679
B
-rw-r--r--
2022-06-19 22:35
dracut-emergency.sh
1.6
KB
-rwxr-xr-x
2025-06-11 16:03
dracut-initqueue.service
784
B
-rw-r--r--
2022-06-19 22:35
dracut-initqueue.service.8
1.51
KB
-rw-r--r--
2022-07-08 16:50
dracut-initqueue.service.8.asc
439
B
-rw-r--r--
2022-06-19 22:35
dracut-initqueue.sh
2.62
KB
-rwxr-xr-x
2022-06-19 22:35
dracut-mount.service
756
B
-rw-r--r--
2022-06-19 22:35
dracut-mount.service.8
1.5
KB
-rw-r--r--
2022-07-08 16:50
dracut-mount.service.8.asc
416
B
-rw-r--r--
2022-06-19 22:35
dracut-mount.sh
1.07
KB
-rwxr-xr-x
2022-06-19 22:35
dracut-pre-mount.service
785
B
-rw-r--r--
2022-06-19 22:35
dracut-pre-mount.service.8
1.51
KB
-rw-r--r--
2022-07-08 16:50
dracut-pre-mount.service.8.asc
434
B
-rw-r--r--
2022-06-19 22:35
dracut-pre-mount.sh
508
B
-rwxr-xr-x
2022-06-19 22:35
dracut-pre-pivot.service
1.08
KB
-rw-r--r--
2022-06-19 22:35
dracut-pre-pivot.service.8
1.5
KB
-rw-r--r--
2022-07-08 16:50
dracut-pre-pivot.service.8.asc
429
B
-rw-r--r--
2022-06-19 22:35
dracut-pre-pivot.sh
903
B
-rwxr-xr-x
2022-06-19 22:35
dracut-pre-trigger.service
877
B
-rw-r--r--
2022-06-19 22:35
dracut-pre-trigger.service.8
1.51
KB
-rw-r--r--
2022-07-08 16:50
dracut-pre-trigger.service.8.asc
440
B
-rw-r--r--
2022-06-19 22:35
dracut-pre-trigger.sh
474
B
-rwxr-xr-x
2022-06-19 22:35
dracut-pre-udev.service
956
B
-rw-r--r--
2022-06-19 22:35
dracut-pre-udev.service.8
1.5
KB
-rw-r--r--
2022-07-08 16:50
dracut-pre-udev.service.8.asc
424
B
-rw-r--r--
2022-06-19 22:35
dracut-pre-udev.sh
1.38
KB
-rwxr-xr-x
2022-06-19 22:35
dracut-shutdown-onfailure.service
272
B
-rw-r--r--
2022-06-19 22:35
dracut-shutdown.service
403
B
-rw-r--r--
2022-06-19 22:35
dracut-shutdown.service.8
3.72
KB
-rw-r--r--
2022-07-08 16:50
dracut-shutdown.service.8.asc
1.84
KB
-rw-r--r--
2022-06-19 22:35
dracut-tmpfiles.conf
135
B
-rw-r--r--
2022-06-19 22:35
emergency.service
690
B
-rw-r--r--
2022-06-19 22:35
module-setup.sh
1.8
KB
-rwxr-xr-x
2025-06-11 16:03
rootfs-generator.sh
3.64
KB
-rwxr-xr-x
2022-06-19 22:35
Save
Rename
#!/usr/bin/sh type getarg > /dev/null 2>&1 || . /lib/dracut-lib.sh generator_wait_for_dev() { local _name local _timeout _name="$(str_replace "$1" '/' '\x2f')" _timeout=$(getarg rd.timeout) _timeout=${_timeout:-0} if ! [ -e "$hookdir/initqueue/finished/devexists-${_name}.sh" ]; then # If a LUKS device needs unlocking via systemd in the initrd, assume # it's for the root device. In that case, don't block on it if it's # after remote-fs-pre.target since the initqueue is ordered before it so # it will never actually show up (think Tang-pinned rootfs). cat > "$hookdir/initqueue/finished/devexists-${_name}.sh" << EOF if ! grep -q After=remote-fs-pre.target /run/systemd/generator/systemd-cryptsetup@*.service 2>/dev/null; then [ -e "$1" ] fi EOF { printf '[ -e "%s" ] || ' "$1" printf 'warn "\"%s\" does not exist"\n' "$1" } >> "$hookdir/emergency/80-${_name}.sh" fi _name=$(dev_unit_name "$1") if ! [ -L "$GENERATOR_DIR"/initrd.target.wants/"${_name}".device ]; then [ -d "$GENERATOR_DIR"/initrd.target.wants ] || mkdir -p "$GENERATOR_DIR"/initrd.target.wants ln -s ../"${_name}".device "$GENERATOR_DIR"/initrd.target.wants/"${_name}".device fi if ! [ -f "$GENERATOR_DIR"/"${_name}".device.d/timeout.conf ]; then mkdir -p "$GENERATOR_DIR"/"${_name}".device.d { echo "[Unit]" echo "JobTimeoutSec=$_timeout" echo "JobRunningTimeoutSec=$_timeout" } > "$GENERATOR_DIR"/"${_name}".device.d/timeout.conf fi } generator_mount_rootfs() { local _type=$2 local _flags=$3 local _name [ -z "$1" ] && return 0 _name=$(dev_unit_name "$1") [ -d "$GENERATOR_DIR" ] || mkdir -p "$GENERATOR_DIR" if ! [ -f "$GENERATOR_DIR"/sysroot.mount ]; then { echo "[Unit]" echo "Before=initrd-root-fs.target" echo "Requires=systemd-fsck@${_name}.service" echo "After=systemd-fsck@${_name}.service" echo "[Mount]" echo "Where=/sysroot" echo "What=$1" echo "Options=${_flags}" echo "Type=${_type}" } > "$GENERATOR_DIR"/sysroot.mount fi if ! [ -L "$GENERATOR_DIR"/initrd-root-fs.target.requires/sysroot.mount ]; then [ -d "$GENERATOR_DIR"/initrd-root-fs.target.requires ] || mkdir -p "$GENERATOR_DIR"/initrd-root-fs.target.requires ln -s ../sysroot.mount "$GENERATOR_DIR"/initrd-root-fs.target.requires/sysroot.mount fi } generator_fsck_after_pre_mount() { local _name [ -z "$1" ] && return 0 _name=$(dev_unit_name "$1") [ -d /run/systemd/generator/systemd-fsck@"${_name}".service.d ] || mkdir -p /run/systemd/generator/systemd-fsck@"${_name}".service.d if ! [ -f /run/systemd/generator/systemd-fsck@"${_name}".service.d/after-pre-mount.conf ]; then { echo "[Unit]" echo "After=dracut-pre-mount.service" } > /run/systemd/generator/systemd-fsck@"${_name}".service.d/after-pre-mount.conf fi } root=$(getarg root=) case "${root#block:}" in LABEL=* | UUID=* | PARTUUID=* | PARTLABEL=*) root="block:$(label_uuid_to_dev "$root")" rootok=1 ;; /dev/nfs) # ignore legacy /dev/nfs ;; /dev/*) root="block:${root}" rootok=1 ;; esac GENERATOR_DIR="$1" if [ "$rootok" = "1" ]; then generator_wait_for_dev "${root#block:}" "$RDRETRY" generator_fsck_after_pre_mount "${root#block:}" strstr "$(cat /proc/cmdline)" 'root=' || generator_mount_rootfs "${root#block:}" "$(getarg rootfstype=)" "$(getarg rootflags=)" fi exit 0