[2024-feb-29] Sad news: Eric Layton aka Nocturnal Slacker aka vtel57 passed away on Feb 26th, shortly after hospitalization. He was one of our Wiki's most prominent admins. He will be missed.

Welcome to the Slackware Documentation Project

Розбіжності

Тут показані розбіжності між вибраною ревізією та поточною версією сторінки.

Посилання на цей список змін

Порівняння попередніх версійПопередня ревізія
Наступна ревізія
Попередня ревізія
Остання ревізіяПо сторонах наступні версії
uk:howtos:slackware_admin:set_up_grub_as_boot_loader_on_uefi_based_hardware [2016/03/27 05:56 (UTC)] – [Встановлення завантажувача Grub на UEFI обладнання] streamthreaderuk:howtos:slackware_admin:set_up_grub_as_boot_loader_on_uefi_based_hardware [2016/03/27 06:31 (UTC)] – [Sources] streamthreader
Рядок 54: Рядок 54:
 З цієї миті рекомендовано перевірити, чи можливо завантажити USB флеш носій з grubx64.efi. Якщо система UEFI не бачить ії, скопіюйте файл у /EFI/BOOT/bootx64.efi З цієї миті рекомендовано перевірити, чи можливо завантажити USB флеш носій з grubx64.efi. Якщо система UEFI не бачить ії, скопіюйте файл у /EFI/BOOT/bootx64.efi
  
-==== Installation of grubx64.efi to the hard drive ====+==== Встановлення grubx64.efi на жорсткий диск ====
  
-The EFI partition on the hard drive should be mountedThe partition will have a structure like this:+Розділ EFI жорсткого диску, повинен бути смонтованийЦей розділ повинен мати структуру як наприклад:
  
 /EFI/Boot/bootx64.efi /EFI/Boot/bootx64.efi
  
-There may be a folder /EFI/Microsoft/Boot and the efi file booting windows may be bootmgr.efi+Там може бути директорія /EFI/Microsoft/Boot та файл для завантаження windows bootmgr.efi
  
-The safest way of proceeding at this stage is to create a new folderfor example /EFI/Linux/ and place grubx64.EFI in there.+Кращим шляхом заразце створити окрему нову директорію, наприклад /EFI/Linux/ та покласти в неї grubx64.EFI.
  
-At this point it may be worth testing if the UEFI system is able to see the new Linux boot option or notusually by pressing F8 on booting the computerIf it does then it should be straightforward to set this as a default optionIt is also likely that it is not seen. If that is the case the choice it to either replace the working .efi (for example /EFI/Boot/bootx64.efi or /EFI/Microsoft/Bootbootmgr.efi) or to modify the UEFI boot menuReplacing the existing file is likely to make it impossible to boot into Windows. If the intention is to set up a dual boot system then the UEFI boot menu has to be modified.+З цієї миті, варто перевірити, чи бачить система UEFI новий пункт завантаження Linux, зазвичай це можна зробити натиснувши клавішу F8 під час завантаження комп'ютераЯкщо система UEFI бачить новий пункт, далі буде не складно встановити Linux як варіант за замовченнямТакож якщо нового пункту немає, то потрібно замінити пацюючий файл .efi (наприклад /EFI/Boot/bootx64.efi чи /EFI/Microsoft/Bootbootmgr.efi) чи відредагувати меню завантаження UEFI. Заміна існуючого файлу призведе к неможливості завантажувати Windows. Якщо ви маєте намір зробити подвійне завантажування, то потрібно відредагувати меню завантаження UEFI.
  
 +=== Редагування меню завантаження UEFI ===
  
-=== Modifying the UEFI boot menu ===+Завантажте efibootmger з [[http://linux.dell.com/efibootmgr/]]
  
 +розпакуйте його, увійдіть у нову директорію, та запустіть make
  
 +Скопіюйте src/efibootmgr/efibootmgr у /usr/sbin та виконайте chown для root.
  
-Download efibootmger from [[http://linux.dell.com/efibootmgr/]] +Змонтуйте розділ efi жорсткого диску у директорію /boot/efi
- +
-untar it, change into the folder and run make +
- +
-Copy src/efibootmgr/efibootmgr into /usr/sbin and chown it to root. +
- +
-Mount the efi partition of the hard drive to /boot/efi+
 <code> <code>
 # mount /dev/sdXy -t vfat /boot/efi  # mount /dev/sdXy -t vfat /boot/efi 
-where X = drive and y = partition+де X = диск, та y = розділ
 # modprobe efivars # modprobe efivars
 # efibootmgr -c -g -d /dev/sdX -p Y -w -L "Linux" -l '\EFI\Linux\bootx64.efi'  # efibootmgr -c -g -d /dev/sdX -p Y -w -L "Linux" -l '\EFI\Linux\bootx64.efi' 
-assuming that the grubx64.efi file had been copied to \EFI\Linux\bootx64.efi+припускається що файл grubx64.efi скопійовано до \EFI\Linux\bootx64.efi
 </code> </code>
  
-On next reboot Linux with Grub comes up as an option on the boot menu+Під час наступного перезавантаження Linux з Grub, з'явиться меню у завантажувачі
-====== Sources ======+====== Джерела ======
 <!-- If you are copying information from another source, then specify that source --> <!-- If you are copying information from another source, then specify that source -->
 <!-- * Original source: [[http://some.website.org/some/page.html]] --> <!-- * Original source: [[http://some.website.org/some/page.html]] -->
 <!-- Authors are allowed to give credit to themselves! --> <!-- Authors are allowed to give credit to themselves! -->
-Originally written by [[wiki:user:arubin | arubin]]+Автор статті [[wiki:user:arubin | arubin]]
 <!-- * Contributions by [[wiki:user:yyy | User Y]] --> <!-- * Contributions by [[wiki:user:yyy | User Y]] -->
  
 uk:howtos:slackware_admin:set_up_grub_as_boot_loader_on_uefi_based_hardware ()