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 # Detects utility (hw vendor recovery) partitions. . /usr/share/os-prober/common.sh partition="$1" mpoint="$2" type="$3" # Weed out stuff that doesn't apply to us case "$type" in vfat) debug "$1 is a FAT32 partition" ;; msdos) debug "$1 is a FAT16 partition" ;; fat) debug "$1 is a FAT partition (mounted by GRUB)" ;; *) debug "$1 is not a FAT partition: exiting"; exit 1 ;; esac # Dell Utility partitions have partition type 0xde, but no idea how to # cleanly detect that from shell if item_in_dir -q dellbio.bin "$2" && \ (item_in_dir -q delldiag.exe "$2" || item_in_dir -q delldiag.com "$2"); then long="Dell Utility Partition" short=DellUtility elif item_in_dir -q f11.sys "$2"; then long="Acronis Secure Zone" short=AcroneZone else exit 1 fi label="$(count_next_label "$short")" result "${partition}:${long}:${label}:chain" exit 0