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
/
usr /
lib /
sysstat /
Delete
Unzip
Name
Size
Permission
Date
Action
debian-sa1
418
B
-rwxr-xr-x
2017-05-25 20:26
sa1
986
B
-rwxr-xr-x
2017-05-25 20:26
sa2
1.28
KB
-rwxr-xr-x
2017-05-25 20:26
sadc
97.7
KB
-rwxr-xr-x
2017-05-25 20:26
Save
Rename
#!/bin/sh # /usr/lib/sysstat/sa1 # (C) 1999-2016 Sebastien Godard (sysstat <at> orange.fr) # #@(#) sysstat-11.4.3 #@(#) sa1: Collect and store binary data in system activity data file. # # Set default value for some variables. # Used only if ${SYSCONFIG_DIR}/sysstat doesn't exist! HISTORY=0 SADC_OPTIONS="" SA_DIR=/var/log/sysstat SYSCONFIG_DIR=/etc/sysstat umask 0022 [ -r ${SYSCONFIG_DIR}/sysstat ] && . ${SYSCONFIG_DIR}/sysstat [ -d ${SA_DIR} ] || SA_DIR=/var/log/sysstat if [ ${HISTORY} -gt 28 ] then SADC_OPTIONS="${SADC_OPTIONS} -D" fi ENDIR=/usr/lib/sysstat cd ${ENDIR} [ "$1" = "--boot" ] && shift && BOOT=y || BOOT=n if [ $# = 0 ] && [ "${BOOT}" = "n" ] then # Note: Stats are written at the end of previous file *and* at the # beginning of the new one (when there is a file rotation) only if # outfile has been specified as '-' on the command line... exec ${ENDIR}/sadc -F -L ${SADC_OPTIONS} 1 1 ${SA_DIR} else exec ${ENDIR}/sadc -F -L ${SADC_OPTIONS} $* ${SA_DIR} fi