To finish installation of dbus package you should run the following
command as a user root:

# dbus-uuidgen --ensure

To start systemwide message dbus daemon whenever the machine boots,
add the following lines to /etc/rc.local:

if [ -x /usr/local/bin/dbus-daemon ]; then
	mkdir -p /var/run/dbus
	chmod 0755 /var/run/dbus
	chown _dbus:_dbus /var/run/dbus

	/usr/local/bin/dbus-daemon --system
fi
