星期五, 6月 22, 2007

JDBC ODBC access *.dbf Fiels


After deploy *.ear to Tomcat
if we access table (*.dbf) by jdbc odbc, we have to change the account of Windows service which starting Tomcat.

If not, the applicat can't access the free table by jdbc odbc.

星期三, 1月 03, 2007

install debian

今天拿了一台PC安裝Debian
在網路上有很多資料可以參考
我是使用network install http://www.debian.org/CD/netinst/
因為安裝過程 按 『Enter』太快,忘了安裝XWindow
所以就找了網路上的資料 跟著楊錦昌(RONDO)所寫的圖解 Debian 桌面入門 http://apt.nc.hcc.edu.tw/docs/debian_X/05_X/X.htm
逐步安裝 Xwindow
碰到了在 startx之後 產生error
cannot open device /dev/input/mice
所以又找了資料
vi /etc/X11/XF86Config-4
修改了
Section "InputDevice"
Identifier "Generic Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice" #USB mouse 使用這一行
Option "Device" "/dev/psaux" #PS2 mouse 使用這
Option "Protocol" "auto" #imPS2 改為 Auto
Option "Emulate3Buttons" "true"
Option "ZAxisMapping" "4 5"
EndSection

Core Pointer's InputDevice section
http://www.linuxquestions.org/questions/showthread.php?t=112405