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.87
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 /
layout /
save /
default /
Delete
Unzip
Name
Size
Permission
Date
Action
300_list_dependencies.sh
103
B
-rw-r--r--
2026-04-01 09:39
305_uniq_disktodo.sh
189
B
-rw-r--r--
2026-04-01 09:39
310_autoexclude_usb.sh
1.61
KB
-rw-r--r--
2026-04-01 09:39
310_include_exclude.sh
2.21
KB
-rw-r--r--
2026-04-01 09:39
320_autoexclude.sh
5.05
KB
-rw-r--r--
2026-04-01 09:39
330_remove_exclusions.sh
4.08
KB
-rw-r--r--
2026-04-01 09:39
335_remove_excluded_multipath_vgs.sh
2.23
KB
-rw-r--r--
2026-04-01 09:39
340_generate_mountpoint_device.sh
1.21
KB
-rw-r--r--
2026-04-01 09:39
350_save_partitions.sh
1.43
KB
-rw-r--r--
2026-04-01 09:39
445_guess_bootloader.sh
8.32
KB
-rw-r--r--
2026-04-01 09:39
450_check_bootloader_files.sh
2.05
KB
-rw-r--r--
2026-04-01 09:39
450_check_network_files.sh
1.41
KB
-rw-r--r--
2026-04-01 09:39
490_check_files_to_patch.sh
2.19
KB
-rw-r--r--
2026-04-01 09:39
550_barrel_devicegraph.sh
3.66
KB
-rw-r--r--
2026-04-01 09:39
600_snapshot_files.sh
1.74
KB
-rw-r--r--
2026-04-01 09:39
700_save_grubenv.sh
1.31
KB
-rw-r--r--
2026-04-01 09:39
950_verify_disklayout_file.sh
16.99
KB
-rw-r--r--
2026-04-01 09:39
Save
Rename
# This file is part of Relax-and-Recover, licensed under the GNU General # Public License. Refer to the included COPYING for full text of license. # # 350_save_partitions.sh if [ -z "$BLOCKCLONE_SAVE_MBR_DEV" ]; then return fi if [ ! -b "$BLOCKCLONE_SAVE_MBR_DEV" ]; then Error "BLOCKCLONE_SAVE_MBR_DEV is empty or incorrectly set!" fi # This layout will be later used if BLOCKCLONE_STRICT_PARTITIONING="yes" # TODO: @gozora add gpt support local label=$(parted $BLOCKCLONE_SAVE_MBR_DEV print | \ grep "Partition Table" | awk -F ": " '{print $2}') case "$label" in ("msdos") Log "Saving strict partition layout" sfdisk -d $BLOCKCLONE_SAVE_MBR_DEV > \ $VAR_DIR/layout/$BLOCKCLONE_PARTITIONS_CONF_FILE StopIfError "Failed to save partition layout" # Save bootstrap code area # This will be used to restore bootstrap area code during # restore of NTFS partition. Log "Saving bootstrap code area of $BLOCKCLONE_SAVE_MBR_DEV" dd if=$BLOCKCLONE_SAVE_MBR_DEV \ of=$VAR_DIR/layout/$BLOCKCLONE_MBR_FILE bs=446 count=1 StopIfError "Failed to save bootstrap code area" ;; #~ ("gpt") #~ sgdisk -b $VAR_DIR/layout/$BLOCKCLONE_PARTITIONS_CONF_FILE \ #~ $BLOCKCLONE_SAVE_MBR_DEV #~ #~ StopIfError "Failed to save partition layout" #~ ;; (*) BugError "Unknown partition table on $BLOCKCLONE_SAVE_MBR_DEV" ;; esac