Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora 17/18 > Installation and Live Media
FedoraForum Search

Forgot Password? Join Us!

Installation and Live Media Help with Installation & Live Media (Live CD, USB, DVD) problems.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 26th July 2010, 10:56 AM
comsian Offline
Registered User
 
Join Date: Jul 2010
Posts: 4
windows_xp_2003ie
how can i upgrade Fed 12 kernel-2.6.31.5 to kernel-2.6.31.6 only?

if i use yum update option it upgrades to latest kernel but i only want to upgrade to kernel-2.6.31.6

regards saad
Reply With Quote
  #2  
Old 26th July 2010, 10:59 AM
glennzo's Avatar
glennzo Online
Un-Retired Administrator
 
Join Date: Mar 2004
Location: Salem, Mass USA
Posts: 13,929
linuxredhatfirefox
Re: how can i upgrade Fed 12 kernel-2.6.31.5 to kernel-2.6.31.6 only?

Would yum install work better in this situation?
Code:
su -c 'yum install kernel-x.x.x-x'
__________________
Glenn
The Bassinator © ®


Laptop: Toshiba Satellite / Intel Core 2 Duo 1.73 GHz / 2GB / 160GB / Intel Mobile 945GM/GMS/GME/943/940GML Integrated Graphics
Desktop: BioStar MCP6PB M2+ / AMD Phenom 9750 Quad Core / 4GB / 1TB SATA / 500GB SATA / EVGA GeForce 8400 GS 1GB
Reply With Quote
  #3  
Old 26th July 2010, 03:13 PM
comsian Offline
Registered User
 
Join Date: Jul 2010
Posts: 4
linuxfedorafirefox
Re: how can i upgrade Fed 12 kernel-2.6.31.5 to kernel-2.6.31.6 only?

thanks Glenn for your time, but

Loaded plugins: presto, refresh-packagekit
fedora/metalink | 12 kB 00:00
fedora | 4.2 kB 00:00
fedora/primary_db | 9.7 MB 02:20
updates/metalink | 8.5 kB 00:00
updates | 4.5 kB 00:00
updates/primary_db | 4.7 MB 00:50
Setting up Install Process
No package kernel-2.6.31.6 available.
Nothing to do

it didnt find that specific kernel, so problem remains there.

regards Saad
Reply With Quote
  #4  
Old 26th July 2010, 07:02 PM
SiliconSlick's Avatar
SiliconSlick Offline
Registered User
 
Join Date: Aug 2009
Location: College Station, TX
Posts: 501
linuxfedorafirefox
Re: how can i upgrade Fed 12 kernel-2.6.31.5 to kernel-2.6.31.6 only?

1) manually download the kernel desired (there are three 2.6.31.6 kernels for FC12 so you have decide which one you need/want)
2) use rpm to install it
3) edit /etc/yum.conf and add the line:

exclude=kernel

That will keep it at the version desired.

SS
Reply With Quote
  #5  
Old 26th July 2010, 07:24 PM
PabloTwo's Avatar
PabloTwo Offline
"Registered User" T-Shirt Winner
 
Join Date: Mar 2007
Location: Seville, FL
Posts: 5,118
linuxfirefox
Re: how can i upgrade Fed 12 kernel-2.6.31.5 to kernel-2.6.31.6 only?

You can find/download the specific kernel you want from this koji build server page. Packages from koji are not yet signed, so need to installed with the appropriate command line options. Examples:

For rpm:
Code:
# rpm -Uvh --nosignature kernel-2.6.31.6-145.fc12.i686.rpm
For yum:
Code:
# yum --nogpgcheck localinstall kernel-2.6.31.6-145.fc12.i686.rpm
Of course, as already pointed out, pick the kernel version/flavor/arch that's correct for your system. And, in case you also have either/or kernel-headers and kernel-devel installed, in the /etc/yum.conf file, make that: exclude=kernel*
Reply With Quote
  #6  
Old 27th July 2010, 08:51 AM
comsian Offline
Registered User
 
Join Date: Jul 2010
Posts: 4
windows_xp_2003ie
Re: how can i upgrade Fed 12 kernel-2.6.31.5 to kernel-2.6.31.6 only?

Quote:
Originally Posted by PabloTwo View Post
And, in case you also have either/or kernel-headers and kernel-devel installed, in the /etc/yum.conf file, make that: exclude=kernel*
sorry but what does that mean??

and problem is that i have to install nctuns-6.0 which only works on fedora 12 kernel-2.6.31.6 and i certainly have no idea if this kernel version has got variants to choose from.

anyone in this forum who has installed nctuns 6.0 on fedora 12??
Reply With Quote
  #7  
Old 27th July 2010, 09:51 AM
glennzo's Avatar
glennzo Online
Un-Retired Administrator
 
Join Date: Mar 2004
Location: Salem, Mass USA
Posts: 13,929
linuxredhatfirefox
Re: how can i upgrade Fed 12 kernel-2.6.31.5 to kernel-2.6.31.6 only?

Have you managed to get the kernel version you want? If not here's what to do. Open a terminal and log in as root
Code:
su -
<password>
Get the kernel rpm.
This is from the link that PabloTwo provided (koji). Now follow his instructions for installing the kernel and remember that he's mentioned "the version you want". That means that you need to make sure you want 2.6.31.6-146.fc12.rpm. If you want a slightly different kernel change my wget command to reflect your needs.

Edit: What is nctuns ?
__________________
Glenn
The Bassinator © ®


Laptop: Toshiba Satellite / Intel Core 2 Duo 1.73 GHz / 2GB / 160GB / Intel Mobile 945GM/GMS/GME/943/940GML Integrated Graphics
Desktop: BioStar MCP6PB M2+ / AMD Phenom 9750 Quad Core / 4GB / 1TB SATA / 500GB SATA / EVGA GeForce 8400 GS 1GB
Reply With Quote
  #8  
Old 27th July 2010, 08:57 PM
PabloTwo's Avatar
PabloTwo Offline
"Registered User" T-Shirt Winner
 
Join Date: Mar 2007
Location: Seville, FL
Posts: 5,118
linuxfirefox
Re: how can i upgrade Fed 12 kernel-2.6.31.5 to kernel-2.6.31.6 only?

Quote:
Originally Posted by comsian
sorry but what does that mean??
Are you asking that about the whole line (exclude=kernel*), or my addition of the asterisk (*) to that line as it was suggested, and explained, to you in post #4 of this thread by SiliconSlick?

Adding that line to your /etc/yum.conf file will prevent yum from updating the kernel package. The asterisk (glob, or wildcard) will match anything...i.e. kernel, kernel-headers, kernel-devel.
Reply With Quote
  #9  
Old 17th August 2010, 02:32 PM
comsian Offline
Registered User
 
Join Date: Jul 2010
Posts: 4
linuxfedorafirefox
Re: how can i upgrade Fed 12 kernel-2.6.31.5 to kernel-2.6.31.6 only?

thank you all for your time and help!
Reply With Quote
Reply

Tags
fed, kernel5, kernel6, upgrade

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
fedora 11 upgrade problem kernel PAE/kernel default Martin Pail Using Fedora 2 10th October 2009 05:41 PM
kernel 2.6.12-1.1372_FC3 upgrade has bad kernel sources RussellEast EOL (End Of Life) Versions 1 18th July 2005 02:27 AM
kernel panic while trying to upgrade kernel raahi108 Hardware & Laptops 10 24th May 2005 08:38 PM


Current GMT-time: 17:14 (Sunday, 19-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat