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 /
95iscsi /
Delete
Unzip
Name
Size
Permission
Date
Action
cleanup-iscsi.sh
136
B
-rwxr-xr-x
2022-06-19 22:35
iscsiroot.sh
11.16
KB
-rwxr-xr-x
2026-08-14 00:41
module-setup.sh
9.27
KB
-rwxr-xr-x
2022-06-19 22:35
mount-lun.sh
348
B
-rwxr-xr-x
2022-06-19 22:35
parse-iscsiroot.sh
6.01
KB
-rwxr-xr-x
2026-08-14 00:41
Save
Rename
#!/usr/bin/sh if [ -z "$iscsi_lun" ]; then iscsi_lun=0 fi NEWROOT=${NEWROOT:-/sysroot} for disk in /dev/disk/by-path/*-iscsi-*-"$iscsi_lun"; do if mount -t "${fstype:-auto}" -o "$rflags" "$disk" "$NEWROOT"; then if [ ! -d "$NEWROOT"/proc ]; then umount "$disk" continue fi break fi done