Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
etc /
rcS.d /
Delete
Unzip
Name
Size
Permission
Date
Action
README
447
B
-rw-r--r--
2016-01-19 19:33
S01console-setup
1.31
KB
-rwxr-xr-x
2016-04-04 19:41
S02apparmor
6.08
KB
-rwxr-xr-x
2017-03-03 23:52
S02hostname.sh
1.39
KB
-rwxr-xr-x
2016-01-19 19:33
S02mountkernfs.sh
1.53
KB
-rwxr-xr-x
2016-01-19 19:33
S02plymouth-log
752
B
-rwxr-xr-x
2015-11-15 13:55
S02resolvconf
4.05
KB
-rwxr-xr-x
2015-11-23 17:35
S02screen-cleanup
1.2
KB
-rwxr-xr-x
2015-06-09 13:41
S02ufw
2
KB
-rwxr-xr-x
2014-08-07 14:58
S03udev
5.94
KB
-rwxr-xr-x
2016-04-12 12:06
S04mountdevsubfs.sh
1.43
KB
-rwxr-xr-x
2016-01-19 19:33
S04procps
1.16
KB
-rwxr-xr-x
2015-09-06 07:30
S05hwclock.sh
3.72
KB
-rwxr-xr-x
2016-03-12 16:14
S06checkroot.sh
9.13
KB
-rwxr-xr-x
2016-01-19 19:33
S07cryptdisks-early
896
B
-rwxr-xr-x
2015-03-28 21:38
S08checkroot-bootclean.sh
1.07
KB
-rwxr-xr-x
2016-01-19 19:33
S08kmod
2.04
KB
-rwxr-xr-x
2015-12-21 00:17
S08lvm2
695
B
-rwxr-xr-x
2015-10-30 18:33
S08urandom
3.04
KB
-rwxr-xr-x
2016-01-19 19:33
S09cryptdisks
937
B
-rwxr-xr-x
2015-03-28 21:38
S10checkfs.sh
3.72
KB
-rwxr-xr-x
2016-01-19 19:33
S11mountall.sh
2.25
KB
-rwxr-xr-x
2016-01-19 19:33
S11networking
4.66
KB
-rwxr-xr-x
2015-07-19 23:45
S12iscsid
1.47
KB
-rwxr-xr-x
2016-03-29 19:32
S12mountall-bootclean.sh
703
B
-rwxr-xr-x
2016-01-19 19:33
S12mountnfs.sh
2.4
KB
-rwxr-xr-x
2016-01-19 19:33
S13mountnfs-bootclean.sh
711
B
-rwxr-xr-x
2016-01-19 19:33
S13open-iscsi
2.44
KB
-rwxr-xr-x
2016-03-29 19:32
S14bootmisc.sh
1.25
KB
-rwxr-xr-x
2016-01-19 19:33
Save
Rename
#!/bin/sh ### BEGIN INIT INFO # Provides: bootmisc # Required-Start: $remote_fs # Required-Stop: # Should-Start: udev # Default-Start: S # Default-Stop: # Short-Description: Miscellaneous things to be done during bootup. # Description: Some cleanup. Note, it need to run after mountnfs-bootclean.sh. ### END INIT INFO . /lib/lsb/init-functions PATH=/sbin:/usr/sbin:/bin:/usr/bin [ "$DELAYLOGIN" ] || DELAYLOGIN=yes . /lib/init/vars.sh do_start () { # # If login delaying is enabled then create the flag file # which prevents logins before startup is complete # case "$DELAYLOGIN" in Y*|y*) echo "System bootup in progress - please wait" > /var/lib/initscripts/nologin ;; esac # Create /var/run/utmp so we can login. : > /var/run/utmp if grep -q ^utmp: /etc/group then chmod 664 /var/run/utmp chgrp utmp /var/run/utmp fi # Remove bootclean's flag files. # Don't run bootclean again after this! rm -f /tmp/.clean /run/.clean /run/lock/.clean rm -f /tmp/.tmpfs /run/.tmpfs /run/lock/.tmpfs } case "$1" in start|"") do_start ;; restart|reload|force-reload) echo "Error: argument '$1' not supported" >&2 exit 3 ;; stop|status) # No-op ;; *) echo "Usage: bootmisc.sh [start|stop]" >&2 exit 3 ;; esac :