This is a new installation of 12.04 and I can see that my machine is using both the old sysvinit method and the new upstart method to launch programs on start-up.
According to the man page for service, upstart should run its stuff if it's present, otherwise it falls back to sysvinit.
Now in /var/log/boot.log I have a bunch of errors where the daemons aren't starting, e.g. anacron:
initctl: Unknown job: S20anacron
Since the script you are attempting to invoke has been converted to an
Upstart job, you may also use the start(8) utility, e.g. start S20anacron
Rather than invoking init scripts through /etc/init.d, use the service(8)
utility, e.g. service S20dbus start
initctl: Unknown job: S20dbus
Since the script you are attempting to invoke has been converted to an
Upstart job, you may also use the start(8) utility, e.g. start S20dbus
Rather than invoking init scripts through /etc/init.d, use the service(8)
utility, e.g. service S20dmesg start
initctl: Unknown job: S20dmesg
Since the script you are attempting to invoke has been converted to an
Upstart job, you may also use the start(8) utility, e.g. start S20dmesg
Rather than invoking init scripts through /etc/init.d, use the service(8)
utility, e.g. service S20hostname start
initctl: Unknown job: S20hostname
Since the script you are attempting to invoke has been converted to an
Upstart job, you may also use the start(8) utility, e.g. start S20hostname
Rather than invoking init scripts through /etc/init.d, use the service(8)
utility, e.g. service S20hwclock start
* Stopping save kernel messages [ OK ]
initctl: Unknown job: S20hwclock
Since the script you are attempting to invoke has been converted to an
Upstart job, you may also use the start(8) utility, e.g. start S20hwclock
Rather than invoking init scripts through /etc/init.d, use the service(8)
utility, e.g. service S20hwclock-save start
* Starting LightDM Display Manager [ OK ]
initctl: Unknown job: S20hwclock-save
Since the script you are attempting to invoke has been converted to an
Upstart job, you may also use the start(8) utility, e.g. start S20hwclock-save
Rather than invoking init scripts through /etc/init.d, use the service(8)
utility, e.g. service S20network-interface start
initctl: Unknown job: S20network-interface
Since the script you are attempting to invoke has been converted to an
Upstart job, you may also use the start(8) utility, e.g. start S20network-interface
Rather than invoking init scripts through /etc/init.d, use the service(8)
utility, e.g. service S20network-interface-container start
* Stopping anac(h)ronistic cron [ OK ]
initctl: Unknown job: S20network-interface-container
Since the script you are attempting to invoke has been converted to an
Upstart job, you may also use the start(8) utility, e.g. start S20network-interface-container
I can see I've got both /etc/init/anacron.conf and /etc/init.d/anacron along with
/etc/rc2.d/S20anacron
/etc/rc1.d/K20anacron
/etc/rc3.d/S20anacron
/etc/rc6.d/K20anacron
/etc/rc5.d/S20anacron
/etc/rc0.d/K20anacron
/etc/rc4.d/S20anacron
So I'm confused here. Did anacron and dbus and the rest launch successfully? Should I do something to take care of this 'unknown jobs' problem?
It seems from my /var/log/syslog that I've got some activity from anacron and dbus and so on - but I can't tell whether it's enabled
I'd rather just see the logged message as for the other stuff: * Starting ISC DHCP IPv4 server [ OK ]
I have a few more daemons to install - e.g. iptables and dnsmasq - so I'd like to get this sorted in my mind before I continue.
Thanks
