Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.105
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
libexec /
os-probes /
mounted /
Delete
Unzip
Name
Size
Permission
Date
Action
efi
[ DIR ]
drwxr-xr-x
2025-02-25 03:50
05efi
2.02
KB
-rwxr-xr-x
2025-02-04 09:32
10freedos
521
B
-rwxr-xr-x
2025-02-04 09:32
10qnx
394
B
-rwxr-xr-x
2025-02-04 09:32
20macosx
846
B
-rwxr-xr-x
2025-02-04 09:32
20microsoft
3.37
KB
-rwxr-xr-x
2025-02-04 09:32
30utility
867
B
-rwxr-xr-x
2025-02-04 09:32
40lsb
895
B
-rwxr-xr-x
2025-02-04 09:32
70hurd
251
B
-rwxr-xr-x
2025-02-04 09:32
80minix
435
B
-rwxr-xr-x
2025-02-04 09:32
83haiku
888
B
-rwxr-xr-x
2025-02-04 09:32
90linux-distro
5.62
KB
-rwxr-xr-x
2025-02-04 09:32
90solaris
389
B
-rwxr-xr-x
2025-02-04 09:32
Save
Rename
#!/usr/bin/sh -e # Detects Mac OS X. I don't yet know how Mac OS <= 9 fits into this. . /usr/share/os-prober/common.sh partition="$1" mpoint="$2" type="$3" debug() { if [ -z "$OS_PROBER_DISABLE_DEBUG" ]; then logger -t macosx-prober "debug: $@" fi } # Weed out stuff that doesn't apply to us case "$type" in hfsplus) debug "$1 is an HFS+ partition" ;; *) debug "$1 is not an HFS+ partition: exiting"; exit 1 ;; esac # Could use a better test than this. # /System/Library/CoreServices/SystemVersion.plist has version information, # but I don't think it exists on Mac OS <= 9, and it's XML so parsing in # shell will be nasty. if [ -e "$2/mach_kernel" ] && ! dd if="$2/mach_kernel" count=1 bs=5 2>/dev/null | grep -aq Dummy ; then label="$(count_next_label MacOSX)" result "$1:Mac OS X:$label:macosx" exit 0 else exit 1 fi