[ChromeOS] Lenovo X1 Carbon 에 Brunch로 설치하기
- 꼬반
- 2021. 2. 8. 14:16
[크롬 OS 설치하기 (브런치)
안녕하세요? 크롬 OS 설치하는 방법에 대해서 알아보겠습니다. 1. 클라우드 레디를 사용하는 방법 2. 브런치를 사용하는 방법 이렇게 두 가지가 있는데요. 플레이스토어 기능 때문에 저는 2번을
blog.djjproject.com](https://blog.djjproject.com/661)
m.blog.naver.com/letskorail190/221985318771
[플레이 스토어가 되는 크롬 OS를 PC에 설치하기
(2021.01.27 업데이트)인텔 CPU는 대부분 완벽하게 호환되고, AMD는 스토니 릿지와 라이젠 3000 시라...
blog.naver.com](https://m.blog.naver.com/letskorail190/221985318771)
위의 사이트에서 나온 통합이미지로 설치를 진행 시 설치 후 부팅 (Miss boot ~)이 되지 않아 아래 사이트를 참조하여 설치 USB를 다시 만들어서 진행하였다.
linuxmint.com/edition.php?id=286
[Linux Mint 20.1 "Ulyssa" - Xfce (64-bit) - Linux Mint
Linux Mint 20.1 "Ulyssa" - Xfce (64-bit) Information about this edition Download mirrors
linuxmint.com](https://linuxmint.com/edition.php?id=286)
위 사이트에서 현재 최신 버전인 20.1 이미지를 다운 받아 rufus로 부팅 usb를 만들어 줌.
github.com/sebanc/brunch/releases
[Releases · sebanc/brunch
Boot ChromeOS on x86_64 PC (supports most Intel CPU/GPU or AMD Stoney Ridge) - sebanc/brunch
github.com](https://github.com/sebanc/brunch/releases)
위 사이트에서 현재 Releases 버전을 확인하였는데 r88버전이 나와있으나 recovery image가 아직 나오지 않아 r87 버전으로 진행 (github.com/sebanc/brunch/releases/download/r87-stable-20201227/brunch_r87_stable_20201227.tar.gz)
현재 설치를 진행하는 기종에 따라 recovery image를 받아야 해서 아래 두 사이트를 참고
[Chrome OS Updates
cros.tech](https://cros.tech/table)
cros-updates-serving.appspot.com/
[CrOS Updates Serving
hatch13099.110.084.0.4147.136no updateno updateno update13597.66.088.0.4324.10913597.66.088.0.4324.10913729.16.089.0.4389.4113764.0.090.0.4400.013768.0.090.0.4405.280 81 83 84 86 87IdeaPad Flex 5i Chromebook (13", 5), HP Chromebook x360 14c, HP Pro c640 Ch
cros-updates-serving.appspot.com](https://cros-updates-serving.appspot.com/)
하였는데 Brand를 검색하기 좀더 편한 아래 사이트에서 이미지를 받았음. 동일한 제품은 없었고
Lenovo ThinkPad 13 이미지로 진행 하였음. (dl.google.com/dl/edgedl/chromeos/recovery/chromeos_13505.111.0_sentry_recovery_stable-channel_mp.bin.zip)
Brunch를 압축을 풀고 해당 폴더 안에 다운받은 chrome os 이미지도 압축을 풀어 위치해준뒤
뒤 설치 스크립트 편의를 위해 이미지의 이름을 rammus_recovery.bin 으로 바꿔줌.
Brunch 폴더를 Chrome OS 로 바꿔주고 usb안에 복사해 준다. 아래 설치 스크립트를 생성하여 역시 해당 폴더안에 위치.
(install.sh)
#!/bin/sh
sudo apt-get update
sudo apt-get install pv
sudo apt-get install cgpt
sudo fdisk -l
read -p "enter disk name (example : /dev/sda) : " DISK
sudo bash chromeos-install.sh -src rammus_recovery.bin -dst $DISK
이후 부팅 후 해당 스크립트를 실행하면 자동으로 설치되어 부팅 확인하였음.
수정 1. 해당 recovery img는 Linux beta 기능을 제공하지 않아 pryo 버전으로 다시 설치하였음.