Red Hat / Fedora :: Can Upgrade Kernel To Version 2.6 And Glibc To Version 2.5?

Feb 5, 2010

I have a server running Reh Hat Linux 7.3 with kernel 2.4.18. Can i upgrade kernel to version 2.6 and glibc to version 2.5?

View 6 Replies


ADVERTISEMENT

General :: Build A Glibc Version For Target Machine's Kernel?

Jan 8, 2010

AFAIK, in addition to implementing the standard C library, glibc provides wrappers for system calls, threading support, and basic application facilities. So because of that, glibc that will be used on my target system should be built based on the kernel version running on my target, right?

Based on the above, I am trying to build a glibc version for my target machine's kernel. However, I don't know to to build a glibc library for a target system and also where on the target's filesystem should be put? In which location Linux will start looking for the libraries required for a program to run (should I create an /etc/ld.so.conf file)?

View 12 Replies View Related

Fedora Installation :: Kernel-devel Package With Version Between The Fedora And Update Repo Version

Sep 11, 2009

I have a fedora 11 with kernel package: kernel-PAE-2.6.29.6-217.2.3.fc11.i686

I would like to install the devel package for this kernel version, but I can't find it, because in the fedora repo there is only the original kernel (2.6.29.4....) and in the updates repo there is only the newest kernel package (2.6.30....)

Where can I find the packages which are between the fedora and update repos' versions?

View 2 Replies View Related

Red Hat / Fedora :: RPM Kernel Upgrade To Latest Version (SL6)

May 13, 2011

I am relatively new to the Linux System (8 months). I am having issues after upgrading the Scientific Linux 6 kernel from its current 2.6.x version to the latest version that SL6 has available. The issue is that once I install the upgrade and reboot, the internet becomes extremely laggy when scrolling on web pages, so much so that you get a ripple like effect as your scrolling. Which doesn't occur in the current kernel i am using.

Current Kernel is: 2.6.32-71.18.2.el6
New Kernel RPM update is: 2.6.32-71.29.1.el6

I wish I could figure out the problem but I am having trouble identifying what exactly the current kernel has that the new one doesn't that would cause the internet lag. I have read other topics with similar kernel update problems, but none have expressed an internet problem & only an internet problem from a kernel update.

View 3 Replies View Related

Fedora :: Upgrade Version From 10 To Latest Version 13

Mar 10, 2010

I am using Nagios 3.2.4 monitoring tool on a Linux box with Fedora 10 installed on it and Apache version is 2.2.10. I would like to upgrade my Fedora version from 10 to latest version Fedora 13.

View 9 Replies View Related

Ubuntu Installation :: Update For An Older Version Kernel When Using A New Version?

Sep 29, 2010

What happens if you get an update for an older version kernel when you are using a new version?

View 3 Replies View Related

Ubuntu Security :: Check For Updates To The Current Version Of Rkhunter And Upgrade To A New Version?

Sep 18, 2010

How do i check for updates to the current version of rkhunter and if possible upgrade to a new version?

View 2 Replies View Related

Ubuntu Installation :: Upgrade From Desktop Version To Laptop Version?

Jul 18, 2011

I have installed Ubuntu 10.10 desktop version on my Lenovo L420 laptop. Now my friend told me that if I had installed laptop version on it then it would have recognized events related to laptop like closing down the laptop screen and all.

Q1. Is there any way by which I can upgrade it to laptop version?

Q2. What are the differences between both?

View 1 Replies View Related

Debian :: Difference Between Kernel Version And Backport Version

Mar 8, 2011

Sometimes a kernel image seems to have the same version as the backported kernel image, for example:
linux-image-2.6.32-bpo.5-amd64
linux-image-2.6.32-5-amd64

What are the differences between the two?

View 5 Replies View Related

Software :: Upgrade Kernel To Version 2.6.34?

Jun 30, 2010

I want to upgrade linux kernel in Redhat5 ,CentOS5.5, Fedora 11 to version 2.6.34.

View 3 Replies View Related

CentOS 5 Server :: What Glibc Version I Have?

Apr 5, 2011

how to find what glibc version I have? Our software vendor needs this info so they can send us the right run time.

View 3 Replies View Related

General :: Gcc Compilation - Newer Version Of Glibc ?

Nov 13, 2010

In a chroot einvironment i am trying to compile gcc but is says that i need a newer version of glibc, but i have the newest version of it. i think somehow it trys to use the older glibc from the ubuntu install im makeing it on.

View 1 Replies View Related

CentOS 5 :: Yum Not Finding Latest Version Of GLIBC

Mar 31, 2009

I'm new to the yum installation route and am looking forward to getting some experience using it, however, I am working to build a Nagios server through yum and have run into difficulties meeting the dependencies. (I'd previously installed from source on a different server though I'd been warned is a bad thing so I am trying to make nice and go this route but have run into snags right off...) The dependency hurdle I'm trying to overcome is getting to GLIBC2_4 from my version of 2.3.

