Versions
Documentation for ChromeOS and Kernel Versions, as well as recovering.
Determine your ChromeOS version
Section titled “Determine your ChromeOS version”- Open Settings in ChromeOS
- Go to
About ChromeOS
- Note the characters before the first
.
as your version. (Ex: v132)
Recovering
Section titled “Recovering”What versions can I Recover to?
Section titled “What versions can I Recover to?”On an unmodified device, you can recover to any version within the range your version is currently in.
Kernver | ChromeOS Versions |
---|---|
Any | All Versions |
1 | All Versions |
2 | v112-v119 |
3 | v120-v123 |
4 | v124-v132 |
5 | v132-v137 |
6 | v138+ |
Requirements
Section titled “Requirements”- USB drive (8 GB+)
- One of the following: Chromebook Recovery Utility (ChromeOS, Windows, MacOS),
dd
(Linux/macOS/POSIX-compliant), or balenaEtcher (Linux, MacOS, Windows)
Find your board name
Section titled “Find your board name”- Open
chrome://version
on your Chromebook - Find Platform: row — the word after
stable-channel
is your board name (e.g., reven)
Downloading a recovery image
Section titled “Downloading a recovery image”- Visit cros.download and click “Recovery Images”.
- Search for your board name and click the board name in the table.
- Download the
.zip
file. - Find the version you want and click the link in the download column.
Flash image to USB
Section titled “Flash image to USB”Using Chromebook Recovery Utility (Windows/macOS/Chrome OS):
Section titled “Using Chromebook Recovery Utility (Windows/macOS/Chrome OS):”- Install Chromebook Recovery Utility
- Open it (click on the extension icon from the puzzle piece)
- Click the gear icon → “Use local image”
- Select the
.zip
file - Choose your USB drive and create the recovery USB
Option 2: balenaEtcher
Section titled “Option 2: balenaEtcher”- Go to https://etcher.balena.io/ and download and install balenaEtcher if needed.
- Click “flash from file” and select the ZIP file (if it fails, unzip it and then try again).
- Select your USB after clicking “select target”.
- Click “flash”.
Option 3: Using dd (Linux/macOS/POSIX-compliant):
Section titled “Option 3: Using dd (Linux/macOS/POSIX-compliant):”- Unzip the
.zip
file either through GUI, or through a command likeunzip
- Identify your USB device by running
sudo fdisk -l
(Linux) or using macOS Disk Utility. It should say something likeDisk /dev/sd...
(Linux) and in macOS open Disk Utility, select it under “External” and you should seeDevice:
. You will want to use/dev/INSERTTHATNAMEHERE
instead of/dev/sdX
. Other OSes will have to see relevant documentation for identifying the proper USB device. - Write the image (replace
/dev/sdX
and file path. Remember to use the unzipped file):
sudo dd bs=4M if=/PATH/TO/IMAGE.bin of=/dev/sdX conv=sync status=progress
Recover ChromeOS
Section titled “Recover ChromeOS”- Enter recovery mode: Esc + Refresh + Power
- Insert recovery USB
- Follow prompts to reinstall Chrome OS
- Remove USB when done. You can wipe it in Chrome OS Recovery Utility with gear icon → “erase recovery media”. You can
mkfs.ext4
on the block device in Linux (on Mac use Disk Utility or CRU).