Linux localhost 6.1.10-x86_64-linode159 #1 SMP PREEMPT_DYNAMIC Wed Feb 8 14:14:45 EST 2023 x86_64
Apache/2.4.25 (Debian)
Server IP : 45.33.61.127 & Your IP : 216.73.216.156
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
etc /
rc5.d /
Delete
Unzip
Name
Size
Permission
Date
Action
K01apache-htcacheclean
2.43
KB
-rwxr-xr-x
2018-11-03 11:34
S01apache2
7.99
KB
-rwxr-xr-x
2017-09-19 18:56
S01console-setup.sh
1.2
KB
-rwxr-xr-x
2017-04-07 03:55
S01cron
2.98
KB
-rwxr-xr-x
2015-05-03 13:25
S01dbus
2.75
KB
-rwxr-xr-x
2017-07-30 10:23
S01irqbalance
2.39
KB
-rwxr-xr-x
2016-12-30 18:59
S01mysql
5.79
KB
-rwxr-xr-x
2017-08-10 19:07
S01rsync
4.25
KB
-rwxr-xr-x
2014-07-10 11:41
S01rsyslog
2.8
KB
-rwxr-xr-x
2017-01-18 22:14
S01ssh
3.94
KB
-rwxr-xr-x
2017-06-18 00:08
S01sysstat
1.56
KB
-rwxr-xr-x
2017-05-25 20:26
Save
Rename
#!/bin/sh ### BEGIN INIT INFO # Provides: console-setup.sh # Required-Start: $remote_fs # Required-Stop: # Should-Start: console-screen kbd # Default-Start: 2 3 4 5 # Default-Stop: # X-Interactive: true # Short-Description: Set console font and keymap ### END INIT INFO if [ -f /bin/setupcon ]; then case "$1" in stop|status) # console-setup isn't a daemon ;; start|force-reload|restart|reload) if [ -f /lib/lsb/init-functions ]; then . /lib/lsb/init-functions else log_action_begin_msg () { echo -n "$@... " } log_action_end_msg () { if [ "$1" -eq 0 ]; then echo done. else echo failed. fi } fi log_action_begin_msg "Setting up console font and keymap" if /lib/console-setup/console-setup.sh; then log_action_end_msg 0 else log_action_end_msg $? fi ;; *) echo 'Usage: /etc/init.d/console-setup {start|reload|restart|force-reload|stop|status}' exit 3 ;; esac fi