Linux salto.nuvemidc.com 5.14.0-687.42.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Aug 27 11:55:12 EDT 2026 x86_64
LiteSpeed
: 177.73.233.61 | : 216.73.217.116
Cant Read [ /etc/named.conf ]
7.4.33
agenci18
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
dracut /
modules.d /
98dracut-systemd /
[ HOME SHELL ]
Name
Size
Permission
Action
dracut-cmdline-ask.service
843
B
-rw-r--r--
dracut-cmdline-ask.sh
431
B
-rwxr-xr-x
dracut-cmdline.service
867
B
-rw-r--r--
dracut-cmdline.service.8
1.52
KB
-rw-r--r--
dracut-cmdline.service.8.asc
442
B
-rw-r--r--
dracut-cmdline.sh
2.2
KB
-rwxr-xr-x
dracut-emergency.service
679
B
-rw-r--r--
dracut-emergency.sh
1.6
KB
-rwxr-xr-x
dracut-initqueue.service
784
B
-rw-r--r--
dracut-initqueue.service.8
1.51
KB
-rw-r--r--
dracut-initqueue.service.8.asc
439
B
-rw-r--r--
dracut-initqueue.sh
2.62
KB
-rwxr-xr-x
dracut-mount.service
756
B
-rw-r--r--
dracut-mount.service.8
1.5
KB
-rw-r--r--
dracut-mount.service.8.asc
416
B
-rw-r--r--
dracut-mount.sh
1.07
KB
-rwxr-xr-x
dracut-pre-mount.service
785
B
-rw-r--r--
dracut-pre-mount.service.8
1.51
KB
-rw-r--r--
dracut-pre-mount.service.8.asc
434
B
-rw-r--r--
dracut-pre-mount.sh
508
B
-rwxr-xr-x
dracut-pre-pivot.service
1.08
KB
-rw-r--r--
dracut-pre-pivot.service.8
1.5
KB
-rw-r--r--
dracut-pre-pivot.service.8.asc
429
B
-rw-r--r--
dracut-pre-pivot.sh
903
B
-rwxr-xr-x
dracut-pre-trigger.service
877
B
-rw-r--r--
dracut-pre-trigger.service.8
1.51
KB
-rw-r--r--
dracut-pre-trigger.service.8.a...
440
B
-rw-r--r--
dracut-pre-trigger.sh
474
B
-rwxr-xr-x
dracut-pre-udev.service
956
B
-rw-r--r--
dracut-pre-udev.service.8
1.5
KB
-rw-r--r--
dracut-pre-udev.service.8.asc
424
B
-rw-r--r--
dracut-pre-udev.sh
1.38
KB
-rwxr-xr-x
dracut-shutdown-onfailure.serv...
272
B
-rw-r--r--
dracut-shutdown.service
403
B
-rw-r--r--
dracut-shutdown.service.8
3.72
KB
-rw-r--r--
dracut-shutdown.service.8.asc
1.84
KB
-rw-r--r--
dracut-tmpfiles.conf
135
B
-rw-r--r--
emergency.service
690
B
-rw-r--r--
module-setup.sh
1.8
KB
-rwxr-xr-x
rootfs-generator.sh
3.64
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : dracut-emergency.sh
#!/usr/bin/sh export DRACUT_SYSTEMD=1 if [ -f /dracut-state.sh ]; then . /dracut-state.sh 2> /dev/null fi type getarg > /dev/null 2>&1 || . /lib/dracut-lib.sh source_conf /etc/conf.d type plymouth > /dev/null 2>&1 && plymouth quit export _rdshell_name="dracut" action="Boot" hook="emergency" _emergency_action=$(getarg rd.emergency) if getargbool 1 rd.shell -d -y rdshell || getarg rd.break -d rdbreak; then FSTXT="/run/dracut/fsck/fsck_help_$fstype.txt" RDSOSREPORT="$(rdsosreport)" source_hook "$hook" while read -r _tty rest; do ( echo echo "$RDSOSREPORT" echo echo echo 'Entering emergency mode. Exit the shell to continue.' echo 'Type "journalctl" to view system logs.' echo 'You might want to save "/run/initramfs/rdsosreport.txt" to a USB stick or /boot' echo 'after mounting them and attach it to a bug report.' echo echo [ -f "$FSTXT" ] && cat "$FSTXT" ) > /dev/"$_tty" done < /proc/consoles [ -f /etc/profile ] && . /etc/profile [ -z "$PS1" ] && export PS1="$_name:\${PWD}# " exec sh -i -l else export hook="shutdown-emergency" warn "$action has failed. To debug this issue add \"rd.shell rd.debug\" to the kernel command line." source_hook "$hook" [ -z "$_emergency_action" ] && _emergency_action=halt fi /bin/rm -f -- /.console_lock case "$_emergency_action" in reboot) reboot || exit 1 ;; poweroff) poweroff || exit 1 ;; halt) halt || exit 1 ;; esac exit 0
Close