I've read through a number of posts where people have had issues getting glib updated or gcc installed correctly. This is pretty much a new installation of CentOS (VM cloned off an earlier install that was taken just after going through the GUI setup). As far as I have gotten is 'yum update' which updated the kernel and openssl.

View 2 Replies View Related

Software :: Determining GCC / Binutils And Glibc Version Compatibility

Apr 4, 2010

This questions pertains mainly to building a brand new GNU toolchain on one machine for deployment on fs of another machine that has no toolchain installed. I understand the machine on which GNU toolchain is going to be built as the 'build' machine. I understand the machine on which GNU toolchain is going to be deployed as the 'host' machine. I understand the machine on which the code generated by the new GNU toolchain is going to be run as the 'target' machine.

Q1.) Is there a fixed 'rule', 'matrix' or 'table' somewhere which tells me exactly which versions of 'binutils' and 'libc' are required by a particular version of GCC? I.e. something along the lines of:

- gcc ver.'k' can be built using gcc ver.'m'(or later) with binutils ver.'i' and libc ver. 'j'
- gcc ver.'k' will operate with binutils ver.'t' and libc ver.'r'(or later)

Is there some 'rule of thumb' / 'heuristics' giving me the above version requirements for the building and operating GCC, or is this information somehow implied or derived systematically. Where can I find more about the above?

Q2) I assume that the libraries have no dependencies on any underlying software other than the system calls provided by the kernel. Furthermore it appears that the libraries are not too sensitive about the kernel version they run on (I found this out from experience). Therefore I could build the libraries on some build machine and place them on the bare naked newly set up host file system without regard to any other prerequisite SW components?

Q3) During operation, do GCC and its various components place system calls directly to the kernel or via library calls (or both)? In other words I am trying to understand conceptually if GCC requires 'Glibc' for its own operation or not?

Q4) During operation, do the 'binutils' components place system calls directly to the kernel or via library calls (or both)? In other words I am trying to understand conceptually if the 'binutils' require 'Glibc' for their operation or not? ( Of course it is clear to me that when GCC is operating it will need libraries and headers to resolve object references in the target code it produces, but that would be a >different< question).

View 5 Replies View Related

OpenSUSE Install :: UName -a Reports Wrong Kernel Version After Upgrade

Jan 6, 2011

I did apply the updates on 11.1 32bit and upgraded the kernel from 2.6.27.45 to 2.6.27.56.

Now:
Code:
> uname -a
Linux myhost 2.6.27.45-0.1-default #1 SMP 2010-12-01 16:57:58 +0100 i686 i686 i386 GNU/Linux
but:
Code:
> cat /proc/version
Linux version 2.6.27.56-0.1-pae (geeko@buildhost) (gcc version 4.3.2 [gcc-4_3-branch revision 141291] (SUSE Linux) ) #1 SMP 2010-12-01 16:57:58 +0100

View 6 Replies View Related

Hardware :: Share DVD Drive In Windows [version 7] And Use It In System [version Fedora 12]?

Jan 8, 2010

I have a doubt, may sound funny but wanna know whether it is possible to share DVD drive in windows [version 7] and use it in Linux system [version fedora 12]?

View 4 Replies View Related

Fedora :: Wrong Kernel On Version 11

Jul 26, 2009

When I installed fedora 11 the other day using the live CD it installed the i586 kernel and not the i686, despite the fact that smolt seems to know that that the hardware is i686 (well, actually it's x86, but I'm not going to argue because I forgot to get that one...). Why would it install the i586 one though? (uname -r 2.6.29.6-213.fc11.i586) But more importantly, are there any specific issues which this version can cause that I should be aware of? I can't really be bothered to change it at the moment if there is no real issue with it but I'm not too sure what difference it makes? Is it slower? It seems to know that I have a quad-core processor and seems to use them fine.

View 10 Replies View Related

Fedora :: How To Upgrade Transmission To Version 2.22

May 8, 2011

I installed transmission on my fedora14 VPS from yum which is version 2.11,to use transmission in some privte trackers i have to update to latest stable release version 2.22,so, how do i upgrade my old version?and another question is can i use rpm pakages find here[URL]

View 9 Replies View Related

Fedora :: F13 OS - Most Suitable Version To Upgrade?

Jul 5, 2011

I have Fedora13 OS installed in my compaq610 laptop. I want to upgrade my fedora version. What is the most suitable version to upgrade and how can I upgrade it?

View 1 Replies View Related

Red Hat / Fedora :: To Upgrade The Rpm -version From 4.4.2 To 4.4.6 In Centos?

Jan 13, 2011

We are facing a problem a rpm file called TrackerSetup.rpm

rpm -ivh TrackerSetup.rpm
error: Failed dependencies:
rpmlib(PayloadIsLzma) <= 4.4.6-1 is needed by com.elance.tracker-2.1.16-1.i586

[code]....

View 3 Replies View Related

Fedora :: Revert To A Previous Kernel Version?

Aug 14, 2009

