LinuxQuestions.org
Help answer threads with 0 replies.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 07-18-2009, 10:08 PM   #1
SaintDanBert
Senior Member
 
Registered: Jan 2009
Location: "North Shore" Louisiana USA
Distribution: Mint-20.1 with Cinnamon
Posts: 1,735
Blog Entries: 3

Rep: Reputation: 107Reputation: 107
Confused about "generic" vs. "386" linux kernel


After recent updates, I have several copies of the vmlinuz... file in my /boot folder. Each file name includes a version identifies with either "-386" or "-generic". What is the difference between these kernels and do I need both?

My workstation is an Intel Core-2 Duo processor.
Some kernels do not enable the 2nd CPU at boot
-- I don't remember which. Can someone direct me to where I can learn about this?

I've tried reading the linux kernel HOWTO but only got more confused.
 
Old 07-18-2009, 11:00 PM   #2
AlucardZero
Senior Member
 
Registered: May 2006
Location: USA
Distribution: Debian
Posts: 4,824

Rep: Reputation: 615Reputation: 615Reputation: 615Reputation: 615Reputation: 615Reputation: 615
One is specialized for 386-based computers and one is more.. generic. The Linux kernel can run on many different architectures (x86 (386, 486, 686, k7..), x86_64, PowerPC, ...) but you don't need the code to run any other architecture than the one you have. The indicators usually correspond to the type of CPU you have.
Quote:
My workstation is an Intel Core-2 Duo processor.
You have an Intel x86 processor that is newer than a Pentium II. Ubuntu? Get a -686 kernel for slightly better results. -386 (or -486) also work but will be slightly slower.

SMP (symmetric multiprocessing) is needed to use more than one core. xref Wikipedia
 
Old 07-19-2009, 09:43 PM   #3
SaintDanBert
Senior Member
 
Registered: Jan 2009
Location: "North Shore" Louisiana USA
Distribution: Mint-20.1 with Cinnamon
Posts: 1,735

Original Poster
Blog Entries: 3

Rep: Reputation: 107Reputation: 107
Quote:
Originally Posted by AlucardZero View Post
One is specialized for 386-based computers and one is more.. generic.
...
SMP (symmetric multiprocessing) is needed to use more than one core. xref Wikipedia
The command "uname --processor" and "uname --hardware-platform" both report UNKNOWN.
While "uname --machine" reports i686, and
"uname --kernel-version" reports "#1 SMP PREEMPT" and a date. It looks like SMP is in there somewhere.

The -386 and -generic files appeared following synaptic update runs. If I use any of them, some of my laptop features do not work. Does this mean that I need to gen my own kernel? If so, how do I know which parts I already have enabled in the running+working kernel so that I can generate an up-to-date kernel that runs and works?
 
Old 07-20-2009, 12:53 AM   #4
chrism01
LQ Guru
 
Registered: Aug 2004
Location: Sydney
Distribution: Centos 7.7 (?), Centos 8.1
Posts: 18,175

Rep: Reputation: 2683Reputation: 2683Reputation: 2683Reputation: 2683Reputation: 2683Reputation: 2683Reputation: 2683Reputation: 2683Reputation: 2683Reputation: 2683Reputation: 2683
Try uname -a

also

sysctl -a

to check kernel settings.
You'll prob need to be root.
 
Old 07-20-2009, 06:30 AM   #5
AlucardZero
Senior Member
 
Registered: May 2006
Location: USA
Distribution: Debian
Posts: 4,824

Rep: Reputation: 615Reputation: 615Reputation: 615Reputation: 615Reputation: 615Reputation: 615
You have an Intel Core-2 Duo? -386 should be fine. I don't see a -686 and I don't normally use Ubuntu.
 
Old 09-29-2009, 11:12 PM   #6
SaintDanBert
Senior Member
 
Registered: Jan 2009
Location: "North Shore" Louisiana USA
Distribution: Mint-20.1 with Cinnamon
Posts: 1,735

