Linux evo.fastest-server.com 5.14.0-284.1101.el9.tuxcare.11.els11.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 14 13:30:35 UTC 2026 x86_64
LiteSpeed
Server IP : 103.249.112.113 & Your IP : 216.73.217.135
Domains : 988 Domain
User : tanishks
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
dracut /
modules.d /
99base /
Delete
Unzip
Name
Size
Permission
Date
Action
dracut-dev-lib.sh
3.97
KB
-rwxr-xr-x
2022-06-19 22:35
dracut-lib.sh
28.29
KB
-rwxr-xr-x
2026-08-14 00:41
init.sh
11.65
KB
-rwxr-xr-x
2022-06-19 22:35
initqueue.sh
1.34
KB
-rwxr-xr-x
2026-08-14 00:41
loginit.sh
532
B
-rwxr-xr-x
2022-06-19 22:35
module-setup.sh
5
KB
-rwxr-xr-x
2026-08-14 00:41
parse-root-opts.sh
277
B
-rwxr-xr-x
2022-06-19 22:35
rdsosreport.sh
1.42
KB
-rwxr-xr-x
2022-06-19 22:35
Save
Rename
#!/usr/bin/sh # turn off debugging set +x QUIET=$1 printf "%s" "$$" > /run/initramfs/loginit.pid # shellcheck disable=SC2015 [ -e /dev/kmsg ] && exec 5> /dev/kmsg || exec 5> /dev/null exec 6> /run/initramfs/init.log while read -r line || [ -n "$line" ]; do if [ "$line" = "DRACUT_LOG_END" ]; then rm -f -- /run/initramfs/loginit.pipe exit 0 fi echo "<31>dracut: $line" >&5 # if "quiet" is specified we output to /dev/console [ -n "$QUIET" ] || echo "dracut: $line" echo "$line" >&6 done