Rasp Pi packages lack that too... try this in init.d

#!/bin/sh
### BEGIN INIT INFO
# Provides: owfs
# Required-Start: $remote_fs $syslog $network $named
# Required-Stop: $remote_fs $syslog $network $named
# Should-Start: owfs
# Should-Stop: owfs
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: 1-wire file system mount & update daemon
# Description: Start and stop 1-wire file system mount & update daemon.
### END INIT INFO
CONFFILE=/etc/owfs.conf
DESC="1-Wire file system mount"
NAME="owfs"
DAEMON=/usr/bin/$NAME
case "$1" in
start)
echo "Starting $NAME"
$DAEMON -c $CONFFILE
;;
stop)
echo "Stopping $NAME"
killall $NAME
;;
*)
echo "Usage: $N {start|stop}" >&2
exit 1
;;
esac
exit 0


On 9/28/2014 5:22 PM, Chris Green wrote:
> On Sun, Sep 28, 2014 at 05:15:36PM -0400, Paul Alfille wrote:
>>     As a wild guess, since this is a new machine, does /mnt/1-wire exist?
>>     Yes owfs should be running. You can try it manually, with debugging, to
>>     get more information.
>>     First, try owserver from the command line:
>>     owdir -s 4304
>>     start up owfs:
>>     owfs -s 4304 -m /mnt/1-wire --debug
>>     and see if the debug messages give any information.
> I had created /mnt/1-wire.  The problem was that there was no owfs
> process running.  Is there a standard way to start owfs?  The Debian
> installation installs startup files for owserver, owhttpd and owftpd
> but not for owfs.
>
>


------------------------------------------------------------------------------
Slashdot TV.  Videos for Nerds.  Stuff that Matters.
http://pubads.g.doubleclick.net/gampad/clk?id=160591471&iu=/4140/ostg.clktrk
_______________________________________________
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers

Reply via email to