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.111
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 /
GNU /
Linux /
Delete
Unzip
Name
Size
Permission
Date
Action
230_remove_lvmdevices.sh
1019
B
-rw-r--r--
2026-04-01 09:39
240_reassign_luks_keyfiles.sh
2.45
KB
-rw-r--r--
2026-04-01 09:39
250_migrate_disk_devices_layout.sh
4.92
KB
-rw-r--r--
2026-04-01 09:39
250_migrate_lun_wwid.sh
3.54
KB
-rw-r--r--
2026-04-01 09:39
260_rename_diskbyid.sh
7.39
KB
-rw-r--r--
2026-04-01 09:39
280_migrate_uuid_tags.sh
3.4
KB
-rw-r--r--
2026-04-01 09:39
300_create_mac_mapping.sh
846
B
-rw-r--r--
2026-04-01 09:39
310_migrate_udev_rules.sh
2.78
KB
-rw-r--r--
2026-04-01 09:39
320_migrate_network_configuration_files.sh
33.93
KB
-rw-r--r--
2026-04-01 09:39
430_create_multipath_config.sh
1.55
KB
-rw-r--r--
2026-04-01 09:39
Save
Rename
# multipath configuration used in recovery must be saved to TARGET_FS_ROOT if they # don't exists. This should only happen if you migrate from a non-multipath system to # a multipath one. # This phase must be done before rebuilding initramfs. # Nothing to do if multipath is not used: multipath -d >/dev/null || return 0 if [ ! -f $TARGET_FS_ROOT/etc/multipath.conf ] ; then LogPrint "/etc/multipath.conf not available in target system, creating it..." if [ -f /etc/multipath.conf ] ; then cp /etc/multipath.conf $TARGET_FS_ROOT/etc/multipath.conf fi fi [ ! -d $TARGET_FS_ROOT/etc/multipath ] && mkdir -p $TARGET_FS_ROOT/etc/multipath # Always copy multipath bindings file to the $TARGET_FS_ROOT. In case of migration to different multipath diks (migration) # /etc/multipath/bindings has been updated in the recovery image and result must ALWAYS be copied to the TARGET_FS_ROOT # before mkinitrd operation. if [ -f /etc/multipath/bindings ] ; then if cp /etc/multipath/bindings $TARGET_FS_ROOT/etc/multipath/bindings ; then LogPrint "Copied /etc/multipath/bindings to target system $TARGET_FS_ROOT" else LogPrint "Failed to copy /etc/multipath/bindings to target system" fi fi # Cleaning /etc/multipath/wwids file and update it with new wwids. if mountpoint $TARGET_FS_ROOT/proc ; then chroot $TARGET_FS_ROOT /bin/bash -c 'PATH=/sbin:/usr/sbin:/usr/bin:/bin multipath -W' || LogPrint "Failed to reset multipath wwids on target system" else LogPrint "Cannot update multipath wwids ($TARGET_FS_ROOT/proc not mounted)" fi