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

Saving contents of /proc/net

I'm trying to archive files from /proc/net when a process crashes. This is to aid in debugging, to get understanding about the machine status when crash happened. The contents are not regular files, but interface to internal data structures in the…
m.divya.mohan
  • 333
  • 1
  • 6
0
votes
1 answer

kernel messages are complained about memory.inspite all DIMM cards was replaced

we have few DELL machines ( with RHEL 7.6) , and as we replaced the DIMM cards on machines because the Erros that we seen from kernel messages after some time we checked again the kernel messages and we found the following and we can see the errors…
King David
  • 549
  • 6
  • 20
0
votes
0 answers

May I ask during runtime how to check the some kernel command line parameters which not set in the grub but have a default value?

I notice there are some kernel command line parameters like below, which from Manual: audit= [KNL] Enable the audit sub-system Format: { "0" | "1" | "off" | "on" } 0 | off - kernel…
0
votes
0 answers

SLURM / NFS based computing cluster with disk uniterruptible sleep issues (state : D)

Context : We have a computing cluster based on 7 servers, running Debian 11: a storage (HDD NAS, ~500TB, RAID5, LVM) a frontal server, running SLURM, nfs-common 5 nodes on which the storage is mounted through NFS. When business users run SLURM…
0
votes
0 answers

cat /proc/pid/cmdline hangs (no cgroups, no nfs or network fs, no memory issues)

We are a bit stumped. Once in a while ps/w hang forever (at least an hour) on our server, and it is on reading /proc/pid/cmdline for a process (happend twice today, verified with strace cat directly on cmdline). Only things that fixes it is a kill…
Ariel E
  • 1
  • 1
0
votes
1 answer

Why do some servers have /etc/sysconfig/kernel and others do not?

I spent some time looking into this and couldn't figure out why there are servers with and without /etc/sysconfig/kernel. What's particularly interesting is that we have some servers with the same underlying architecture (kernel and OS) that have…
hfranco
  • 585
  • 2
  • 9
  • 25
0
votes
1 answer

Clear RAM Memory Cache and buffer on production Hadoop cluster with HDFS filesystem

we have Hadoop cluster with 265 Linux RHEL machines. from total 265 machines, we have 230 data nodes machines with HDFS filesystem. total memory on each data-node is 128G and we run many spark applications on these machines. last month we added…
King David
  • 549
  • 6
  • 20
0
votes
1 answer

Linux server loses network connectivity after an OOM event

We have a server runnnig Linux 5.15 and we've had multiple verified situations where a process is killed by OOM and that leaves the whole system inaccessible on the network, both for inbound and outbound traffic. This is a recent syslog trail for…
0
votes
1 answer

kernel message + how to know if we need to replace the DIMM based on kernel messages

we have RHEL 7.6 server , and we noticed about the following kernel messages. [1065085.048872] EDAC sbridge MC0: PROCESSOR 0:406f1 TIME 1676989040 SOCKET 0 APIC 0 [1065086.052107] EDAC MC1: 0 CE memory read error on CPU_SrcID#1_Ha#0_Chan#0_DIMM#0…
King David
  • 549
  • 6
  • 20
0
votes
0 answers

Issue with i9-10900TE while activating PAE on linux kernel 5.15.x

I've to compile a linux 32b kernel 5.15.86 RT56 for running on 2 different computers with Intel CPUs : one with an i7-9700TE and 32Gb RAM, and the other one using an i9-10900TE with 64 Gb RAM. I need to activate the support of 64Gb of RAM…
0
votes
0 answers

Reusing Virtual Network Devices across different customers

I am trying to reuse virtual networks(made of virtual linux network devices) across customers. I am facing issue where we are not able to find if there is any network packet from previous customer is stuck in any of virtual network devices queue or…
0
votes
1 answer

Is the outgoing connection from a OpenVPN client to a LAN behind an OpenVPN server forwarded by the server kernel?

I've observed a somewhat strange behavior that I can't quite understand. So I set up an OpenVPN connection as shown in the graphic below. (It's a TUN and client-to-client setup). My thoughts are directed towards the route of ping in this…
Koala
  • 3
  • 2
0
votes
0 answers

How can I find the full list of acceptable `boot=` option of kernel?

I usually see options like boot=casper or boot=live. However, I cannot find anything describe the actual meaning of this option and I cannot find any piece of code handle this option at all. From kernel documents it said: Parameters denoted with…
Wang
  • 292
  • 1
  • 2
  • 11
0
votes
1 answer

How can I update php 8 on a linux server without internet access?

Operating System: Redhat 8.4 Internet access : no access to redhat server : ssl vpn Current php version : 7.4 Purpose: Make php version 8 How can I do that ?
0
votes
1 answer

dmesg tells 1G out of 128G available?

I have a 128GB RAM server, kernel 4.18.0-305.7.1.el8_4.x86_64, "dmesg | grep Memory" outputs as follows: [ 0.000000] Memory: 1282732K/133708404K available (12293K kernel code, 2225K rwdata, 7708K rodata, 2476K init, 14048K bss, 2721876K reserved,…
Tao Lei
  • 3
  • 2