FedoraThis forum is for the discussion of the Fedora Project.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free.
Hey im runing fed core 6
and i ran yum list kernel and it gave me this
kernel.x86_64 2.6.18-1.2798.fc6 installed
Available Packages
kernel.x86_64 2.6.20-1.2944.fc6 updates
Do i have the i686 Kernel or the i586?
i need to know because i want to install the Nvidia drivers and i need to be using i686.
You actually have the x86_64 installed which is for 64-bit processors as opposed to the 32-bit based i586 and i686. If my memory serves me right, you only need to install the devel packages for i686, but not totally sure about that.
You might as well update your kernel anyways while your at it to get a more current one.
Here are my notes from when I needed to get i686 all around for vmware tools.
Code:
Installing the i686 version of kernel on FC6
# Check which kernel package architectures are currently installed:
rpm -qa 'kernel*' --queryformat "%{NAME}-%{VERSION}-%{RELEASE}.%{ARCH}\n"|sort
# Install yumdownloader
su -c "yum install yum-utils"
# Get the current i686 kernel:
yumdownloader kernel.i686
# If the version of the kernel downloaded is larger than currently installed:
su -c "rpm -ivh kernel-2*.i686.rpm"
# If the version of the kernel downloaded is the same as that currently installed:
su -c "rpm -ivh --replacefiles --replacepkgs kernel-2*.i686.rpm"
# Restart the machine
reboot
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.