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 /
tasksel /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
debconf
909
B
-rwxr-xr-x
2016-01-02 03:46
default-desktop
884
B
-rwxr-xr-x
2016-01-02 03:46
desktop
2.32
KB
-rwxr-xr-x
2016-01-02 03:46
lang
494
B
-rwxr-xr-x
2016-01-02 03:46
laptop
259
B
-rwxr-xr-x
2016-01-02 03:46
limited
1.1
KB
-rwxr-xr-x
2016-01-02 03:46
new-install
607
B
-rwxr-xr-x
2016-01-02 03:46
server
190
B
-rwxr-xr-x
2016-01-02 03:46
Save
Rename
#!/bin/sh # # Selects a task by default if particular task names are listed in # tasksel/limit-tasks. Use like this: # # Test-limited: ubuntustudio-audio ubuntustudio-audio-plugins ubuntustudio-graphics ubuntustudio-video # # This will cause the task to be selected if any of those tasks are listed # in tasksel/limit-tasks, which is a reasonably good marker for a # specialised CD install. This only applies to new installs. # If we're being used to test an enhancing task, then it's always OK to go # ahead and mark the task for installation. if [ "$TESTING_ENHANCER" ]; then exit 0 # do not display, but do install task fi if [ ! "$NEW_INSTALL" ]; then exit 3 # display task, not marked for installation fi . /usr/share/debconf/confmodule if ! db_fget tasksel/limit-tasks seen || [ "$RET" != true ]; then exit 3 # display task, not marked for installation fi db_get tasksel/limit-tasks LIMIT="$(echo "$RET" | sed 's/,/ /g')" shift for task; do for limit in $LIMIT; do if [ "$task" = "$limit" ]; then exit 2 # display task, marked for installation fi done done exit 3 # display task, not marked for installation