Linux ih01.iridiumhosting.com 5.14.0-611.5.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 11 08:09:09 EST 2025 x86_64
LiteSpeed
Server IP : 67.227.241.211 & Your IP : 216.73.216.226
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 /
conf /
examples /
Delete
Unzip
Name
Size
Permission
Date
Action
PXE-booting-example-with-URL-style.conf
1020
B
-rw-r--r--
2026-04-01 09:39
RHEL6-NETFS-of-NBU-master-example.conf
838
B
-rw-r--r--
2026-04-01 09:39
RHEL7-ISO-Oracle-example.conf
2.77
KB
-rw-r--r--
2026-04-01 09:39
RHEL7-PPC64LE-Multipath-PXE-GRUB.conf
2.07
KB
-rw-r--r--
2026-04-01 09:39
SLE11-SLE12-SAP-HANA-UEFI-example.conf
3.02
KB
-rw-r--r--
2026-04-01 09:39
SLE11-ext3-example.conf
1.56
KB
-rw-r--r--
2026-04-01 09:39
SLE12-SP1-btrfs-example.conf
4.36
KB
-rw-r--r--
2026-04-01 09:39
SLE12-SP2-btrfs-example.conf
5.02
KB
-rw-r--r--
2026-04-01 09:39
SLE12-btrfs-example.conf
2.81
KB
-rw-r--r--
2026-04-01 09:39
USB-and-Samba-example.conf
755
B
-rw-r--r--
2026-04-01 09:39
blockclone.conf
4.69
KB
-rw-r--r--
2026-04-01 09:39
borg-example.conf
912
B
-rw-r--r--
2026-04-01 09:39
rescue-and-backup-on-same-ISO-image-example.conf
481
B
-rw-r--r--
2026-04-01 09:39
Save
Rename
# Begin example setup for SLE12 with default btrfs subvolumes. # This will not work with default btrfs on SLES12-SP1 because support for btrfs in ReaR # explicitly excludes snapshot subvolumes but on SLES12-SP1 what is mounted at '/' # will be a btrfs snapshot subvolume (see https://github.com/rear/rear/issues/556). # You must adapt "your.NFS.server.IP/path/to/your/rear/backup" at BACKUP_URL. # You must decide whether or not you want to have /home/* in the backup. # It depends on the size of your harddisk whether or not /home is by default # a btrfs subvolume or a separated xfs filesystem on a separated partition. # You may activate SSH_ROOT_PASSWORD and adapt the 'password_on_the_rear_recovery_system'. # For basic information see the SLE12 manuals. # Also see the support database article "SDB:Disaster Recovery" # at http://en.opensuse.org/SDB:Disaster_Recovery # In particular note: # There is no such thing as a disaster recovery solution that "just works". # Regarding btrfs snapshots: # Recovery of btrfs snapshot subvolumes is not possible. # Only recovery of "normal" btrfs subvolumes is possible. # Create the ReaR recovery system as ISO image: OUTPUT=ISO # Store the backup file via NFS on a NFS server: BACKUP=NETFS # BACKUP_OPTIONS variable contains the NFS mount options and # with 'mount -o nolock' no rpc.statd (plus rpcbind) are needed: BACKUP_OPTIONS="nfsvers=3,nolock" # If the NFS server is not an IP address but a hostname, # DNS must work in the ReaR recovery system when the backup is restored. BACKUP_URL=nfs://your.NFS.server.IP/path/to/your/rear/backup # Keep an older copy of the backup in a HOSTNAME.old directory # provided there is no '.lockfile' in the HOSTNAME directory: NETFS_KEEP_OLD_BACKUP_COPY=yes # Files in btrfs subvolumes are excluded by 'tar --one-file-system' # so that such files must be explicitly included to be in the backup. # Files in the following SLE12 default btrfs subvolumes are # in the below example not included to be in the backup # /.snapshots /var/crash # but files in /home are included to be in the backup. # You may use a command like # findmnt -n -r -o TARGET -t btrfs | grep -v '^/$' | grep -Ev 'snapshots|crash' # to generate the values: BACKUP_PROG_INCLUDE=( /home /var/tmp /var/spool /var/opt /var/log /var/lib/pgsql /var/lib/mailman /var/lib/named /usr/local /tmp /srv /boot/grub2/x86_64-efi /opt /boot/grub2/i386-pc ) # Set a root password for the ReaR recovery system in a confidential way # to allow SSH connection without a public/private key pair. # Never use your original root password here: #{ SSH_ROOT_PASSWORD='password_on_the_rear_recovery_system' ; } 2>>/dev/$SECRET_OUTPUT_DEV # Let the ReaR recovery system run dhclient to get an IP address # instead of using the same IP address as the original system: #USE_DHCLIENT="yes" # End example setup for SLE12 with default btrfs subvolumes.