Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
tasksel /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
debconf
589
B
-rwxrwxrwx
2016-12-24 13:46
default-desktop
884
B
-rwxrwxrwx
2016-12-24 13:46
desktop
2.32
KB
-rwxrwxrwx
2016-12-24 13:46
lang
494
B
-rwxrwxrwx
2016-12-24 13:46
laptop
259
B
-rwxrwxrwx
2016-12-24 13:46
new-install
607
B
-rwxrwxrwx
2016-12-24 13:46
server
190
B
-rwxrwxrwx
2016-12-24 13:46
Save
Rename
#!/bin/sh # Hide all language tasks, and select any that match the current LANG # setting for installation. if [ "$NEW_INSTALL" ]; then set -e shift 1 baselang=${LANG%%_*} fulllang=${LANG%%.*} for locale in $@; do if ( [ -n "$LANG" ] && [ "$LANG" = "$locale" ] ) || \ ( [ -n "$fulllang" ] && [ "$fulllang" = "$locale" ] ) || \ ( [ -n "$baselang" ] && [ "$baselang" = "$locale" ] ); then exit 0 # install without display fi done exit 1 # do not display else exit 1 fi