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 /
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
# Determine some usually needed kernel drivers (kernel modules) # cf. the subsequent rescue/GNU/Linux/240_kernel_modules.sh script. # Local functions that are 'unset' at the end of this script: function find_modules_in_dirs () { # The '2>/dev/null' drops find error messages mainly for non-existent module directories # cf. https://github.com/rear/rear/pull/1359#issuecomment-300800995 # and the # ... | sed -e 's/^\(.*\)\.ko.*/\1/' # removes the trailing .ko faster via one sed call than many basename calls or shell code: find "$@" -type f -name '*.ko*' -printf '%f\n' 2>/dev/null | sed -e 's/^\(.*\)\.ko.*/\1/' } # Include storage drivers Log "Including storage drivers" STORAGE_DRIVERS=( $( find_modules_in_dirs /lib/modules/$KERNEL_VERSION/kernel/drivers/{block,firewire,ide,ata,md,message,scsi,usb/storage,s390/block,s390/scsi} ) ) # Include network drivers Log "Including network drivers" NETWORK_DRIVERS=( $( find_modules_in_dirs /lib/modules/$KERNEL_VERSION/kernel/drivers/{net,s390/net} ) ) # Include crypto drivers Log "Including crypto drivers" CRYPTO_DRIVERS=( $( find_modules_in_dirs /lib/modules/$KERNEL_VERSION/kernel/{crypto,s390/crypto} ) ) # Include virtualization drivers Log "Including virtualization drivers" VIRTUAL_DRIVERS=( $( find_modules_in_dirs /lib/modules/$KERNEL_VERSION/kernel/drivers/{virtio,xen} ) ) # Include additional drivers Log "Including additional drivers" EXTRA_DRIVERS=( $( find_modules_in_dirs /lib/modules/$KERNEL_VERSION/{extra,weak-updates} ) ) # Local functions must be 'unset' because bash does not support 'local function ...' # cf. https://unix.stackexchange.com/questions/104755/how-can-i-create-a-local-function-in-my-bashrc unset -f find_modules_in_dirs