• Willkommen im Linux Club - dem deutschsprachigen Supportforum für GNU/Linux. Registriere dich kostenlos, um alle Inhalte zu sehen und Fragen zu stellen.

12.1: 3.1.10-1.16 erkennt neuen Monitor, 3.4.5-1 nicht...!

clochardy

Newbie
Bis heute Mittag konnte ich zwischen den beiden Kernels 3.1.10-1.16-desktop und 3.4.5-1-desktop hin und her springen ... und es funktionierte alles so, wie es sollte. Nun habe ich meinen alten zerkratzten Monitor gegen einen neuen Monitor (Samsung T27 B 300) ausgetauscht. Mit Kernel 3.1.10-1.16-desktop kann ich problemlos booten und alles ist so, wie es soll. Mit Kernel 3.4.5-1-desktop bootet ELILO ohne sichtbare Fehler ... endet aber immer wieder im Text-Modus! Daraufhin habe ich wieder den alten Monitor angestöpselt ... und beide Kernels liessen sich fehlerfrei booten bis der KDE-Desktop auftauchte. Beim Anschliessen des neuen Monitors bootet wieder nur Kernel 3.1.10-1.16-desktop korrekt. Ich habe auch die die aktuellste kernel-firmware mittels yast vom Stable-Kernel-Repository nachgeladen ... ohne Erfolg. Ich habe keinen Schimmer, wo ich suchen soll, denn bei Google ist der Begriff "Samsung T27 B 300" in Verbindung mit Opensuse 12.1anscheinend zu neu.

Erkennt Kernel 3.4.5-1-desktop den Monitor nicht, den aber 3.1.10-1.16-desktop fehlerfrei erkennt?

Wo kann ich nach der Fehlerquelle suchen?

Ich habe keine Ideen mehr und wäre für kleinen einen Tipp oder Link dankbar.. :???:

Franky


---
Boot-System: ELILO
OpenSuse 12.1
KDE: 4.7.2 (4.7.2) "release 5"
Kernel: Linux 3.1.10-1.16-desktop x86_64
Intel(R) Core(TM) i5-3550 CPU @ 4x3.70GHz
NVidea GForce GT 610
 

RME

Advanced Hacker
Hallo,

Existiert eine /etc/X11/xorg.conf Datei?

Wenn ja, ist die Resolution=1920x1200 eingetragen?

Wenn nicht kannst Du diese im Text-Modus mit nvidia-xconfig eintragen (nvidia-settings wäre geignet im Grafik-Modus -- oder natürlich "von Hand" mit einem Editor).

Du kannst vorerst Deine /etc/X11/xorg.conf anschauen mit:
Code:
nvidia-xconfig -t
Dann die HD Auflösung hinzufügen (falls /etc/X11/xorg.conf nicht existiert wird die Datei erstellt):

(nvidia-xconfig macht ein Backup /etc/X11/xorg.conf.backup -- aber als Sicherheit, mach selber ein Backup)
Code:
cp -p /etc/X11/xorg.conf /etc/X11/xorg.conf.old
nvidia-xconfig --mode=1920x1200
Vielleicht hilfts...

(siehe manual page)

Gruss,
Roland
 
OP
C

clochardy

Newbie
Ich habe Deinen Rat befolgt, und nun sieht meine /etc/X11/xorg.conf so aus:

Code:
# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 295.49  (buildmeister@swio-display-x86-rhel47-07.nvidia.com)  Tue May  1 00:54:24 PDT 2012

# nvidia-settings: X configuration file generated by nvidia-settings
# nvidia-settings:  version 295.49  (buildmeister@swio-display-x86-rhel47-07.nvidia.com)  Tue May  1 00:53:58 PDT 2012

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 0 0
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
    Option         "Xinerama" "0"
EndSection

Section "Files"
EndSection

Section "InputDevice"

    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/psaux"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"

    # generated from default
    Identifier     "Keyboard0"
    Driver         "kbd"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Samsung T27B300"
    HorizSync       30.0 - 81.0
    VertRefresh     60.0 - 75.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce GT 610"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "TwinView" "0"
    Option         "TwinViewXineramaInfoOrder" "CRT-1"
    Option         "metamodes" "nvidia-auto-select +0+0"
    SubSection     "Display"
        Depth       24
        Modes      "1920x1200"
    EndSubSection
EndSection

Ein Reboot brachte für den höheren Kernel wieder nur den Textmodus (tt...1)

