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.110
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 /
init /
default /
Delete
Unzip
Name
Size
Permission
Date
Action
001_verify_config_arrays.sh
2.34
KB
-rw-r--r--
2026-04-01 09:39
002_check_rear_recover_mode.sh
1.95
KB
-rw-r--r--
2026-04-01 09:39
010_EFISTUB_check.sh
368
B
-rw-r--r--
2026-04-01 09:39
010_set_drlm_env.sh
135
B
-rw-r--r--
2026-04-01 09:39
030_update_recovery_system.sh
2.66
KB
-rw-r--r--
2026-04-01 09:39
100_check_stale_nfs_mounts.sh
1.15
KB
-rw-r--r--
2026-04-01 09:39
950_check_missing_programs.sh
1.93
KB
-rw-r--r--
2026-04-01 09:39
998_dump_variables.sh
1.08
KB
-rw-r--r--
2026-04-01 09:39
Save
Rename
is_true "$PORTABLE" && return # In the ReaR rescue/recovery system the only possible workflows are # - 'recover' and its partial workflows 'layoutonly' 'restoreonly' 'finalizeonly' # - 'mountonly' # - 'opaladmin' # - 'shell' # - 'help' # cf. https://github.com/rear/rear/issues/719 # and https://github.com/rear/rear/issues/987 # and https://github.com/rear/rear/issues/1088 # and https://github.com/rear/rear/issues/3170#issuecomment-1981222992 # and https://github.com/rear/rear/issues/1901 # In particular in the normal/original system the workflows # recover layoutonly restoreonly finalizeonly and mountonly # must not run because they can destroy the original system # cf. https://github.com/rear/rear/issues/2387#issuecomment-626303944 # In the ReaR rescue/recovery system /etc/rear-release is unique (it does not exist otherwise): if test -f /etc/rear-release ; then # We are in the ReaR rescue/recovery system: case "$WORKFLOW" in (recover|layoutonly|restoreonly|finalizeonly|mountonly|opaladmin|shell|dump|help) LogPrint "Running workflow $WORKFLOW within the ReaR rescue/recovery system" ;; (*) Error "The workflow $WORKFLOW is not supported in the ReaR rescue/recovery system,${LF}use --portable to disable this check at your own risk.${LF}ReaR will probably not work as expected and potentially${LF}destroy your backup data,${LF}if you run these workflows in the rescue system!" ;; esac else # We are in the normal/original system: case "$WORKFLOW" in (recover|layoutonly|restoreonly|finalizeonly|mountonly) Error "The workflow $WORKFLOW is only supported in the ReaR rescue/recovery system,${LF}use --portable to disable this check at your own risk.${LF}ReaR will destroy your system if you run these workflows in the normal/original system!" ;; (*) LogPrint "Running workflow $WORKFLOW on the normal/original system" ;; esac fi