Difference between revisions of "GRUB: Ubah Kernel Parameter"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) (Created page with "Edit bash# cd /etc/default bash# sudo vi grub # Use the vi editor to add the boot options to the line GRUB_CMDLINE_LINUX_DEFAULT= Tambahkan, misalnya, GRUB_CMDLIN...") |
Onnowpurbo (talk | contribs) |
||
Line 10: | Line 10: | ||
Tambahkan, misalnya, | Tambahkan, misalnya, | ||
− | GRUB_CMDLINE_LINUX_DEFAULT=“quiet splash pci= | + | GRUB_CMDLINE_LINUX_DEFAULT=“quiet splash pci=noacpi nvme_core.default_ps_max_latency_us=0” |
Pilihan lain, | Pilihan lain, | ||
Line 22: | Line 22: | ||
acpi=noirq | acpi=noirq | ||
pnpacpi=off | pnpacpi=off | ||
+ | nvme_core.default_ps_max_latency_us=0 | ||
Update GRUB | Update GRUB |
Latest revision as of 03:44, 18 October 2022
Edit
bash# cd /etc/default bash# sudo vi grub # Use the vi editor to add the boot options to the line GRUB_CMDLINE_LINUX_DEFAULT=
Tambahkan, misalnya,
GRUB_CMDLINE_LINUX_DEFAULT=“quiet splash pci=noacpi nvme_core.default_ps_max_latency_us=0”
Pilihan lain,
nolapic noapic acpi_osi=“Linux” acpi_osi=“Windows 2006” acpi=ht pci=noacpi acpi=noirq pnpacpi=off nvme_core.default_ps_max_latency_us=0
Update GRUB
bash# sudo update-grub bash# sudo reboot