Displaying 1 result from an estimated 1 matches for "coyoteopt".
2004 Jan 27
0
runaway smbd hogging system & ethernet cable bandwidth
...coyote.den/root /mnt/coyoteroot
	mount -t smbfs -o 
username=root,password=xxxxxxxxx //coyote.coyote.den/home /mnt/coyotehome
	mount -t smbfs -o 
username=root,password=xxxxxxxxx //coyote.coyote.den/usr /mnt/coyoteusr
	mount -t smbfs -o 
username=root,password=xxxxxxxxx //coyote.coyote.den/opt /mnt/coyoteopt
}
stop()
{
	echo Stopping share coyote:
	umount /mnt/coyote
	umount /mnt/coyoteroot
	umount /mnt/coyotehome
	umount /mnt/coyoteusr
	umount /mnt/coyoteopt
}
restart()
{
	stop
	start
}
case "$1" in
  start)
  	start
	;;
  stop)
  	stop
	;;
  restart)
  	restart
	;;
*)
	echo $"Usage:...