Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
dracut /
modules.d /
99kdumpbase /
Delete
Unzip
Name
Size
Permission
Date
Action
kdump-capture.service
945
B
-rw-r--r--
2021-03-26 06:47
kdump-emergency.service
905
B
-rw-r--r--
2021-03-26 06:47
kdump-emergency.target
451
B
-rw-r--r--
2021-03-26 06:47
kdump-error-handler.service
993
B
-rw-r--r--
2021-03-26 06:47
kdump-error-handler.sh
145
B
-rwxr-xr-x
2021-03-26 06:47
kdump.sh
5.4
KB
-rwxr-xr-x
2021-03-26 06:47
module-setup.sh
26.91
KB
-rwxr-xr-x
2021-03-26 06:47
monitor_dd_progress
482
B
-rw-r--r--
2021-03-26 06:47
Save
Rename
#!/bin/sh SRC_FILE_MB=$1 while true do DD_PID=`pidof dd` if [ -n "$DD_PID" ]; then break fi done while true do sleep 5 if [ ! -d /proc/$DD_PID ]; then break fi kill -s USR1 $DD_PID CURRENT_SIZE=`tail -n 1 /tmp/dd_progress_file | sed "s/[^0-9].*//g"` [ -n "$CURRENT_SIZE" ] && { CURRENT_MB=$(($CURRENT_SIZE / 1048576)) echo -e "Copied $CURRENT_MB MB / $SRC_FILE_MB MB\r" } done rm -f /tmp/dd_progress_file