Toms Online Notebook Sharing my stuff.

Entries tagged [mythtv]

Change Default (bootup) Runlevel on F17 / MythTV box

by tgutwin


Posted on Monday Jan 25, 2016 at 06:27PM in Technology


fedora.pngF17 has not moved fully to systemd (as doc'd on https://fedoraproject.org/wiki/Systemd), so to change the default run level use the following commands:

Go to the non-graphical multi-user commandline bootup:

rm -f /etc/systemd/system/default.target;ln -s /lib/systemd/system/multi-user.target /etc/systemd/system/default.target

 go to the full graphical bootup:

rm -f /etc/systemd/system/default.target;ln -s /lib/systemd/system/graphical.target /etc/systemd/system/default.target

Read More