RH7.3 安裝了nvidia drive 但如何使用



贊助商連結


marx77
2002-06-15, 01:58 AM
RH7.3 rpm安裝了nvidia drive 但如何使用呢?

1.RH7.3下如何使用它

2.如何變更螢幕更新頻率?

請各位前輩指教

贊助商連結


bentong
2002-06-19, 12:05 AM
1. 你不需特別使用它
2. 除非你要用Qt寫程式
3. 安裝方式如下
1>至www.nvidia.com 下載
NVIDIA_GLX-1.0-2880.i386.rpm
NVIDIA_kernel-1.0-2880.mdk82up.i586.rpm
以上兩個 driver

2>開啟終端機視窗進入文字模式,輸入

rpm -Uvh NVIDIA_kernel-1.0-2880.mdk82up.i586.rpm
經過編譯後再輸入

rpm -ivh NVIDIA_GLX-1.0-2880.i386.rpm
完成後即可關閉視窗

3>開啟 home 視窗找到 /etc/X11下 XF86Config-4檔
以文字編輯器開始編譯

Section "Module"

# This loads the DBE extension module.
Load "dbe"

# This loads the Video for Linux module.
Load "v4l"


# This loads the miscellaneous extensions module, and disables
# initialisation of the XFree86-DGA extension within that module.

SubSection "extmod"
#Option "omit xfree86-dga"
EndSubSection

# This loads the Type1 and FreeType font modules

Load "type1"
Load "freetype"

# This loads the GLX module ===>自已加入

Load "glx" ====>自已加入
EndSection

4>Section "Device"
Identifier "NVIDIA GeForce2 DDR (generic)"
VendorName "Unknown"
BoardName "Unknown"
Driver "nv" =====>這裡改成 nvidia
# VideoRam 65536 =====>這是計憶體有錯自已改

5>存檔後退出,重新啟動後看到 nvidia 的 logo 就是成功了, 聽說玩 CS 很棒喔 !!

NVIDIA Accelerated Linux Driver Set README & Installation Guide

Last Updated: $Date: 2002/05/12 $
Most Recent Driver: 1.0-2960

Orange
2002-06-19, 12:39 AM
最初由 bentong 發表
1. 你不需特別使用它
2. 除非你要用Qt寫程式
3. 安裝方式如下
1>至www.nvidia.com 下載
NVIDIA_GLX-1.0-2880.i386.rpm
NVIDIA_kernel-1.0-2880.mdk82up.i586.rpm
以上兩個 driver

2>開啟終端機視窗進入文字模式,輸入

rpm -Uvh NVIDIA_kernel-1.0-2880.mdk82up.i586.rpm
經過編譯後再輸入

rpm -ivh NVIDIA_GLX-1.0-2880.i386.rpm
完成後即可關閉視窗

3>開啟 home 視窗找到 /etc/X11下 XF86Config-4檔
以文字編輯器開始編譯

Section "Module"

# This loads the DBE extension module.
Load "dbe"

# This loads the Video for Linux module.
Load "v4l"


# This loads the miscellaneous extensions module, and disables
# initialisation of the XFree86-DGA extension within that module.

SubSection "extmod"
#Option "omit xfree86-dga"
EndSubSection

# This loads the Type1 and FreeType font modules

Load "type1"
Load "freetype"

# This loads the GLX module ===>自已加入

Load "glx" ====>自已加入
EndSection

4>Section "Device"
Identifier "NVIDIA GeForce2 DDR (generic)"
VendorName "Unknown"
BoardName "Unknown"
Driver "nv" =====>這裡改成 nvidia
# VideoRam 65536 =====>這是計憶體有錯自已改

5>存檔後退出,重新啟動後看到 nvidia 的 logo 就是成功了, 聽說玩 CS 很棒喔 !!

NVIDIA Accelerated Linux Driver Set README & Installation Guide

Last Updated: $Date: 2002/05/12 $
Most Recent Driver: 1.0-2960
要貼別人的文章也寫個出處吧!nvidia驅動程式也出新版的了-2960也改一下!

marx77
2002-06-19, 10:07 PM
我試試.....感謝兩位前輩指導

yc123
2002-06-20, 11:33 AM
Download這支shell,會自動偵測需要安裝所需的套件:
http://download.nvidia.com/XFree86_40/1.0-2960/NVchooser.sh

如果是athlon系列可安裝下列驅動程式套件:
NVIDIA_GLX-1.0-2960.i386.rpm
NVIDIA_kernel-1.0-2960.rh73up.athlon.rpm

裝完後先用 lsmod 查看 NVdriver 是否有在列表中,如果沒有,表示安裝不成功,須將套件重裝(我是安裝移除好幾次才成功的)

我最後安裝成功的順序是:
rpm -ivh NVIDIA_kernel-1.0-2960.rh73up.athlon.rpm
rpm -ivh NVIDIA_GLX-1.0-2960.i386.rpm
rpm -UvhF NVIDIA_kernel-1.0-2960.rh73up.athlon.rpm

/etc/X11/XF86Config-4設定檔的重點只有3個:
1.Driver "nv" ->將nv改成nvidia
2.Load "glx" ->檢查是否有此項,沒有自己加上
3.mark或刪除 Load "dri" 和 Load "Glcore"

檢查/etc/modules.conf設定檔是否有
alias char-major-195 NVdriver 這一行

*我是在run level改成3後才安裝的.沒試過像ctrl+Alt+F1的安裝方法.

以上僅提供自己的安裝心得