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.217.87
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
# 960_collect_MC_serviceguard_infos.sh # Purpose of this script is to gather MC/SG related config files # in order to prepare a smooth rolling upgrade # List files and directories in SGLX_FILES SGLX_FILES="/etc/hostname /etc/vconsole.conf /etc/locale.conf /etc/sysconfig/keyboard /etc/sysconfig/network-scripts/ifcfg* /etc/sysconfig/network/ifcfg* /etc/sysconfig/network /etc/hosts /etc/modprobe.conf /etc/modules.conf /etc/cmcluster.conf /etc/hp_qla2x00.conf /etc/lpfc.conf /etc/ntp.conf /etc/resolv.conf /usr/local/cmcluster/conf/*/* /opt/cmcluster/conf/*/*" # Phase 1 : does sglx soft is installed? # on RH path is /usr/local/cmcluster; on SUSE path is /opt/cmcluster [ -d /usr/local/cmcluster/conf -o -d /opt/cmcluster/conf ] || return 0 # Phase 2: create a /etc/rear/recovery/sglx directory mkdir -p $v -m755 "$VAR_DIR/recovery/sglx" >&2 StopIfError "Could not create sglx configuration directory: $VAR_DIR/recovery/sglx" SGLX_DIR="$VAR_DIR/recovery/sglx" for sgf in $SGLX_FILES do if [ `dirname ${sgf}` != . ]; then mkdir -p $v ${SGLX_DIR}/`dirname ${sgf}` >&2 fi if [ -f ${sgf} ]; then cp $v ${sgf} ${SGLX_DIR}${sgf} >&2 fi done