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.202
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 /
prep /
OBDR /
default /
Delete
Unzip
Name
Size
Permission
Date
Action
040_change_tape_name.sh
285
B
-rw-r--r--
2026-04-01 09:39
300_check_iso_dir.sh
169
B
-rw-r--r--
2026-04-01 09:39
320_check_cdrom_size.sh
562
B
-rw-r--r--
2026-04-01 09:39
400_check_tape_drive.sh
811
B
-rw-r--r--
2026-04-01 09:39
500_check_tape_label.sh
1.24
KB
-rw-r--r--
2026-04-01 09:39
700_write_OBDR_header.sh
1.2
KB
-rw-r--r--
2026-04-01 09:39
Save
Rename
# Check the tape label and verify that this tape can be erased LogPrint "Rewinding tape" # Rewind tape drive to read out tape label mt -f $TAPE_DEVICE rewind StopIfError "Problem with rewinding tape in drive '$TAPE_DEVICE'" # Turn compression off for reading tape label mt -f $TAPE_DEVICE compression off >&2 if [[ $? -ne 0 ]] ; then ### Try datcompression (for SLES10,11) mt -f ${TAPE_DEVICE} datcompression off >&2 fi LogIfError "Could not disable compression on tape device '$TAPE_DEVICE'" # Set correct blocksize for reading tape label mt -f $TAPE_DEVICE setblk 512 StopIfError "Could not set block size on tape device '$TAPE_DEVICE'" # Read exactly one block TAPE_LABEL=$(dd if=$TAPE_DEVICE count=1) StopIfError "Could not read label from tape device '$TAPE_DEVICE'" # Match label # FIXME: Probably this only works with the default USB_DEVICE_FILESYSTEM_LABEL='REAR-000' # but not with another value of different length (cf. https://github.com/rear/rear/issues/1535) # see prep/OBDR/default/700_write_OBDR_header.sh [[ "$USB_DEVICE_FILESYSTEM_LABEL" == "${TAPE_LABEL:0:8}" ]] StopIfError "Tape ($TAPE_DEVICE) does not have the proper '$USB_DEVICE_FILESYSTEM_LABEL' label. Use 'rear format $TAPE_DEVICE' to allow this tape to be used in OBDR mode."