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
0 answers

How will updating kernel affect everything else?

I'm new to Linux and I'd like to try to upgrade kernel on my little NAS, but I don't really know how it will affect installed packages and user files, and do I really need to upgrade it? Plus the system has armhf architecture, will there be any…
Artyom Tsoy
  • 101
  • 1
0
votes
1 answer

Upgrading Linux kernel module without reboot

Is there any way to upgrade linux driver module without rebooting the system ?
sunny
  • 9
  • 2
0
votes
3 answers

Can you use CGroups inside an OpenVZ Container?

just a quick question, which i have had trouble finding the answer to: The OpenVZ Authors have been contributing a large amount of code to the linux kernel, in order to get virtualization features directly inside your operating system. One example…
RapidWebs
  • 571
  • 4
  • 13
0
votes
1 answer

compiling 64 bit linux kernel with gcc

While trying to compile a 64 bit Linux kernel using GCC, I see the following error: kernel/bounds.c:1: error: code model ‘kernel’ not supported in the 32 bit mode kernel/bounds.c:1: sorry, unimplemented: 64-bit mode not compiled in This is what…
vivekian2
  • 538
  • 3
  • 8
  • 13
0
votes
1 answer

FTP server suddenly down

Suddenly I can not use anymore my FTP server and I get via ssh the following kernel report. I'm running on Debian 7.0 with ISPconfig3 kernel:[801112.466009] nf_ct_ftp: dropping packetIN= OUT=venet0 SRC=85.214.245... DST=86.56.52.... LEN=77 TOS=0x10…
fefe
  • 357
  • 1
  • 8
  • 18
0
votes
1 answer

Healthy Linux machine immediately went down

This is the last log entry in /var/log/messages and after this the machine has been stopped. How can I debug why the machine has been stopped? I am not sure but maybe the system stops comes from the foreign attack because there was a lot of…
ibedelovski
  • 513
  • 4
  • 9
  • 20
0
votes
1 answer

Initrd and Initramfs

I have read about the differences between the two from stackoverflow. But I am still finding it difficult to understand tmpfs and the real advantages of initramfs over initrd. I find that on RedHat EL 5 or Ubuntu 12.04, I have only initrd files in…
nitins
  • 2,579
  • 15
  • 44
  • 68
0
votes
2 answers

FreeBSD Established Connections Maxing out at 300

We've previously had issues in our environment where it seemed we were reaching FreeBSDs max connection limit. We took action demonstrated by http://nginx.org/en/docs/freebsd_tuning.html and bumped up our connections limit to 500:…
0
votes
1 answer

Error during the kernel booting

After kernel update I've got a problem with booting linux, does anyone know how to fix this problem ?? I am pretty sure that everything was OK during kernel compilation. Here is a picture with the error :
0
votes
1 answer

Kernel Upgrade with grsecurity - Debian

I would like to upgrade kernel on my server from version 2.6.32 to the newest with Grsecurity. But after restarting the server there is still old version of kernel, can you tell me what I have done wrong. I will just briefly explain what I done, so…
0
votes
0 answers

Server crash : "unable to handle kernel paging request"

My fresh new Ubuntu webserver randomly crashes with the following error in the syslog. It doesn't respond anymore and I have to do a hard reboot. It happens almost one time a day. Server kernel is : Linux 3.10.23-xxxx-std-ipv6-64 #1 SMP Mon Dec 9…
Antares
  • 191
  • 1
  • 2
  • 14
0
votes
1 answer

Ubuntu 13.10 server has no kernels

Something has gone wrong and now we no longer have a Linux kernel (not even recovery mode) installed. GRUB is still there, but it runs the memory test. How can I fix this? Everything I've looked at applies to 2010 or something silly.
James
  • 139
  • 1
  • 10
0
votes
1 answer

packaging current linux kernel as a rpm

I have just built a custom kernel from source (obtained from kernel.org). I can boot from it fine on my local box. I now want to make it easy for a colleague to try this kernel out. Is there an easy way to create a rpm that he can install? The…
MK.
  • 305
  • 1
  • 3
  • 6
0
votes
0 answers

Java causing kernel panic

I'm running quite a lot of computations on Ubuntu 12.04 (3.8.0-35-generic), application is written in Java (Oracle 1.7.0_45-b18) on a server which has 12 AMD cores. Typically the computations uses 10 threads, sometimes the load average in htop looks…
Tombart
  • 2,143
  • 3
  • 27
  • 48
0
votes
1 answer

Does EC2 need Xen kernel?

I am on to creating a new AMI image for CentOS 6.4. Until now I was on CentOS 5.6. I started with the CentOS market place image, and what I noticed is that it is running a regular kernel and not xen kernel, unlike my CentOS 5.6 image. I am trying to…