Linux localhost 6.1.10-x86_64-linode159 #1 SMP PREEMPT_DYNAMIC Wed Feb 8 14:14:45 EST 2023 x86_64
Apache/2.4.25 (Debian)
Server IP : 45.33.61.127 & Your IP : 216.73.216.156
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
etc /
init.d /
Delete
Unzip
Name
Size
Permission
Date
Action
apache-htcacheclean
2.43
KB
-rwxr-xr-x
2018-11-03 11:34
apache2
7.99
KB
-rwxr-xr-x
2017-09-19 18:56
console-setup.sh
1.2
KB
-rwxr-xr-x
2017-04-07 03:55
cron
2.98
KB
-rwxr-xr-x
2015-05-03 13:25
dbus
2.75
KB
-rwxr-xr-x
2017-07-30 10:23
ferm
3.42
KB
-rwxr-xr-x
2016-06-12 18:46
hwclock.sh
3.72
KB
-rwxr-xr-x
2017-03-22 09:43
irqbalance
2.39
KB
-rwxr-xr-x
2016-12-30 18:59
keyboard-setup.sh
1.44
KB
-rwxr-xr-x
2016-05-19 03:01
kmod
2
KB
-rwxr-xr-x
2016-12-26 02:22
mysql
5.79
KB
-rwxr-xr-x
2017-08-10 19:07
networking
4.49
KB
-rwxr-xr-x
2016-09-16 13:02
procps
1.16
KB
-rwxr-xr-x
2016-11-22 11:04
rsync
4.25
KB
-rwxr-xr-x
2014-07-10 11:41
rsyslog
2.8
KB
-rwxr-xr-x
2017-01-18 22:14
ssh
3.94
KB
-rwxr-xr-x
2017-06-18 00:08
sudo
731
B
-rwxr-xr-x
2017-06-05 12:22
sysstat
1.56
KB
-rwxr-xr-x
2017-05-25 20:26
udev
5.94
KB
-rwxr-xr-x
2017-07-05 20:31
Save
Rename
#! /bin/sh # /etc/init.d/procps: Set kernel variables from /etc/sysctl.conf # # written by Elrond <Elrond@Wunder-Nett.org> ### BEGIN INIT INFO # Provides: procps # Required-Start: mountkernfs $local_fs # Required-Stop: # Should-Start: udev module-init-tools # X-Start-Before: $network # Default-Start: S # Default-Stop: # Short-Description: Configure kernel parameters at boottime # Description: Loads kernel parameters that are specified in /etc/sysctl.conf ### END INIT INFO PATH=/sbin:/bin SYSCTL=/sbin/sysctl test -x $SYSCTL || exit 0 . /lib/lsb/init-functions # Comment this out for sysctl to print every item changed QUIET_SYSCTL="-q" # Check for existance of the default file and exit if not there, # Closes #52839 for the boot-floppy people if [ -f /etc/default/rcS ] ; then . /etc/default/rcS fi set -e case "$1" in start|restart|force-reload|reload) log_action_begin_msg "Setting kernel variables" STATUS=0 $SYSCTL $QUIET_SYSCTL --system || STATUS=$? log_action_end_msg $STATUS ;; stop) ;; status) ;; *) echo "Usage: /etc/init.d/procps {start|stop|restart|reload|force-reload|status}" >&2 exit 3 ;; esac exit 0