LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1341|回复: 10

质疑:新版NVidia(1.0-6629) 驱动安装方法

[复制链接]
发表于 2004-12-11 16:49:53 | 显示全部楼层 |阅读模式
下载地址 : http://www.nvidia.com/object/linux.html

新版的N驱动是NVIDIA-Linux-x86-1.0-6629-pkg1.run

扩展名是run,这是一个自解压文件,

注意: 在TEXT模式下安装

安装指令:在终端中输入 sh NVIDIA-Linux-x86-1.0-6629-pkg1.run


然后接受协议,即可自动安装。

提示完成以后,vi /etc/X11/XF86Config 或者是/etc/X11/xorg.conf

Section "Module"
#Load "type1"
Load "xtt" 如果汉化了,在加上这一句没有汉化就不要加了
#Load "dbe"在这句的前面,要加一个#号
Load "extmod"
Load "fbdevhw"
#Load "dri"在这句的前面,要加一个#号
Load "glx"
Load "record"
#Load "freetype" 如果汉化了,也在这句的前面,要加一个#号;没有用汉化,就不要加#号了

在Device section里面把nv改为nvidia

重新进入X界面即可。


其他更多的内容请看Readme文件。


上面的文章我是在http://blog.china-pub.com/more.asp?name=Qlin&id=4181找到的!
    可是我在TEXT模式下安装NVIDIA-Linux-x86-1.0-6629-pkg1.run完成后,(提示:安装complete),运行Section "Module",提示没有找到!#Load "dri"呢,没有任何提示.
    现在我不知道我的机子上装了驱动程序没有?应该怎么看才知道装上了显卡驱动?我的显卡是双敏5700LE.
    上面那驱动应该支持吧?
 楼主| 发表于 2004-12-11 18:10:14 | 显示全部楼层
错了,是修改/etc/X11/XF86Config!
可是我不知道我的是否已经汉化,怎么看能知道已经汉化?
我的/etc/X11/XF86Config内容是:

# XFree86 4 configuration created by pyxf86config

Section "ServerLayout"
        Identifier     "Default Layout"
        Screen      0  "Screen0" 0 0
        InputDevice    "Mouse0" "CorePointer"
        InputDevice    "Keyboard0" "CoreKeyboard"
        InputDevice    "DevInputMice" "AlwaysCore"
EndSection

Section "Files"
# RgbPath is the location of the RGB database.  Note, this is the name of the
# file minus the extension (like ".txt" or ".db").  There is normally
# no need to change the default.

# Multiple FontPath entries are allowed (they are concatenated together)
# By default, Red Hat 6.0 and later now use a font server independent of
# the X server to render fonts.

        RgbPath      "/usr/X11R6/lib/X11/rgb"
        FontPath     "unix/:7100"
EndSection

Section "Module"
        Load  "dbe"
        Load  "extmod"
        Load  "fbdevhw"
        Load  "glx"
        Load  "record"
        Load  "freetype"
        Load  "type1"
        Load  "dri"
EndSection

Section "InputDevice"
# Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
#        Option        "Xleds"                "1 2 3"

# To disable the XKEYBOARD extension, uncomment XkbDisable.
#        Option        "XkbDisable"

# To customise the XKB settings to suit your keyboard, modify the
# lines below (which are the defaults).  For example, for a non-U.S.
# keyboard, you will probably want to use:
#        Option        "XkbModel"        "pc102"
# If you have a US Microsoft Natural keyboard, you can use:
#        Option        "XkbModel"        "microsoft"
#
# Then to change the language, change the Layout setting.
# For example, a german layout can be obtained with:
#        Option        "XkbLayout"        "de"
# or:
#        Option        "XkbLayout"        "de"
#        Option        "XkbVariant"        "nodeadkeys"
#
# If you'd like to switch the positions of your capslock and
# control keys, use:
#        Option        "XkbOptions"        "ctrl:swapcaps"
# Or if you just want both to be control, use:
#        Option        "XkbOptions"        "ctrl:nocaps"
#
        Identifier  "Keyboard0"
        Driver      "keyboard"
        Option            "XkbRules" "xfree86"
        Option            "XkbModel" "pc105"
        Option            "XkbLayout" "us"
EndSection

Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option            "rotocol" "IMPS/2"
        Option            "Device" "/dev/psaux"
        Option            "ZAxisMapping" "4 5"
        Option            "Emulate3Buttons" "no"
EndSection

Section "InputDevice"
# If the normal CorePointer mouse is not a USB mouse then
# this input device can be used in AlwaysCore mode to let you
# also use USB mice at the same time.
        Identifier  "DevInputMice"
        Driver      "mouse"
        Option            "rotocol" "IMPS/2"
        Option            "Device" "/dev/input/mice"
        Option            "ZAxisMapping" "4 5"
        Option            "Emulate3Buttons" "no"
EndSection

Section "Monitor"
        Identifier   "Monitor0"
        VendorName   "Monitor Vendor"
        ModelName    "未探测过的显示器"
        HorizSync    31.5 - 37.9
        VertRefresh  50.0 - 70.0
        Option            "dpms"
EndSection

Section "Device"
        Identifier  "Videocard0"
        Driver      "vesa"
        VendorName  "Videocard vendor"
        BoardName   "VESA driver (generic)"
        VideoRam    131072
EndSection

Section "Screen"
        Identifier "Screen0"
        Device     "Videocard0"
        Monitor    "Monitor0"
        DefaultDepth     24
        SubSection "Display"
                Depth     24
                Modes    "800x600" "640x480"
        EndSubSection
EndSection

Section "DRI"
        Group        0
        Mode         0666
EndSection


没找到Device section,应该怎么办?
上面的应该怎么修改?
先谢了!
发表于 2004-12-11 19:45:42 | 显示全部楼层
Section "Device"
Identifier "Videocard0"
Driver "vesa"──》Driver "nvidia"
VendorName "Videocard vendor"
BoardName "VESA driver (generic)"
VideoRam 131072
EndSection
 楼主| 发表于 2004-12-11 22:16:07 | 显示全部楼层
谢谢楼上的兄弟!
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "800x600" "640x480"
EndSubSection
EndSection
中的分辨率用修改吗?
用不用加加上"1024x768"?
 楼主| 发表于 2004-12-11 22:18:20 | 显示全部楼层
Load "dbe"
Load "extmod"
Load "fbdevhw"
Load "glx"
Load "record"
Load "freetype"
Load "type1"
Load "dri"

这个是不是要用:
#Load "type1"
Load "xtt"
#Load "dbe"
Load "extmod"
Load "fbdevhw"
#Load "dri"
Load "glx"
Load "record"
#Load "freetype" 替换?
发表于 2004-12-12 09:01:19 | 显示全部楼层
最初由 marsaber 发表
Load "dbe"
Load "extmod"
Load "fbdevhw"
Load "glx"
Load "record"
Load "freetype"
Load "type1"
Load "dri"

这个是不是要用:
#Load "type1"
Load "xtt"
#Load "dbe"
Load "extmod"
Load "fbdevhw"
#Load "dri"
Load "glx"
Load "record"
#Load "freetype" 替换?

还没能用吗?既然能装,应能用的。
我的是:
#Load "dbe"
  Load "extmod"
  Load "fbdevhw"
  Load "glx"
  Load "record"
  Load "freetype"
  Load "type1"
#Load "dri"
 楼主| 发表于 2004-12-13 13:03:41 | 显示全部楼层
谢谢楼上的ogog,我的QQ:15055388,能跟你在QQ上聊吗?

    还有一个问题啊,为什么我的LUMAQQ只能在ROOT下才能使用?我把它的文件夹权限设置为我的一个普通帐户使用了,可是在普通帐户下还是不能使用,怎么设置才能用啊?
 楼主| 发表于 2004-12-13 13:04:46 | 显示全部楼层
我在QQ上是不鲜闲聊的,所以加了我,我是不会打扰你的!
   呵呵...........................
 楼主| 发表于 2004-12-13 13:10:14 | 显示全部楼层
为什么我的LUMAQQ总是坏啊?
  前天下午能用,到了晚上不能用,昨天下午不知怎的,能用了.但是今天又坏了?
  怎么好了,怎么又坏了,我都不找到原因!

  郁闷............................
 楼主| 发表于 2004-12-13 13:11:33 | 显示全部楼层
坏了,就是输不进去字!那个Q好像得了神经病似的!
您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表