Questions tagged [kernel]

In computing, the kernel is the main component of most computer operating systems; it is a bridge between applications and the actual data processing done at the hardware level. The kernel's responsibilities include managing the system's resources (the communication between hardware and software components).

In computing, the kernel is the main component of most computer operating systems; it is a bridge between applications and the actual data processing done at the hardware level. The kernel's responsibilities include managing the system's resources (the communication between hardware and software components).

Usually as a basic component of an operating system, a kernel can provide the lowest-level abstraction layer for the resources (especially processors and I/O devices) that application software must control to perform its function. It typically makes these facilities available to application processes through inter-process communication mechanisms and system calls.

Operating system tasks are done differently by different kernels, depending on their design and implementation. While monolithic kernels execute all the operating system code in the same address space to increase the performance of the system, microkernels run most of the operating system services in user space as servers, aiming to improve maintainability and modularity of the operating system.

Source: wikipedia

839 questions
0
votes
1 answer

How to avoid "KERN_WARNING" messages from console during boot time

There are several kernel messages printed to the console during boot time. I do not want the messages with loglevel "KERN_WARNING" to printed to the console. I only want the loglevels above "KERN_WARNING" like "KERN_ERR" to be printed to the console…
LinuxPenseur
  • 443
  • 1
  • 6
  • 16
0
votes
1 answer

iptables v1.4.10: can't initialize iptables table `NAT': Table does not exist

xxx:~# iptables -t NAT -A PREROUTING -d xxx.xxx.xxx.xxx -j DNAT --to-destination 10.0.1.2 WARNING: All config files need .conf: /etc/modprobe.d/bad_list, it will be ignored in a future release. WARNING: All config files need .conf:…
artem
  • 596
  • 2
  • 10
  • 28
0
votes
1 answer

Xen Kernel on Debian Squeeze making 1GB memory 'absent'

Possible Duplicate: Fresh Debian Squeeze (6) Installation - Very High Ram Usage We have a Dell Poweredge R210 server with 8GB of installed RAM. This is a fresh install of Debian Squeeze, with pretty much only build-essentials and Xen 4.0.1…
James
  • 121
  • 6
0
votes
1 answer

Do I need to provide 3 or 4 numbers for mkinitrd as kernel version?

Suppose the kernel is 2.6.32.9: mkinitrd /boot/initrd_2.6.32.9.img 2.6.32.9 Or mkinitrd /boot/initrd_2.6.32.img 2.6.32 Which one?
yum
  • 569
  • 5
  • 9
  • 17
0
votes
5 answers

Server hang on CentOS 5.5

I'm running CentOS 5.5 on a server. It runs several VMware virtual machines and an NFS server. Occasionally, like today, it hangs. There's nothing in /var/log/messages that indicates any problem. (I did notice that /var/log/messages is not in…
Michael Eager
  • 121
  • 1
  • 4
0
votes
1 answer

SYN flooding, kernel error

My server (http://monitor.wingify.com/munin/visualwebsiteoptimizer.com/app.visualwebsiteoptimizer.com.html) recently had an outrage. One of the suspecious things I found was loads of SYN flooding messages in /var/log/messages Feb 8 15:17:34 app…
Sparsh Gupta
  • 1,127
  • 7
  • 21
  • 31
0
votes
4 answers

Kernel config file generator

could please anybody recommend some kind of kconfig generator that would trim modules and built-in stuff that is not needed according to current hardware ? The best I have found is this : http://lkml.org/lkml/2008/9/16/290 I don't care about…
lisak
  • 667
  • 2
  • 7
  • 19
0
votes
4 answers

ps aux as non-root doesn't show all processes

i'm using an ubuntu 10.04 server... when i run ps aux as root i see all processes when i run ps aux as nonroot i see JUST the processes of the current user after a bit of research i found the following solution: root@m85:~# ls -al /proc/ total…
JMW
  • 9
  • 2
0
votes
1 answer

Is it possible to install a new Kernel on an OS I can't boot into?

I just installed Debian onto an SD card via my laptop. I have now moved that SD card to my server and tried to boot from it. The error it's giving me is: This kernel requires the following features not present on this CPU: cmov Unable to boot -…
micsd
  • 1
0
votes
2 answers

Can't Find Ubuntu Kernel Configuration

Everyone says the original configuration for your kernel should be in /boot/config-uname -r but the only thing I see is memtest86+.bin. Any suggestions? I'm using Ubuntu 10.10 and kernel 2.6.32.16-linode28. Thanks in advance!
Benny
  • 371
  • 1
  • 4
  • 12
0
votes
2 answers

Is it necessary to update kernel & what is the advantage ?

On my server, the kernel version is 2.6.18-164 but there is a new kernel version (2.6.18-194) available, Is it necessary to update the kernel and what is the benefit ?
0
votes
2 answers

Kernel Panic - not syncing: attempted to kill init (for VM image from a physical machine)

I had a CentOS 5.4 x86_64 machine where I imaged the primary partition with the following command so that I could run it in a VM on my local machine for testing. #dd bs=1024 count=10482412 if/dev/sda of/mnt/storage/sda.img Then I converted the…
Bill D
  • 3
  • 1
  • 3
0
votes
1 answer

Fedora 13 post kernel/security update boot problem

About a month ago I installed a security update that had new Kernek 2.6.34.x from 2.6.33.x) on Fedora 13, this is when the problem occurred for the first time. After the install computer would not boot at all, black screen without any visible hard…
Alex
  • 123
  • 4
0
votes
1 answer

Why do we need a compiled kernel source tree for compiling modules?

Linux kernel modules don't seem to be portable: they are compiled for a specific version of the kernel (that's why even binary drivers have some source files to be compiled). And you don't just need exactly the same kernel sources, you even need to…
Latanius
  • 123
  • 4
0
votes
2 answers

Kernel compilation options on gentoo with genkernel

I use genkernel to compile kernel on gentoo. How do I choose kernel configuration. Gentoo Handbook http://www.gentoo.org/doc/en/genkernel.xml says: Device Drivers ---> Networking Support ---> Ethernet (10 or 100Mbit) ---> …
Alex
  • 2,357
  • 5
  • 32
  • 41