1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ChromebookのLinux環境が容量不足等で起動しなくなった際の対処法

Posted at

正常に起動できる保証はありません。ご了承ください。

経緯

ChromebookなどのChromeOSにはLinuxの開発環境をインストールできます。先程EasyOCRをインストールしていたところ、おそらく容量不足でターミナルが起動しなくなりました。その対処法をメモしておきます。

発生したエラー

ERROR vsh: [vsh.cc(173)] Failed to launch vshd for termina: penguin: requested container does no
t exist: penguin

実行したコマンド①

まず、Ctrl+Alt+Tでcroshを開いてください。
そして以下のコマンドを実行します。

croshで
vmc start termina

すると、chroneos@localhostの下でLinux環境のコンテナが開きます。
次にこのコマンドで普段のユーザーとして操作できるようにします。(lxcコマンドはよく理解できていません。すみません。)

chroneos@localhost
lxc start penguin
lxc exec penguin -- sudo --user <ユーザー名> --login

(penguinはホスト名)

ここで起動するかと思いましたが、termialのアプリでは未だ同様のエラーが出ていました。

実行したコマンド②

ただの再起動です

(username)@penguin
vmc stop termina
vmc start termina

これで無事起動することができました。容量不足には気をつけましょう。

参考

https://support.google.com/chromebook/thread/243441071/penguin-not-opening
https://issuetracker.google.com/issues/291148932

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?