Skip to main content

Questions tagged [kernel-parameters]

Filter by
Sorted by
Tagged with
1 vote
2 answers
54 views

I have a linux-box. My hdd is nvme, hence boot is fast. I need to analyze each line of after grub. Can I pass a kernel parameter to capture my boot lines?
PersianGulf's user avatar
  • 11.3k
1 vote
1 answer
382 views

I know the Linux kernel has a key retention service even though I haven't used it myself. I'm constructing a system where anybody with root cannot check the keys in that service that were registered ...
Gwangmu Lee's user avatar
0 votes
0 answers
39 views

I am having a conflict with third party moxa driver mxupcie and the default linux 8250_moxa which is compiled in. I have been following this thread but still having issues. -bash-4.2$ lspci -vvv -s8a:...
mreff556's user avatar
2 votes
2 answers
3k views

First off, this question is not a duplicate of Why is journalctl reporting "PCIe Bus Error" BadTLP and BadDLLP? because instead of asking what is causing this kernel warning, I directly ask ...
Vlastimil Burián's user avatar
0 votes
1 answer
406 views

I'm trying to redirect the console to ttyUSB0, with the idea of later disable tty1, but I'm not getting anywhere.... I've added GRUB_CMDLINE_LINUX="console=tty1 console=ttyUSB0,19200n8r" To ...
Yves Dorfsman's user avatar
1 vote
0 answers
44 views

I am wanted to build a custom kernel image in which macro CONFIG_BLK_CGROUP is not defined. After researching a little bit I found we can do such configurations in .config file. To be more precise I ...
mSatyam's user avatar
  • 111
0 votes
1 answer
283 views

I want to reinstall my VPS with the debian's official repository, instead of with the image provided by the VPS operator(I don't trust the VPS operator). On original system I installed debian-...
Leon's user avatar
  • 203
2 votes
1 answer
1k views

I have built a custom kernel and given a CONFIG_LOCALVERSION of -grant-nvme during compilation. However, when I try to boot into it, no matter what I do, grub seems to look for /lib/modules/6.6.16 and ...
Grant Curell's user avatar
0 votes
1 answer
789 views

I have installed Debian 12 on my Orange Pi Zero using a custom u-boot image. I notice that Debian has a file called /root/boot.scr which is rebuilt after apt upgrades. I had previously modified this ...
user111395's user avatar
0 votes
1 answer
153 views

I'm trying to build a driver for a USB to HDMI adapter... Bus 001 Device 010: ID 534d:6021 MacroSilicon VGA Display Adapter NOTE: "lsusb" output. ... but this error is occurring... Fatal ...
Eduardo Lúcio's user avatar
0 votes
2 answers
220 views

I am customizing a Linux system using a Linux kernel of 6.4.0. After booting, why is the keyboard not working? # 1. The disk is externally connected through a USB interface. If I enter the Linux live ...
just a student's user avatar
4 votes
1 answer
1k views

I am trying to figure out how to disable bounce buffers used in IOMMU when the hardware IOMMU is used. To give more context, when IOMMU_DEFAULT_DMA_STRICT is set in the kernel it enables strict IOTLB ...
sammy17's user avatar
  • 115
4 votes
2 answers
2k views

The Linux kernel takes a memmap parameter *) to manually designate memory regions for different use-cases. Q: What is the difference between reserved memory (memmap=nn[KMG]$ss[KMG]) and protected ...
nyov's user avatar
  • 225
0 votes
1 answer
81 views

I'm trying to use the CLI tool perf, however it requires the CONFIG_LOCKDEP and CONFIG_LOCK_STAT enabled in the Kernel code. I understand that to enable these flags, I need to download the source code ...
someone12321's user avatar
4 votes
1 answer
3k views

First, let me give a background of what I am trying to achieve. I know how to isolate a particular CPU using boot param (isolcpu and nohz_full; the housekeeping subsystem setup). But as per my ...
Abhishek Ghosh's user avatar
0 votes
1 answer
273 views

qemu-system-x86_64 -m 2G -accel kvm -kernel kernel6.1 -append "init=/bin/bash" -initrd myinitrd.gz Supposed to run bash as init, but kernel still prints: [ 1.400577] Run /init as init ...
exebook's user avatar
  • 202
4 votes
2 answers
1k views

I have an internal webcam on my Dell laptop. I don't see it listed with lspci, but it works. I am using a self-compiled kernel, and here are the options I have enabled: # zcat /proc/config.gz | grep -...
Martin Vegter's user avatar
1 vote
0 answers
322 views

This is for Red Hat Linux 7.9, kernel 3.10.0-1160.71.1 . I would like to know what kernel data structure can be used to show which CPUs it thinks are isolated using tuned. This means I've isolated ...
Mike S's user avatar
  • 2,732
0 votes
1 answer
4k views

Broadcast message from username@Desktop (Sun 1919-08-10 11:45:14 CST): The system is going to reboot NOW! [756.345947] watchdog: watchdog0: watchdog did not stop! [756.472889] watchdog: watchdog0: ...
Firestar-Reimu's user avatar
1 vote
1 answer
1k views

This was prompted by another question elsewhere, which after digging into briefly a quick online search ("linux kernel command line override priority" and some variations) turned up ...
goldilocks's user avatar
2 votes
1 answer
3k views

Quoting the linux kernel documentation for boot parameters : pcie_bus_perf : Set device MPS to the largest allowable MPS based on its parent bus. Also set MRRS (Max Read Request Size) to the largest ...
MC68020's user avatar
  • 8,665
1 vote
0 answers
357 views

If I choose to have a module built-in (Y), I can choose "e" to edit the boot entries on GRUB2 and modify the kernel command line to include "module.variable=whatever" and it works ...
user3161924's user avatar
0 votes
0 answers
533 views

I want to know how to find a proper Linux kernel source code for using ARM cortext-A55. I got a kernel source code from kernel.org. But don't know how to "Config" my kernel to support ...
CH J's user avatar
  • 1
1 vote
0 answers
1k views

I'm trying to pass isolcpus=1-4 to the kernel command line, Linux version 5.10.42 LTS. My boot manager is EFISTUB/efibootmgr. I'm booting OK but the parameter is simply not there when checking with $ ...
haelix's user avatar
  • 592
2 votes
1 answer
518 views

The NOTES section of $ man 5 sysctl.conf states: The description of individual parameters can be found in the kernel documentation. But is there a way for me to find this kernel documentation offline? ...
Jethro Cao's user avatar