Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
etc /
grub.d /
[ HOME SHELL ]
Name
Size
Permission
Action
00_header
10.38
KB
-rwxr-xr-x
05_debian_theme
6.11
KB
-rwxr-xr-x
10_linux
18.25
KB
-rwxr-xr-x
10_linux_zfs
42.02
KB
-rwxr-xr-x
20_linux_xen
14.05
KB
-rwxr-xr-x
20_memtest86+
2.86
KB
-rwxr-xr-x
30_os-prober
13.06
KB
-rwxr-xr-x
30_uefi-firmware
1.34
KB
-rwxr-xr-x
35_fwupd
700
B
-rwxr-xr-x
40_custom
214
B
-rwxr-xr-x
41_custom
215
B
-rwxr-xr-x
README
483
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : 20_memtest86+
#!/bin/sh set -e if [ -f /usr/lib/grub/grub-mkconfig_lib ]; then . /usr/lib/grub/grub-mkconfig_lib LX=linux16 elif [ -f /usr/lib/grub/update-grub_lib ]; then . /usr/lib/grub/update-grub_lib LX=linux else # no grub file, so we notify and exit gracefully echo "Cannot find grub config file, exiting." >&2 exit 0 fi # We need 16-bit boot, which isn't available on EFI. if [ -d /sys/firmware/efi ]; then echo "Memtest86+ needs a 16-bit boot, that is not available on EFI, exiting" >&2 exit 0 fi if [ -f /etc/default/grub ]; then GRUB_DISABLE_MEMTEST=`sed -n 's/^GRUB_DISABLE_MEMTEST=\(.*\)/\1/p' < /etc/default/grub` GRUB_MEMTEST_DISABLE_SERIAL=`sed -n 's/^GRUB_MEMTEST_DISABLE_SERIAL=\(.*\)/\1/p' < /etc/default/grub` GRUB_MEMTEST_ENABLE_MULTIBOOT=`sed -n 's/^GRUB_MEMTEST_ENABLE_MULTIBOOT=\(.*\)/\1/p' < /etc/default/grub` GRUB_MEMTEST_SERIAL_PARAMS=`sed -n 's/^GRUB_MEMTEST_SERIAL_PARAMS=\(.*\)/\1/p' < /etc/default/grub` fi if [ "x${GRUB_MEMTEST_SERIAL_PARAMS}" = "x" ] ; then GRUB_MEMTEST_SERIAL_PARAMS="ttyS0,115200n8" fi # With GRUB_DISABLE_MEMTEST=true don't add memtest entries if [ "x${GRUB_DISABLE_MEMTEST}" = "xtrue" ] ; then exit 0 fi # We can't cope with loop-mounted devices here. case ${GRUB_DEVICE_BOOT} in /dev/loop/*|/dev/loop[0-9]) exit 0 ;; esac export TEXTDOMAIN=memtest86+ prepare_boot_cache="$(prepare_grub_to_access_device ${GRUB_DEVICE_BOOT} | sed -e "s/^/\t/")" if test -e /boot/memtest86+.elf ; then MEMTESTPATH=$( make_system_path_relative_to_its_root "/boot/memtest86+.elf" ) echo "Found memtest86+ image: $MEMTESTPATH" >&2 cat << EOF menuentry '$(gettext_printf "Memory test (memtest86+.elf)")' { EOF printf '%s\n' "${prepare_boot_cache}" cat << EOF knetbsd $MEMTESTPATH } EOF fi if [ "x${GRUB_MEMTEST_DISABLE_SERIAL}" != "xtrue" -a -e /boot/memtest86+.bin ]; then MEMTESTPATH=$( make_system_path_relative_to_its_root "/boot/memtest86+.bin" ) echo "Found memtest86+ image: $MEMTESTPATH" >&2 cat << EOF menuentry '$(gettext_printf "Memory test (memtest86+.bin, serial console)")' { EOF printf '%s\n' "${prepare_boot_cache}" cat << EOF $LX $MEMTESTPATH console=${GRUB_MEMTEST_SERIAL_PARAMS} } EOF fi if [ "x${GRUB_MEMTEST_ENABLE_MULTIBOOT}" = "xtrue" -a -e /boot/memtest86+_multiboot.bin ]; then MEMTESTPATH=$( make_system_path_relative_to_its_root "/boot/memtest86+_multiboot.bin" ) echo "Found memtest86+ multiboot image: $MEMTESTPATH" >&2 cat << EOF menuentry '$(gettext_printf "Memory test (memtest86+, experimental multiboot)")' { EOF printf '%s\n' "${prepare_boot_cache}" cat << EOF multiboot $MEMTESTPATH } EOF if [ "x${GRUB_MEMTEST_DISABLE_SERIAL}" != "xtrue" ]; then cat << EOF menuentry '$(gettext_printf "Memory test (memtest86+, serial console, experimental multiboot)")' { EOF printf '%s\n' "${prepare_boot_cache}" cat << EOF multiboot $MEMTESTPATH console=${GRUB_MEMTEST_SERIAL_PARAMS} } EOF fi fi
Close