Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
snap /
core /
17292 /
etc /
rcS.d /
Delete
Unzip
Name
Size
Permission
Date
Action
README
447
B
-rw-r--r--
2016-01-19 18:33
S01console-setup
1.31
KB
-rwxr-xr-x
2016-04-04 17:41
S02apparmor
6.08
KB
-rwxr-xr-x
2017-03-03 22:52
S02hostname.sh
1.39
KB
-rwxr-xr-x
2016-01-19 18:33
S02mountkernfs.sh
1.53
KB
-rwxr-xr-x
2016-01-19 18:33
S02pppd-dns
612
B
-rwxr-xr-x
2016-01-27 16:19
S02resolvconf
4.05
KB
-rwxr-xr-x
2017-11-29 18:26
S03udev
5.94
KB
-rwxr-xr-x
2021-04-02 02:39
S04keyboard-setup
1.76
KB
-rwxr-xr-x
2016-04-04 17:41
S05mountdevsubfs.sh
1.43
KB
-rwxr-xr-x
2016-01-19 18:33
S05procps
1.16
KB
-rwxr-xr-x
2015-09-06 05:30
S06hwclock.sh
3.72
KB
-rwxr-xr-x
2016-03-12 15:14
S07checkroot.sh
9.13
KB
-rwxr-xr-x
2016-01-19 18:33
S08checkfs.sh
3.72
KB
-rwxr-xr-x
2016-01-19 18:33
S09checkroot-bootclean.sh
1.07
KB
-rwxr-xr-x
2016-01-19 18:33
S09kmod
2.04
KB
-rwxr-xr-x
2018-11-12 21:55
S09urandom
3.04
KB
-rwxr-xr-x
2016-01-19 18:33
S10mountall.sh
2.25
KB
-rwxr-xr-x
2016-01-19 18:33
S10networking
4.66
KB
-rwxr-xr-x
2016-11-30 17:16
S11mountall-bootclean.sh
703
B
-rwxr-xr-x
2016-01-19 18:33
S11mountnfs.sh
2.4
KB
-rwxr-xr-x
2016-01-19 18:33
S12mountnfs-bootclean.sh
711
B
-rwxr-xr-x
2016-01-19 18:33
S13bootmisc.sh
1.25
KB
-rwxr-xr-x
2016-01-19 18:33
Save
Rename
#! /bin/sh ### BEGIN INIT INFO # Provides: mountdevsubfs # Required-Start: mountkernfs # Required-Stop: # Should-Start: udev # Default-Start: S # Default-Stop: # Short-Description: Mount special file systems under /dev. # Description: Mount the virtual filesystems the kernel provides # that ordinarily live under the /dev filesystem. ### END INIT INFO # # This script gets called multiple times during boot # PATH=/sbin:/bin TTYGRP=5 TTYMODE=620 [ -f /etc/default/devpts ] && . /etc/default/devpts KERNEL="$(uname -s)" . /lib/lsb/init-functions . /lib/init/vars.sh . /lib/init/tmpfs.sh . /lib/init/mount-functions.sh # May be run several times, so must be idempotent. # $1: Mount mode, to allow for remounting mount_filesystems () { MNTMODE="$1" # Mount a tmpfs on /run/shm mount_shm "$MNTMODE" # Mount /dev/pts if [ "$KERNEL" = Linux ] then if [ ! -d /dev/pts ] then mkdir --mode=755 /dev/pts [ -x /sbin/restorecon ] && /sbin/restorecon /dev/pts fi domount "$MNTMODE" devpts "" /dev/pts devpts "-onoexec,nosuid,gid=$TTYGRP,mode=$TTYMODE" fi } case "$1" in "") echo "Warning: mountdevsubfs should be called with the 'start' argument." >&2 mount_filesystems mount_noupdate ;; start) mount_filesystems mount_noupdate ;; restart|reload|force-reload) mount_filesystems remount ;; stop|status) # No-op ;; *) echo "Usage: mountdevsubfs [start|stop]" >&2 exit 3 ;; esac