2016年2月23日 星期二

用 apt-get下載 openjvc 8.0

http://ubuntuhandbook.org/index.php/2015/01/install-openjdk-8-ubuntu-14-04-12-04-lts/


先把 repository 加入 ppa
再用 apt-get install 等相關指令 下載




http://www.webupd8.org/2012/09/install-oracle-java-8-in-ubuntu-via-ppa.html

wget usage

這個網頁對於 wget 寫得非常詳細  值得參閱
http://www.computerhope.com/unix/wget.htm


http://www.ewdna.com/2012/04/wget.html

unmanged wired

不知為何
我的 ifocnfig 下的 eth0 inet 消失
也就是 ipv4不能使用

我上網找了一下
看到這篇 http://www.blackmoreops.com/2013/11/25/how-to-fix-wired-network-interface-device-not-managed-error/

就猜 把 這檔案改掉

vim /etc/network/interfaces

把這行住記掉
#iface eth0 inet manual
就好了

目前尚未釐清

2016年2月22日 星期一

pppoe linux 使用教學

如題:
     一開始設定的時候:
 sudo pppoeconf  皆下來只要下一步 下一步 即可

想關掉的時候  sudo poff  dsl-provider 
想打開的時候  sudo pon dsl-provider



2016年2月21日 星期日

奮戰許久的android driver

如提
我載了很多檔案和瀏覽很多網頁
最後發現有這招
http://j796160836.pixnet.net/blog/post/29610725-%5Bandroid%5D-google%E5%87%BA%E7%9A%84android%E8%90%AC%E7%94%A8%E9%A9%85%E5%8B%95%EF%BC%8C%E9%A9%85%E5%8B%95%E8%A3%9D%E4%B8%8D%E4%B8%8A


在 裝置管理員 安裝的時候

先選 從電腦 中 的 資料匣 去

選定好 後

在選下面的 從磁碟片安裝 驅動程式

指定到目標檔案所提供的驅動程式

最後 才得以順利安裝

網頁上面的案例 是使用google所提供的





2016年2月3日 星期三

2016年1月31日 星期日

LS_COLOR 的參數意義

其實我們可以改變 BASH 中的 LS_COLORS 環境變數,這樣無論使用什麼軟體也會有相同顯示效果。</p>
 首先,登入後修改 ~/.bashrc 檔,加入或修改 ls, LS_COLOR 變數,如下:


LS_COLORS='di=1:fi=0:ln=31:pi=5:so=5:bd=5:cd=5:or=31:mi=0:ex=35:*.rpm=90'<br />
export LS_COLORS
LS_COLORS 參數有:
 di = directory
fi = file
ln = symbolic link
pi = fifo file
so = socket file
bd = block (buffered) special file
cd = character (unbuffered) special file
or = symbolic link pointing to a non-existent file (orphan)
mi = non-existent file pointed to by a symbolic link (visible when you type ls -l)
ex = file which is executable (ie. has 'x' set in permissions)
顏色方面,代碼如下:
0 = default colour
1 = bold
4 = underlined
5 = flashing text
7 = reverse field
31 = red
32 = green
33 = orange
34 = blue
35 = purple
36 = cyan
37 = grey
40 = black background
41 = red background
42 = green background
43 = orange background
44 = blue background
45 = purple background
46 = cyan background
47 = grey background
90 = dark grey
91 = light red
92 = light green
93 = yellow
94 = light blue
95 = light purple
96 = turquoise
100 = dark grey background
101 = light red background
102 = light green background
103 = yellow background
104 = light blue background
105 = light purple background
106 = turquoise background

http://linux-sxs.org/housekeeping/lscolors.html
http://linux.about.com/od/bgb_guide/a/gdebgb29t00.htm