sudo apt-get install ibus-table-cangjie3 #這是安樣第三代倉頡輸入法
sudo apt-get install ibus-table-cangjie-big #倉頡輸入法
sudo apt-get install ibus-table-wubi #五筆輸入法
sudo apt-get install ibus-table-cantonese #廣東話輸入法
sudo apt-get install ibus-table-emoji #表情符號輸入法
sudo apt-get install ibus-table-quick #速成輸入法
sudo apt-get install ibus-table-stroke5 #筆劃輸入法
sudo apt-get install ibus-zhuyin #注音輸入法
sudo apt-get install ibus-pinyin #拼音輸入法
ibus restart
2017年6月28日 星期三
2017年6月27日 星期二
Ubuntu 16.04 Guest Session 停用
開啟終端機 Ctrl + Alt + T
sudo nano /usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf
新增 allow-guest=false
sudo nano /usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf
新增 allow-guest=false
2015年9月2日 星期三
ubuntu install fortran
Fortran 77 Compiler
apt-get install fort77
Fortran 95 Compiler
apt-get install gfortran
GNU C++ Compiler
apt-get install build-essential
apt-get install g++
2015年2月9日 星期一
Ubuntu mount NAS
mount -t cifs //{ip address}/{share} -o username={username},password={password} /mnt/test/
fstab
//{ip address}/{share} /mnt/test/ cifs username=jon,password=password,iocharset=utf8,mode=0777,dir_mode=0777 0 0
//192.168.1.1/share /mnt/test/ cifs username=test,password=test 0 0
fstab
//{ip address}/{share} /mnt/test/ cifs username=jon,password=password,iocharset=utf8,mode=0777,dir_mode=0777 0 0
//192.168.1.1/share /mnt/test/ cifs username=test,password=test 0 0
2015年1月12日 星期一
Ubuntu Grub Customizer
sudo add-apt-repository ppa:danielrichter2007/grub-customizer
sudo apt-get update
sudo apt-get install grub-customizer
sudo apt-get update
sudo apt-get install grub-customizer
2013年1月30日 星期三
Monitorix 安裝
apt-get update
apt-get install monitorix
service apache2 reload
service monitorix restart
http://localhost/monitorix/
2013年1月25日 星期五
ubuntu設定IP
設定IP
/etc/network/interfaces
auto eth0
iface eth0 inet static
address 192.168.10.10
netmask 255.255.255.0
gateway 192.168.10.1
設定DNS
/etc/resolv.conf
nameserver 192.168.10.1
重新啟動網路
/etc/init.d/networking restart
2013年1月24日 星期四
2012年9月24日 星期一
Ubuntu RAID 5 4TB HD
OS : Ubuntu 14.10 AMD64
HD : 2TB X 3
RAID : 5 (4TB)
TABLE : GPT
磁區分割:
開機區:EFI :500 M
根目錄:50 G
SWAP:5 G
HOME:3800721 M
BOOT OPTION
Advanced options for ubuntu
Linux 3.16.0-23-generic
GRUB
Class ubuntu
Vmlinuz-3.16.0-30-generic -> Vmlinuz-3.16.0-23-generic
HD : 2TB X 3
RAID : 5 (4TB)
TABLE : GPT
磁區分割:
開機區:EFI :500 M
根目錄:50 G
SWAP:5 G
HOME:3800721 M
BOOT OPTION
Advanced options for ubuntu
Linux 3.16.0-23-generic
GRUB
Class ubuntu
Vmlinuz-3.16.0-30-generic -> Vmlinuz-3.16.0-23-generic
2012年6月19日 星期二
PHP MySQL Apache 安裝
安裝MySQL-Server
apt-get install mysql-server
安裝Apache HTTP Server
apt-get install apache2
安裝PHP for Apache HTTP Server
apt-get install php5
安裝MySQL for Apache HTTP Server
apt-get install libapache2-mod-auth-mysql
apt-get install php5-mysql
2011年5月12日 星期四
2011年4月30日 星期六
2011年2月28日 星期一
ubuntu 播放DVD
開啟終端機,輸入
sudo apt-get install libdvdread4
安裝好後,再輸入
sudo /usr/share/doc/libdvdread4/install-css.sh
掛載 DVD 用預設的播放器就能播放了
sudo apt-get install libdvdread4
安裝好後,再輸入
sudo /usr/share/doc/libdvdread4/install-css.sh
掛載 DVD 用預設的播放器就能播放了
2010年12月12日 星期日
Ubuntu安裝OpenOffice
到官方下載 .deb 檔案
http://download.openoffice.org/other.html
移除舊版OpenOffice版本
sudo apt-get remove --purge openoffice.org-common
進入解壓縮後裡面的 DEBS 資料夾
sudo dpkg -i *.deb
安裝選單
cd desktop-integration
sudo dpkg -i *.deb
http://download.openoffice.org/other.html
移除舊版OpenOffice版本
sudo apt-get remove --purge openoffice.org-common
進入解壓縮後裡面的 DEBS 資料夾
sudo dpkg -i *.deb
安裝選單
cd desktop-integration
sudo dpkg -i *.deb
2010年9月20日 星期一
File Roller中文亂碼
Ubuntu 10.4中預設安裝的壓縮管理員程式是File Roller
完全移除rar或unrar
sudo apt-get remove rar
sudo apt-get remove unrar
安裝p7zip和p7zip-rar
sudo apt-get install p7zip
sudo apt-get install p7zip-rar
2010年4月29日 星期四
ubuntu install java
安裝Java
修改中文亂碼
aptitude install ttf-arphic-uming
sed -i 's/uming.ttf$/uming.ttc/g' /usr/lib/jvm/java-1.6.0-openjdk/jre/lib/fontconfig.properties
2009年10月10日 星期六
2009年9月22日 星期二
ubuntu軟體安裝
適用於debian/ubuntu
apt-get
aptitude
更新索引檔
sudo apt-get update
安裝軟體
sudo apt-get install 軟體名稱
移除軟體
sudo apt-get remove 軟體名稱
安裝過的軟體進行更新
sudo apt-get upgrade
套件為基礎的更新
sudo apt-get dist-upgrade
安裝軟體時不知道那個軟體在套件管理中的名稱
apt-cache search 關鍵字
apt-get
aptitude
更新索引檔
sudo apt-get update
安裝軟體
sudo apt-get install 軟體名稱
移除軟體
sudo apt-get remove 軟體名稱
安裝過的軟體進行更新
sudo apt-get upgrade
套件為基礎的更新
sudo apt-get dist-upgrade
安裝軟體時不知道那個軟體在套件管理中的名稱
apt-cache search 關鍵字
2009年8月8日 星期六
安裝 Firefox 3.5 II
安裝 Firefox 3.5
# apt-get install firefox-3.5-gnome-support
安裝完為英文版
安裝中文語言包
http://releases.mozilla.org/pub/mozilla.org/firefox/releases/3.5/linux-i686/xpi/zh-TW.xpi
更改 Firefox 3.5 為預設的瀏覽器
# cd /usr/bin/
# ln -fs firefox-3.5 firefox
# apt-get install firefox-3.5-gnome-support
安裝完為英文版
安裝中文語言包
http://releases.mozilla.org/pub/mozilla.org/firefox/releases/3.5/linux-i686/xpi/zh-TW.xpi
更改 Firefox 3.5 為預設的瀏覽器
# cd /usr/bin/
# ln -fs firefox-3.5 firefox
訂閱:
文章 (Atom)