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 /
verify /
BORG /
default /
Delete
Unzip
Name
Size
Permission
Date
Action
100_set_vars.sh
886
B
-rw-r--r--
2026-04-01 09:39
101_check_borg.sh
111
B
-rw-r--r--
2026-04-01 09:39
250_mount_usb.sh
517
B
-rw-r--r--
2026-04-01 09:39
400_check_archive_access.sh
1.94
KB
-rw-r--r--
2026-04-01 09:39
Save
Rename
# Query Borg server for repository information # and store it to BORGBACKUP_ARCHIVE_CACHE. # This should avoid repeatedly querying Borg server, which could be slow. borg_archive_cache_create && return LogPrint "Failed to list Borg archive." LogPrint "If you decide to continue, ReaR will partition your disks, but most probably will NOT be able to restore your data!" # shellcheck disable=SC2154 LogPrint "Command \"borg list $BORGBACKUP_OPT_REMOTE_PATH ${borg_dst_dev}${BORGBACKUP_REPO}\" returned: " LogPrint "Borg: $( cat "$BORGBACKUP_STDERR_FILE" )" rear_workflow="rear $WORKFLOW" unset choices choices[0]="View '$rear_workflow' log file ($RUNTIME_LOGFILE)" choices[1]="Use Relax-and-Recover shell and return back to here" choices[2]="Continue '$rear_workflow'" choices[3]="Abort '$rear_workflow'" prompt="Make Borg archive manually accessible" choice="" wilful_input="" while true ; do # Read user input. choice="$( UserInput -I BORGBACKUP_CONTINUE_WITH_RECOVER -p "$prompt" -D "${choices[3]}" "${choices[@]}" )" && wilful_input="yes" || wilful_input="no" case "$choice" in (${choices[0]}) # Run 'less' with the original STDIN STDOUT and STDERR when 'rear' was launched by the user: less "$RUNTIME_LOGFILE" 0<&6 1>&7 2>&8 ;; (${choices[1]}) # rear_shell runs 'bash' with the original STDIN STDOUT and STDERR when 'rear' was launched by the user: # shellcheck disable=SC2154 rear_shell "" "$rear_shell_history" ;; (${choices[2]}) # Continue recovery: LogPrint "User confirmed to continue with '$rear_workflow'" break ;; (${choices[3]}) # Abort recovery: abort_recreate # shellcheck disable=SC2015 is_true "$wilful_input" && Error "User chose to abort '$rear_workflow' in ${BASH_SOURCE[0]}" || Error "Aborting '$rear_workflow' by default" ;; esac done