2018年9月22日土曜日

Chromebook C101PA に Ubuntu をインストール

自分用のメモなので、要点のみ
・開発者モードに変更
・Croutonダウンロード
・Ubuntuインストール
 chroot環境に任意の名前を付けることで、複数の環境を切り替えて使えるように
・セットアップ(パッケージのインストール)
 enter-chrootから、シェルスクリプトで実行
・プレーンな状態でバックアップを取っておく

[Crouton]
https://goo.gl/fd3zc

[Install]
C:$ sudo sh ~/Downloads/crouton -n <name> -r xenial -t xfce,keyboard,audio,extension,touch,xorg

[Setup]
C:$ sudo enter-chroot -n <name>

U:$ vi setup.sh
i
--
#!/bin/sh

apt -y update

## Aplication
apt -y install \
fonts-takao ibus-anthy \
python-dev python-pip \
software-center synaptic gparted thunar-archive-plugin \
transmission firefox chromium-browser geany nano curl git \
libjpeg-dev zlib1g-dev

apt -y autoremove

#ubuntu-restricted-extras lame asunder audacity handbrake mpv
--
esc -> :wq

U:$ sudo sh setup.sh
U:$ exit

chroot環境のリスト表示
C:$ sudo edit-chroot -a

バックアップ
C:$ sudo edit-chroot -b <name>

起動
C:$ sudo startxfce4 -n <name>

あとは、xfce側で自分用に設定

0 件のコメント:

コメントを投稿