Gentoo with Systemd?
https://wiki.gentoo.org/wiki/Systemd
Is it generally safe to just:
# emerge gentoo-sources
# zcat /proc/config.gz /usr/src/linux/.config
# make oldconfig
[ make my required changes to the startup arguments ]
# make && make modules_install
[ copy the new kernel to... where? ]
…and then restart, or am I asking for pain? Is there a default Gentoo image that I can start with that uses systemd? What's the typical usage here?
1 Reply
https://wiki.gentoo.org/wiki/Systemd
The only tricky bit was networking, since that's different under Systemd. For that, I simply put this in /etc/systemd/network/50-static.network:
$ cat /etc/systemd/network/50-static.network
[Match]
Name=eth0
[Network]
DHCP=yes
In retrospect, the name "50-static.network" doesn't make much sense since I'm using DHCP, but it doesn't really matter I suppose.