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.228
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 /
restore /
default /
Delete
Unzip
Name
Size
Permission
Date
Action
050_remount_async.sh
1.11
KB
-rw-r--r--
2026-04-01 09:39
500_selinux_autorelabel.sh
945
B
-rw-r--r--
2026-04-01 09:39
900_create_missing_directories.sh
5.29
KB
-rw-r--r--
2026-04-01 09:39
950_restore_esp.sh
350
B
-rw-r--r--
2026-04-01 09:39
990_move_away_restored_files.sh
4.27
KB
-rw-r--r--
2026-04-01 09:39
995_remount_sync.sh
1.4
KB
-rw-r--r--
2026-04-01 09:39
Save
Rename
# # For the restoreonly WORKFLOW remount everything without sync option # otherwise the restore would be terribly slow. # Things may have been remounted with sync option in a preceding recover WORKFLOW # via finalize/default/900_remount_sync.sh # see also https://github.com/rear/rear/issues/1097 # # Remounting with async option is not needed when systemd is used because # when systemd is used remounting with sync option is skipped in a preceding # recover WORKFLOW via finalize/default/900_remount_sync.sh and to avoid # needless operations remounting with async option is also skipped here # cf. https://github.com/rear/rear/issues/1097 # Skip if not restoreonly WORKFLOW: test "restoreonly" = "$WORKFLOW" || return 0 # Skip if systemd is used # systemctl gets copied into the recovery system as /bin/systemctl: test -x /bin/systemctl && return 0 while read mountpoint device mountby filesystem junk ; do if ! mount -o remount,async "${device}" $TARGET_FS_ROOT"$mountpoint" ; then LogPrint "Remount async of '${device}' failed which can result very slow restore" fi done < "${VAR_DIR}/recovery/mountpoint_device"