Jump to content

How to install official google chrome os on any pc/laptop (Brunch)

This is how to  install google chrome os on any pc/laptop using the brunch framework.this will install the official google chrome os. in this post I will cover single boot ,dual boot  and multi boot. 

the brunch framework is created by Sebanc.  

feel free to ask questions below!

hardware needed

 

prerequisites

Linux Mint (depends if needed by the method) : https://www.linuxmint.com/download.php

Rufus (again depends if needed by the method): https://rufus.ie/

grub2win (again depends if needed by the method):https://sourceforge.net/projects/grub2win/

Brunch (needed for all methods shown here): https://github.com/sebanc/brunch/rele...

ChromeOS recovery images can be downloaded from here and are needed : https://cros-updates-serving.appspot.com/ or cros.tech

gparted live (for help in partitioning and depends on which method you use):https://gparted.org/livecd.php

and finally your patience

ChromeOS recovery images

 

2 types of ChromeOS recovery images exist and use different device configuration mechanisms:

  • non-unibuild images: configured for single device configurations like eve (Google Pixelbook) and nocturne (Google Pixel Slate) for example.
  • unibuild images: intended to manage multiple devices

recommended images

  • "rammus" is the recommended image for devices with 4th generation Intel CPU and newer.
  • "samus" is the recommended image for devices with 3rd generation Intel CPU and older.
  • "grunt" is the image to use if you have supported AMD harware.

ChromeOS recovery images can be downloaded from here: https://cros-updates-serving.appspot.com/ or cros.tech

feel free to try other images too... try choosing a image with the closest match to your pc...but  for amd only AMD Stoney Ridge is supported with the grunt image only.

Install instructions 

You might need to edit the grub to complete the installation  and there are quite a few ways to do it... here I will show the methods..

 

From Linux

(i). using the grub costumizer

here are the commands how..

   

$ sudo add-apt-repository ppa:danielrichter2007/grub-customizer
$ sudo apt-get update
$ sudo apt-get install grub-customizer

 

(ii)mount the efi ...

 

  1. Create a directory to mount the EFI partition:
mkdir /tmp/efi_part
  1. Mount the partition 12 of your device to your EFI partition:
sudo mount /dev/< partition 12 of ChromeOS device > /tmp/efi_part
  1. Edit the file /tmp/efi_part/efi/boot/grub.cfg with your favorite editor (launched as root).
  2. Unmount the partition:
sudo umount /tmp/efi_part

 