Ich sehe, es gibt 2 Monitor0-Einträge ... hat das vielleicht etwas damit zu tun?
Muss ich eventuell einen Eintrag löschen, darf ich das, wird nicht die xorg-conf Datei automatisch erstellt?

:???:
 

RME

Advanced Hacker
Ich sehe, es gibt 2 Monitor0-Einträge ... hat das vielleicht etwas damit zu tun?
Nein das ist gut so wie es ist.

Aber ändere mal
Code:
Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "TwinView" "0"
    Option         "TwinViewXineramaInfoOrder" "CRT-1"
    Option         "metamodes" "nvidia-auto-select +0+0"
    SubSection     "Display"
        Depth       24
        Modes      "1920x1200"
    EndSubSection
auf
Code:
Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "metamodes" "nvidia-auto-select +0+0"
    SubSection     "Display"
        Depth       24
        Modes      "1920x1200"
    EndSubSection
Wenn dies nichts bringt, schau mal ob die Log Dateien etwas berichten:
Code:
/var/log/Xorg.0.log
/var/log/boot.msg
/var/log/messages
Z.B.
Code:
egrep "WW|EE" /var/log/Xorg.0.log
egrep --color -i "error|fail|not " /var/log/boot.msg
Was zeigt:
Code:
xrandr
und
Code:
egrep --color -i "connect" /var/log/Xorg.0.log
----------
Falls Du (aber nicht jetzt) TwinView konfigurieren möchtest, würde ich dann stattdessen schreiben:
Code:
Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "TwinView" "1"
    Option         "TwinViewXineramaInfoOrder" "DFP-0"        # DVI Connector
    Option         "metamodes" "nvidia-auto-select +0+0"
    SubSection     "Display"
        Depth       24
        Modes      "1920x1200"
    EndSubSection
(ob "DFP-0" oder "DFP-1" zeigt die Ausgabe von egrep --color -i "connect" /var/log/Xorg.0.log)

-/-
 
OP
C

clochardy

Newbie
/var/log/messages zeigt bei den Begriffen "not|fail|error" für heute folgendes an:
Code:
Aug  5 01:32:01 linux-30cy dbus-daemon[841]: dbus[841]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.NetworkManager.service': Unit dbus-org.freedesktop.NetworkManager.service failed to load: No such file or directory. See system logs and 'systemctl status dbus-org.freedesktop.NetworkManager.service' for details.
Aug  5 03:38:15 linux-30cy kernel: [    0.229884]  pci0000:00: ACPI _OSC request failed (AE_ERROR), returned control mask: 0x1d
Aug  5 03:38:15 linux-30cy kernel: [    0.229885] ACPI _OSC control for PCIe not granted, disabling ASPM
Aug  5 03:38:15 linux-30cy kernel: [    0.240336] system 00:0e: [mem 0xfee00000-0xfeefffff] could not be reserved
Aug  5 03:38:15 linux-30cy kernel: [    0.439402] intel_idle: does not run on family 6 model 58
Aug  5 03:38:15 linux-30cy kernel: [    0.439425] GHES: HEST is not enabled!
Aug  5 03:38:15 linux-30cy kernel: [    0.527159] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
Aug  5 03:38:15 linux-30cy kernel: [    0.536528] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
Aug  5 03:38:15 linux-30cy kernel: [    0.586649] PM: Hibernation image not present or could not be loaded.
Aug  5 03:38:15 linux-30cy kernel: [    0.830344] ACPI Error: [DSSP] Namespace lookup failure, AE_NOT_FOUND (20120320/psargs-359)
Aug  5 03:38:15 linux-30cy kernel: [    0.830350] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SAT0.SPT0._GTF] (Node ffff880212cc5c68), AE_NOT_FOUND (20120320/psparse-536)
Aug  5 03:38:15 linux-30cy kernel: [    0.830958] ACPI Error: [DSSP] Namespace lookup failure, AE_NOT_FOUND (20120320/psargs-359)
Aug  5 03:38:15 linux-30cy kernel: [    0.830964] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SAT0.SPT5._GTF] (Node ffff880212cd9a10), AE_NOT_FOUND (20120320/psparse-536)
Aug  5 03:38:15 linux-30cy kernel: [    0.831551] ACPI Error: [DSSP] Namespace lookup failure, AE_NOT_FOUND (20120320/psargs-359)
Aug  5 03:38:15 linux-30cy kernel: [    0.831556] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SAT0.SPT0._GTF] (Node ffff880212cc5c68), AE_NOT_FOUND (20120320/psparse-536)
Aug  5 03:38:15 linux-30cy kernel: [    0.832321] ACPI Error: [DSSP] Namespace lookup failure, AE_NOT_FOUND (20120320/psargs-359)
Aug  5 03:38:15 linux-30cy kernel: [    0.832326] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SAT0.SPT5._GTF] (Node ffff880212cd9a10), AE_NOT_FOUND (20120320/psparse-536)
Aug  5 03:38:15 linux-30cy kernel: [    8.174524] EDD information not available.
Aug  5 03:38:15 linux-30cy kernel: [    9.554150] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
Aug  5 03:38:15 linux-30cy systemd[1]: Job NetworkManager-wait-online.service/start failed with result 'dependency'.
Aug  5 03:38:15 linux-30cy systemd[1]: Unit NetworkManager.service entered failed state.
Aug  5 03:38:18 linux-30cy kernel: [   17.344404] ADDRCONF(NETDEV_UP): eth0: link is not ready
Aug  5 03:38:21 linux-30cy dhclient[1717]: send_packet6: Cannot assign requested address
Aug  5 03:38:21 linux-30cy dhcpcd[1699]: eth0: Failed to lookup hostname via DNS: Name or service not known
Aug  5 03:38:36 linux-30cy mcelog: Unsupported new Family 6 Model 3a CPU: only decoding architectural errors
Aug  5 03:38:36 linux-30cy /usr/sbin/cron[3227]: (CRON) INFO (running with inotify support)
Aug  5 01:38:37 linux-30cy ntpd[3527]: line 41 column 1 syntax error, unexpected T_EOC, expecting T_Default or T_Ipv4_flag or T_Ipv6_flag or T_String
Aug  5 01:38:37 linux-30cy ntpd[3527]: syntax error in /etc/ntp.conf line 41, column 1
Aug  5 01:38:38 linux-30cy kdm[3545]: X server for display :0 cannot be started, session disabled


/var/log/messages zeigt beim Stichwort "nvidia" für heute folgendes an:
Code:
Aug  5 00:32:44 linux-30cy kernel: [   10.471089] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input11
Aug  5 00:32:44 linux-30cy kernel: [   10.471157] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input12
Aug  5 00:34:28 linux-30cy kernel: [   11.855953] nvidia: module license 'NVIDIA' taints kernel.
Aug  5 00:34:28 linux-30cy kernel: [   11.894282] nvidia 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
Aug  5 00:34:28 linux-30cy kernel: [   11.894288] nvidia 0000:01:00.0: setting latency timer to 64
Aug  5 00:34:28 linux-30cy kernel: [   11.894351] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  295.49  Mon Apr 30 23:46:33 PDT 2012
Aug  5 00:34:28 linux-30cy kernel: [   12.835005] input: HDA NVidia HDMI/DP as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input5
Aug  5 00:34:28 linux-30cy kernel: [   12.835101] input: HDA NVidia HDMI/DP as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input6
Aug  4 22:34:50 linux-30cy kernel: [   35.594399] Modules linked in: ip6t_LOG xt_tcpudp xt_pkttype ipt_LOG xt_limit af_packet ip6t_REJECT nf_conntrack_ipv6 nf_defrag_ipv6 ip6table_raw xt_NOTRACK ipt_REJECT iptable_raw iptable_filter ip6table_mangle nf_conntrack_netbios_ns nf_conntrack_broadcast nf_conntrack_ipv4 nf_defrag_ipv4 ip_tables xt_conntrack nf_conntrack ip6table_filter ip6_tables cpufreq_conservative x_tables cpufreq_userspace cpufreq_powersave acpi_cpufreq microcode mperf snd_hda_codec_hdmi snd_hda_codec_realtek nls_iso8859_1 snd_hda_intel snd_hda_codec nls_cp437 nvidia(P) snd_hwdep snd_pcm usblp vfat fat snd_timer snd soundcore mei(C) ppdev iTCO_wdt parport_pc parport i2c_i801 snd_page_alloc xhci_hcd video button iTCO_vendor_support sr_mod r8169 pcspkr cdrom sg autofs4 thermal fan processor thermal_sys ata_generic
Aug  4 22:34:50 linux-30cy kernel: [   35.594499]  [<ffffffffa086f161>] _nv014599rm+0xeb/0x10b [nvidia]
Aug  4 22:34:50 linux-30cy kernel: [   35.594550] DWARF2 unwinder stuck at _nv014599rm+0xeb/0x10b [nvidia]
Aug  4 22:34:50 linux-30cy kernel: [   35.594588]  [<ffffffffa01bbdba>] ? _nv009534rm+0x89/0x140 [nvidia]
Aug  4 22:34:50 linux-30cy kernel: [   35.594623]  [<ffffffffa01bbf29>] ? _nv014165rm+0xb8/0x102 [nvidia]
Aug  4 22:34:50 linux-30cy kernel: [   35.594657]  [<ffffffffa01bc3d7>] ? _nv014205rm+0x58/0x9e [nvidia]
Aug  4 22:34:50 linux-30cy kernel: [   35.594692]  [<ffffffffa01b7348>] ? _nv014175rm+0xbe/0x2f0 [nvidia]
Aug  4 22:34:50 linux-30cy kernel: [   35.594726]  [<ffffffffa01b7625>] ? _nv014210rm+0xab/0x174 [nvidia]
Aug  4 22:34:50 linux-30cy kernel: [   35.594760]  [<ffffffffa01b773e>] ? _nv014174rm+0x50/0x5d [nvidia]
Aug  4 22:34:50 linux-30cy kernel: [   35.594795]  [<ffffffffa01be7a6>] ? _nv014150rm+0x9ef/0xb29 [nvidia]
Aug  4 22:34:50 linux-30cy kernel: [   35.594837]  [<ffffffffa088318f>] ? _nv012423rm+0x174/0x662 [nvidia]
Aug  4 22:34:50 linux-30cy kernel: [   35.594877]  [<ffffffffa088310d>] ? _nv012423rm+0xf2/0x662 [nvidia]
Aug  4 22:34:50 linux-30cy kernel: [   35.594922]  [<ffffffffa0205c11>] ? _nv003976rm+0x1e5/0x1deb [nvidia]
Aug  4 22:34:50 linux-30cy kernel: [   35.595008]  [<ffffffffa05e6a6f>] ? _nv004001rm+0xaaa2/0xd1a8 [nvidia]
Aug  4 22:34:50 linux-30cy kernel: [   35.595091]  [<ffffffffa05e508d>] ? _nv004001rm+0x90c0/0xd1a8 [nvidia]
Aug  4 22:34:50 linux-30cy kernel: [   35.595121]  [<ffffffffa01815be>] ? _nv009830rm+0x25/0x40 [nvidia]
Aug  4 22:34:50 linux-30cy kernel: [   35.595162]  [<ffffffffa0882ea1>] ? _nv014656rm+0x7c8/0x942 [nvidia]
Aug  4 22:34:50 linux-30cy kernel: [   35.595207]  [<ffffffffa0883ff1>] ? _nv001089rm+0x522/0x7a1 [nvidia]
Aug  4 22:34:50 linux-30cy kernel: [   35.595249]  [<ffffffffa087a9ec>] ? rm_init_adapter+0xae/0x1bb [nvidia]
Aug  4 22:34:50 linux-30cy kernel: [   35.595291]  [<ffffffffa0872d00>] ? _nv014632rm+0x3f/0x6e [nvidia]
Aug  4 22:34:50 linux-30cy kernel: [   35.595333]  [<ffffffffa089d9e4>] ? nv_kern_open+0x3f4/0x7a0 [nvidia]
Aug  5 03:18:46 linux-30cy kernel: [    9.605896] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input8
Aug  5 03:18:46 linux-30cy kernel: [    9.605962] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input9

Ausgabe von "egrep "WW|EE" /var/log/Xorg.0.log":
Code:
[    33.752] Current Operating System: Linux linux-30cy 3.4.5-1-desktop #1 SMP PREEMPT Wed Jul 18 09:09:22 UTC 2012 (cf1edf7) x86_64
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    33.753] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[    33.753] (WW) Disabling Keyboard0
[    33.753] (WW) Disabling Mouse0
[    33.770] (II) Loading extension MIT-SCREEN-SAVER
[    34.129] (EE) NVIDIA: Failed to load the NVIDIA kernel module. Please check your
[    34.129] (EE) NVIDIA:     system's kernel log for additional error messages.
[    34.129] (EE) Failed to load module "nvidia" (module-specific error, 0)
[    34.129] (EE) No drivers available.

xrandr zeigt:
Code:
   1920x1080      50.0* 
   1680x1050      51.0  
   1600x900       52.0  
   1440x900       53.0  
   1400x1050      54.0     55.0  
   1366x768       56.0  
   1280x1024      57.0     58.0  
   1280x960       59.0  
   1280x800       60.0  
   1280x720       61.0  
   1152x864       62.0  
   1024x768       63.0     64.0     65.0  
   832x624        66.0  
   800x600        67.0     68.0     69.0  
   700x525        70.0     71.0  
   640x480        72.0     73.0     74.0     75.0     76.0  
   512x384        77.0     78.0  
   400x300        79.0  
   320x240        80.0     81.0
 
OP
C

clochardy

Newbie
egrep --color -i "connect" /var/log/Xorg.0.log:
Code:
[    35.126] (--) NVIDIA(0): Connected display device(s) on GeForce GT 610 at PCI:1:0:0

Die Veränderung in /etc/X11/xorg.conf veränderte nichts.

Ich habe keine /var/log/boot.msg, vielleicht hängt das mit ELILO zusammen. Dafür habe ich die Daten cvon /var/log/messages genommen.
 

RME

Advanced Hacker
Das Problem ist hier:
egrep "WW|EE" /var/log/Xorg.0.log schrieb:
Code:
[    34.129] (EE) NVIDIA: Failed to load the NVIDIA kernel module. Please check your
[    34.129] (EE) NVIDIA:     system's kernel log for additional error messages.
[    34.129] (EE) Failed to load module "nvidia" (module-specific error, 0)
[    34.129] (EE) No drivers available.
:???:

Ich würde mal den NVidia Driver neu installieren.
 
OP
C

clochardy

Newbie
Warum klappt es aber mit dem "kleineren" Kernel und nicht beim "stabilen" kernel-3.4.5-1?

Die Kernels wurden mittels YAST (RPM) von den Repositories installiert. :irre:
 

RME

Advanced Hacker
Was zeigt:
Code:
nvidia-settings --glxinfo | grep string
sowie
Code:
/usr/sbin/hwinfo --gfx
?
 
OP
C

clochardy

Newbie
Zitat aus http://www.linux-club.de/viewtopic.php?f=41&t=115691 :

Ausserdem hab ich dann festgestellt, das sich der nvidia-Treiber nicht mehr installieren lies. Den Kernelquellen von 3.3 fehlen 3 Dateien,
die unter unter 3.2 und früher wohl noch mitgeliefert wurden. Hier die Lösung:
In den Runlevel 3 booten und als root anmelden, make muss installiert sein.
danach ins Verzeichnis /usr/src/linux wechseln, make cloneconfig und make prepare ausführen.
Nun ins Verzeichnis /lib/modules/3.3.0-16-desktop/source/arch/x86/include/ wechseln. (Bez. 3.3.0-16-default, je nach inst. Kernel)
Die neu erstellten Dateien mit cp -v generated/asm/unistd*.h ./asm/ ins von nvidia-installer erwartete Verzeichnis kopieren.
Drei Dateien werden kopiert. Danach kann man ganz normal den nvidia-Treiber installieren.

Muss ich jetzt den Kernel selber kompilieren? Kann das die Lösung sein (es war Kernel 3.3, und meiner ist 3.5.1) ?

:???:
 
OP
C

clochardy

Newbie
nvidia-settings --glxinfo | grep string:
Code:
  server glx vendor string: NVIDIA Corporation
  server glx version string: 1.4
  client glx vendor string: NVIDIA Corporation
  client glx version string: 1.4
  OpenGL vendor string: NVIDIA Corporation
  OpenGL renderer string: GeForce GT 610/PCIe/SSE2
  OpenGL version string: 4.2.0 NVIDIA 295.49


