Difference between revisions of "Installation Troubleshooting"
(Created page with "==== Troubleshooting a failed install ==== ===== boot failure ===== If you did not get a <tt>login:</tt> prompt, it's possible that your install was not successful. You can ...") |
|||
| (4 intermediate revisions by one user not shown) | |||
| Line 1: | Line 1: | ||
| − | + | This page shows you how to troubleshoot issues with your Funtoo Linux installation. | |
| − | + | == boot failure == | |
If you did not get a <tt>login:</tt> prompt, it's possible that your install was not successful. You can reboot from the live CD and bind-mount your existing installation without repartitioning or recreating filesystems, chroot inside, and then check your system to ensure everything is configured properly: | If you did not get a <tt>login:</tt> prompt, it's possible that your install was not successful. You can reboot from the live CD and bind-mount your existing installation without repartitioning or recreating filesystems, chroot inside, and then check your system to ensure everything is configured properly: | ||
| Line 26: | Line 26: | ||
If you continue to experience difficulties getting Funtoo Linux to boot properly, please ask for help in the [http://forums.funtoo.org/ forums]. | If you continue to experience difficulties getting Funtoo Linux to boot properly, please ask for help in the [http://forums.funtoo.org/ forums]. | ||
| − | ===== Graphics Corruption at | + | == Debugging system startup == |
| + | |||
| + | <tt>/etc/rc.conf</tt> contains system settings related to the system initialization scripts. If you are experiencing problems with the system startup scripts, you may find it beneficial to set <tt>rc_logger</tt> to <tt>YES</tt>. This will instruct OpenRC to launch a logging daemon to log the entire rc process to <tt>/var/log/rc.log</tt>. | ||
| + | |||
| + | == Graphics Corruption at boot == | ||
If you experience graphics corruption issues at boot time, you may be experiencing an issue with the [http://fedoraproject.org/wiki/Features/KernelModesetting Kernel Mode Setting subsystem], known as KMS. To resolve this problem, boot from the live CD again [[#boot failure|following the steps above]]. Then, from within the chroot, edit <tt>/etc/boot.conf</tt> and add the line "<tt>params += nomodeset</tt>" to the "<tt>Funtoo Linux genkernel</tt>" section. It should now look like this: | If you experience graphics corruption issues at boot time, you may be experiencing an issue with the [http://fedoraproject.org/wiki/Features/KernelModesetting Kernel Mode Setting subsystem], known as KMS. To resolve this problem, boot from the live CD again [[#boot failure|following the steps above]]. Then, from within the chroot, edit <tt>/etc/boot.conf</tt> and add the line "<tt>params += nomodeset</tt>" to the "<tt>Funtoo Linux genkernel</tt>" section. It should now look like this: | ||
| Line 41: | Line 45: | ||
Now, save your changes and run <tt>boot-update</tt>: | Now, save your changes and run <tt>boot-update</tt>: | ||
| − | < | + | <console> |
| − | (chroot) # boot-update | + | (chroot) # ##i##boot-update |
| − | </ | + | </console> |
Now, exit the chroot, unmount filesystems and reboot following the [[#boot failure|boot failure]] instructions. | Now, exit the chroot, unmount filesystems and reboot following the [[#boot failure|boot failure]] instructions. | ||
| + | |||
| + | [[Category:HOWTO]] | ||
| + | [[Category:Install]] | ||
Latest revision as of 03:31, 10 February 2012
This page shows you how to troubleshoot issues with your Funtoo Linux installation.
[edit] boot failure
If you did not get a login: prompt, it's possible that your install was not successful. You can reboot from the live CD and bind-mount your existing installation without repartitioning or recreating filesystems, chroot inside, and then check your system to ensure everything is configured properly:
# mkdir /mnt/funtoo # mount /dev/sda4 /mnt/funtoo # mount /dev/sda1 /mnt/funtoo/boot # cd /mnt/funtoo # mount --bind /proc proc # mount --bind /dev dev # cp /etc/resolv.conf etc/ # env -i HOME=/root TERM=$TERM PATH='/bin:/sbin:/usr/bin:/usr/sbin' chroot /mnt/funtoo
Once you are done making changes, leave the chroot, unmount mounted filesystems, and reboot:
(chroot) # exit # umount /mnt/funtoo/boot /mnt/funtoo/dev /mnt/funtoo/proc /mnt/funtoo # reboot
If you continue to experience difficulties getting Funtoo Linux to boot properly, please ask for help in the forums.
[edit] Debugging system startup
/etc/rc.conf contains system settings related to the system initialization scripts. If you are experiencing problems with the system startup scripts, you may find it beneficial to set rc_logger to YES. This will instruct OpenRC to launch a logging daemon to log the entire rc process to /var/log/rc.log.
[edit] Graphics Corruption at boot
If you experience graphics corruption issues at boot time, you may be experiencing an issue with the Kernel Mode Setting subsystem, known as KMS. To resolve this problem, boot from the live CD again following the steps above. Then, from within the chroot, edit /etc/boot.conf and add the line "params += nomodeset" to the "Funtoo Linux genkernel" section. It should now look like this:
"Funtoo Linux genkernel" {
kernel kernel[-v]
initrd initramfs[-v]
params += real_root=auto
params += nomodeset
}
Now, save your changes and run boot-update:
(chroot) # boot-update
Now, exit the chroot, unmount filesystems and reboot following the boot failure instructions.