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
# 005_create_symlinks.sh # # create some symlinks 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. ln -sf $v bin/init $ROOTFS_DIR/init >&2 ln -sf $v bin $ROOTFS_DIR/sbin >&2 ln -sf $v bash $ROOTFS_DIR/bin/sh >&2 ln -sf $v true $ROOTFS_DIR/bin/pam_console_apply >&2 # RH/Fedora with udev needs this ln -sf $v ../bin $ROOTFS_DIR/usr/bin >&2 ln -sf $v ../bin $ROOTFS_DIR/usr/sbin >&2 ln -sf $v /proc/self/mounts $ROOTFS_DIR/etc/mtab >&2 if [[ -d $ROOTFS_DIR/etc/sysconfig/network-scripts ]]; then ln -sf $v /bin/true $ROOTFS_DIR/etc/sysconfig/network-scripts/net.hotplug >&2 fi [[ -x /sbin/hwup ]] && ln -sf $v true $ROOTFS_DIR/sbin/hwup >&2 # SUSE with udev needs this # Only create LVM symlinks when the HOST system contains LVM if hash lvm 2>/dev/null; then Log "Creating LVM binary symlinks" lvmbins="lvchange lvconvert lvcreate lvdisplay lvextend lvmchange lvmdiskscan lvmsadc lvmsar lvreduce lvremove lvrename lvresize lvs lvscan pvchange pvresize pvck pvcreate pvdata pvdisplay pvmove pvremove pvs pvscan vgcfgbackup vgcfgrestore vgchange vgck vgconvert vgcreate vgdisplay vgexport vgextend vgimport vgmerge vgmknodes vgreduce vgremove vgrename vgs vgscan vgsplit" for bin in $lvmbins; do ln -sf $v lvm $ROOTFS_DIR/bin/$bin >&2 done fi