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 # Test for LSB systems. set -e . /usr/share/os-prober/common.sh partition="$1" dir="$2" type="$3" lsb_field () { file="$1" field="$2" grep ^"$field" "$file" | cut -d = -f 2 | sed 's/^"//' | sed 's/"$//' | sed 's/:/ /g' } file="$dir/etc/lsb-release" if [ ! -e "$file" ]; then exit 1 fi release=$(lsb_field "$file" DISTRIB_RELEASE) if [ -z "$release" ]; then release=$(lsb_field "$file" DISTRIB_CODENAME) fi description=$(lsb_field "$file" DISTRIB_DESCRIPTION) if [ -z "$description" ]; then description=$(lsb_field "$file" DISTRIB_CODENAME) fi if [ -n "$description" ]; then if [ -n "$release" ]; then long="$description ($release)" else long="$description" fi else exit 1 fi short=$(lsb_field "$file" DISTRIB_ID | sed 's/ //g') if [ -z "$short" ]; then short="UnknownLSB" fi label="$(count_next_label "$short")" result "$partition:$long:$label:linux" exit 0