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.208
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
# 100_check_stale_nfs_mounts.sh # Purpose is to have a simple test if we have stale NFS mount points which # could lead to a hanging ReaR session. # In case there is a stale NFS present we bail out with an error to get it fixed before # running ReaR again. # See issue https://github.com/rear/rear/issues/3109 # To make the code more robust we take care of spaces and \ in the mount point naming. ### example mount point /mnt/!@#$%^&**()_-=+{}|\ # + read -r exported_fs mount_point junk #++ grep -i '[[:blank:]]nfs' /proc/mounts #++ sed -e 's/\\040/ /g' -e 's/\\134/\\/g' #+ mntpt='/mnt/!@#$%^&**()_-=+{}|\' #+ timeout 5 df '/mnt/!@#$%^&**()_-=+{}|\' # # or # #+ read -r exported_fs mount_point junk #++ grep -i '[[:blank:]]nfs' /proc/mounts #++ sed -e 's/\\040/ /g' -e 's/\\134/\\/g' #+ mntpt='/mnt/something else with xXx going on!' #+ timeout 5 df '/mnt/something else with xXx is going on!' while read -r exported_fs mount_point junk ; do mntpt="$(sed -e 's/\\040/ /g' -e 's/\\134/\\/g' <<< "$mount_point")" timeout 5 df "$mntpt" >/dev/null || Error "Stale NFS mount point $mount_point detected - please fix it first!" done < <(grep -i "[[:blank:]]nfs" /proc/mounts)