March 29, 2024, 01:44:33 PM

News : LinuxSolved.com Linux Help Community Forum..


Author Topic: KERNEL QUESTION SETTING?  (Read 6323 times)

Offline radhika789

  • Linux Noob !
  • *
  • Posts: 9
KERNEL QUESTION SETTING?
« 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?


Offline radhika789

  • Linux Noob !
  • *
  • Posts: 9
KERNEL QUESTION SETTING?
« Reply #1 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?


Offline dragoncity99

  • LST CareTaker
  • Experienced
  • *****
  • Posts: 551
Re: KERNEL QUESTION SETTING?
« Reply #2 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 ?

Offline Ricky

  • LST CareTaker
  • Specially Skilled
  • *****
  • Posts: 2381
Re: KERNEL QUESTION SETTING?
« Reply #3 on: August 09, 2009, 12:00:55 PM »
Or simply you want to know how to install / configure / recompile Kernel ?

Offline arvindsony

  • Linux Noob !
  • *
  • Posts: 6
Re: KERNEL QUESTION SETTING?
« Reply #4 on: August 09, 2009, 03:59:38 PM »
any kernal tut....

Offline Ricky

  • LST CareTaker
  • Specially Skilled
  • *****
  • Posts: 2381
Re: KERNEL QUESTION SETTING?
« Reply #5 on: August 11, 2009, 10:04:12 AM »
???

Offline dragoncity99

  • LST CareTaker
  • Experienced
  • *****
  • Posts: 551
Re: KERNEL QUESTION SETTING?
« Reply #6 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.