Chrome OS 69부터 Chrome OS 사용자(선택한 Chromebook에서)는 Linux 앱을 설치하고 사용할 수 있습니다. 프로젝트 Crostini라고 하는 이 프로젝트는 LXD 컨테이너(가상 머신과 유사)에서 Linux 운영 체제를 실행하므로 샌드박스 환경에서 Linux 앱을 설치하고 실행할 수 있습니다. Crostini에서 사용되는 기본 Linux 배포판은 신뢰할 수 있는 안정적인 배포판인 Debian입니다. 그러나 오래된 소프트웨어 목록 때문에 데비안 팬이 아니라면 대신 우분투로 전환할 수 있습니다.
이 전환 절차에서는 터미널에 액세스하고 수많은 명령을 입력해야 합니다. 터미널에 익숙하지 않다면 이것은 당신을 위한 것이 아닙니다. 나머지는 Chrome OS에서 Ubuntu 컨테이너를 실행하는 방법입니다.
1. 크롬북을 부팅합니다. Linux 앱을 열지 마십시오. Chrome 브라우저를 열고 누르십시오. Ctrl 키 + 대체 + 티 Crosh 쉘을 시작합니다.
다음 명령으로 터미널을 시작합니다.
vmc start termina
2. 기본 Debian 컨테이너는 Chrome OS 파일 시스템과 통합하는 데 사용되는 “펭귄”으로 레이블이 지정됩니다. 데비안을 교체하려면 먼저 데비안 컨테이너에서 “펭귄” 레이블을 제거해야 합니다.
lxc stop penguin --force
lxc rename penguin debian
3. 다음으로 penguin이라는 새 Ubuntu 컨테이너를 만듭니다.
lxc launch ubuntu:18.04 penguin
인터넷에서 이미지를 가져오므로 시간이 꽤 걸립니다.
4. 이 작업이 완료되면 새 컨테이너로 부팅합니다.
lxc exec penguin -- bash
5. 시스템 업데이트 및 업그레이드:
apt update apt upgrade
6. 기본 파일 시스템과 통합할 수 있도록 Crostini 패키지를 설치합니다. 다음 명령을 입력하여 cros-packages의 저장소를 추가하십시오.
echo "deb https://storage.googleapis.com/cros-packages stretch main" > /etc/apt/sources.list.d/cros.list if [ -f /dev/.cros_milestone ]; then sudo sed -i "s?packages?packages/$(cat /dev/.cros_milestone)?" /etc/apt/sources.list.d/cros.list; fi apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1397BC53640DB551 apt update
종속성을 설치합니다.
apt install binutils
7. 저장소를 추가했지만 Crostini 패키지를 직접 설치할 수 없습니다. 해결 방법은 다음과 같습니다.
다음 명령을 사용하여 Crostini 패키지를 다운로드합니다.
apt download cros-ui-config
경고 메시지를 받게 됩니다. 무시해.
이제 다운로드한 패키지를 추출합니다.
ar x cros-ui-config_0.12_all.deb data.tar.gz gunzip data.tar.gz tar f data.tar --delete ./etc/gtk-3.0/settings.ini gzip data.tar ar r cros-ui-config_0.12_all.deb data.tar.gz rm -rf data.tar.gz
deb 파일에서 Crostini 패키지를 설치합니다.
apt install cros-guest-tools ./cros-ui-config_0.12_all.deb
8. 마지막으로 다운로드한 패키지를 제거합니다.
rm cros-ui-config_0.12_all.deb
9. 설치 adwaita-icon-theme-full 패키지. 이 패키지 GUI가 없으면 Linux 앱에 매우 작은 커서가 있을 수 있습니다.
apt install adwaita-icon-theme-full
10. 컨테이너의 기본 사용자는 “ubuntu”입니다. 이를 제거하고 Gmail 사용자 이름으로 교체해야 합니다. 이 Ubuntu 컨테이너를 기본 파일 시스템과 통합하려면 Gmail 사용자 이름(Chromebook에 로그인하는 데 사용하는 Gmail 계정)을 사용해야 합니다. 이것이 없으면 파일 관리자에서 Linux 파일에 액세스할 수 없습니다.
killall -u ubuntu groupmod -n gmail-username ubuntu usermod -md /home/gmail-username -l gmail-username ubuntu usermod -aG users gmail-username loginctl enable-linger gmail-username sed -i 's/ubuntu/gmail-username/' /etc/sudoers.d/90-cloud-init-users
메모: “gmail-username”을 자신의 Gmail 사용자 이름으로 바꾸십시오.
11. 이 작업이 완료되면 컨테이너를 종료합니다.
shutdown -h now
크롬북을 재부팅합니다. 다시 시작되면 런처에서 터미널 애플리케이션을 시작합니다. 실패하면 다시 시도하십시오.
12. 시스템을 다시 업데이트해 보십시오.
sudo apt update
오류 메시지가 표시되는 경우:
공개 키를 사용할 수 없기 때문에 다음 서명을 확인할 수 없습니다. NO_PUBKEY 7638D0442B90D010 NO_PUBKEY 04EE7237B7D453EC
시스템에서 Crostini 패키지의 개인 키를 찾을 수 없기 때문입니다. 아래 명령을 사용하여 개인 키를 추가하십시오.
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 7638D0442B90D010 8B48AD6246925553
그리고 당신은 달릴 수 있어야합니다 apt update 아무 문제없이.
이제 다음을 사용하여 Linux 앱 설치를 시작할 수 있습니다. apt install 명령. 예를 들어 최신 버전의 Firefox를 설치하려면 다음 명령을 사용합니다.
sudo apt install firefox
데비안 컨테이너 제거
Debian 컨테이너를 더 이상 사용하지 않는 경우 이를 제거하여 저장 공간을 확보할 수 있습니다.
1. 크롬 브라우저에서 Ctrl 키 + 대체 + 티 Crosh 쉘을 시작합니다.
2. 터미널을 시작합니다.
vmc start termina
3. Debian 컨테이너를 제거합니다.
lxc delete debian
결론
안정성과 보안을 선호한다면 기본 Debian 컨테이너를 사용하는 것이 최선의 선택입니다. 그렇지 않은 경우 더 많은 유연성과 소프트웨어 옵션을 제공하는 Ubuntu로 전환할 수 있습니다. 많이 있습니다 LXD 이미지 사용할 수 있으므로 우분투에 국한되지 않고 Arch Linux를 선호합니까? 그것도 사용할 수 있습니다.
우리의 활동을 지원해주세요 ❤️
이 글이 마음에 드셨다면, 앞으로도 좋은 콘텐츠를 계속 발행할 수 있도록 팁을 남겨주세요.













