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

View Windows XP kernel nonpaged pool usage

Is there any sort of tool (either 3rd party or internal to Windows) to view what processes, handles, etc. are using what amount (absolute or percentage) of the kernel nonpaged memory pool in Windows XP SP3?
russcollier
  • 203
  • 2
  • 10
0
votes
3 answers

No Grub on VPS?

I bought a new VPS running CentOS 5.5, and I'm trying to upgrade my kernel. I've downloaded, compiled and installed it sucessfully, and now I need to set it up in the grub settings. But there's no grub directory in /boot. Where is, then, the…
Alon Gubkin
  • 666
  • 3
  • 7
  • 12
0
votes
2 answers

sendmail segmentation fault

We are using debian lenny on a server & we are using it for monitoring server & sending email for reporting. We are using sendmail to send emails. We found the following error when we did not receive mail. Error :- debian kernel: [3029475.124022]…
Caterpillar
  • 1,132
  • 2
  • 23
  • 47
0
votes
1 answer

Installing Linux kernel 2.6.25.14 on RHEL 5.4

I have to install Linux kernel version 2.5.25.14 on a RHEL 5.4 server because of drive compatibility issues. I follow the RedHat "Building a Custom Kernel" instructions running the following: $ make mrproper $ make xconfig $ make clean $ make…
aaron
  • 741
  • 3
  • 10
  • 19
0
votes
2 answers

lack of update in xen kernel has any relation to guest operating systems?

due to these two problems I've coped not able to install g++ and gcc on debian also there is another link but due to my low reputation I couldn't put it through. I just wondering whether the hosted operating system (XEN) has any relation to its…
Vahid Hashemi
  • 207
  • 2
  • 11
0
votes
1 answer

Changing MAC address on the Fly on old kernel 2.6.x

I'm doing some research on old kernels and running the following on 2.6.7 or 2.6.8 gives a resource busy error. But on 2.6.28 the command works as expected. How would I determine which kernel allowed this command to change the mac address on the…
shaiss
  • 337
  • 2
  • 6
  • 20
0
votes
4 answers

How to know when the kernel was last compiled?

I have installed a linux distro and I "think" it is vulnerable to kernel exploits. I have to update kernel but I need to know if it is really compiled in year 2003? How can I know if additional updates are made to the kernel? Linux gandalf…
Mehmet Tuncal
0
votes
1 answer

FreeBSD 8 Kernel Configuration Error Using the VESA Option

I'm trying to reconfigure FreeBSD 8 (amd64) to allow for a high resolution terminal by following these instructions. The problem is that when I add the two lines: options VESA options SC_PIXEL_MODE and try to build: make buildkernel…
gvkv
  • 293
  • 3
  • 14
0
votes
0 answers

Automatic TCP SYN - cookie activation

I am simulating a SYN flood attack on a Raspberry Pi 1 with KALI Linux (ARM) installed. A similar message as mentioned in this post was printed after performing the attack: How to avoid syn cookies. kernel: possible SYN flooding on port X. Sending…
Gerry
  • 1
  • 1
0
votes
0 answers

EXT4-fs error (device md0) in ext4_free_inode:357: Filesystem failed CRC

After setting up Raid1 Mirror on DNS server, now I am planning to go for a Debian upgrade from 10 to 11. I was able to update the source.list file and perform apt update but when i do apt full-upgrade it fails and when I checked the syslog it shows…
0
votes
1 answer

Why MACsec can not reach more than 2Gbits/s?

i am configuring macsec and i have discovered that, when using this protocol to send/received data, the bitrate is so low. I am using it over a 10Gb network adaptor, using iperf3 it almost reach that value but when using MACsec over that interface,…
0
votes
0 answers

production kafka clusters + How to optimize Page Cache

one of the importance things in Kafka production cluster is the page cache here is a good explains what is page cache PageCache is a typical read/write cache. The operating system uses the free physical memory to cache files. This cache is called…
King David
  • 549
  • 6
  • 20
0
votes
0 answers

ZFS I/O Error, Kernel Panic during import

I'm running a raidz1-0 (RAID5) setup with 4 data 2TB SSDs. During midnight, somehow 2 of my data disks experience some I/O error (from /var/log/messages). When I investigated in the morning, the zpool status shows the following : state:…
0
votes
0 answers

Number of receiving queues is double the number of cores of my server?

I'm using Mellanox ConnectX-5 100 GB NIC, Linux kernel 5.15 and my server has 32 cores (SMT disabled). But in the /sys/net//queues, the number of rx queues is 64, which is double the number of cores of my server? How to fix it
0
votes
1 answer

Can we use fdisk to partition a disk bigger than 2 TB without recompiling the kernel?

Here is my problem. Our operating system is Debian 11. The main hard disk is doing fine. I have a 6TB external volume. If I choose to use parted to format this disk it will entail recompiling the Debian 11 kernel with CONFIG_EFI_PARTITION enabled as…