2007年4月13日 星期五
SuSE Linux Forums > Driver For Dwl-g510
ok, you have re-installed suse, with kernel sources,etc as before, best thing to do now is take your time, ensure you have all the bits necessary to compile. another thing i spotted, you have saved ndiswrapper to the desktop, not a good idea. save it to a place in your /home directory. i normally have a separate folder for downloads, makes things easier & things compile better. quick way i do it
1 ) right click the tarball & select extract to here
2 ) open the folder that was extracted.
3 ) double click in the address bar then right click & select copy
4 ) open a console & type cd then right click & select paste then press enter. you should now be in the folder.
5 ) type make & press enter. let it do it's thing.
6 ) once completed, type su & press enter. then enter root's password.
7 ) type make install & press enter. it should then install ndiswrapper.
8 ) once it is installed you then type ndiswrapper -i /path /to your/driver & press enter. driver should then be installed.
9 ) type ndiswrapper -l to confirm driver install.
10 ) type ndiswrapper -ma to install module.
11 ) type modprobe ndiswrapper & press enter & your wireless card should be initialised.
12 ) go to yast - network devices - network card & then set up your card.
see if that helps
andy
Ubuntu 正體中文站 - Ubuntu 6.10 Edgy初體驗-ADSL(pppoe)上網篇 [論壇 - Ubuntu基本設定]
用指令設定最簡單囉
sudo pppoeconf
照著說明輸入帳號密碼,後面的選項都按yes即可"
2007年4月9日 星期一
Eureka Dendron!!: [軟體]Stellarium - 開放源碼的星象軟體
正體中文官方網站:http://www.stellarium.org/zh/
Stellarium的操作介面可以支援正體中文,下面的方法是我從PTT Ezsoft版轉載來的。文章編號是2764、作者是Daniel66
中文設定方法:
1.首先要下載中文字型,推薦這一款(王宗漢細黑體):
http://nirc.encntc.edu.tw/web/fonts/wang/v040326/wt011.ttf
2.把下載的字型檔放到 C:\Program Files\Stellarium\data
3.用記事本修改 C:\Program Files\Stellarium\config 內 config.ini 的下面兩行
base_font_size = 12
base_font_name = wt011.ttf
(↑就是字型檔的檔案名稱)
4.執行軟體,正常的話應該會看到亂碼。到設定把語系調成 zh_TW。
5.重新啟動軟體即可看到中文。
Posted By Eureka at 19:28
—DELPHI基礎教程—第一章 Delphi快速入門(一)
Delphi是全新的可視化編程環境,為我們提供了一種方便、快捷的Windows應用程序開發工具。它使用了Microsoft Windows圖形用戶界面的許多先進特性和設計思想,採用了彈性可重複利用的完整的面向對象程序語言(Object-Oriented Language)、當今世界上最快的編輯器、最為領先的數據庫技術。對於廣大的程序開發人員來講,使用Delphi開發應用軟件,無疑會大大地提高編程效率,而且隨著應用的深入,您將會發現編程不再是枯燥無味的工作——Delphi的每一個設計細節,都將帶給您一份欣喜。
1.1 Delphi基本概念介紹
1.1.1 Delphi的基本形式
Delphi實際上是Pascal語言的一種版本,但它與傳統的Pascal語言有天壤之別。一個Delphi程序首先是應用程序框架,而這一框架正是應用程序的「骨架」。在骨架上即使沒有附著任何東西,仍可以嚴格地按照設計運行。您的工作只是在「骨架」中加入您的程序。缺省的應用程序是一個空白的窗體(Form),您可以運行它,結果得到一個空白的窗口。這個窗口具有Windows窗口的全部性質:可以被放大縮小、移動、最大最小化等,但您卻沒有編寫一行程序。因此,可以說應用程序框架通過提供所有應用程序共有的東西,為用戶應用程序的開發打下了良好的基礎。Delphi已經為您做好了一切基礎工作——程序框架就是一個已經完成的可運行應用程序,只是不處理任何事情。您所需要做的,只是在程序中加入完成您所需功能的代碼而已。
在空白窗口的背後,應用程序的框架正在等待用戶的輸入。由於您並未告訴它接收到用戶輸入後作何反應,窗口除了響應Windows的基本操作(移動、縮放等)外,它只是接受用戶的輸入,然後再忽略。Delphi把Windows編程的回調、句柄處理等繁複過程都放在一個不可見的Romulam覆蓋物下面,這樣您可以不為它們所困擾,輕鬆從容地對可視部件進行編程。
1.1.2 面向對象編程的概念
面向對象的程序設計(Object-Oriented Programming,簡記為OOP)是Delphi誕生的基礎。OOP立意於創建軟件重用代碼,具備更好地模擬現實世界環境的能力,這使它被公認為是自上而下編程的優勝者。它通過給程序中加入擴展語句,把函數「封裝」進Windows編 程所必需的「對象」中。面向對象的編程語言使得複雜的工作條理清晰、編寫容易。說它是一場革命,不是對對象本身而言,而是對它們處理工作的能力而言。對象 並不與傳統程序設計和編程方法兼容,只是部分面向對象反而會使情形更糟。除非整個開發環境都是面向對象的,否則對象產生的好處還沒有帶來的麻煩多。而Delphi是完全面向對象的,這就使得Delphi成為一種觸手可及的促進軟件重用的開發工具,從而具有強大的吸引力。
一些早期的具有OOP性能的程序語言如C++,Pascal,Smalltalk等,雖然具有面向對象的特徵,但不能輕鬆地畫出可視化對象,與用戶交互能力較差,程序員仍然要編寫大量的代碼。Delphi的推出,填補了這項空白。您不必自己建立對象,只要在提供的程序框架中加入完成功能的代碼,其餘的都交給Delphi去做。欲生成漂亮的界面和結構良好的程序絲毫不必絞盡腦汁,Delphi將幫助您輕鬆地完成。它允許在一個具有真正OOP擴展的可視化編程環境中,使用它的Object Pascal語言。這種革命性的組合,使得可視化編程與面向對象的開發框架緊密地結合起來。
1.2 Delphi 快速入門
在這一節中,我們來開發一個小程序。隨著開發的過程,逐步介紹Delphi的主要部件及其操作方法。建議讀者按照本書介紹的過程,在您的電腦上直接操作。您將對Delphi的可視化編程有一個直觀、快捷的瞭解,必將起到事半功倍的效果。How to set up UltraEdit to work with a Java Compiler
How to set up UltraEdit to work with Java compiler
- UltraEdit may be downloaded for free (45 day evaluation only) from http://www.ultraedit.com/.
For your convenience it is made available on the network drive H:. You may use it for 45 days after you run it the first time from your account. After that time the program will refuse to work anymore. - Start UltraEdit
- Open menu: Advanced/Tool Configuration