From Windows(and If using grub2win method there will be a app mostly) 

  1. Install notepad++ (https://notepad-plus-plus.org/)
  2. Look for the EFI partition in the Explorer and browse to the efi/boot folder.
  3. Edit the grub.cfg file with notepad++ (warning: editing this file with standard Notepad or Wordpad will render the file unusable and prevent GRUB from booting due to formatting issues)
  4. Add your specific kernel parameters at the end of the Linux line arguments.

 

From ChromeOS(only in single boot)

Run sudo edit-grub-config

multiboot./dual boot with linux

 

multiboot./dual boot

method using external usb

Requirements

  • root access.
  • pv, tar and cgpt packages/binaries.

Install ChromeOS on a USB flash drive / SD card

  1. Download the ChromeOS recovery image and extract it.
  2. Download the Brunch release corresponding to the ChromeOS recovery image version you have downloaded (from the GitHub release section).
  3. Open a terminal, navigate to the directory containing the package.
  4. Extract it:
tar zxvf brunch_< version >.tar.gz
  1. Identify your USB flash drive / SD card device name e.g. /dev/sdX (Be careful here as the installer will erase all data on the target drive)
  2. Install ChromeOS on the USB flash drive / SD card:
sudo bash chromeos-install.sh -src < path to the ChromeOS recovery image > -dst < your USB flash drive / SD card device. e.g. /dev/sdX >
  1. Reboot your computer and boot from the USB flash drive / SD card (refer to your computer manufacturer's online resources).
  2. (Secure Boot only) A blue screen saying "Verfification failed: (15) Access Denied" will appear upon boot and you will have to enroll the secure boot key by selecting "OK->Enroll key from disk->EFI-SYSTEM->brunch.der->Continue". Reboot your computer and boot again from the USB flash drive / SD card.

The GRUB menu should appear, select ChromeOS and after a few minutes (the Brunch framework is building itself on the first boot), you should be greeted by ChromeOS startup screen. You can now start using ChromeOS.

 

 

Install it to the hdd

 

ChromeOS partition scheme is very specific which makes it difficult to dual boot. One solution to circumvent that is to keep ChromeOS in a disk image on the hard drive and run it from there.

Make sure you have an ext4 or NTFS partition with at least 14gb of free space available and no encryption or create one (refer to online resources).

  1. Perform the steps 1 to 4 as described in the previous section (Install ChromeOS on a USB flash drive / SD card), boot to Chrome OS and open crosh(Chrome OS terminal).
  2. Mount the unencrypted ext4 or NTFS partition on which we will create the disk image to boot from:
mkdir -p ~/tmpmount
sudo mount < the destination partition (ext4 or ntfs) which will contain the disk image > ~/tmpmount
  1. Create the ChromeOS disk image:
sudo bash chromeos-install.sh -src < path to the ChromeOS recovery image > -dst ~/tmpmount/chromeos.img -s < size you want to give to your chromeos install in GB (system partitions will take around 10GB, the rest will be for your data) >
  1. Copy the GRUB configuration which appears in the terminal at the end of the process (between lines with stars) to either:
  • your hard disk GRUB install if you have one (refer to you distro's online resources).
  • the USB flash drive / SD card GRUB config file (then boot from USB flash drive / SD card and choose "boot from disk image" in the GRUB menu),
  1. Unmout the destination partition
sudo umount ~/tmpmount
  1. (secure boot only) Download the secure boot key "brunch.der" in this branch (master) of the repository and enroll it by running the command:
sudo mokutil --import brunch.der
  1. Reboot your computer and boot to the bootloader with the modified GRUB config.

The GRUB menu should appear, select "ChromeOS (boot from disk image)" and after a few minutes (the Brunch framework is building itself on the first boot), you should be greeted by ChromeOS startup screen. You can now start using ChromeOS from your HDD.

 

 

Dual boot with windows 

 

do the same steps till copying the grub config from the above post 

 

but do it on a live usb version of linux instead of local installation.

 

 

in the point of copying the grub config close the window when it opens..copy the config and save it as a text file somewhere you know and easily shareable..

then boot into windows and copy the text file to somewhere memorable.

now download and install grub2win  from the above links

now paste the grub config from the text to a grub entry by creating a new grub entry in the grub2win

save it and reboot now you can boot into chrome os! 

 

 

 

 

single boot 

method 1

Requirements

  • root access.
  • pv, tar and cgpt packages/binaries.

Install ChromeOS on a USB flash drive / SD card

  1. Download the ChromeOS recovery image and extract it.
  2. Download the Brunch release corresponding to the ChromeOS recovery image version you have downloaded (from the GitHub release section).
  3. Open a terminal, navigate to the directory containing the package.
  4. Extract it:
tar zxvf brunch_< version >.tar.gz
  1. Identify your USB flash drive / SD card device name e.g. /dev/sdX (Be careful here as the installer will erase all data on the target drive)
  2. Install ChromeOS on the USB flash drive / SD card:
sudo bash chromeos-install.sh -src < path to the ChromeOS recovery image > -dst < your USB flash drive / SD card device. e.g. /dev/sdX >
  1. Reboot your computer and boot from the USB flash drive / SD card (refer to your computer manufacturer's online resources).
  2. (Secure Boot only) A blue screen saying "Verfification failed: (15) Access Denied" will appear upon boot and you will have to enroll the secure boot key by selecting "OK->Enroll key from disk->EFI-SYSTEM->brunch.der->Continue". Reboot your computer and boot again from the USB flash drive / SD card.

The GRUB menu should appear, select ChromeOS and after a few minutes (the Brunch framework is building itself on the first boot), you should be greeted by ChromeOS startup screen. You can now start using ChromeOS from the usb .

 

 

Install ChromeOS on HDD from ChromeOS

  1. Boot your ChromeOS USB flash drive / SD card.
  2. Open the ChromeOS shell (CTRL+ALT+T and enter shell at the invite)
  3. Identify your HDD device name e.g. /dev/sdX (Be careful here as the installer will erase all data on the target drive)
  4. Install ChromeOS to HDD:
sudo chromeos-install -dst < your HDD device. e.g. /dev/sdX >
  1. Shutdown your computer and remove your ChromeOS USB flash drive / SD card.

Note: Even if you boot from GRUB on your HDD, if you have a ChromeOS USB flash drive / SD card inserted, the initramfs will boot from it in priority.

The GRUB menu should appear, select ChromeOS and after a few minutes (the Brunch framework is building itself on the first boot), you should be greeted by ChromeOS startup screen. You can now start using ChromeOS

 

 

 want to install chrome os? here's how.

"If elevators hadn't been invented, all the CEOs and important people would have their offices on the first floor as a sign of status...........

....And the entry level employees would be up on the 80th floor."

Link to comment
Share on other sites

Link to post
Share on other sites

And are there any missing features, does it lack updates or google play store functionality, and can you install Linux inside these versions of ChromeOS? Also is this less of a pain in the back passage to install and use compared to CloudReady?

Link to comment
Share on other sites

Link to post
Share on other sites

every thing is working but things like bluetooth and wifi depend on your pc

 

 want to install chrome os? here's how.

"If elevators hadn't been invented, all the CEOs and important people would have their offices on the first floor as a sign of status...........

....And the entry level employees would be up on the 80th floor."

Link to comment
Share on other sites

Link to post
Share on other sites

Why not just use Cloudready?

Quote me to see my reply!

SPECS:

CPU: Ryzen 7 3700X Motherboard: MSI B450-A Pro Max RAM: 32GB I forget GPU: MSI Vega 56 Storage: 256GB NVMe boot, 512GB Samsung 850 Pro, 1TB WD Blue SSD, 1TB WD Blue HDD PSU: Inwin P85 850w Case: Fractal Design Define C Cooling: Stock for CPU, be quiet! case fans, Morpheus Vega w/ be quiet! Pure Wings 2 for GPU Monitor: 3x Thinkvision P24Q on a Steelcase Eyesite triple monitor stand Mouse: Logitech MX Master 3 Keyboard: Focus FK-9000 (heavily modded) Mousepad: Aliexpress cat special Headphones:  Sennheiser HD598SE and Sony Linkbuds

 

🏳️‍🌈

Link to comment
Share on other sites

Link to post
Share on other sites

What does this method add that cloud ready by neverware does not have?

I am far from an expert in this so please correct me if I’m wrong.

Quote or tag me so I can see your response

 

PSU Tier List

Motherboard Tier List

Graphics Card Cooling Tier List

CPU Cooler Tier List

SSD Tier List

 

PARROT GANG

Mentioned in 7/10/20 WAN Show

Mentioned in 7/15/20 Techlinked

Mentioned in 7/17/20 Techlinked

Mentioned in 7/31/20 WAN Show

Mentioned in 7/31/20 Techlinked

Mentioned in 8/3/20 Techlinked

Mentioned twice in 8/5/20 Techlinked

Mentioned twice in 8/7/20 Techlinked

Mentioned in 8/12/20 Techlinked

Mentioned in 8/19/20 Techlinked

Link to comment
Share on other sites

Link to post
Share on other sites

google play functionality ,linux intergratiions and any other feature google adds as it is the official chrome os 

 

 

 want to install chrome os? here's how.

"If elevators hadn't been invented, all the CEOs and important people would have their offices on the first floor as a sign of status...........

....And the entry level employees would be up on the 80th floor."

Link to comment
Share on other sites

Link to post
Share on other sites

5 minutes ago, TheCoverUp said:

google play functionality ,linux intergratiions and any other feature google adds as it is the official chrome os 

 

 

iirc cloudready supports that, but why would you need linux integration when you can easily dual-boot on a normal laptop?

 

 

Either way, good work. I am a big fan of ChromeOS.

Quote me to see my reply!

SPECS:

CPU: Ryzen 7 3700X Motherboard: MSI B450-A Pro Max RAM: 32GB I forget GPU: MSI Vega 56 Storage: 256GB NVMe boot, 512GB Samsung 850 Pro, 1TB WD Blue SSD, 1TB WD Blue HDD PSU: Inwin P85 850w Case: Fractal Design Define C Cooling: Stock for CPU, be quiet! case fans, Morpheus Vega w/ be quiet! Pure Wings 2 for GPU Monitor: 3x Thinkvision P24Q on a Steelcase Eyesite triple monitor stand Mouse: Logitech MX Master 3 Keyboard: Focus FK-9000 (heavily modded) Mousepad: Aliexpress cat special Headphones:  Sennheiser HD598SE and Sony Linkbuds

 

🏳️‍🌈

Link to comment
Share on other sites

Link to post
Share on other sites

one thing I missed in the advantages...It also has a option to enable auto update..

 

 want to install chrome os? here's how.

"If elevators hadn't been invented, all the CEOs and important people would have their offices on the first floor as a sign of status...........

....And the entry level employees would be up on the 80th floor."

Link to comment
Share on other sites

Link to post
Share on other sites

I'm a little confused, how do install ChromeOS directly to a hard drive, no partitioning or dual booting, since I have a separate hard drive that I use for a separate OS like Linux. Does the Install to HDD mentioned above work?

Also when choosing a build, for example samus, which one to pick, the number ranges from 72 to 84, is the number just supposed to represent the version, and newer is therefore better?

Thanks for posting this, I wanted to try ChromeOS on my pc since I was curious to see how it worked but cloudready wouldn't boot up from the USB, maybe this works.

Link to comment
Share on other sites

Link to post
Share on other sites

@AndreiArgeanu

try the kedar nimbalkar method

I am yet to type the single boot method as my hand started to pain after typing so much

yes all the methods work but be careful 

 

 want to install chrome os? here's how.

"If elevators hadn't been invented, all the CEOs and important people would have their offices on the first floor as a sign of status...........

....And the entry level employees would be up on the 80th floor."

Link to comment
Share on other sites

Link to post
Share on other sites

I've got an issue, when I get to the step where I need create a ChromeOS disk image, that is for dual booting ChromeOS alongside Linux I get this error any idea?

ChromeOS recovery image dev/sdb2/home/andrei/Downloads not found

Link to comment
Share on other sites

Link to post
Share on other sites

@AndreiArgeanu

have you extracted and renamed the recovery to rammus_recovery.bin?

 want to install chrome os? here's how.

"If elevators hadn't been invented, all the CEOs and important people would have their offices on the first floor as a sign of status...........

....And the entry level employees would be up on the 80th floor."

Link to comment
Share on other sites

Link to post
Share on other sites

4 minutes ago, TheCoverUp said:

@AndreiArgeanu

have you extracted and renamed the recovery to rammus_recovery.bin?

I did it now but it yields the same result. Here's the command I ran and the files in my downloads folder.

image.png.282b0e18f40fef7ba47363b9a3b2694f.pngimage.png.cdb99c646befba201ad2d5dcf50b4085.png

Link to comment
Share on other sites

Link to post
Share on other sites

17 minutes ago, TheCoverUp said:

@AndreiArgeanu

have you extracted and renamed the recovery to rammus_recovery.bin?

Well I moved forwards but now i get this

Not enought space to create image file

Edit: Solved, had to reduce the size from 63 to something lower like 50.

Link to comment
Share on other sites

Link to post
Share on other sites

since you are already in downloads why are you typing the path from home? and you havent typed the name of the file in the end of the path thus giving you this result.....

 

 

what is the size of the usb?It has to be atleast around 15 gigs

 

 

wait! the commands you are executing have to be done on the chrome os install on the usb!

 

@AndreiArgeanu

It is written clearly in the above guide

in the brackets.

 

 

 want to install chrome os? here's how.

"If elevators hadn't been invented, all the CEOs and important people would have their offices on the first floor as a sign of status...........

....And the entry level employees would be up on the 80th floor."

Link to comment
Share on other sites

Link to post
Share on other sites

11 minutes ago, TheCoverUp said:

@AndreiArgeanu

It is written clearly in the above guide

in the brackets.

I'm dual booting with linux. I've done nearly everything, now I have no idea on how to add this to the GRUB loader so I can boot to Chrome OS now. For reference I used the guide on GitHub

menuentry "ChromeOS (boot from disk image)" {
	img_part=/dev/sdb2
	img_path=/chromeos.img
	search --no-floppy --set=root --file $img_path
	loopback loop $img_path
	linux (loop,gpt7)/kernel boot=local noresume noswap loglevel=7 disablevmx=off \
		cros_secure cros_debug loop.max_part=16 img_part=$img_part img_path=$img_path
	initrd (loop,gpt7)/initramfs.img
}

 

Link to comment
Share on other sites

Link to post
Share on other sites

the method is now in the main post.

 want to install chrome os? here's how.

"If elevators hadn't been invented, all the CEOs and important people would have their offices on the first floor as a sign of status...........

....And the entry level employees would be up on the 80th floor."

Link to comment
Share on other sites

Link to post
Share on other sites

It is possible to do it without the app but we have to google a bit 

 want to install chrome os? here's how.

"If elevators hadn't been invented, all the CEOs and important people would have their offices on the first floor as a sign of status...........

....And the entry level employees would be up on the 80th floor."

Link to comment
Share on other sites

Link to post
Share on other sites

9 minutes ago, TheCoverUp said:

but there is how to do it in the post  without this app

So is this fine?

image.png.363e0886269326e7f6e2a22508419790.png

Link to comment
Share on other sites

Link to post
Share on other sites

you should only paste the things inbetween the bracket..and If it doesnt boot type "rmmod tpm" before the first line

 want to install chrome os? here's how.

"If elevators hadn't been invented, all the CEOs and important people would have their offices on the first floor as a sign of status...........

....And the entry level employees would be up on the 80th floor."

Link to comment
Share on other sites

Link to post
Share on other sites

11 minutes ago, TheCoverUp said:

you should only paste the things inbetween the bracket..and If it doesnt boot type "rmmod tpm" before the first line

It didn't work for me without the rmmod tpm, now its doing a bunch stuff but I guess its OK. Hope it works. IMG_20200828_104017.thumb.jpg.a066eb3691ebb47351964cc3d80c1299.jpg

Link to comment
Share on other sites

Link to post
Share on other sites

the first boot takes some time.. but after that Its ready under a minute...but wait 2 mins at the login screen for the android container to start..... It is a bug but the problem doesnt occur with every device..and at the first boot this wont happen but after a reboot the container maynot start thus have to wait  on every reboot..

 

but it is a real beauty after that..

image.thumb.png.2b9393ef204cc2403e2e35bcbf1c8eed.png

 want to install chrome os? here's how.

"If elevators hadn't been invented, all the CEOs and important people would have their offices on the first floor as a sign of status...........

....And the entry level employees would be up on the 80th floor."

Link to comment
Share on other sites

Link to post
Share on other sites

21 minutes ago, TheCoverUp said:

you should only paste the things inbetween the bracket..and If it doesnt boot type "rmmod tpm" before the first line

Well, got past boot and it did all that stuff but now it seems to be stuck at the boot screen for quite a bit.

Edit: nevermind, sorry didn't see the replies. Thanks a lot for helping me though IMG_20200828_104221.thumb.jpg.b6a9066fa3f0299ddaf1defeb5080873.jpg

Link to comment
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×