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 /
17284 /
lib /
systemd /
Delete
Unzip
Name
Size
Permission
Date
Action
network
[ DIR ]
drwxr-xr-x
2025-10-09 12:24
system
[ DIR ]
drwxr-xr-x
2025-10-09 12:24
system-generators
[ DIR ]
drwxr-xr-x
2025-10-09 12:24
system-preset
[ DIR ]
drwxr-xr-x
2025-10-09 12:24
system-shutdown
[ DIR ]
drwxr-xr-x
2016-04-12 10:34
system-sleep
[ DIR ]
drwxr-xr-x
2025-10-09 12:24
systemd
1.52
MB
-rwxr-xr-x
2023-03-03 04:27
systemd-ac-power
14.26
KB
-rwxr-xr-x
2023-03-03 04:27
systemd-activate
54.44
KB
-rwxr-xr-x
2023-03-03 04:27
systemd-backlight
90.58
KB
-rwxr-xr-x
2023-03-03 04:27
systemd-binfmt
46.56
KB
-rwxr-xr-x
2023-03-03 04:27
systemd-bootchart
102.63
KB
-rwxr-xr-x
2023-03-03 04:27
systemd-bus-proxyd
351.2
KB
-rwxr-xr-x
2023-03-03 04:27
systemd-cgroups-agent
30.42
KB
-rwxr-xr-x
2023-03-03 04:27
systemd-cryptsetup
90.58
KB
-rwxr-xr-x
2023-03-03 04:27
systemd-fsck
300.02
KB
-rwxr-xr-x
2023-03-03 04:27
systemd-fsckd
78.59
KB
-rwxr-xr-x
2023-03-03 04:27
systemd-hibernate-resume
30.42
KB
-rwxr-xr-x
2023-03-03 04:27
systemd-hostnamed
335.2
KB
-rwxr-xr-x
2023-03-03 04:27
systemd-initctl
275.2
KB
-rwxr-xr-x
2023-03-03 04:27
systemd-journald
318.59
KB
-rwxr-xr-x
2023-03-03 04:27
systemd-localed
339.2
KB
-rwxr-xr-x
2023-03-03 04:27
systemd-logind
608.02
KB
-rwxr-xr-x
2023-03-03 04:27
systemd-modules-load
50.58
KB
-rwxr-xr-x
2023-03-03 04:27
systemd-networkd
835.25
KB
-rwxr-xr-x
2023-03-03 04:27
systemd-networkd-wait-online
122.58
KB
-rwxr-xr-x
2023-03-03 04:27
systemd-quotacheck
34.49
KB
-rwxr-xr-x
2023-03-03 04:27
systemd-random-seed
38.43
KB
-rwxr-xr-x
2023-03-03 04:27
systemd-remount-fs
50.59
KB
-rwxr-xr-x
2023-03-03 04:27
systemd-reply-password
30.42
KB
-rwxr-xr-x
2023-03-03 04:27
systemd-resolved
656.02
KB
-rwxr-xr-x
2023-03-03 04:27
systemd-rfkill
90.58
KB
-rwxr-xr-x
2023-03-03 04:27
systemd-shutdown
142.61
KB
-rwxr-xr-x
2023-03-03 04:27
systemd-sleep
70.58
KB
-rwxr-xr-x
2023-03-03 04:27
systemd-socket-proxyd
90.58
KB
-rwxr-xr-x
2023-03-03 04:27
systemd-sysctl
54.59
KB
-rwxr-xr-x
2023-03-03 04:27
systemd-sysv-install
1.29
KB
-rwxr-xr-x
2021-04-02 02:39
systemd-timedated
336.05
KB
-rwxr-xr-x
2023-03-03 04:27
systemd-timesyncd
138.58
KB
-rwxr-xr-x
2023-03-03 04:27
systemd-udevd
442.62
KB
-rwxr-xr-x
2023-03-03 04:27
systemd-update-utmp
275.2
KB
-rwxr-xr-x
2023-03-03 04:27
systemd-user-sessions
34.43
KB
-rwxr-xr-x
2023-03-03 04:27
Save
Rename
#!/bin/sh # This script is called by "systemctl enable/disable" when the given unit is a # SysV init.d script. It needs to call the distribution's mechanism for # enabling/disabling those, such as chkconfig, update-rc.d, or similar. This # can optionally take a --root argument for enabling a SysV init script # in a chroot or similar. set -e usage() { echo "Usage: $0 [--root=path] enable|disable|is-enabled <sysv script name>" >&2 exit 1 } # parse options eval set -- "$(getopt -o r: --long root: -- "$@")" while true; do case "$1" in -r|--root) ROOT="$2" shift 2 ;; --) shift ; break ;; *) usage ;; esac done if [ -n "$ROOT" ] && [ "$ROOT" != "/" ]; then CHROOT="chroot '$ROOT'" fi NAME="$2" [ -n "$NAME" ] || usage case "$1" in enable) # call the command to enable SysV init script $NAME here.. $CHROOT /usr/sbin/update-rc.d "$NAME" defaults $CHROOT /usr/sbin/update-rc.d "$NAME" enable ;; disable) $CHROOT /usr/sbin/update-rc.d "$NAME" defaults $CHROOT /usr/sbin/update-rc.d "$NAME" disable ;; is-enabled) # exit with 0 if $NAME is enabled, non-zero if it is disabled ls $ROOT/etc/rc[S5].d/S??$NAME >/dev/null 2>/dev/null ;; *) usage ;; esac