2008年2月27日

Ubuntu 7.10 中安裝 Bluetooth Mouse

記錄自己比電 Ubuntu 7.10 中安裝 Bluetooth Mouse 的步驟。

1. 先檢查是否安裝 bluez-utils 套件。
apt-cache pkgnames bluez-utils

2. 檢查沒有安裝 bluez-utils 套件,安裝 bluez-utils 套件。
sudo apt-get install bluez-utils

3. 修改 /etc/default/bluetooth 檔案。
sudo gedit /etc/default/bluetooth
開啟檔案修改設定值 HIDD_ENABLED=1



4. 重新執行 Bluetooth Service
sudo /etc/init.d/bluetooth restart

5. scan bluetooth 裝置
sudo hcitool scan
Scanning ...
xx:xx:xx:xx:xx:xx (bluetooth device address)

6. 連結裝置
sudo hidd --connect xx:xx:xx:xx:xx:xx

7. 設定信任 bluetooth device
按下 Set Trusted 按鈕

Linux Command apt-get

Linux System 下有個功能強大的程式安裝指令 apt-get,這個指令解決程式安裝的相依性,讓安裝程式越來越輕鬆。

下面記錄常用的指令。

1.安裝程式
apt-get install 套件名稱 (packages)

2.移除程式
apt-get remove 套件名稱 (packages)

3.刪除下載回來的程式與檔案
apt-get clean

4.檢查程式的相依性
apt-get check

5.軟體升級
apt-get update
apt-get upgrade
在作軟體升級 apt-get upgrade 前先執行 apt-get update 讓本機軟體資料庫與軟體來源伺服器資料庫同步比對,才知道是否有軟體可以更新或升級。

6.尋找系統已安裝軟體
apt-cache pkgnames 套件名稱 (packages)