# vi /etc/X11/xorg.confGraphics go, graphics come back with changes. Results come in. This is great on Redhat, Fedora, and SUSE. Ubuntu? Not so much. The GUI is running in both init 3 and init 5! The graphics never go! Doh. Plus, you're living only in init 2 anyway, by default. So there goes that trick...
(make radical changes)
# init 3 ; init 5
(wait)
(ctrl-alt-F1 to drop to GUI-less console)2. Writing, or copying in new start-up scripts so that services/ daemons run at start up.
# vi /etc/X11/xorg.conf
(make radical changes)
# /etc/init.d/gdm stop
# /etc/init.d/gdm start
# cp awesomed.sh /etc/init.d/awesomedThis is great in Redhat-land. But because the default runlevel is 2 in Ubuntu, this script will never called up. The correction?
# ln -s /etc/init.d/awesomed /etc/rc3.d/S99awesomed
# ln -s /etc/init.d/awesomed /etc/rc5.d/S99awesomed
# cp awesomed.sh /etc/init.d/awesomedOr you can just change your default runlevel to 3 or 5. Debian basically designs runlevels 2-5 to be identical, leaving it up to the administrator to customize from there.
# ln -s /etc/init.d/awesomed /etc/rc2.d/S99awesomed
(and to be tidy and consistent)
# ln -s /etc/init.d/awesomed /etc/rc3.d/S99awesomed (though you'll likely never reach this init level)
# ln -s /etc/init.d/awesomed /etc/rc5.d/S99awesomed (though you'll likely never reach this init level)
Subscribe to
Posts [Atom]