Linux ih01.iridiumhosting.com 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64
LiteSpeed
Server IP : 67.227.241.211 & Your IP : 216.73.216.208
Domains :
Cant Read [ /etc/named.conf ]
User : dustinhy
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
MXB /
rear /
usr /
share /
rear /
prep /
USB /
Linux-i386 /
Delete
Unzip
Name
Size
Permission
Date
Action
340_find_mbr_bin.sh
3.03
KB
-rw-r--r--
2026-04-01 09:39
350_check_usb_disk.sh
1.81
KB
-rw-r--r--
2026-04-01 09:39
350_find_syslinux_modules.sh
517
B
-rw-r--r--
2026-04-01 09:39
400_check_extlinux.sh
144
B
-rw-r--r--
2026-04-01 09:39
Save
Rename
test "$USB_DEVICE" || Error "USB or disk device (USB_DEVICE) is not set." # Attempt to find the real USB device by trying its parent. # Return a proper short device name using udev: REAL_USB_DEVICE=$( readlink -f $USB_DEVICE ) test -b "$REAL_USB_DEVICE" || Error "USB or disk device '$USB_DEVICE' is not a block device" # Check if the ReaR USB device is not accidentally mounted on other than $BUILD_DIR location: if res=( $( grep -v $BUILD_DIR /proc/mounts | grep "^$REAL_USB_DEVICE" ) ) ; then Error "USB or disk device '$REAL_USB_DEVICE' is already mounted on '${res[1]}'" fi # Try to find the parent device (as we don't want to write MBR to a partition) # the udevinfo query yields something like # /devices/pci0000:00/0000:00:10.0/host2/target2:0:1/2:0:1:0/block/sdb/sdb1 # we want the "sdb" part of it. TEMP_USB_DEVICE=$(basename $(dirname $(my_udevinfo -q path -n "$REAL_USB_DEVICE"))) if [ "$TEMP_USB_DEVICE" -a -b "/dev/$TEMP_USB_DEVICE" ]; then RAW_USB_DEVICE="/dev/$(my_udevinfo -q name -n "$TEMP_USB_DEVICE")" elif [ "$TEMP_USB_DEVICE" -a -d "/sys/block/$TEMP_USB_DEVICE" ]; then RAW_USB_DEVICE="/dev/$(my_udevinfo -q name -p "$TEMP_USB_DEVICE")" # If we're passed a raw device, ala /dev/sdb, TEMP_USB_DEVICE will be set to "block" # and RAW_USB_DEVICE won't be set. "block" is not useful. TEMP_USB_DEVICE will not be # set if udev doesn't know anything about the device we were passed. So, if we've # gotten here and either are not set, let's just assert what we know from udev # about the device. elif [ -z "$TEMP_USB_DEVICE" ] || [ -z "$RAW_USB_DEVICE" ] ; then RAW_USB_DEVICE="/dev/$(my_udevinfo -q name -n "$REAL_USB_DEVICE")" else BugError "Unable to determine raw device for $REAL_USB_DEVICE" fi test "$RAW_USB_DEVICE" -a -b "$RAW_USB_DEVICE" || Error "Unable to determine raw device for $REAL_USB_DEVICE"