Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
snap /
core /
17292 /
etc /
rc2.d /
Delete
Unzip
Name
Size
Permission
Date
Action
README
677
B
-rw-r--r--
2016-02-05 09:48
S01cgmanager
3.48
KB
-rwxr-xr-x
2015-09-14 22:15
S01rsyslog
2.73
KB
-rwxr-xr-x
2016-02-03 10:54
S01ubuntu-fan
1.2
KB
-rwxr-xr-x
2016-10-28 15:24
S02cgproxy
3.28
KB
-rwxr-xr-x
2015-09-14 22:15
S02cron
2.98
KB
-rwxr-xr-x
2022-05-10 22:15
S02dbus
2.75
KB
-rwxr-xr-x
2019-10-07 11:29
S02ssh
3.98
KB
-rwxr-xr-x
2020-05-13 14:12
S03ondemand
1.54
KB
-rwxr-xr-x
2015-10-16 02:45
S03rc.local
820
B
-rwxr-xr-x
2016-01-19 18:33
Save
Rename
#! /bin/sh ### BEGIN INIT INFO # Provides: rc.local # Required-Start: $all # Required-Stop: # Default-Start: 2 3 4 5 # Default-Stop: # Short-Description: Run /etc/rc.local if it exist ### END INIT INFO PATH=/sbin:/usr/sbin:/bin:/usr/bin . /lib/init/vars.sh . /lib/lsb/init-functions do_start() { if [ -x /etc/rc.local ]; then [ "$VERBOSE" != no ] && log_begin_msg "Running local boot scripts (/etc/rc.local)" /etc/rc.local ES=$? [ "$VERBOSE" != no ] && log_end_msg $ES return $ES fi } case "$1" in start) do_start ;; restart|reload|force-reload) echo "Error: argument '$1' not supported" >&2 exit 3 ;; stop|status) # No-op exit 0 ;; *) echo "Usage: $0 start|stop" >&2 exit 3 ;; esac