-
Notifications
You must be signed in to change notification settings - Fork 4
Dual boot guide #3
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
Conversation
src/content/docs/guides/dual-boot.md
Outdated
| We need to shrink an existing partition to make room for AxOS. | ||
|
|
||
| > ⚠️ **Important Note**: | ||
| > It’s strongly recommended to install Linux on the **same physical disk (SSD/HDD)** where Windows is installed. Installing it on a second disk can cause bootloader issues or system instability. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not really, it works well with one OS on each disks
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Considering from my experience, i have done this twice and twice i needed to format the whole disk because the EFI messed up. Maybe i am doing something wrong
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you want to wipe a disk, automatic partitioning will work well
| > We’ll use that name in the next step. | ||
|
|
||
| ## Step 4: Create Partitions with `gdisk` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Gparted will be added to the next ISO. Add a gui way alongside with cli
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, but for now it's the best way to do it, until gparted will be used
src/content/docs/guides/dual-boot.md
Outdated
| ### Format the EFI Partition: | ||
|
|
||
| ```bash | ||
| sudo mkfs.fat -F32 /dev/nvme0n1p1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Formating will be done in the installer, no need to do it manually
src/content/docs/guides/dual-boot.md
Outdated
|
|
||
| ## Step 6: Mount the Partitions | ||
|
|
||
| Before launching the installer, we need to **manually mount** the partitions: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No need to, the installer will do the job
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I installed OS three times and everytime it throws an error that /boot/efi (even when i choose mount point) does not exists. So i mount partitions and create /boot/efi
| sudo mount /dev/nvme0n1p2 /mnt | ||
| ``` | ||
|
|
||
| ### Create and Mount EFI Directory: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ik the installer doesn't works sometimes, but it should do it itself. Let it be a grown installer
src/content/docs/guides/dual-boot.md
Outdated
| * For the **EFI partition**: | ||
|
|
||
| * Set mount point to `/boot/efi` | ||
| * Set **Do Not Format** (since we already formatted it) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fat32, as I said earlier, no need to format it manually as the installer can do it
| Change it to: | ||
|
|
||
| ```bash | ||
| GRUB_DISABLE_OS_PROBER=false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is already false by default (is it ?)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As i know it is false by default but it will be good if the user checks it twice
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Then say check instead of do
| ### BIOS Systems: | ||
|
|
||
| ```bash | ||
| sudo grub-mkconfig -o /boot/grub/grub.cfg |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This one. Not the efi one (or maybe I'm learning something)
|
I did some changes to a guide, and adjusted to the requirements. |
LeVraiArdox
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just one comment. Else, it's good :)
|
|
||
| * For the **Linux root partition**: | ||
|
|
||
| * Set **ext4** format |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Precise ext4 is an example and the recommend FS
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Forget it, I'll do it myself later
|
Thanks! |
|
I think that you should change the name from "dual boot tutorial" to just "dual boot" because it's under the guides section and the word "tutorial" seems redundant. |
|
Adding a Linux section in the guide would also help out a ton because most AxOS users come from a Linux background. It is not strictly needed right now, but improving it to also contain this information would be mandatory later as AxOS matures. |
|
Step-0 should reference to https://www.axos-project.com/docs/get-started/installation/#create-the-installation-media. |
Letting you do the necessary PRs |
I'll do it tomorrow because I am currently tried after very a stressful day. |
Hello there! When I was setting up dual boot on my system, I ran into some difficult parts. So I decided to create a guide for people who want to dual boot but aren’t sure how to do it.