Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
freem
Search
Search
Appearance
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
Openai/690f8ac2-4e38-8012-b650-1cba68fd0972
(section)
Add languages
Page
Discussion
English
Read
Edit
Edit source
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
Edit source
View history
General
What links here
Related changes
Special pages
Page information
Appearance
move to sidebar
hide
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
=== === <syntaxhighlight lang="bash"> ls /mnt # should show Linux root directories ls /mnt/boot/efi # should show EFI contents (if partition mounted correctly) </syntaxhighlight> If both look correct, continue with the bind mounts and chroot: <syntaxhighlight lang="bash"> for i in /dev /dev/pts /proc /sys /run; do sudo mount --bind $i /mnt$i done sudo chroot /mnt grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=Zorin update-grub exit for i in /run /sys /proc /dev/pts /dev; do sudo umount /mnt$i done sudo umount /mnt/boot/efi sudo umount /mnt sudo reboot </syntaxhighlight> π‘ Key point: The /etc/fstab warning is normal in a Live USB environment β it will not prevent GRUB from being installed. Do you want me to walk through exactly what to check in <code>/mnt/boot/efi</code> before running <code>grub-install</code> so weβre 100% sure the EFI partition is correct? '''Prompt:''' After doing this, the computer still does not boot. After the HP logo, there is a message that says "Reset System" and the computer restarts the boot sequence. This ends up being a loop. '''ChatGPT:''' Ah β now we have a very clear picture. This is a classic HP EliteBook UEFI boot problem that happens even when GRUB is installed correctly. Letβs analyze carefully.
Summary:
Please note that all contributions to freem are considered to be released under the Creative Commons Attribution-ShareAlike 4.0 (see
Freem:Copyrights
for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource.
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)