You are not logged in.
Pages: 1
I am trying to execute hald daemon but when i start the daemon i obtain:
16:22:04.752 [I] hald.c:469: hal 0.5.7.1
16:22:04.752 [I] hald.c:534: Will not daemonize
16:22:04.753 [I] hald_dbus.c:3236: local server is listening at unix:abstract=/tmp/hald-local/dbus-18t8hqLCJR,guid=ec2ce244e2dd2a476c52182efbf1b200
16:22:04.762 [E] hald_runner.c:108: Could not spawn runner : 'Failed to execute child process "hald-runner" (No such file or directory)'i executed dbus before of starting hal...[/code]
irc.bsd.cl #linux
irc.freenode.org #archlinux-es
Offline
What about running hal as root with /etc/rc.d/hal start ?
Offline
I have the same trouble with hal 0.5.8.1 :-/
I run: /usr/sbin/hald --daemon=no --verbose=yes
(as I want to know why /etc/rc.d/hal start fails .... yes, I run both as root ...)
07:33:20.757 [I] hald.c:472: hal 0.5.8.1
07:33:20.760 [I] hald.c:537: Will not daemonize
07:33:20.815 [I] hald_dbus.c:4059: local server is listening at unix:abstract=/var/run/hald/dbus-FKX8nTcVxS,guid=b0e24a45f0b97ca25c1dee9e8cca1a00
07:33:20.857 [E] hald_runner.c:211: Could not spawn runner : 'Failed to execute child process "hald-runner" (No such file or directory)'
29263: assertion failed "server->disconnected" file "dbus-server.c" line 714 function dbus_server_unref
Aborted
Offline
adding the following to /etc/rc.d/hal (before the case "$1" on ...)
made it work! (found the info in $SRC/hald/run-hald.sh ...)
export HALD_RUNNER_PATH=/usr/libexec:$HALD_RUNNER_PATH
export PATH=/usr/libexec:$PATH
/* THOUGH, since I find it odd to add '/usr/libexec' to PATH! I compiled my own flavor of hal to make it work with:
export HALD_RUNNER_PATH=/usr/lib/hal:$HALD_RUNNER_PATH
export PATH=/usr/lib/hal/bin:$PATH
where I link hald-runner to the /usr/lib/hal/bin ....
(I found out /usr/lib/hal is where debian adds the libexec's ... )
*/
Offline
Pages: 1