發表文章

目前顯示的是有「ibus」標籤的文章

ibus-array compile

Fedora 24 上面的編譯方式 1. sudo dnf install @development-tools gettext-devel libtool ibus-devel libsq3-devel 2. mkdir git 3. cd git 4. git clone https://github.com/lexical/ibus-array.git 5. cd ibus-array 6. ./autogen.sh 7. ./configure prefix=/usr 8. make 9. sudo make install 10. 重新啟動 11. 從系統設定的地區和語言裡面,找漢語(臺灣)下面的 Array 加入即可。 未來官方源碼更新後,就進到 ibus-array 資料夾下,git pull 取得最新源碼,重新編譯一下即可 1. cd git/ibus-array 2. git pull 3. make clean 4. make 5. sudo make install 6. 重新啟動

Build ibus-libzhuyin for Testing (from epico repo)

本文授權為 CC BY-SA 3.0。 作者:陳貴鑫與曾政嘉 Install Dependancies  sudo dnf -y install gnome-common automake autoconf intltool ibus-devel libpinyin-devel opencc-devel gcc-c++ libstdc++-devel libdb-devel Git Clone  mkdir git  cd git   git clone https://github.com/epico/libzhuyin.git  git clone https://github.com/epico/ibus-libpinyin.git   Compile And Install  libpinyin  cd libpinyin  ./autogen.sh  ./configure prefix=/usr --enable-libzhuyin  make  sudo make install   cd .. ibus-libzhuyin  cd ibus-libzhuyin  ./autogen.sh  ./configure prefix=/usr  make  sudo make install   Restart Ibus ibus-daemon --replace & (因為開啟之後他不會進到背景執行,所以加上 & ) or nohup ibus-daemon --replace & (上面的方法在關閉 terminal 之後會失效,所以把他寄放給系統) or reboot (重開機也行啦)