Linux amd.servercpanel.com 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64
LiteSpeed
Server IP : 161.248.188.165 & Your IP : 216.73.216.219
Domains :
Cant Read [ /etc/named.conf ]
User : oishifashion
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
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.18
KB
-rwxr-xr-x
2022-06-19 22:35
init.sh
11.65
KB
-rwxr-xr-x
2022-06-19 22:35
initqueue.sh
1.31
KB
-rwxr-xr-x
2022-06-19 22:35
loginit.sh
532
B
-rwxr-xr-x
2022-06-19 22:35
module-setup.sh
5
KB
-rwxr-xr-x
2025-06-11 16:03
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