I have a weird laptop, that, long story short, must have these 2 parameters set for it to boot:
pnpbios=off
noapic
How to I tell grub to utilize these every time it boots?
I have a weird laptop, that, long story short, must have these 2 parameters set for it to boot:
pnpbios=off
noapic
How to I tell grub to utilize these every time it boots?
Edit your GRUB configuration file e.g. using the command
sudo nano /etc/default/grub
Add those two parameters to GRUB_CMDLINE_LINUX_DEFAULT, so that it looks like this:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash pnpbios=off noapic"
Then update GRUB's configuration using the command
sudo update-grub
mount -o remount,rw /,mount --all, then follow the above steps. – Alcuin Arundel Jul 22 '16 at 06:48e. Then search the line starting withlinuxin the appearing script and insert the two parameters afterquiet splash. PressF10(if I remember correctly) to boot the modified entry. – Byte Commander Jul 22 '16 at 08:33MP-BIOS BUG 8254 timer not connectederror andnolapic(NOTnoapic) using @ByteCommander's technique did the trick! – tresf Mar 06 '19 at 19:24