.config for a minimal kernel


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users .config for a minimal kernel
# 1  
Old 03-03-2012
.config for a minimal kernel

I need to install minimal kernel. the machine cpu is intel, it should support usb and wireless. and.. nothing else. The system is set up to run qt programs.
Can anyone having the same experience send me the .config file please.
# 2  
Old 03-03-2012
A minimal kernel for me will not be a minimal kernel for you. There are dozens of wireless drivers, network drivers, hard disk drivers, graphic drivers, interface drivers, protocol drivers... Enabling them all will not be minimal.

Tick off the options that apply to your system in make menuconfig. View the help options (? key) for anything you don't immediately understand. Lots of things you need will be ticked off already; a lot of what you do will be removing what you don't. If it doesn't work, google the error and find out why. Never build disk drivers as modules, since you can't load your disk driver from disk. Your SATA probably uses the AHCI driver but don't take my word for it. I hate to suggest trial and error but your first time building a kernel will have to be spent getting used to the idea of checking what you need.

Last edited by Corona688; 03-03-2012 at 02:25 PM..
This User Gave Thanks to Corona688 For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. Linux

Linux Kernel Config Scopes within VM or Hypervisor

In production we're going to deploy a redis server and need to set the overcommit_memory and disable Transparent Huge Pages in Kernel. The issue is currently we only have one giant server, and it is to be shared by many other apps. We only want those kernel configs in the redis server. I wonder... (0 Replies)
Discussion started by: freedombird9
0 Replies

2. Shell Programming and Scripting

perl: How to improve with minimal validation of its input??

The Code: #!/usr/bin/perl use strict; use warnings; print "Please enter numbers, separated by commas: "; my $data=<STDIN>; chomp $data; my @dataset=split(/,/, $data); my $sum = 0; foreach my $num (@dataset) { $sum += $num; } my $total_nums = scalar(@dataset); my $mean =... (1 Reply)
Discussion started by: 300zxmuro
1 Replies

3. Shell Programming and Scripting

Processing result file based on a minimal value

After the great awk solution to my last problem (that saved me days of work) I thought I would try again. I now have a result file that consists of two identifier columns and then columns of data for each sample, with tabs as delimiters (note the sample number can vary depending on the... (8 Replies)
Discussion started by: fozrun
8 Replies

4. Solaris

Minimal Solaris machine

I have installed Solaris 11 Express on my machine and created a raidz2 zpool. Now I want to backup the pool using snapshots. 1. I am thinking about sending the snapshots using SSH to another mini solaris machine and am wondering which one to buy. The purpose of the target machine would be... (3 Replies)
Discussion started by: RychnD
3 Replies

5. Solaris

Solaris Newbie - I just want a minimal install

I'm coming from BSD/Linux where I went from having to install gnome to now running *nix boxes with just the CLI. I love it but now I want to try my hand at solaris. I'm installing solaris 10 in a VM but I am kinda shocked at the install size. I would do the "core" option but I dont know if I'll... (2 Replies)
Discussion started by: sdotsen
2 Replies

6. AIX

Network minimal configuration and startup

Hi, I have a LPAR running AIX 5.3 with multiple Etherchannels running (e.g. ent10-ent14 etc). The person who configured up the interfaces set more that one interface through minimal config and startup under smitty->tcpip When I try and clear out the IP address for one of the additional... (1 Reply)
Discussion started by: backslash
1 Replies
Login or Register to Ask a Question