Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Instructions on handing interactive ISO Install and where to locate grub.cfg #298

Closed
Changes from 10 commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
6ab1d85
Added information on handing interactive ISO Install and where to loc…
LucasSaintarbor Apr 4, 2023
b208531
Small revision
LucasSaintarbor Apr 4, 2023
5765c4f
Merge branch 'harvester:main' into 3590-Provide-Information-On-Intera…
LucasSaintarbor May 9, 2023
23105e1
Removed spaces from `set root` command and moved this info to the "Co…
LucasSaintarbor May 9, 2023
1cdeb26
Merge branch 'harvester:main' into 3590-Provide-Information-On-Intera…
LucasSaintarbor May 15, 2023
a45d24b
Apply suggestions from code review
LucasSaintarbor May 24, 2023
358ac62
Merge branch 'harvester:main' into 3590-Provide-Information-On-Intera…
LucasSaintarbor Jul 28, 2023
6ee5d15
Merge branch 'harvester:main' into 3590-Provide-Information-On-Intera…
LucasSaintarbor Aug 1, 2023
d56468d
Merge branch 'harvester:main' into 3590-Provide-Information-On-Intera…
LucasSaintarbor Aug 4, 2023
9790e93
Merge branch 'harvester:main' into 3590-Provide-Information-On-Intera…
LucasSaintarbor Aug 4, 2023
4720cbe
Merge branch 'harvester:main' into 3590-Provide-Information-On-Intera…
LucasSaintarbor Aug 15, 2023
9e604a3
Merge branch 'harvester:main' into 3590-Provide-Information-On-Intera…
LucasSaintarbor Aug 15, 2023
7b37d88
Merge branch 'main' into 3590-Provide-Information-On-Interactive-ISO-…
LucasSaintarbor Nov 17, 2023
b7c2f77
Update docs/install/usb-install.md
LucasSaintarbor Nov 17, 2023
eda7a3d
Apply suggestions from code review
LucasSaintarbor Nov 17, 2023
29a813d
Update v1.1 docs
LucasSaintarbor Nov 17, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions docs/install/usb-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,15 @@ Make sure you choose the correct device. The process erases data on the selected

## Common issues

###

Sometimes using a USB to mount the Harvester ISO disk directs you to Grub2. In this case, it helps to know how to set the root partition and where to locate `grub.cfg`.
LucasSaintarbor marked this conversation as resolved.
Show resolved Hide resolved

You can see the current root partition in the `grub.cfg`, once you've set the root to be within where the ISO lives on the USB. To view the `grub.cfg` from the ISO, run the command `cat /boot/grub2/grub.cfg`.
LucasSaintarbor marked this conversation as resolved.
Show resolved Hide resolved

To set a new root partition, run the command `set root=(hdN,msdos1)`, where N denotes N numbers of possible drives. N should be the drive your USB is mounted to.

LucasSaintarbor marked this conversation as resolved.
Show resolved Hide resolved
LucasSaintarbor marked this conversation as resolved.
Show resolved Hide resolved
To launch into the GNU GRUB2 Boot Menu from the ISO, once the root has been set to where the ISO is located at the partition of `msdos1` - you can run `chainloader /boot/grub2/x86_64-efi/grub.efi` to get loaded into the GRUB2 Boot Menu for the Harvester Installer.
LucasSaintarbor marked this conversation as resolved.
Show resolved Hide resolved
### When booting from a USB installation flash drive, a `GRUB _` text is displayed, but nothing happens

If you are using the UEFI mode, try to boot from the UEFI boot partition on the USB device rather than the USB device itself. e.g.,
Expand Down