Linux spg20.cloudpowerdns.com 5.14.0-611.35.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 25 03:46:09 EST 2026 x86_64
LiteSpeed
Server IP : 46.4.120.162 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : seatingsolutions
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
kernel /
install.d /
Delete
Unzip
Name
Size
Permission
Date
Action
10-devicetree.install
1.92
KB
-rwxr-xr-x
2025-11-11 09:57
20-grub.install
8.38
KB
-rwxr-xr-x
2025-11-11 10:39
20-grubby.install
1.86
KB
-rwxr-xr-x
2025-12-04 08:27
50-depmod.install
2.24
KB
-rwxr-xr-x
2025-12-04 08:25
50-dracut.install
1.85
KB
-rwxr-xr-x
2025-12-17 17:48
51-dracut-rescue.install
3.79
KB
-rwxr-xr-x
2025-12-17 17:48
60-kdump.install
791
B
-rwxr-xr-x
2025-09-24 06:15
90-loaderentry.install
5.77
KB
-rwxr-xr-x
2025-12-04 08:25
90-uki-copy.install
3.31
KB
-rwxr-xr-x
2025-12-04 08:25
92-crashkernel.install
204
B
-rwxr-xr-x
2025-09-24 06:15
92-tuned.install
1.62
KB
-rwxr-xr-x
2025-08-24 21:48
95-kernel-hooks.install
675
B
-rwxr-xr-x
2025-11-11 09:57
99-grub-mkconfig.install
1.02
KB
-rwxr-xr-x
2025-11-11 10:39
Save
Rename
#!/usr/bin/bash if ! [[ $KERNEL_INSTALL_MACHINE_ID ]]; then exit 0 fi ARCH=$(uname -m) # Older ppc64le OPAL firmware (petitboot version < 1.8.0) don't have BLS support # so grub2-mkconfig has to be run to generate a config with menuentry commands. if [[ $ARCH = "ppc64le" ]] && [ -d /sys/firmware/opal ]; then RUN_MKCONFIG=true fi if [[ $DISABLE_BLS = "true" ]]; then if grep -q '^GRUB_ENABLE_BLSCFG="*true"*\s*$' /etc/default/grub; then sed -i 's/^GRUB_ENABLE_BLSCFG=.*/GRUB_ENABLE_BLSCFG=false/' /etc/default/grub fi fi [ -f /etc/default/grub ] && . /etc/default/grub if [ x$GRUB_ENABLE_BLSCFG = xfalse ]; then RUN_MKCONFIG=true fi # A traditional grub configuration file needs to be generated only in the case when # the bootloaders are not capable of populating a menu entry from the BLS fragments. if [[ $RUN_MKCONFIG != "true" ]]; then exit 0 fi COMMAND="$1" case "$COMMAND" in add|remove) grub2-mkconfig --no-grubenv-update -o /boot/grub2/grub.cfg >& /dev/null ;; *) ;; esac