I'm using F11 and I've downloaded and installed kernel 2.6.30.4-25.fc11.x86_64 from koji.
Since I'm dumb.... I've installed with rpm -Uvh kernel* so now I've loose the latest stable fedora kernel...
I've tried to manually download kernel but when I try to install it complains because it's older then the current installed.
How can I restore to kernel 2.6.29?

View 1 Replies View Related

Fedora :: Current Stable Version Of Kernel In F10?

Aug 26, 2009

Which is the current stable version of kernel in fedora 10 and how can I installed because right now I have unstable kernel:
uname -a
Linux blind 2.6.29.3-60.fc10.x86_64 #1 SMP Sat May 9 04:18:14 EDT 2009 x86_64 x86_64 x86_64 GNU/Linux

I just want to get back to latest stable kernel of fedora 10. I'm not able from the grub to choose an older because there are only kernels for fedora 9. The problem was that previously I used fedora 9 however I upgrade it but it was still with kernel of fedora 9 so I pick it the unstable of fedora 10 and I installed it. Right now I just want to get back to current version of kernel in fedora 10 so I can upgrade it to fedora 11.

View 5 Replies View Related

Fedora :: VirtualBox Not Opening With New Kernel Version

Aug 6, 2011

with the new kernel update, my virtualbox won't open. Something about installing DKMS something first. Where would I find this to install?

View 3 Replies View Related

Debian :: Upgrade Debian Stable Kernel From Squeeze Version?

May 26, 2010

I've just install debian squeeze version, or the testing one, but I am not really happy with it. Is not listening me all the time. If I install the debian stable I don't have internet connection. Is it possible to update the kernel somehow using the testing version?

View 12 Replies View Related

Fedora :: Upgrade - Which Version Is More Stable For Production Use

Nov 20, 2009

I am using fedora 6 and i want to upgrade but i am not sure which version of fedora is more stable for production use.

View 3 Replies View Related

Fedora :: Extra Version Of Kernel Added After Update

Sep 10, 2009

After new kernel update I noticed that I have 2 different versions of 1 kernel installed.

Kernels are:
2.6.30.5-43.fc11.i686.PAE (this one I use because previous kernels are all .PAE)
and
2.6.30.5-43.fc11.i586

Should I now expect any problems with later kernel releases or can I leave it this way? I boot in the .PAE kernel.

View 14 Replies View Related

Fedora :: How To Build Kernel Headers Version Arch RPM

Oct 25, 2009

I'm building a Kernel on System A to use on System B. I've followed the walkthrough on [URL], and I get the following rpms:

kernel-debuginfo-common-i686-2.6.30.8-64.hymerfania_dbg.fc11.i686.rpm
kernel-firmware-2.6.30.8-64.hymerfania_dbg.fc11.i686.rpm
kernel-PAE-2.6.30.8-64.hymerfania_dbg.fc11.i686.rpm
kernel-PAEdebug-2.6.30.8-64.hymerfania_dbg.fc11.i686.rpm
kernel-PAEdebug-debuginfo-2.6.30.8-64.hymerfania_dbg.fc11.i686.rpm
kernel-PAEdebug-devel-2.6.30.8-64.hymerfania_dbg.fc11.i686.rpm
kernel-PAE-debuginfo-2.6.30.8-64.hymerfania_dbg.fc11.i686.rpm
kernel-PAE-devel-2.6.30.8-64.hymerfania_dbg.fc11.i686.rpm

What I don't get are any
kernel-headers-<version>.<arch>.rpm
Files. Don't I need them to rebuild modules and drivers on System B? Otherwise, how should I copy my new headers to System B? BTW, System B crashes when I try to build the Kernel on it, that's why I'm building debugger Kernels on System A.

View 2 Replies View Related

Fedora :: Kernel Headers For Current F12KDE Version?

Mar 7, 2010

Where are the kernel headers for the current kernel of F12KDE? I am trying to configure VMWare player on my machine, and on initial startup I got an error message.

View 3 Replies View Related

Fedora :: Module Development Version Different With Current Kernel

Sep 21, 2010

I want to do some modules development in fedora 11, by the command uname -r, I get the current kernel running in my system.

Code:
$ uname -r
2.6.30.10-105.2.23.fc11.i686.PAE
But when I run the following command

Code:
# yum install kernel-devel
the package what I installed is kernel-devel-2.6.30.10-105.2.23.fc11.i586 and kernel
development directory is /usr/src/kernels/2.6.30.10-105.2.23.fc11.i586

So,the modules I developed can't insert to current running kernel because current is i686 and the compile environment is i586. Is that a bug of fedora 11?

View 2 Replies View Related

Debian :: Compiling Kernel - 2.6.26 Version Of Kernel Doesn't Longer Exist In Kernel.org Website

Sep 16, 2010

i'm using this guide videos - howto: debian linux kernel compilation, part 1 and the author says i need kernel 2.6.26 this version of kernel doesnt longer exist in kernel.org website and the only 2.6.26 i found is a patch here. should i use the patch? or download another version of kernel?

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved