Na een systeem upgrade van testing naar unstable en het herinstaleren (ivm met kernel upgrade 2.6.12-1-k7--- 2.6.14-1-k7) van de nvidia drivers kan ik ineens niet meer in X komen.
Na een startx krijg ik wel het nvidia logo te zien, maar daarna verdwijnt hij weer en ben ik terug in console en zie ik de "no screens found" fout melding
Waneer ik echter ipv de nvidia driver de opensource nv-driver inlaad start X normaal op en zijn er ook geen foutmeldingen (muv de apm melding).
Ook bij het opstarten onder de oude kernel werken de nvidia drivers niet meer en dat vind ik ook vreemd.
Weet iemand op basis van deze en de hieronder te volgen info raad, want de drivers van nvidia worden gewoon ingeladen lijkt, maar werken op een of andere manier toch net
Na een startx krijg ik wel het nvidia logo te zien, maar daarna verdwijnt hij weer en ben ik terug in console en zie ik de "no screens found" fout melding
Waneer ik echter ipv de nvidia driver de opensource nv-driver inlaad start X normaal op en zijn er ook geen foutmeldingen (muv de apm melding).
Ook bij het opstarten onder de oude kernel werken de nvidia drivers niet meer en dat vind ik ook vreemd.
Weet iemand op basis van deze en de hieronder te volgen info raad, want de drivers van nvidia worden gewoon ingeladen lijkt, maar werken op een of andere manier toch net
code:
1
2
3
4
5
6
| gauloises:/# lsmod | grep nvidia nvidiafb 55900 0 i2c_algo_bit 9544 1 nvidiafb i2c_core 22224 3 i2c_viapro,nvidiafb,i2c_algo_bit nvidia 3711816 0 agpgart 35528 2 nvidia,via_agp |
code:
1
2
| gauloises:/# dmesg | grep nvidia nvidia: module license 'NVIDIA' taints kernel. |
code:
1
2
| gauloises:/# cat /var/log/Xorg.0.log |grep ^\(WW\) (WW) Open APM failed (/dev/apm_bios) (No such file or directory) |
code:
1
2
| gauloises:/# cat /var/log/Xorg.0.log |grep ^\(EE\) (EE) No devices detected. |
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
| gauloises:/# cat /etc/X11/xorg.conf
# xorg.conf.dpkg-new (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.dpkg-new manual page.
# (Type "man xorg.conf.dpkg-new" 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 commands as root:
#
# cp /etc/X11/xorg.conf.dpkg-new /etc/X11/xorg.conf.dpkg-new.custom
# md5sum /etc/X11/xorg.conf.dpkg-new >/var/lib/xfree86/xorg.conf.dpkg-new.md5s um
# dpkg-reconfigure xserver-xorg
Section "Files"
FontPath "unix/:7100" # local font server
# if the local font server has problems, we can fall back on these
FontPath "/usr/lib/X11/fonts/misc"
#FontPath "/usr/lib/X11/fonts/cyrillic"
FontPath "/usr/lib/X11/fonts/100dpi/:unscaled"
FontPath "/usr/lib/X11/fonts/75dpi/:unscaled"
FontPath "/usr/lib/X11/fonts/Type1"
#FontPath "/usr/lib/X11/fonts/CID"
FontPath "/usr/lib/X11/fonts/100dpi"
FontPath "/usr/lib/X11/fonts/75dpi"
EndSection
Section "Module"
Load "bitmap"
Load "dbe"
Load "ddc"
# Load "dri"
Load "extmod"
Load "freetype"
Load "glx"
Load "int10"
Load "record"
Load "type1"
Load "v4l"
Load "vbe"
EndSection
Section "InputDevice"
Identifier "Generic Keyboard"
Driver "keyboard"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc104"
Option "XkbLayout" "us"
EndSection
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/psaux"
Option "Protocol" "IMPS/2"
Option "Emulate3Buttons" "false"
Option "ZAxisMapping" "4 5"
# Option "Buttons" "5"
EndSection
Section "Device"
Identifier "NVIDIA Corporation NV34 [GeForce FX 5200]"
Driver "nvidia"
BusID "PCI:1:0:0"
EndSection
Section "Monitor"
Identifier "Generic Monitor"
# Option "DPMS"
HorizSync 30-70
VertRefresh 50-120
EndSection
Section "Screen"
Identifier "Default Screen"
Device "NVIDIA Corporation NV34 [GeForce FX 5200]"
Monitor "Generic Monitor"
DefaultDepth 16
SubSection "Display"
Depth 1
Modes "1152x864"
EndSubSection
SubSection "Display"
Depth 4
Modes "1152x864"
EndSubSection
SubSection "Display"
Depth 8
Modes "1152x864"
EndSubSection
SubSection "Display"
Depth 15
Modes "1152x864"
EndSubSection
SubSection "Display"
Depth 16
Modes "1152x864"
EndSubSection
SubSection "Display"
Depth 24
Modes "1152x864"
EndSubSection
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection
Section "DRI"
Mode 0666
EndSection |