Open godhek opened 3 years ago
Thanks for posting the detailed guide :)
Thanks for posting the detailed guide :)
Don't mention it. It's nothing compared you and other contributors have accomplished in this project so far. Cheers!
Anyway, most Google services are down at this moment!
@sebanc so I magaged to Dual boot Brunch with a BIOS only laptop as well.
At first it didn't work, threw error: no partition found. And I realized that grub2 doesn't read GPT partition table by default
So I added insmod part_gpt
to the grub menuentry and it works like a charm.
You might want to add it to chromeos-install.sh
I also remove console=
cause otherwise, the boot screen will stay at "Loading kernel" while brunch rebuilding the boot partition and that might looks like it hang
Try this!!! It will absolutely work [https://github.com/sebanc/brunch/issues/1088]()
Please help.. I have 4 partition in my HDD- C,D,E, ChromeOs..but while running command 'lsblk -e7' the D,E and ChromeOs are shown as one partition. Therefore it shows only two partions.
Hi all! First of all, I'd like to thank @sebanc and other contributors here for their great work! I just want to share my success story in installing brunch in legacy BIOS / MBR system after countless hours of browsing, reading and experimenting. I don't know whether this kind of guide had been posted here before, but I just thought of sharing with all the users here, and hopefully can benefit others.
Next, I'd like to clarify that I'm not a programmer nor software engineer. Thus, I have very limited knowledge in programming and Linux commands. So, please don't ask me about booting command lines since I, frankly, don't know and might give the wrong answer. I just copy and follow guides and commands suggested by others. So, it just luck plus trial and error :) I only consider myself as a computer / tech enthusiasts. Thus, I don't know and not responsible if any trouble might arise resulted from attempting this installation.
My pc is a Dell Inspiron 2320 AIO with 2nd gen core i7 CPU, 2TB of HDD with Windows 10 installed, touch screen and 8G of RAM from around 2011. It doesn't have UEFI option in its BIOS, and I leave the HDD as it is because I don't want to damage its original recovery partition inside.
Briefly, these are general steps taken that I remember:
menuentry "Windows 10" --class windows --class os { insmod ntfs set root='(hd0,2)' ntldr /bootmgr }
menuentry "ChromeOs" { insmod ntfs insmod cpio insmod part_gpt insmod part_msdos set root='(hd0,5)' img_path=/chromeos.img img_part=/dev/sda5 search --no-floppy --set=root --file $img_path loopback loop $img_path linux (loop,7)/kernel boot=local noresume noswap loglevel=7 disablevmx=off \ cros_secure cros_debug loop.max_part=16 img_path=$img_path img_part=$img_part initrd (loop,7)/lib/firmware/amd-ucode.img (loop,7)/lib/firmware/intel-ucode.img (loop,7)/initramfs.img }
An honorable mention as well to ETA PRIME and Kedar Nimbalkar on YouTube whom gave me the idea of installing ChromeOS.
Cheers!