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.217.46
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 /
finalize /
default /
Delete
Unzip
Name
Size
Permission
Date
Action
050_prepare_checks.sh
1.24
KB
-rw-r--r--
2026-04-01 09:39
060_compare_files.sh
3.48
KB
-rw-r--r--
2026-04-01 09:39
110_bind_mount_proc_sys_dev_run.sh
6.2
KB
-rw-r--r--
2026-04-01 09:39
520_confirm_finalize.sh
3.25
KB
-rw-r--r--
2026-04-01 09:39
880_check_for_mount_by_id.sh
8.22
KB
-rw-r--r--
2026-04-01 09:39
890_finish_checks.sh
1.49
KB
-rw-r--r--
2026-04-01 09:39
900_remount_sync.sh
1.24
KB
-rw-r--r--
2026-04-01 09:39
Save
Rename
# Prepare some checks. # We want to tell the user if we did not install a boot loader. # To accomplish this we set the NOBOOTLOADER variable to a true value # that must be unset or set to an emptly value or set to a non-true value # (so that "is_true $NOBOOTLOADER" returns false, cf. lib/global-functions.sh) # by all boot-loader installation scripts after successfully installing a boot loader # (i.e. "is_true $NOBOOTLOADER || echo a boot loader is already installed"): NOBOOTLOADER=1 # Try to read the BOOTLOADER value if /var/lib/rear/recovery/bootloader is not empty. # Currently (February 2024) the used BOOTLOADER values (grep for '$BOOTLOADER') are: # GRUB for GRUB Legacy # GRUB2 for GRUB 2 # ELILO for elilo # LILO for lilo # GRUB2-EFI for GRUB 2, EFI version # EFI for any EFI bootloader, dummy value # ARM for ARM devices, dummy value # ARM-ALLWINNER for Allwinner devices # ZIPL for zIPL, on IBM Z (s390x) # PPC for any bootloader in the PReP boot partition (can be LILO, YABOOT, GRUB2) local bootloader_file="$VAR_DIR/recovery/bootloader" # The output is stored in an artificial bash array so that $BOOTLOADER is the first word: test -s $bootloader_file && BOOTLOADER=( $( grep -v '^[[:space:]]*#' $bootloader_file ) )