Linux Forums - Linux Help,Advice & support community:LinuxSolved.com

Linux in General => Linux Kernel => Topic started by: radhika789 on August 08, 2009, 02:53:40 PM

Title: KERNEL QUESTION SETTING?
Post by: radhika789 on August 08, 2009, 02:53:40 PM
HOW TO SET THE KERNEL?

WHERE DO YOU SET THE KERNEL?

HOW KERNEL INTERACTS WHEN A COMMAND IS FIRED?

Title: KERNEL QUESTION SETTING?
Post by: radhika789 on August 08, 2009, 02:53:44 PM
HOW TO SET THE KERNEL?

WHERE DO YOU SET THE KERNEL?

HOW KERNEL INTERACTS WHEN A COMMAND IS FIRED?

Title: Re: KERNEL QUESTION SETTING?
Post by: dragoncity99 on August 08, 2009, 03:43:45 PM
Hmmm....some rather strange question...

Do you mean you want to switch a particular kernel version with your own compiled  ones or do you mean tuning the kernel parameters ?


Linux kernel, helps to detect hardware (disk, cpu, memory, printers, keyboards, monitors) and interface with usesr via your commands such as ls, df, fdisk, free, lpr and so on. Is that what you are asking ?
Title: Re: KERNEL QUESTION SETTING?
Post by: Ricky on August 09, 2009, 12:00:55 PM
Or simply you want to know how to install / configure / recompile Kernel ?
Title: Re: KERNEL QUESTION SETTING?
Post by: arvindsony on August 09, 2009, 03:59:38 PM
any kernal tut....
Title: Re: KERNEL QUESTION SETTING?
Post by: Ricky on August 11, 2009, 10:04:12 AM
???
Title: Re: KERNEL QUESTION SETTING?
Post by: dragoncity99 on October 29, 2009, 01:01:24 PM
HOW TO SET THE KERNEL?
--> Kernel tuning parameters can be done via /etc/sysctl.conf. If you are a newbie, better not play with this unless you know what it's going to do to your OS.

WHERE DO YOU SET THE KERNEL?
/etc/sysctl.conf

HOW KERNEL INTERACTS WHEN A COMMAND IS FIRED?
Kernel is the layer where it talks to your hardware. So for example when you fire an "ls" command. The output will be the files and directories of your current working directory.

So here's what it does:
1. Ls command will tell the kernel i need output of current directory. Kernel is always accepting input from keyboard by talking to your keyboard
2. Kernel will call the filesystem codes to find the info in the harddisk.
3. Filesystem fetch back info to kernel and display to the user on monitor by talking to the monitor.