Arch systemd migration
I have installed systemd and used systemctl enable for the services I need. How can I tell Linode to use init=/bin/systemd? Any pitfalls I should look out for?
4 Replies
ln -sv /bin/systemd /sbin/init
This command will fail if /sbin/init already exists, so if you still have sysvinit installed, you'll want to either stash its init somewhere, or uninstall it. As always, before making major changes to your Linode that could potentially break everything, make a backup of important data
We'll likely see sysvinit deprecated in future for new installations and then potentially replaced for existing systems, but that's not official at this time.
- Les