免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1052 | 回复: 0
打印 上一主题 下一主题

手工安装nvidia 驱动 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-10-14 07:56 |只看该作者 |倒序浏览
 1]下载显卡的驱动tar包,只要是NVIDIA的,这两个包都适用:
  www.linuxsir.org/driver/nvidia/NVID...1.0-3123.tar.gz
  www.linuxsir.org/driver/nvidia/NVID...1.0-3123.tar.gz
  安装:[经quanlinking兄指教,make时是有先后顺序的,要先make NVIDIA_kernel-1.0-3123]
  # tar zxvf NVIDIA_GLX-1.0-3123.tar.gz
  # tar zxvf NVIDIA_kernel-1.0-3123.tar.gz
  # cd NVIDIA_kernel-1.0-3123
  # make
  # cd NVIDIA_GLX-1.0-3123
  # make
  把/etc/X11中的XF86Config-4文件中的nv改成nvidia。其它注销项目,请见我的XF86Config-4文件。有些版本没有这个文件,可以修改XF86Config文件.
  /etc/X11/XF86Config-4文件,有些版本没有这个文件,可以修改XF86Config文件.
  用下面的来参考
  # File generated by anaconda.
  Section "ServerLayout"
  Identifier "Anaconda Configured"
  Screen 0 "Screen0" 0 0
  InputDevice "Mouse0" "CorePointer"
  InputDevice "Keyboard0" "CoreKeyboard"
  EndSection
  Section "Files"
  # 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.
  RgbPath "/usr/X11R6/lib/X11/rgb"
  # 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.
  如果汉化就把路径加在这里,如果不汉化,就不要加了
  FontPath "unix/:7100"
  EndSection
  Section "Module"
  Load "xtt"如果汉化了,在加上这一句没有汉化就不要加了
  Load "GLcore"在这句的前面,要加一个#号
  Load "dbe"在这句的前面,要加一个#号
  Load "extmod"
  Load "fbdevhw"
  Load "dri"在这句的前面,要加一个#号
  Load "glx"
  Load "record"
  Load "freetype"如果汉化了,也在这句的前面,要加一个#号;没有用汉化,就不要加#号了
  Load "type1"如果汉化了,也在这句的前面,要加一个#号;没有用汉化,就不要加#号了
  EndSection
  Section "InputDevice"
  Identifier "Keyboard0"
  Driver "keyboard"
  # Option "AutoRepeat" "500 5"
  # when using XQUEUE, comment out the above line, and uncomment the
  # following line
  # Option "Protocol" "Xqueue"
  # 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:nocaps"
  Option "XkbRules" "xfree86"
  Option "XkbModel" "pc102"
  Option "XkbLayout" "us"
  Option "XkbVariant" "basic"
  #Option "XkbOptions" ""
  EndSection
  Section "InputDevice"
  Identifier "Mouse0"
  Driver "mouse"
  Option "Protocol" "IMPS/2"
  Option "Device" "/dev/input/mice"
  Option "ZAxisMapping" "4 5"
  Option "Emulate3Buttons" "no"
  EndSection
  Section "Monitor"
  Identifier "Monitor0"
  VendorName "Monitor Vendor"
  ModelName "Monitor Model"
  HorizSync 30-62
  VertRefresh 50-75
  Option "dpms"在这句的前面,要加一个#号
  # -- 1400x1050 --
  # 1400x1050 @ 60Hz, 65.8 kHz hsync
  Modeline "1400x1050" 129 1400 1464 1656 1960
  1050 1051 1054 1100 +HSync +VSync
  # 1400x1050 @ 70Hz, 76.8 kHz hsync
  Modeline "1400x1050" 151 1400 1464 1656 1960
  1050 1051 1054 1100 +HSync +VSync
  # 1400x1050 @ 75Hz, 82.3 kHz hsync
  Modeline "1400x1050" 162 1400 1464 1656 1960
  1050 1051 1054 1100 +HSync +VSync
  # 1400x1050 @ 85Hz, 93.2 kHz hsync
  Modeline "1400x1050" 184 1400 1464 1656 1960
  1050 1051 1054 1100 +HSync +VSync
  EndSection
  Section "Device"
  # no known options
  Identifier "NVIDIA GeForce 3 (generic)"
  Driver "nv"在这里,要把nv改成nvidia
  VendorName "NVIDIA GeForce 3 (generic)"
  BoardName "NVIDIA GeForce 3 (generic)"
  #BusID
  EndSection
  Section "Screen"
  Identifier "Screen0"
  Device "NVIDIA GeForce 3 (generic)"
  Monitor "Monitor0"
  DefaultDepth 24
  Subsection "Display"
  Depth 24
  Modes "1024x768" "1024x768"
  EndSubsection
  EndSection
  Section "DRI"
  Mode 0666
  EndSection
               
               
               

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/40319/showart_400263.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP