暑假時候,因為某任務,朋友借了部「ChromeBook」給我,於是便趁了此機會,對此機器好好地探索了一番。
機器規格可在此網站窺知一二:https://24h.pchome.com.tw/prod/DHAFFN-A9009Z94L?fq=/S/DHAALP
ChromeBook 主要是倚賴 Google 的服務來運作,若 Google 斷線,ChrmeBook 便不太好使用了。
不過,目前新款機器,都可以透過「啟動Linux」來做延續使用。
以下設定是在「Linux」狀態下要使用「中文輸入」的設定,我是參照:https://www.lifeyou.net/2019/03/16/chromebook-linux-crostini/ 文章做的。
- 設定,開發者模式,啟用 Linux
- 套件更新, sudo apt -y update && sudo apt -y upgrade
- deb http://ftp.tw.debian.org/debian/ buster main non-free contrib
- deb http://ftp.tw.debian.org/debian/ buster-updates main contrib non-free
- deb http://security.debian.org/debian-security buster/updates main contrib non-free
- deb http://ftp.tw.debian.org/debian/ buster-backports main contrib non-free
- deb http://ftp.tw.debian.org/debian/ buster-proposed-updates main contrib non-free
- 設定系統使用語系環境,先在 /etc/environment 加入以下兩行:
- 再執行語系設定
- 安裝中文字型
- 安裝輸入法
- 因為沒有GUI介面,所以要移除其中Module 避免相衝問題。
- 在 fcitx 架構裡,加入 酷音輸入法
- 在 /etc/systemd/user/cros-garcon.service.d/cros-garcon-override.conf 加入底下三行,指定環境使用 fcitx 輸入法
- 讓酷音輸入法在登入時,可以自動執行,所以在使用者家目錄底下的 「.sommelierrc 」檔案加入:
- 重新啟動 Linux 。
可以 在 **/etc/apt/sources.list** 下,加入以下五行,以設定套件來源
LANG=”zh\_TW.UTF-8″
LANGUAGE=”zh\_TW”
sudo dpkg-reconfigure locales
##若 locales 此套件未安裝,記得先安裝 ##
sudo apt -y install fonts-noto
sudo apt-get install fcitx fcitx-chewing
##目前 fcitx5 也已完成並釋出,所以會一併安裝##
sudo apt remove fcitx-module-kimpanel fcitx5-module-kimpanel
##此動作很重要,若缺,會無法啟動酷音輸入。##
執行 **fcitx-config-gtk3**
Environment=”GTK_IM_MODULE=fcitx”
Environment=”QT_IM_MODULE=fcitx”
Environment=”XMODIFIERS=@im=fcitx”
/usr/bin/fcitx-autostart
好,可以在 Linux 環境下輸入中文了!