
我在用著Ubuntu12.04 LTS
。
我在 中看到了以下行/etc/init.d/dbus.conf
。
exec dbus-daemon --system --fork --activation=upstart
我看到了手冊頁dbus-daemon
,
然後找到--activation=systemd
參數。
我嘗試使用--activation=systemd
而不是--activation=upstart
.
順便說一句,系統使用此參數效果很好。
參數(--activation=systemd
和--actication=upstart
) 之間存在什麼差異。
答案1
您可以使用其中之一。
Upstart 是 /sbin/init 守護程序的基於事件的替代品,它在引導期間處理任務和服務的啟動,在關閉期間停止它們並在系統運行時監督它們。它最初是為 Ubuntu 發行版開發的,但旨在適合在所有 Linux 發行版中部署,作為古老的 System-V init 的替代品。
隨著--activation=upstart
你的dbus-daemon
意志被暴發戶時間啟動。
否則你的systemd
(systemd 是備用啟動管理器)將計算你的dbus-daemon
.
Ubuntu 使用暴發戶許多年前。
系統這些發行版的預設值:Fedora、Debian、openSUSE、Mageia、Gentoo。