- Type in the following information to the dialog box which pops up
For your convenience you may want to copy and paste one of the following lines into the command line text filed. Select appropriate one:C:\Progra~1\JAVA\bin\javac.exe -deprecation -O -classpath . %n%e
G:\java\java2\bin\javac.exe -deprecation -O -classpath . %n%e
G:\java\java1\bin\javac.exe -deprecation -O -classpath . %n%e
You may choose to remove the optimization option-Oor another option that enables checking against using deprecated features of old Java-deprecation. The latter, however, is not recommended - Then press INSERT button.
- Type in the following information to the dialog box which is still being displayed.

- Once again, for your convenience you may want to copy and paste one of the following lines into the command line text filed. Select appropriate one:
C:\Progra~1\JAVA\bin\java.exe -classpath . %n
G:\java\java2\bin\java.exe -classpath . %n
G:\java\java1\bin\java.exe -classpath . %n
- Then press INSERT button again.
To modify the settings already created double click on the item listed in the lower box you want to change, modify the dialog box, and press REPLACE. Warning: pressing INSERT would duplicate the entry. Only the new entry has the modified settings.
The meaning of the %-letter
- %f states for the complete file name of a currently edited file
- %p states for the current directory (it might contain space characters)
- %n states for the file name only.
Do not use capitalized %-letter because it results in a truncated old DOS (8+3 character) file name and cannot be recognized correctly by the Java compiler because of original 4-letter .java extension.
Amendments to your system
- The actual location of your Java software may wary
- The location used in this example is for my hard drive which is
C:\progra~1\java\bin\ - The default location of JDK2 for the EE computer labs is
G:\java\java2\bin\
Re: Windows Explorer has stopped working. Windows Explorer is restarting. - Desktop reloads
After 16 hours I discovered that Microsoft's User Access Control was the source of all my Vista problems. Turn it off and everything that was stopping before, like IE, Windows Explorer, Windows Sidebar, Outlook and on and on performed beautifully!!!!
Turn User Account Control on or off
User Account Control (UAC) can help you prevent unauthorized changes to your computer. It works by prompting you for permission when a task requires administrative rights, such as installing software or changing settings that affect other users.
We don't recommend turning User Account Control off. If you do turn it off, you should turn it back on as soon as possible.
-
Click Turn User Account Control on or off. If you are prompted for an administrator password or confirmation, type the password or provide confirmation.
-
Select the Use User Account Control (UAC) to help protect your computer check box to turn on UAC, or clear the check box to turn off UAC, and then click OK.
This was after Dell recommended I format my drive, reinstall XP2 then reinstall the Vista upgrade ..... Say What?