/usr/sbin/hwinfo --gfx:
Code:
23: PCI 100.0: 0300 VGA compatible controller (VGA)             
  [Created at pci.319]
  Unique ID: VCu0.vt57ONFefC7
  Parent ID: vSkL.pCz0kNFNqf6
  SysFS ID: /devices/pci0000:00/0000:00:01.0/0000:01:00.0
  SysFS BusID: 0000:01:00.0
  Hardware Class: graphics card
  Model: "nVidia VGA compatible controller"
  Vendor: pci 0x10de "nVidia Corporation"
  Device: pci 0x104a 
  SubVendor: pci 0x1acc 
  SubDevice: pci 0x612a 
  Revision: 0xa1
  Driver: "nvidia"
  Driver Modules: "nvidia"
  Memory Range: 0xf6000000-0xf6ffffff (rw,non-prefetchable)
  Memory Range: 0xe8000000-0xefffffff (ro,non-prefetchable)
  Memory Range: 0xf0000000-0xf1ffffff (ro,non-prefetchable)
  I/O Ports: 0xe000-0xefff (rw)
  Memory Range: 0xf7000000-0xf707ffff (ro,non-prefetchable,disabled)
  IRQ: 16 (63777 events)
  Module Alias: "pci:v000010DEd0000104Asv00001ACCsd0000612Abc03sc00i00"
  Driver Info #0:
    Driver Status: nvidiafb is not active
    Driver Activation Cmd: "modprobe nvidiafb"
  Driver Info #1:
    Driver Status: nouveau is not active
    Driver Activation Cmd: "modprobe nouveau"
  Driver Info #2:
    Driver Status: nvidia is active
    Driver Activation Cmd: "modprobe nvidia"
  Config Status: cfg=no, avail=yes, need=no, active=unknown
  Attached to: #10 (PCI bridge)

Primary display adapter: #23
 

RME

Advanced Hacker
Muss ich jetzt den Kernel selber kompilieren?
dies sollte nicht notwendig sein...

Siehst Du irgend etwas verdächtiges in:
Code:
/var/log/nvidia-installer.log
?

Ansonsten würde ich den Driver deinstallieren und neu installieren.
 
OP
C

clochardy

Newbie
Ich habe gestern Nacht die Treiber

nvidia-computeG02
nvidia-gfxG02-kmp-desktop
und
x11-video-nvidiaG02

mittels Yast deinstalliert, aufgrund der Abhängigkeiten wurden ca. 5 weitere Pakete entfernt.

Dann fügte ich diese Treiber wieder hinzu ... dabei wurde Kernel 3.1.10-1.16-desktop x86_64 als zu diesen Treibern abbhängig deklariert.

Die Folge war, das ich gar nicht mehr in den Grafikmodus rein kam. Ich habe eine Neuinstallation ohne Kernel 3.5.4 durchgeführt ... und lasse das jetzt mal so ... denn gerade sieht alles richtig gut aus ... ich habe etwas Angst.. :eek:ps:

Anscheinend sind in meinem Repository keine nvidia-Treiber für Kernel 3.5.4? :???:
 

RME

Advanced Hacker
Anscheinend sind in meinem Repository keine nvidia-Treiber für Kernel 3.5.4?
Wenn dies so ist (ich weiss es nicht) dann hättest Du den Driver selber kompilieren müssen (der NVidia driver 295.53 funktioniert mit Kernel 3.5). Aber dies ist nicht unbedingt ratsam... je nachdem.

Das NVidia Kernel Modul welches nicht geladen werden konnte war vermutlich noch vom vorherigen Linux Kernel (das Modul muss jedoch für jeden Kernel neu kompiliert werden).

Hauptsache das System läuft wieder -- es muss ja nicht unbedingt der allerneuste Kernel sein :D

Gruss,
Roland
 

spoensche

Moderator
Teammitglied
Wenn ich die ACPI Errors nicht gesehen hätte, hätte ich den Thread verschoben.

@clochardy:
Hast du evtl. Probleme mit deiner Festplatte wenn Powersave,Suspend o. Hibernation aktiv wird? (z.B. das die Festplatte nicht in den Ruhezustand versetzt werden kann)
 

josef-wien

Ultimate Guru
Der im Repo vorhandene Nvidia-Treiber funktioniert nur mit dem Kernel aus dem oss- bzw. update-Repo. Wenn Du zusätzlich einen anderen Kernel installierst, mußt Du entweder den Nvidia-Treiber selbst erzeugen oder dafür sorgen, daß alle installierten Kernel den Nvidia-Treiber nicht verwenden. (Die Möglichkeit, in den Boot-Prozeß einzugreifen und das Ganze variabel zu gestalten, lasse ich bewußt weg.)

Deine xorg.conf ist auf den Nvidia-Treiber abgestellt, zusätzlich wird durch einen blacklist-Eintrag das Laden von nouveau unterbunden. Gibt es jetzt für den Kernel keinen Nvidia-Treiber, wird vermutlich nv verwendet, der vielleicht beim älteren Kernel toleranter als beim neuesten Kernel ist.

Und auf die ACPI-Probleme hat gerade spoensche hingewiesen.
 
Oben