When booting, you briefly get a grub screen. You can use arrow keys to go up/down to select which kernel you boot. You can type "e" to edit the current boot line.
Sadly, editing is not vim. You use arrow keys along with the DEL keys to get the result you want. When you are done, you type F10 to actually boot using that line.
As near as I can tell, such changes are not permanent. The next section will talk about how to make permanent changes to the grub setup.
First though, here is what to do to enable nouveau. If you are using the nvidia drivers, you will find a boot line that contains the following:
rd.driver.blacklist=nouveau modprobe.blacklist=nouveauGet rid of this if you want to run nouveau. You can leave your nvidia drivers in place.
rd.driver.blacklist=nouveau,nova_core modprobe.blacklist=nouveau,nova_core rd.driver.blacklist=nova_core modprobe.blacklist=nova_coreI changed my bootline to the second thing above, keeping nova_core blacklisted. This worked. What nova_core is, is an experimental replacement for nouveau that Red Hat is working on.
These days you edit the file /etc/default/grub, then run:
su cd /etc/default cp grub grub.ORIG vi grub grub2-mkconfig -o /boot/grub2/grub.cfg
Adventures in Computing / tom@mmto.org