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.44
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 /
build /
GNU /
Linux /
Delete
Unzip
Name
Size
Permission
Date
Action
005_create_symlinks.sh
1.36
KB
-rw-r--r--
2026-04-01 09:39
090_create_lib_directories_and_symlinks.sh
486
B
-rw-r--r--
2026-04-01 09:39
100_copy_as_is.sh
11.62
KB
-rw-r--r--
2026-04-01 09:39
110_touch_empty_files.sh
401
B
-rw-r--r--
2026-04-01 09:39
130_create_dotfiles.sh
2.19
KB
-rw-r--r--
2026-04-01 09:39
150_adjust_permissions.sh
213
B
-rw-r--r--
2026-04-01 09:39
390_copy_binaries_libraries.sh
7.65
KB
-rw-r--r--
2026-04-01 09:39
400_copy_modules.sh
17.67
KB
-rw-r--r--
2026-04-01 09:39
420_copy_firmware_files.sh
2.92
KB
-rw-r--r--
2026-04-01 09:39
450_symlink_mingetty.sh
266
B
-rw-r--r--
2026-04-01 09:39
600_verify_and_adjust_udev.sh
4.11
KB
-rw-r--r--
2026-04-01 09:39
610_verify_and_adjust_udev_systemd.sh
1.53
KB
-rw-r--r--
2026-04-01 09:39
620_verify_os_release_file.sh
453
B
-rw-r--r--
2026-04-01 09:39
630_simplify_systemd_reboot_halt_poweroff_shutdown.sh
3.06
KB
-rw-r--r--
2026-04-01 09:39
630_verify_resolv_conf_file.sh
6
KB
-rw-r--r--
2026-04-01 09:39
640_verify_lvm_conf.sh
1.18
KB
-rw-r--r--
2026-04-01 09:39
Save
Rename
# # 130_create_dotfiles.sh # # Create some . dot files for Relax-and-Recover # # This file is part of Relax-and-Recover, licensed under the GNU General # Public License. Refer to the included COPYING for full text of license. # Create bash history file or append to an existing one: Log "Creating or appending to $ROOTFS_DIR/$ROOT_HOME_DIR/.bash_history" # Use get_path to check if nano and vi are available on the original system # (and redirect its stdout to stderr to not get its stdout in .bash_history) # because get_path is also used in build/GNU/Linux/390_copy_binaries_libraries.sh # where nano and vi may get coiped via PROGS into the ReaR recovery system, # cf. https://github.com/rear/rear/issues/3151#issuecomment-1941544530 # and see https://github.com/rear/rear/pull/1306 regarding nano # and https://github.com/rear/rear/issues/1298 when vi is not available. # Use the |--...--| ruler below so entries fit in a 80 characters line # so that it looks OK even on a console with 80 characters per line. # The ReaR recovery system bash prompt is: 'RESCUE $HOSTNAME:~ # ' # that has about 20 characters (depending on $HOSTNAME length) # so about 60 characters are left to show bash history entries # |------------------------------------------------------------| { echo ": # no more predefined ReaR entries in the bash history" echo "systemctl start sshd.service # start SSH" echo "ip -4 addr # IPv4 address" echo "dhcpcd eth0 # start DHCP" if get_path nano 1>&2 ; then echo "nano /var/lib/rear/layout/diskrestore.sh # disk restore" echo "nano /var/lib/rear/layout/disklayout.conf # disk layout" fi if get_path vi 1>&2 ; then echo "vi /var/lib/rear/layout/diskrestore.sh # disk restore" echo "vi /var/lib/rear/layout/disklayout.conf # disk layout" fi echo "less /var/log/rear/* # log file(s)" echo "loadkeys -d # default keymap" echo "rear recover # recover system" echo ": # there are some predefined entries in the bash history" } >> $ROOTFS_DIR/$ROOT_HOME_DIR/.bash_history # Other dot files should be listed below: