Server IP : 162.241.126.129 / Your IP : 18.225.98.39 Web Server : Apache System : Linux 162-241-126-129.cprapid.com 4.18.0-477.27.2.el8_8.x86_64 #1 SMP Fri Sep 29 08:21:01 EDT 2023 x86_64 User : rvway5nu4 ( 1018) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/libexec/os-probes/mounted/ |
Upload File : |
#!/bin/sh set -e . /usr/share/os-prober/common.sh partition="$1" dir="$2" type="$3" # Weed out stuff that doesn't apply to us case "$type" in minix|minix2|ext2) ;; *) exit 1 ;; esac if [ -f "$dir/minix" ] || [ -e "$dir/boot/image_big" ]; then if [ -e "$dir/boot/image_latest" ]; then boot="minix" else boot="chain" fi label="$(count_next_label Minix)" result "$partition:Minix:$label:$boot" exit 0 else exit 1 fi