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.173
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
etc /
cron.daily /
Delete
Unzip
Name
Size
Permission
Date
Action
.placeholder
102
B
-rw-r--r--
2015-05-03 15:25
00logwatch
268
B
-rwxr-xr-x
2017-01-21 17:29
0anacron
311
B
-rwxr-xr-x
2017-05-29 18:36
apache2
539
B
-rwxr-xr-x
2019-06-16 11:49
apt-compat
1.44
KB
-rwxr-xr-x
2017-06-01 10:50
backup-manager
111
B
-rwxr-x--x
2020-11-17 09:19
bsdmainutils
355
B
-rwxr-xr-x
2016-10-25 10:42
crowdsec
270
B
-rwxr-xr-x
2024-05-31 11:12
dpkg
1.56
KB
-rwxr-xr-x
2017-02-22 22:50
exim4-base
4.03
KB
-rwxr-xr-x
2018-02-10 09:26
locate
2.16
KB
-rwxr-xr-x
2014-04-13 16:12
logrotate
89
B
-rwxr-xr-x
2015-05-06 00:18
man-db
1.04
KB
-rwxr-xr-x
2016-12-13 14:09
mdadm
539
B
-rwxr-xr-x
2016-07-26 17:41
ntp
1.35
KB
-rwxr-xr-x
2018-02-15 12:45
passwd
249
B
-rwxr-xr-x
2017-05-17 13:59
quota
349
B
-rwxr-xr-x
2018-02-01 12:55
rkhunter
979
B
-rwxr-xr-x
2017-07-12 05:07
Save
Rename
#! /bin/sh set -e # cron script to update the `locatedb' database. # # Written by Ian A. Murdock <imurdock@debian.org> and # Kevin Dalley <kevin@aimnet.com> # Please consult updatedb(1) and /usr/share/doc/locate/README.Debian [ -e /usr/bin/updatedb.findutils ] || exit 0 if [ "$(id -u)" != "0" ]; then echo "You must be root." exit 1 fi # Global options for invocations of find(1) FINDOPTIONS='-ignore_readdir_race' # filesystems which are pruned from updatedb database PRUNEFS="NFS nfs nfs4 afs binfmt_misc proc smbfs autofs iso9660 ncpfs coda devpts ftpfs devfs mfs shfs sysfs cifs lustre_lite tmpfs usbfs udf ocfs2" # paths which are pruned from updatedb database PRUNEPATHS="/tmp /usr/tmp /var/tmp /afs /amd /alex /var/spool /sfs /media /var/lib/schroot/mount" # netpaths which are added NETPATHS="" # run find as this user LOCALUSER="nobody" # cron.daily/find: run at this priority -- higher number means lower priority # (this is relative to the default which cron sets, which is usually +5) NICE=10 # I/O priority # 1 for real time, 2 for best-effort, 3 for idle ("3" only allowed for root) IONICE_CLASS=3 # 0-7 (only valid for IONICE_CLASS 1 and 2), 0=highest, 7=lowest IONICE_PRIORITY=7 # allow keeping local customizations in a separate file if [ -r /etc/updatedb.findutils.cron.local ] ; then . /etc/updatedb.findutils.cron.local fi export FINDOPTIONS PRUNEFS PRUNEPATHS NETPATHS LOCALUSER # Set the task to run with desired I/O priority if possible # Linux supports io scheduling priorities and classes since # 2.6.13 with the CFQ io scheduler if [ -x /usr/bin/ionice ] && [ "${UPDATDB_NO_IONICE}" = "" ]; then # don't run ionice if kernel version < 2.6.13 KVER=$(uname -r) case "$KVER" in 2.[012345]*) ;; 2.6.[0-9]) ;; 2.6.[0-9].*) ;; 2.6.1[012]*) ;; *) # Avoid providing "-n" when IONICE_CLASS isn't 1 or 2 case "$IONICE_CLASS" in 1|2) priority="-n ${IONICE_PRIORITY:-7}" ;; *) priority="" ;; esac ionice -c $IONICE_CLASS $priority -p $$ > /dev/null 2>&1 || true ;; esac fi if getent passwd $LOCALUSER > /dev/null ; then cd / && nice -n ${NICE:-10} updatedb.findutils 2>/dev/null else echo "User $LOCALUSER does not exist." exit 1 fi