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?

More than 5 years have passed since last update.

Chromebook(ASUS C100PA)でVScodeを使う(ENG SUB)

Posted at

0.さきがき

くっそ大変だった。主にVScodeのインストールが。ASUS C100PAは32bitOSだが、VScode先生はすでに32bitのLinuxは見捨てておられる。過去バージョンをインストールしようにもエラー。全部で2時間弱かかった、、、はぁ。

コミュニティビルドを提供してくれているheadmeltedさんに感謝。

1.Chroutonを用いてUbuntuを導入する

参考:Crouton を使って ChromeBook に Xubuntu 環境を構築する

2.Ubuntu上にVScodeを導入する

参考:headmeltedさんのサイト
headmeltedさんさんがchromebookやら見捨てられた32bitOSやら向けのコミュニティビルドを公開してくれている。
このうち、Linux向けのページに飛んでインストール用のshellをwgetしてくる。+xを忘れずに。
最新のビルドではインストールはできるが、うまく動作しなかったため、過去のビルドを指定してインストールする。

.sh
#最新のビルドだとwindowがenptyになったので、過去のバージョンを指定する
#ln:19  code_executable_name="code-oss";
code_executable_name="code-oss=1.29.0-1539702286";

#headmeltedさんを信頼する(#Out/ln:49 In/ln:50)
#ln:49 apt-get install -t ${repo_name} -y ${code_executable_name};
apt-get install -t ${repo_name} -y --allow-unauthenticated ${code_executable_name}

3. code-oss コマンドで起動

.sh
$ code-oss

ENG

0. First of all

It was so tough work to install vscode. ASUS C100PA works as 32bit and
Mr.VScode dropped 32bit linux at the latest build. It took about 2 hours to make it...

Thank you for https://github.com/headmelted.

1.Install Ubuntu with Chrouton

Reference:Crouton を使って ChromeBook に Xubuntu 環境を構築する

2.Install vscode on Ubuntu

参考:https://code.headmelted.com
headmelted published the community builds for chromebook, 32bit linux, and so on.
Wget the install shell. Do not forget +x.
At the latest build, it is possible to install, but enpty window.
So specifying some old version.

.sh
# Specifying older version
#ln:19  code_executable_name="code-oss";
code_executable_name="code-oss=1.29.0-1539702286";

# Just trust Mr.headmelted(#Out/ln:49 In/ln:50)
#ln:49 apt-get install -t ${repo_name} -y ${code_executable_name};
apt-get install -t ${repo_name} -y --allow-unauthenticated ${code_executable_name}

3. Execute with code-oss

Thats it.

.sh
$ code-oss
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?