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 /
final-mount /
default /
Delete
Unzip
Name
Size
Permission
Date
Action
110_bind_mount_proc_sys_dev_run.sh
6.2
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
# # At the end of the recover WORKFLOW # remount all what is mounted below /mnt/local with sync option. # # User can still do stuff after "rear recover" had finished # but rebooting without umount is not so tragic any more. # On the other hand remounting with sync option could become # in practice a major annoyance because it makes writing # anything below /mnt/local basically unusable slow, # see https://github.com/rear/rear/issues/1097 # # Remounting with sync option is no longer needed when systemd is used because # when systemd is used reboot, halt, poweroff, and shutdown are replaced by # scripts that do umount plus sync to safely shut down the recovery system, # cf. https://github.com/rear/rear/pull/1011 # Skip if not 'recover' or 'mountonly' WORKFLOW: test "recover" = "$WORKFLOW" -o "mountonly" = "$WORKFLOW" || return 0 # Skip if systemd is used # systemctl gets copied into the recovery system as /bin/systemctl: test -x /bin/systemctl && return 0 # Remount with sync option of all what is mounted below /mnt/local: while read mountpoint device mountby filesystem junk ; do mount -o remount,sync "${device}" $TARGET_FS_ROOT"$mountpoint" LogIfError "Remount sync of '${device}' failed" done < "${VAR_DIR}/recovery/mountpoint_device"