Difference between revisions of "EFI"
From HackerNet
Helikopter (talk | contribs) m |
|||
(3 intermediate revisions by 2 users not shown) | |||
Line 2: | Line 2: | ||
efibootmgr: a Linux user-space application to modify the Intel Extensible Firmware Interface (EFI) Boot Manager. | efibootmgr: a Linux user-space application to modify the Intel Extensible Firmware Interface (EFI) Boot Manager. | ||
+ | |||
+ | apt-get install efibootmgr | ||
==Tips n Tricks== | ==Tips n Tricks== | ||
Line 8: | Line 10: | ||
Kolla nuvarande boot entries | Kolla nuvarande boot entries | ||
− | + | efibootmgr -v | |
Rensa bort nuvarande boot order i EFI NVRAM | Rensa bort nuvarande boot order i EFI NVRAM | ||
− | + | efibootmgr --delete-bootorder | |
Ta bort oönskade entries | Ta bort oönskade entries | ||
− | + | efibootmgr --delete-bootnum --bootnum 0003 | |
Konfigurera boot menu timeout | Konfigurera boot menu timeout | ||
− | + | efibootmgr --timeout 10 | |
Konfigurera den ordning du vill ha, t.ex. | Konfigurera den ordning du vill ha, t.ex. | ||
− | + | efibootmgr -o 0000,0002,0003,0001 | |
Lägg boot entry högst endast för nästa omstart | Lägg boot entry högst endast för nästa omstart | ||
− | + | efibootmgr -n 0003 | |
+ | |||
+ | [[Category:Tools]] |
Latest revision as of 20:29, 28 April 2016
EFI gör det möjligt att lägga till och utveckla en rad funktioner som inte är möjligt med ett vanligt BIOS.
efibootmgr: a Linux user-space application to modify the Intel Extensible Firmware Interface (EFI) Boot Manager.
apt-get install efibootmgr
Tips n Tricks
Ändra boot order utan att stänga av maskinen:
Kolla nuvarande boot entries
efibootmgr -v
Rensa bort nuvarande boot order i EFI NVRAM
efibootmgr --delete-bootorder
Ta bort oönskade entries
efibootmgr --delete-bootnum --bootnum 0003
Konfigurera boot menu timeout
efibootmgr --timeout 10
Konfigurera den ordning du vill ha, t.ex.
efibootmgr -o 0000,0002,0003,0001
Lägg boot entry högst endast för nästa omstart
efibootmgr -n 0003