You are not logged in.
I need to add add pcie_port_pm=off to my kernel parameters because of the NVIDIA Driver on Linux 5.0.6.
After I read the Kernel Parameters on Wiki, I still don't know what command to type. Could you please tell me what to do?
Last edited by czx (2019-04-10 04:54:17)
Offline
You need to edit it in the configuration of your boot loader / manager if you use one or create an appropriate EFI boot entry if you use EFISTUB to boot the kernel directly.
I just read the Wiki article you linked to. Everything is explained there.
What did you try so far? Do you have an actual problem? What is your boot loader / manager.
Last edited by schard (2019-04-08 09:32:20)
Inofficial first vice president of the Rust Evangelism Strike Force
Offline
You need to edit it in the configuration of your boot loader / manager if you use one or create an appropriate EFI boot entry if you use EFISTUB to boot the kernel directly.
I just read the Wiki article you linked to. Everything is explained there.
What did you try so far? Do you have an actual problem? What is your boot loader / manager.
Thank you for your reply. I'm just not very understand what the wiki said and thus no idea about what to do. I'm just starting to learn so I am not sure about what the boot loader is on my Computer. I think it is grub because I remember my installation guide have some commands about it. Yes the bootloader is GRUB.
Last edited by czx (2019-04-08 09:56:25)
Offline
Offline
How did you install Arch?
Mainly on the wiki installation guide. And some steps I don't understand very clearly are from other websites. Now I am sure that the boot loader is GRUB.
Last edited by czx (2019-04-08 10:05:33)
Offline
Well, then re-read the Grub section of the Wiki article you linked to.
Inofficial first vice president of the Rust Evangelism Strike Force
Offline
Well, then re-read the Grub section of the Wiki article you linked to.
It gives an example.
linux /boot/vmlinuz-linux root=UUID=978e3e81-8048-4ae1-8a06-aa727458e8ff quiet splashSo the one I need to do is this?
linux /boot/vmlinuz-linux pcie_port_pm=offOffline
schard wrote:Well, then re-read the Grub section of the Wiki article you linked to.
It gives an example.
linux /boot/vmlinuz-linux root=UUID=978e3e81-8048-4ae1-8a06-aa727458e8ff quiet splashSo the one I need to do is this?
linux /boot/vmlinuz-linux pcie_port_pm=off
And this:
To make the change persistent after reboot, while you could manually edit /boot/grub/grub.cfg with the exact line from above, the best practice is to:
Edit /etc/default/grub and append your kernel options to the GRUB_CMDLINE_LINUX_DEFAULT line:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
Is it right to replace the 'GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"' in the article with 'pcie_port_pm=off'?
Offline
It says append, not replace. Hence:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash pcie_port_pm=off"Don't forget to re-generate your /boot/grub/grub.cfg after the config file change:
grub-mkconfig -o /boot/grub/grub.cfgInofficial first vice president of the Rust Evangelism Strike Force
Offline
It says append, not replace. Hence:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash pcie_port_pm=off"Don't forget to re-generate your /boot/grub/grub.cfg after the config file change:
grub-mkconfig -o /boot/grub/grub.cfg
Thank you. So before that, which command should I type when menu shows up and press 'e'?
1.
linux /boot/vmlinuz-linux root=UUID=978e3e81-8048-4ae1-8a06-aa727458e8ff quiet splash pcie_port_pm=off2.
linux /boot/vmlinuz-linux pcie_port_pm=offOr maybe neither of them is right?
Last edited by czx (2019-04-08 11:18:58)
Offline
You should not type any "command". The Wiki does not menion any command at this point.
Again you are instructed to add the respective arguments to the mentioned "^linux *" line.
And, again, read the Wiki. Everything is explained in the discussed article and I won't post any further reiteration of it for you.
Inofficial first vice president of the Rust Evangelism Strike Force
Offline