⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 smb.init

📁 共享Unix的资源(磁盘或打印机等)给Windows使用的程序
💻 INIT
字号:
#!/bin/sh## chkconfig: 345 91 35# description: Starts and stops the Samba smbd and nmbd daemons \#	       used to provide SMB network services.# Source function library.. /etc/rc.d/init.d/functions# Source networking configuration.. /etc/sysconfig/network# Check that networking is up.[ ${NETWORKING} = "no" ] && exit 0# Check that smb.conf exists.[ -f /etc/smb.conf ] || exit 0# See how we were called.case "$1" in  start)	echo -n "Starting SMB services: "	daemon smbd -D 		daemon nmbd -D 	echo	touch /var/lock/subsys/smb	;;  stop)	echo -n "Shutting down SMB services: "	killproc smbd	killproc nmbd	rm -f /var/lock/subsys/smb	echo ""	;;  status)	status smbd	status nmbd	;;  restart)	echo -n "Restarting SMB services: "	$0 stop	$0 start	echo "done."	;;  *)	echo "Usage: smb {start|stop|restart|status}"	exit 1esac

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -