不知是不是將 Ubuntu 灌到 隨身碟上, 還是將 Ubuntu 升級到 12.04 LTE 的關係,
WiFi 總是怪怪的.....一開機後總是被鎖在 AirPlane mode,
也無法關掉 AirPlane mode......=.=....也就更無法 Turn-On WiFi了...
查了一下 Google 大神, 看來還真的是被鎖住了...
可經由下面兩行指令了解...
ubuntu@ubuntu:~$ sudo rfkill list all
0: brcmwl-0: Wireless LAN
Soft blocked: no
Hard blocked: yes
1: acer-wireless: Wireless LAN
Soft blocked: no
Hard blocked: no
2: acer-bluetooth: Bluetooth
Soft blocked: no
Hard blocked: no
3: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
ubuntu@ubuntu:~$ sudo rfkill unblock wifi
輸入上面那行後, 應該就可正常使用 WiFi 了吧....
如果還不行, 就全解了吧....as below..
ubuntu@ubuntu:~$ sudo rfkill unblock all
感謝 Google 大神...
2012年12月9日 星期日
2012年12月4日 星期二
超級終端機 on Linux
最近做的Project都要使用RS-232來與之溝通,
接下來介紹兩款在 Ubuntu 下我常使用的 "超級終端機"...@@
Gtkterm 與 Minicom
安裝方式如下
root@user:/# sudo apt-get install gtkterm
root@user:/# sudo apt-get install minicon
Gtkterm 是類似圖形化的介面,
所以相關設定只要進 configuration 內設定即可,
如 port 或 Baud rate, 相當方便.
而 Minicom 安裝完成後, 須先設定,
root@user:/# minicom -s
設定完成後
root@user:/# minicom
即可進入使用.
因為 Minicom 設定起來有點麻煩, 所以最常用的還是 Gtkterm.
接下來介紹兩款在 Ubuntu 下我常使用的 "超級終端機"...@@
Gtkterm 與 Minicom
安裝方式如下
root@user:/# sudo apt-get install gtkterm
root@user:/# sudo apt-get install minicon
Gtkterm 是類似圖形化的介面,
所以相關設定只要進 configuration 內設定即可,
如 port 或 Baud rate, 相當方便.
而 Minicom 安裝完成後, 須先設定,
root@user:/# minicom -s
設定完成後
root@user:/# minicom
即可進入使用.
因為 Minicom 設定起來有點麻煩, 所以最常用的還是 Gtkterm.
訂閱:
文章 (Atom)
[Raspberry PI] Receive file by Bluetooth from Windows 10 PC
本文說明透過 Command Line 的方式, 使 Raspberry PI 可透過 Bluetooth 接收檔案 測試機器: 1. Raspberry PI 3 Model B 2. Windows 10 PC 第一部分 - 連線 目的是先使 Raspberry PI 3 與...
-
仿間的教學書籍都是建議使用 MDK 來進行 STM32 的開發, 但是它畢竟是商業軟件, 在未授權下使用, 畢竟比較麻煩. 在此提供 Eclipse + GCC ARM tool 的方式, 兩個軟體都是 opensource, 可以放心使用, 不會一直收到公司郵件通知.......
-
最近工作在玩 WiFi Module, 包含測試 Throughput rate, 就不得不提 Iperf 這個工具了, 當然, 網路上的資料已經一堆了, 不過還是給自己一個紀錄吧, 這樣以後要找資料, 就不用再 Google 了. Iperf下載路徑: For Linux...