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 /
rescue /
GNU /
Linux /
Delete
Unzip
Name
Size
Permission
Date
Action
220_load_modules_from_initrd.sh
1.3
KB
-rw-r--r--
2026-04-01 09:39
230_storage_and_network_modules.sh
1.7
KB
-rw-r--r--
2026-04-01 09:39
240_kernel_modules.sh
1.08
KB
-rw-r--r--
2026-04-01 09:39
250_udev.sh
449
B
-rw-r--r--
2026-04-01 09:39
260_collect_initrd_modules.sh
295
B
-rw-r--r--
2026-04-01 09:39
260_storage_drivers.sh
114
B
-rw-r--r--
2026-04-01 09:39
290_kernel_cmdline.sh
3.43
KB
-rw-r--r--
2026-04-01 09:39
295_configure_ramdisk_rootfs.sh
542
B
-rw-r--r--
2026-04-01 09:39
300_dns.sh
267
B
-rw-r--r--
2026-04-01 09:39
310_network_devices.sh
36.6
KB
-rw-r--r--
2026-04-01 09:39
320_inet6.sh
121
B
-rw-r--r--
2026-04-01 09:39
350_routing.sh
3.65
KB
-rw-r--r--
2026-04-01 09:39
390_check_usb_modules.sh
270
B
-rw-r--r--
2026-04-01 09:39
410_use_xen_console.sh
222
B
-rw-r--r--
2026-04-01 09:39
500_clone_keyboard_mappings.sh
6.97
KB
-rw-r--r--
2026-04-01 09:39
550_copy_ldconfig.sh
307
B
-rw-r--r--
2026-04-01 09:39
950_cfg2html.sh
1
KB
-rw-r--r--
2026-04-01 09:39
960_collect_MC_serviceguard_infos.sh
1.12
KB
-rw-r--r--
2026-04-01 09:39
990_sysreqs.sh
3.91
KB
-rw-r--r--
2026-04-01 09:39
Save
Rename
# Modules loaded in the initrd should be also loaded in the rescue system # It is important to load them in the same order to ensure the correct order of SCSI controllers # # We keep here all different types of initrd module configurations in a single script because # distros switch tooling (e.g. SUSE adopted dracut) and otherwise we would end up with several # symlinks. # Old SUSE style if test -s /etc/sysconfig/kernel ; then MODULES_LOAD+=( $( INITRD_MODULES= source /etc/sysconfig/kernel echo $INITRD_MODULES ) ) fi # Fedora, Red Hat & new SUSE uses dracut if test -s /etc/dracut.conf ; then MODULES_LOAD+=( $( add_drivers= source /etc/dracut.conf for s in /etc/dracut.conf.d/*.conf ; do source $s done echo $add_drivers ) ) fi # Debian & Ubuntu use initramfs-tools and we include that as-is in 400_copy_modules.sh because we just # append the initrd modules file to the general modules file. Nevertheless we must ensure that those # modules are actually included in the rescue system if test -s /etc/initramfs-tools/modules ; then MODULES_LOAD+=( $( sed -n -e 's/^\([A-Za-z0-9_-]\+\).*/\1/p' < /etc/initramfs-tools/modules ) ) fi : # set 0 as return value