NVIDIA8400安装完驱动,重启后驱动又挂了!(终于成功了!!!!)

CPU/显卡/打印机/USB设备等硬件问题
回复
头像
choifyken
帖子: 248
注册时间: 2007-08-27 10:46

NVIDIA8400安装完驱动,重启后驱动又挂了!(终于成功了!!!!)

#1

帖子 choifyken » 2007-09-21 13:13

解决了!!看二楼!!!!
NVIDIA8400安装完驱动

14.11和14.19版驱动都试了,都不行

startx可以看到nvidia‘s logo 进去正常,但是硬件显示还是vesa,
重启进度条完以后就只有个光标在闪了,只能进命令行模式,重新sh NVIDIA-Linux-x86XXXXXXXX.run后又可以startx
运行这个命令选好了还是一样

代码: 全选

sudo dpkg-reconfigure -phigh xserver-xorg
如此反复,xorg.conf如下:

代码: 全选

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 1.0  (buildmeister@builder3)  Wed Jun 13 18:39:30 PDT 2007

# /etc/X11/xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf(5) manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section "ServerLayout"
    Identifier     "Default Layout"
    Screen         "Default Screen" 0 0
    InputDevice    "Generic Keyboard"
    InputDevice    "Configured Mouse"
    InputDevice    "stylus" "SendCoreEvents"
    InputDevice    "cursor" "SendCoreEvents"
    InputDevice    "eraser" "SendCoreEvents"
    InputDevice    "Synaptics Touchpad"
EndSection

Section "Files"

	# path to defoma fonts
    FontPath        "/usr/share/fonts/X11/misc"
    FontPath        "/usr/share/fonts/X11/cyrillic"
    FontPath        "/usr/share/fonts/X11/100dpi/:unscaled"
    FontPath        "/usr/share/fonts/X11/75dpi/:unscaled"
    FontPath        "/usr/share/fonts/X11/Type1"
    FontPath        "/usr/share/fonts/X11/100dpi"
    FontPath        "/usr/share/fonts/X11/75dpi"
    FontPath        "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
    Load           "i2c"
    Load           "bitmap"
    Load           "ddc"
    Load           "extmod"
    Load           "freetype"
    Load           "glx"
    Load           "int10"
    Load           "vbe"
EndSection

Section "InputDevice"
    Identifier     "Generic Keyboard"
    Driver         "kbd"
    Option         "CoreKeyboard"
    Option         "XkbRules" "xorg"
    Option         "XkbModel" "pc105"
    Option         "XkbLayout" "us"
EndSection

Section "InputDevice"
    Identifier     "Configured Mouse"
    Driver         "mouse"
    Option         "CorePointer"
    Option         "Device" "/dev/input/mice"
    Option         "Protocol" "ImPS/2"
    Option         "ZAxisMapping" "4 5"
    Option         "Emulate3Buttons" "true"
EndSection

Section "InputDevice"
    Identifier     "Synaptics Touchpad"
    Driver         "synaptics"
    Option         "SendCoreEvents" "true"
    Option         "Device" "/dev/psaux"
    Option         "Protocol" "auto-dev"
    Option         "HorizScrollDelta" "0"
EndSection

Section "InputDevice"
    Identifier     "stylus"
    Driver         "wacom"
    Option         "Device" "/dev/input/wacom"
    Option         "Type" "stylus"
    Option         "ForceDevice" "ISDV4"		# Tablet PC ONLY
EndSection

Section "InputDevice"
    Identifier     "eraser"
    Driver         "wacom"
    Option         "Device" "/dev/input/wacom"
    Option         "Type" "eraser"
    Option         "ForceDevice" "ISDV4"		# Tablet PC ONLY
EndSection

Section "InputDevice"
    Identifier     "cursor"
    Driver         "wacom"
    Option         "Device" "/dev/input/wacom"
    Option         "Type" "cursor"
    Option         "ForceDevice" "ISDV4"		# Tablet PC ONLY
EndSection

Section "Monitor"
    Identifier     "通用显示器"
    HorizSync       28.0 - 60.0
    VertRefresh     43.0 - 60.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "通用显示卡"
    Driver         "nvidia"
EndSection

Section "Screen"
    Identifier     "Default Screen"
    Device         "通用显示卡"
    Monitor        "通用显示器"
    DefaultDepth    24
    SubSection     "Display"
        Depth       1
        Modes      "1200x800" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection     "Display"
        Depth       4
        Modes      "1200x800" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection     "Display"
        Depth       8
        Modes      "1200x800" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection     "Display"
        Depth       15
        Modes      "1200x800" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection     "Display"
        Depth       16
        Modes      "1200x800" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection     "Display"
        Depth       24
        Modes      "1200x800" "1024x768" "800x600" "640x480"
    EndSubSection
EndSection
附件
1.png
头像
choifyken
帖子: 248
注册时间: 2007-08-27 10:46

#2

帖子 choifyken » 2007-09-21 13:50

终于搞好了,原来是少了这一步!!!

网上介绍,8400等新的nvidia卡都要做这一步

代码: 全选

sudo kate /etc/default/linux-restricted-modules-common

  最后一行中DISABLED_MODULES参数中添加nv和nvidia_new如下所示:
  DISABLED_MODULES="nv nvidia_new"
头像
yangjinchao
帖子: 119
注册时间: 2006-04-18 21:08
联系:

我的nv 驱动也搞不定呀

#3

帖子 yangjinchao » 2007-09-21 22:10

装源里的,还是官方的,都不行呀,我的卡是geforce 6200的
头像
choifyken
帖子: 248
注册时间: 2007-08-27 10:46

#4

帖子 choifyken » 2007-09-23 20:09

官方的
到www.nvidia.com.tw去下
头像
用戶無效
帖子: 461
注册时间: 2007-10-23 21:11
来自: 香港

#5

帖子 用戶無效 » 2007-11-06 21:35

我己經DISABLED_MODULES="nv nvidia_new"


但也是一樣只有第一次能夠 startx, reboot 後就不能進入了!!!!!!!!!!
头像
choifyken
帖子: 248
注册时间: 2007-08-27 10:46

#6

帖子 choifyken » 2007-11-08 15:22

7.10已经不用这么麻烦了,直接在受限驱动那里选上就可以驱动啦!!!
头像
war3
帖子: 9
注册时间: 2007-11-15 9:27

#7

帖子 war3 » 2007-11-16 11:10

选受限驱动是不可以的 我的是7600的 7.10 提示缺少库文件
头像
karron
帖子: 6226
注册时间: 2005-06-11 14:03
来自: 不明真相的群众
联系:

#8

帖子 karron » 2007-11-16 11:47

先update系统, 就可以了. 我的 570M的专业显卡相当于8600gt的可以直接用受限驱动. 没有问题.
我的blog,关于技术,软件,linux,vim <---- 所有博客均被河蟹.
回复