![THINK: The user wants to translate the title "Catch a Brainrot Tier List & Guide (RELEASE)" into Korean. I need to break down the key terms and concepts in the English title and find their appropriate Korean equivalents.
Catch a Brainrot: This is a playful, internet slang phrase.
"Brainrot" (뇌절) is a common internet slang in Korean, referring to something so cringey, overdone, or nonsensical that it makes your brain "rot" or shut down. It can also mean obsessing over something to an unhealthy degree.
"Catch a Brainrot" could be interpreted as "falling into brainrot," "getting brainrot," or simply "experiencing brainrot."
A common way to express "getting into / falling into [something bad/annoying/overdone]" in Korean internet slang is by using the noun and then implying the action. For example, "뇌절" itself can be used. Or, one might say "뇌절 각" (a situation ripe for brainrot), or "뇌절 유발" (brainrot-inducing).
However, "Catch a Brainrot" here seems to be the topic of the tier list. The tier list is about brainrot. So, maybe just referring to "brainrot" is enough.
Let's consider the nuance. "Catch a Brainrot" implies an action or a state. A tier list for brainrot items/situations.
Perhaps something like "뇌절 요소" (brainrot elements/factors) or "뇌절 유형" (brainrot types).
Or, simply using "뇌절" as the core concept.
If it's about identifying and categorizing different "brainrot" things, then "뇌절" as a concept is central.
"Catch a Brainrot" can be a bit tricky. Does it mean "how to get brainrot" or "how to identify brainrot"? Given the "Tier List & Guide," it's more likely about identifying and navigating different types of brainrot.
Let's try to capture the "catch" part. If it's about identifying or understanding brainrot.
"뇌절" is the direct translation for brainrot.
"잡다" (japda) means "to catch," but "뇌절을 잡다" doesn't sound natural in this context.
"뇌절에 대한" (about brainrot) or "뇌절 알아보기" (understanding brainrot).
Considering "Catch a Brainrot" as a playful, informal title, a direct translation might lose the feel.
Let's focus on what the tier list is. It's a tier list of brainrot-inducing things or brainrot situations. So the focus is on "brainrot."
Just "뇌절" might be sufficient as the object of the list.
Tier List: "티어 목록" (tieo mongnok) or "티어 리스트" (tieo riseuteu) are common. "등급표" (deunggeuppyo) is also possible for "tier list" or "ranking chart." "티어표" (tieopyo) is very common internet slang. "티어표" fits the informal tone better.
& Guide: "&" is often translated as "및" (mit), "그리고" (geurigo), or just omitted and implied by context. "Guide" is "가이드" (gaideu) or "안내서" (annaeseo). "가이드" is more common in such contexts.
(RELEASE): "(출시)" (chulsi), "(공개)" (gonggae), or "(발매)" (balmae). "(출시)" or "(공개)" are suitable for a content release. "(공개)" is perhaps more general for a release of information/content.
Combining them:
Option 1 (Focus on "brainrot" as the subject):
뇌절 티어표 & 가이드 (공개)
(Noejjeol tieopyo & gaideu (gonggae))
Option 2 (Trying to keep "catch"):
Is there a way to say "spotting brainrot" or "understanding brainrot" in a concise, slangy way?
"뇌절 잡기" (noejjeol japgi) - "catching brainrot," but again, "잡기" sounds like a game or a physical action.
"뇌절 포착" (noejjeol pochak) - "detecting/spotting brainrot," but "포착" is a bit too formal.
"뇌절 알아보기" (noejjeol arabogi) - "getting to know brainrot," "learning about brainrot."
"뇌절 공략" (noejjeol gongnyak) - "brainrot strategy/guide," implies how to deal with/understand brainrot. This is often used for game guides. This could fit "Catch a Brainrot Tier List & Guide."
Let's reconsider "Catch a Brainrot." If it's a guide for catching brainrot elements, then "뇌절 공략" or "뇌절 가이드" directly fits the "Guide" part.
The title is "Catch a Brainrot Tier List & Guide."
This implies the Tier List is about catching/understanding brainrot.
Let's break "Catch a Brainrot Tier List" as "뇌절 티어표." This means a tier list of brainrot.
Then "Guide" is just "가이드."
So, "뇌절 티어표 & 가이드" (Noejjeol tieopyo & gaideu) seems the most natural and concise translation for "Brainrot Tier List & Guide."
What about "Catch a"?
If the original was "How to Catch Brainrot: A Tier List & Guide," then "뇌절 잡는 법: 티어표 및 가이드" would be appropriate.
But it's "Catch a Brainrot Tier List & Guide." This phrasing suggests the tier list itself is a "catch a brainrot" type of list. It's almost like a category.
Perhaps "뇌절 캐치" (noejjeol kaechi - brainrot catch) could be integrated.
"뇌절 캐치 티어표 & 가이드" (Noejjeol kaechi tieopyo & gaideu)
"캐치" (kaechi) as in English "catch" is sometimes used for "catching on," "spotting," or "grabbing attention." This could work.
Let's compare:
뇌절 티어표 & 가이드 (공개) - Very direct, concise. "Brainrot Tier List & Guide (Release)." This implicitly covers "Catch a Brainrot" by making "brainrot" the subject of the list/guide.
뇌절 캐치 티어표 & 가이드 (공개) - Adds "캐치" which directly translates "Catch" and fits the informal tone. "Brainrot Catch Tier List & Guide (Release)." This explicitly states it's about catching or identifying brainrot.
Given the playful nature of "Catch a Brainrot," "뇌절 캐치" feels a bit more aligned with the original's intent of "spotting" or "identifying" brainrot items/situations. "캐치" is often used in Korean slang for "catching a glimpse," "catching on," or "spotting something."
Let's try to verify "뇌절 캐치". "밈 캐치" (meme catch) or similar phrases are used. It makes sense in an internet context.
So, the structure would be:
"Catch a Brainrot" -> 뇌절 캐치
"Tier List" -> 티어표
"& Guide" -> & 가이드
"(RELEASE)" -> (공개)
Putting it together:
뇌절 캐치 티어표 & 가이드 (공개)
Final check for plain text requirement:
"Return only the translated title as plain text. Do not include any explanations, additional text, formatting, or extra punctuation."
The chosen translation is "뇌절 캐치 티어표 & 가이드 (공개)". This fits all requirements.뇌절 캐치 티어표 & 가이드 (공개)](https://kr.moyens.net/wp-content/uploads/2026/07/1783863662_THINK-The-user-wants-to-translate-the-title-Catch-a-280x210.jpg)









