- Sep 27 Tue 2011 13:58
-
有些東西 不是說丟就能丟
- Sep 07 Wed 2011 13:21
-
Hadoop基本操作
1.bin/hadoop namenode -format 開啟nomanode用
2.bin/start-all.sh 開啟所有node
結束時
1.bin/stop-all.sh
2.bin/start-all.sh 開啟所有node
結束時
1.bin/stop-all.sh
- Sep 05 Mon 2011 19:18
-
ubuntu下.txt文字檔顯示亂碼解決辦法
按 Alt+F2
執行 gconf-editor
到 apps > gedit-2 > preferences > encoding
在 auto_detected 添加 BIG5 並移到 CURRENT 前
執行 gconf-editor
到 apps > gedit-2 > preferences > encoding
在 auto_detected 添加 BIG5 並移到 CURRENT 前
- Sep 05 Mon 2011 19:05
-
VirtualBox上的ubuntu 基本設定
1.灌好ubuntu後 先更新所有套件
2.在virtualBox的toolBar下 點選 裝置->下載Guest Additions
3.下載lazybuntu 載點:http://www.openfoundry.org/of/projects/852/download
2.在virtualBox的toolBar下 點選 裝置->下載Guest Additions
3.下載lazybuntu 載點:http://www.openfoundry.org/of/projects/852/download
- Aug 26 Fri 2011 14:59
-
ubuntu設定固定IP方法
1.切換到root模式 指令:sudo -s -H
2.編輯address netmask gateway 指令:sudo vi /etc/network/interfaces
auto eth0 ## 重要,這一行一定要設定
iface eth0 inet static
address [IP] ## 請將 [IP] 換成你要的 IP
netmask 255.255.255.0
gateway 192.168.1.1
2.編輯address netmask gateway 指令:sudo vi /etc/network/interfaces
auto eth0 ## 重要,這一行一定要設定
iface eth0 inet static
address [IP] ## 請將 [IP] 換成你要的 IP
netmask 255.255.255.0
gateway 192.168.1.1
- Aug 01 Mon 2011 17:55
-
PrintWriter - println
- Aug 01 Mon 2011 13:35
-
JAVA - ArrayList用法、與Array的差別
- Aug 01 Mon 2011 13:25
-
JAVA - thread run()與start()
run()裡面的程式碼是寫給thread去執行你所指定的工作
start()是把你的thread變成可執行狀態 (Ready State)
所以當你寫t.start(); (t只是我舉的一個thread名稱)
thread t 會變成可執行狀態並等待CPU分配資源給他執行
start()是把你的thread變成可執行狀態 (Ready State)
所以當你寫t.start(); (t只是我舉的一個thread名稱)
thread t 會變成可執行狀態並等待CPU分配資源給他執行
- Aug 01 Mon 2011 13:12
-
JAVA - IOException
1