ChromeBook 筆記(一)

暑假時候,因為某任務,朋友借了部「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/ 文章做的。

  1. 設定,開發者模式,啟用 Linux
  2.    

  3. 套件更新, sudo apt -y update && sudo apt -y upgrade
  4. 可以 在 **/etc/apt/sources.list** 下,加入以下五行,以設定套件來源

    • 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

       

  5. 設定系統使用語系環境,先在 /etc/environment 加入以下兩行:
  6. LANG=”zh\_TW.UTF-8″
    LANGUAGE=”zh\_TW”

  7. 再執行語系設定
  8. sudo dpkg-reconfigure locales
    ##若 locales 此套件未安裝,記得先安裝 ##

  9. 安裝中文字型
  10. sudo apt -y install fonts-noto

  11. 安裝輸入法
  12. sudo apt-get install fcitx fcitx-chewing
    ##目前 fcitx5 也已完成並釋出,所以會一併安裝##

  13. 因為沒有GUI介面,所以要移除其中Module 避免相衝問題。
  14. sudo apt remove fcitx-module-kimpanel fcitx5-module-kimpanel

  15. 在 fcitx 架構裡,加入 酷音輸入法
  16. ##此動作很重要,若缺,會無法啟動酷音輸入。##
    執行 **fcitx-config-gtk3**

  17. 在 /etc/systemd/user/cros-garcon.service.d/cros-garcon-override.conf 加入底下三行,指定環境使用 fcitx 輸入法
  18. Environment=”GTK_IM_MODULE=fcitx”
    Environment=”QT_IM_MODULE=fcitx”
    Environment=”XMODIFIERS=@im=fcitx”

  19. 讓酷音輸入法在登入時,可以自動執行,所以在使用者家目錄底下的 「.sommelierrc 」檔案加入:
  20. /usr/bin/fcitx-autostart

  21. 重新啟動 Linux 。
  22. 好,可以在 Linux 環境下輸入中文了!

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *

*