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 /
restore /
DP /
default /
Delete
Unzip
Name
Size
Permission
Date
Action
300_create_dp_restore_fs_list.sh
1.19
KB
-rw-r--r--
2026-04-01 09:39
400_restore_with_dp.sh
2.08
KB
-rw-r--r--
2026-04-01 09:39
450_restore_via_gui.sh
842
B
-rw-r--r--
2026-04-01 09:39
460_press_y_to_continue.sh
612
B
-rw-r--r--
2026-04-01 09:39
Save
Rename
# 400_restore_with_dp.sh # Purpose: Restore script to restore file systems with Data Protector # /opt/omni/bin/omnidb -filesystem test.internal.it3.be:/ '/' -latest -detail # #SessionID : 2008/12/24-1 # Started : wo 24 dec 2008 11:42:21 CET # Finished : wo 24 dec 2008 11:54:52 CET # Object status : Completed # Object size : 2043947 KB # Backup type : Full # Protection : Protected for 2 days # Catalog retention : Protected permanently # Access : Private # Number of warnings : 3 # Number of errors : 0 # Device name : DDS4 # Backup ID : n/a # Copy ID : 20 (Orig) # The list of file systems to restore is listed in file ${TMP_DIR}/list_of_fs_objects # per line we have something like: test.internal.it3.be:/ '/' [ -f ${TMP_DIR}/DP_GUI_RESTORE ] && return # GUI restore explicitly requested OMNIR=/opt/omni/bin/omnir echo -n ${OMNIR} > ${TMP_DIR}/restore_cmd # we will loop over all objects listed in ${TMP_DIR}/list_of_fs_objects cat ${TMP_DIR}/list_of_fs_objects | while read object do host_fs=`echo ${object} | awk '{print $1}'` fs=`echo ${object} | awk '{print $1}' | cut -d: -f 2` label=`echo "${object}" | cut -d"'" -f 2` # only retain the latest backup which was completed successfully if grep -q "^${fs} " ${VAR_DIR}/recovery/mountpoint_device; then LogPrint "Filesystem ${object} added to restore command" SessionID=`cat ${TMP_DIR}/dp_recovery_session` # append objects to restore command echo -n " -filesystem ${host_fs} '${label}' -session ${SessionID} -full -omit_unrequired_object_versions -no_resumable -overwrite -tree ${fs} -into $TARGET_FS_ROOT -sparse -target `hostname`" >> ${TMP_DIR}/restore_cmd fi done # parallel restore of all objects previously collected LogPrint "Parallel restore of backup objects started. See Data Protector GUI for restore progress." chmod 755 ${TMP_DIR}/restore_cmd ${TMP_DIR}/restore_cmd case $? in 0) LogPrint "Restore was successful." ;; 10) LogPrint "Restore finished with warnings." ;; *) LogPrint "Restore failed." > ${TMP_DIR}/DP_GUI_RESTORE ;; esac