I have read so many posts complaining about fedora core 6 installing the wrong kernel at install. (This stops your ATI & Nvida and any other 3rd party drivers working)
The
i586 seems to be the default, To change this just type in at cd/dvd boot linux
i686 this will install the i686 kernel instead.
The option for installing
i686 kernel is.( doesn't work always )
Or
Quote:
|
Originally Posted by bigjoe4265
To apply an installer update image during install, here are the instructions from the Fedora project.
http://fedoraproject.org/wiki/Anaconda/Updates
There is a link for the update image below the Common problems heading here.
http://fedoraproject.org/wiki/Bugs/FC6Common
In my case, I downloaded rawrite on a Win machine and wrote the image to a floppy then booted the FC6 disk and entered "linux updates" at the boot installer prompt. You will be prompted for the floppy.
Bigjoe
|
Additional boot option's for hardware problems
__________________________________________________ _________________________
HOWTO CHECK & CHANGE THE KERNEL AFTER INSTALL
NOTE Cannot be relied on as it returns the wrong kernel arch.
1)
To check kernel type.
a)
quick test.
Quote:
|
Originally Posted by wmc1369
yum list installed kernel
|
b)
full test.
Quote:
|
rpm -qa --queryformat "%{NAME}-%{VERSION}-%{RELEASE}.%{ARCH}\n"|grep kernel|sort
|
[leigh@localhost ~]$ rpm -qa --queryformat "%{NAME}-%{VERSION}-%{RELEASE}.%{ARCH}\n"|grep kernel|sort
kernel-devel-2.6.18-1.2239.fc6.
i686
kernel-2.6.18-1.2239.fc6.
i686
[leigh@localhost ~]$
Quote:
|
There should be no kernel i568
|
2)
first you need to download yum-utils
A)
Quote:
|
su -c "yum install yum-utils"
|
To get the current i686 kernel:
You will need to update the kernel first as other packages have now changed , use the C2) command to swap kernel
B)
Quote:
|
yumdownloader kernel.i686
|
If the version of the kernel downloaded is larger than currently installed:*
C1)
Quote:
|
su -c "rpm -ivh kernel-2*.i686.rpm"
|
Alternatively, if the version of the kernel downloaded is the same as that currently installed:*
C2)
Quote:
|
su -c "rpm -ivh --replacefiles --replacepkgs kernel-2*.i686.rpm"
|
Leigh