Original Poster
Blog Entries: 3

Rep: Reputation: 107Reputation: 107
Quote:
Originally Posted by AlucardZero View Post
...
-386 should be fine.
...
The latest update delivered a kernel. How do I discover the value of the various kernel-config settings? Is the config file available somewhere? Are the settings readable in /proc or /sys or similar?

Given kernel edition nn.nnn.nnn-nn, can I take a kernel-config file and build a new-and-improved kernel with the same configuration settings?

~~~ 0;-Dan
 
Old 09-29-2009, 11:51 PM   #7
i92guboj
Gentoo support team
 
Registered: May 2008
Location: Lucena, Córdoba (Spain)
Distribution: Gentoo
Posts: 4,083

Rep: Reputation: 404Reputation: 404Reputation: 404Reputation: 404Reputation: 404
Quote:
Originally Posted by AlucardZero View Post
One is specialized for 386-based computers and one is more.. generic.
Hardly, considering that the 386 is the absolute minimum to run linux, and that all the x86 cpu's above that are compatible with the original 386 instructions set. There's nothing more generic than the 386 if we are talking about pc architecture, and anything compiled for an i386 will work on any cpu above that, including 686 or even greater without the need to do anything special at compilation time

However, note that nowadays, a lot of people use 386 when they really mean x86, or any other thing. There are lot of names containing "386" when they really mean anything else above that. So that's not reliable. I don't know about the Ubuntu policies though.

Quote:
Originally Posted by SaintDanBert View Post
The latest update delivered a kernel. How do I discover the value of the various kernel-config settings? Is the config file available somewhere? Are the settings readable in /proc or /sys or similar?
If whomever compiled the kernel had a brain, you can read the configuration used to compile the kernel that's currently running from /proc/config.gz. If not, you still have a chance to get it from /boot/, some packagers put there the config files, which usually will be called something like /boot/config-<version number/label>. If they are there you should be able to figure which config file matches a given kernel.

Quote:
Given kernel edition nn.nnn.nnn-nn, can I take a kernel-config file and build a new-and-improved kernel with the same configuration settings?
If you have the config file for a kernel, you can use it as a base to compile your own kernel (for the same or other version). However, the more the versions differ the more probably it is that you will have to do some thinking and get your hands dirtier. For example, imagine you want to use the configuration file of the currently running kernel to compile the latest 2.6.31.1 linux kernel, you would do something like this:

Code:
$ cd ~
$ mkdir linux
$ cd linux
$ wget http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.31.1.tar.bz2
$ tar xf linux-2.6.31.1
$ cd linux-2.6.31.1 # or whatever it's called, use ls
$ zcat /proc/config.gz > .config # in this step you dump the config of the running kernel into the new one
$ make oldconfig
This step might ask you some questions that you will have to answer to create a configution that works on the current kernel, there are always new things on every release, other change, some goes away and others are located on a different place.

After that, you can use "make menuconfig" if you want to check or fine tune something. And then just compile and install as you wish. I use "make && make install modules_install". After that you need to set up your boot manager to include the new kernel.

That's the general picture.

Last edited by i92guboj; 09-29-2009 at 11:54 PM.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
net working eth0 eth1 wlan0 "no connection" "no LAN" "no wi-fi" Cayitano Linux - Newbie 5 12-09-2007 07:11 PM
Standard commands give "-bash: open: command not found" even in "su -" and "su root" mibo12 Linux - General 4 11-11-2007 10:18 PM
What does "Directory "/usr/src/linux" doesn't appear to contain kernel source." mean? jtp51 Linux - General 4 06-11-2007 12:22 AM
LXer: Displaying "MyComputer", "Trash", "Network Servers" Icons On A GNOME Desktop LXer Syndicated Linux News 0 04-02-2007 08:31 AM
Please explain "386" vs. "686" versions vinoloco Linux - Newbie 4 04-05-2005 07:03 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 07:48 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration