Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place! |
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.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
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.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
02-20-2005, 12:19 AM
|
#1
|
Member
Registered: Feb 2005
Distribution: debian
Posts: 75
Rep:
|
Changing debian to stable to testing
Hi Guys,
I just replaced in source.list the word "stable" to "testing", then I applied a "apt-get update" and "apt-get dist-upgrade". However, my kernel version is still the formelly version, but the strange thing is now I can use my Geforce4.
Could you guys explain me that?
ThX,
Mauricio
|
|
|
02-20-2005, 03:32 AM
|
#2
|
Senior Member
Registered: Jan 2003
Location: Devon, UK
Distribution: Debian Etc/kernel 2.6.18-4K7
Posts: 2,380
Rep:
|
Apt upgrade will not upgrade the kernel. Kernel upgrades are only done by request. The reason your geForce4 card is probably working now is because you you have an updated verion of XFree86.
|
|
|
02-20-2005, 10:19 AM
|
#3
|
Member
Registered: Feb 2005
Distribution: debian
Posts: 75
Original Poster
Rep:
|
Ok, and does upgrade the kernel version really important? What kind of advantages is there?
Sal2!
|
|
|
02-20-2005, 10:46 AM
|
#4
|
Senior Member
Registered: Jan 2003
Location: Devon, UK
Distribution: Debian Etc/kernel 2.6.18-4K7
Posts: 2,380
Rep:
|
The newer kernels have support for a larger range of hardware and networking ability. If you are happy with the current kernel then there is no need to upgrade.
|
|
|
02-21-2005, 06:57 PM
|
#5
|
Member
Registered: Feb 2005
Distribution: debian
Posts: 75
Original Poster
Rep:
|
Ok, I think I want to upgrade my kernel
Could you tell How can do it in my Debian that it was just installed.
Salu2!
|
|
|
02-22-2005, 01:33 AM
|
#6
|
Senior Member
Registered: Jan 2003
Location: Devon, UK
Distribution: Debian Etc/kernel 2.6.18-4K7
Posts: 2,380
Rep:
|
Do apt-cache search kernel-image and this will list the available kernels. Make a note of the details of the one you want and then do apt-get install kernel-image-the_one_you_want and it will download and install. You will be taken through the hardware support modules that you saw when you first installed. At the end it will want to either update grub or install lilo. Reboot into your new kernel. If you have a problem with the kernel booting you can reboot with your original cd.
|
|
|
02-22-2005, 08:07 PM
|
#7
|
Member
Registered: Feb 2005
Distribution: debian
Posts: 75
Original Poster
Rep:
|
Uff! there are lot of kernel-images. What do I have to use?
I have a ""AMD Athlon(tm) XP 1900+"
Salu2!
|
|
|
02-23-2005, 01:22 AM
|
#8
|
Senior Member
Registered: Jan 2003
Location: Devon, UK
Distribution: Debian Etc/kernel 2.6.18-4K7
Posts: 2,380
Rep:
|
Look for the kernel images ending with k7.
|
|
|
02-28-2005, 12:01 PM
|
#9
|
Member
Registered: Feb 2005
Distribution: debian
Posts: 75
Original Poster
Rep:
|
Ok, but I want to go more forward
Could you ponit me any reference how to compile my own kernel.
Salu2!
|
|
|
02-28-2005, 12:17 PM
|
#10
|
Member
Registered: Jan 2005
Location: Between the chair and the desk
Distribution: Debian Sarge, kernel 2.6.13
Posts: 666
Rep:
|
|
|
|
02-28-2005, 12:23 PM
|
#11
|
Senior Member
Registered: Jan 2003
Location: Devon, UK
Distribution: Debian Etc/kernel 2.6.18-4K7
Posts: 2,380
Rep:
|
Here is the first on kernels ;
http://newbiedoc.sourceforge.net/tut...ernel-pkg.html
I strongly advise using Debian kernel source and not a standard kernel source because they have been modded for the Debian compile process. Every time I have used a standard source file it has failed.
the second reference is on make kpkg because you are also wise t create your own header files for use with other packages.;
http://www.fifi.org/cgi-bin/man2html...make-kpkg.1.gz
|
|
|
02-28-2005, 05:39 PM
|
#12
|
Member
Registered: Feb 2005
Distribution: debian
Posts: 75
Original Poster
Rep:
|
Guys,
I am compiling my first kernel (the 2.6.8 kernel verion source)
I just installed libqt-dev through "apt-get install libqt-dev" and I ran "make xconfig" but I have the following error at the end of the output. Could you help me out!?
scripts/kconfig/qconf.o(.gnu.linkonce.r._ZTI6QGList+0x8): undefined reference to `typeinfo for QCollection'
scripts/kconfig/qconf.o(.gnu.linkonce.r._ZTI10ConfigView+0x8): undefined reference to `typeinfo for QVBox'
scripts/kconfig/qconf.o(.gnu.linkonce.r._ZTI10ConfigList+0x8): undefined reference to `typeinfo for QListView'
scripts/kconfig/qconf.o(.gnu.linkonce.r._ZTI10ConfigItem+0x8): undefined reference to `typeinfo for QListViewItem'
scripts/kconfig/qconf.o(.gnu.linkonce.r._ZTI14ConfigLineEdit+0x8): undefined reference to `typeinfo for QLineEdit'
scripts/kconfig/qconf.o(.gnu.linkonce.r._ZTI16ConfigMainWindow+0x8): undefined reference to `typeinfo for QMainWindow'
collect2: ld returned 1 exit status
make[1]: *** [scripts/kconfig/qconf] Error 1
make: *** [xconfig] Error 2
here you have other info
Linux kanitro 2.2.20-idepci #1 Sat Apr 20 12:45:19 EST 2002 i686 GNU/Linux
Gnu C 3.3.5
Gnu make 3.80
binutils 2.15
util-linux 2.12
mount 2.12
module-init-tools 3.2-pre1
e2fsprogs 1.35
nfs-utils 1.0.6
Linux C Library 2.3.2
Dynamic linker (ldd) 2.3.2
Procps 3.2.1
Net-tools 1.60
Console-tools 0.2.3
Sh-utils 5.2.1
Modules Loaded nls_cp437 ntfs 8139too af_packet
Salu2!
|
|
|
03-01-2005, 04:44 AM
|
#13
|
Member
Registered: Nov 2003
Location: Netherlands
Distribution: Debian Unstable
Posts: 61
Rep:
|
make menuconfig
Hi, I ran across a similar issue when recompiling a kernel, and too be honest I gave up recompiling under X, I now open up a console and hit: make menuconfig. I know it is not a proper solution to your issues but at least it should allow you to compile. and also make sure you have the proper packages installed for compiling a kernel, which ones? Do a search on google, or otherwise have a look at the very verbose guide into compiling a kernel the debian way (or so...) Goodluck!
|
|
|
All times are GMT -5. The time now is 06:17 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|