Software: Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.12 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g. PHP/5.2.4-2ubuntu5.12 uname -a: Linux forum.circlefusion.com 2.6.24-19-server #1 SMP Wed Jun 18 15:18:00 UTC 2008 i686 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /etc/rcS.d/ drwxr-xr-x |
Viewing file: S01mountkernfs.sh (1.51 KB) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) | #! /bin/sh ### BEGIN INIT INFO # Provides: mountkernfs # Required-Start: # Required-Stop: # Default-Start: S # Default-Stop: # Short-Description: Mount kernel virtual file systems. # Description: Mount initial set of virtual filesystems the kernel # provides and that are required by everything. ### END INIT INFO PATH=/lib/init:/sbin:/bin . /lib/lsb/init-functions . /lib/init/mount-functions.sh do_start () { # # Mount proc filesystem on /proc # domount proc "" /proc -onodev,noexec,nosuid # # Mount sysfs on /sys # domount sysfs "" /sys -onodev,noexec,nosuid # Mount /var/run and /var/lock as tmpfs. domount tmpfs "" /var/run -omode=0755,nodev,noexec,nosuid domount tmpfs "" /var/lock -omode=1777,nodev,noexec,nosuid # Mount spufs, if Cell Broadband processor is detected if mountpoint -q /proc && grep -qs '^cpu.*Cell' /proc/cpuinfo; then mkdir -p /spu domount spufs "" /spu -ogid=spu fi # Propagate files from the initramfs to our new /var/run. for file in /dev/.initramfs/varrun/*; do [ -e "$file" ] || continue cp -a "$file" "/var/run/${x#/dev/.initramfs/varrun/}" done if [ ! -d /var/run/sendsigs.omit.d/ ]; then mkdir /var/run/sendsigs.omit.d/ fi } case "$1" in "") echo "Warning: mountvirtfs should be called with the 'start' argument." >&2 do_start ;; start) do_start ;; restart|reload|force-reload) echo "Error: argument '$1' not supported" >&2 exit 3 ;; stop) # No-op ;; *) echo "Usage: mountvirtfs [start|stop]" >&2 exit 3 ;; esac |
:: Command execute :: | |
--[ c99shell v.2.1 [PHP 7 Update] [1.12.2019] maintained by KaizenLouie and updated by cermmik | C99Shell Github (MySQL update) | Generation time: 0.0066 ]-- |