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
/
lib /
systemd /
Delete
Unzip
Name
Size
Permission
Date
Action
network
[ DIR ]
drwxr-xr-x
2024-03-12 22:00
system
[ DIR ]
drwxr-xr-x
2025-11-25 10:57
system-generators
[ DIR ]
drwxr-xr-x
2024-03-12 22:00
system-preset
[ DIR ]
drwxr-xr-x
2024-03-12 22:00
system-shutdown
[ DIR ]
drwxr-xr-x
2018-02-14 11:37
system-sleep
[ DIR ]
drwxr-xr-x
2017-06-04 22:58
libsystemd-shared-232.so
2.12
MB
-rw-r--r--
2022-06-29 14:41
resolv.conf
484
B
-rw-r--r--
2022-06-29 14:41
systemd
1.07
MB
-rwxr-xr-x
2022-06-29 14:41
systemd-ac-power
6.25
KB
-rwxr-xr-x
2022-06-29 14:41
systemd-backlight
18.25
KB
-rwxr-xr-x
2022-06-29 14:41
systemd-binfmt
10.33
KB
-rwxr-xr-x
2022-06-29 14:41
systemd-cgroups-agent
10.25
KB
-rwxr-xr-x
2022-06-29 14:41
systemd-cryptsetup
26.26
KB
-rwxr-xr-x
2022-06-29 14:41
systemd-fsck
18.26
KB
-rwxr-xr-x
2022-06-29 14:41
systemd-fsckd
22.33
KB
-rwxr-xr-x
2022-06-29 14:41
systemd-hibernate-resume
10.25
KB
-rwxr-xr-x
2022-06-29 14:41
systemd-hostnamed
22.33
KB
-rwxr-xr-x
2022-06-29 14:41
systemd-initctl
14.33
KB
-rwxr-xr-x
2022-06-29 14:41
systemd-journald
118.41
KB
-rwxr-xr-x
2022-06-29 14:41
systemd-localed
34.33
KB
-rwxr-xr-x
2022-06-29 14:41
systemd-logind
202.48
KB
-rwxr-xr-x
2022-06-29 14:41
systemd-modules-load
14.33
KB
-rwxr-xr-x
2022-06-29 14:41
systemd-networkd
414.51
KB
-rwxr-xr-x
2022-06-29 14:41
systemd-networkd-wait-online
18.41
KB
-rwxr-xr-x
2022-06-29 14:41
systemd-quotacheck
10.33
KB
-rwxr-xr-x
2022-06-29 14:41
systemd-random-seed
10.25
KB
-rwxr-xr-x
2022-06-29 14:41
systemd-remount-fs
14.33
KB
-rwxr-xr-x
2022-06-29 14:41
systemd-reply-password
10.25
KB
-rwxr-xr-x
2022-06-29 14:41
systemd-resolved
314.41
KB
-rwxr-xr-x
2022-06-29 14:41
systemd-rfkill
18.33
KB
-rwxr-xr-x
2022-06-29 14:41
systemd-shutdown
38.41
KB
-rwxr-xr-x
2022-06-29 14:41
systemd-sleep
14.33
KB
-rwxr-xr-x
2022-06-29 14:41
systemd-socket-proxyd
22.33
KB
-rwxr-xr-x
2022-06-29 14:41
systemd-sysctl
14.41
KB
-rwxr-xr-x
2022-06-29 14:41
systemd-sysv-install
1.29
KB
-rwxr-xr-x
2021-07-07 14:21
systemd-timedated
26.33
KB
-rwxr-xr-x
2022-06-29 14:41
systemd-timesyncd
38.33
KB
-rwxr-xr-x
2022-06-29 14:41
systemd-udevd
454.77
KB
-rwxr-xr-x
2022-06-29 14:41
systemd-update-utmp
14.33
KB
-rwxr-xr-x
2022-06-29 14:41
systemd-user-sessions
10.25
KB
-rwxr-xr-x
2022-06-29 14:41
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