nach hibernate kein xserver

E

ezekiel

Ich versuche nun schon seit geraumer Zeit, den Ruhezustand unter Ubuntu zum Laufen zu kriegen, allerdings bleibt nach dem Wiederherstellen des Ruhezustandes immer noch der x-server schwarz. Wenn ich dann zur Konsole wechsel und den x-server neustarte, läufts ohne Probleme.

Ich benutze eine Geforce 6600 GT und hab beim googeln schon diverse Threads gefunden, die mir jedoch nicht halfen.

Hier die xorg.conf:

Code:
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"
EndSection

Section "Files"
    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           "dri"
    Load           "glx"
    Load           "int10"
    Load           "vbe"
EndSection

Section "InputDevice"
    Identifier     "Generic Keyboard"
    Driver         "kbd"
    Option         "CoreKeyboard"
    Option         "XkbRules" "xorg"
    Option         "XkbModel" "pc105"
    Option         "XkbLayout" "de"
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     "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     "Generic Monitor"
    HorizSync       30.0 - 82.0
    VertRefresh     50.0 - 160.0
    ModeLine       "320x200" 8.6 320 328 472 408 200 202 203 211
    ModeLine       "640x400" 34.4 640 656 800 816 400 402 404 421
    ModeLine       "640x480" 41.2 640 656 800 816 480 482 484 505
    ModeLine       "800x600" 64.7 800 824 968 1024 600 602 605 632
    ModeLine       "1024x768" 106.0 1024 1056 1200 1312 768 770 774 808
    ModeLine       "1152x864" 120.7 1152 1192 1336 1472 864 866 870 909
    ModeLine       "1280x960" 134.5 1280 1320 1464 1640 960 962 967 1011
    ModeLine       "1280x1024" 134.5 1280 1320 1464 1640 1024 1026 1031 1078
    ModeLine       "1600x1200" 167.9 1600 1656 1800 2048 1200 1202 1208 1263
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "nVidia Corporation NV43 [GeForce 6600]"
    Driver         "nvidia"
    Option         "RenderAccel"           "true"
    Option         "AllowGLXWithComposite" "true"
    Option 	   "NoLogo"                "true"
    Option         "AddARGBGLXVisuals"     "True"
    Option         "TripleBuffer"          "true"
    BusID          "PCI:1:0:0"
    Option         "NvAGP" "1"
EndSection

Section "Screen"
    Identifier     "Default Screen"
    Device         "nVidia Corporation NV43 [GeForce 6600]"
    Monitor        "Generic Monitor"
    DefaultDepth    24
    Option         "MetaModes" "1280x1024"
#   Option         "TwinView"
#   Option         "TwinViewOrientation" "RightOf"
#   Option         "UseDisplayDevice" "CRT, TV"
#   Option         "TVStandard" "PAL-B"


    SubSection     "Display"
        Depth       24
        Modes      "1024x786" "1152x864" "1280x960" "1280x1024" "1600x1200"
    EndSubSection
EndSection

Section "Extensions"
#   Option         "Composite" "Enable"
EndSection

Und hier der Inhalt von /etc/default/acpi-support:

Code:
# Comment the next line to disable ACPI suspend to RAM
ACPI_SLEEP=true

# Comment the next line to disable suspend to disk
ACPI_HIBERNATE=true

# Change the following to "standby" to use ACPI S1 sleep, rather than S3.
# This will save less power, but may work on more machines
ACPI_SLEEP_MODE=mem

# Add modules to this list to have them removed before suspend and reloaded
# on resume. An example would be MODULES="em8300 yenta_socket"
#
# Note that network cards and USB controllers will automatically be unloaded 
# unless they're listed in MODULES_WHITELIST
MODULES=""

# Add modules to this list to leave them in the kernel over suspend/resume
MODULES_WHITELIST=""

# Should we save and restore state using the VESA BIOS Extensions?
SAVE_VBE_STATE=false

# The file that we use to save the vbestate
VBESTATE=/var/lib/acpi-support/vbestate

# Should we attempt to warm-boot the video hardware on resume?
POST_VIDEO=false

# Save and restore video state?
# SAVE_VIDEO_PCI_STATE=true

# Should we switch the screen off with DPMS on suspend?
USE_DPMS=false


# Uncomment the next line to switch away from X and back again after resume.
# This is needed for some hardware, but should be unnecessary on most.
# DOUBLE_CONSOLE_SWITCH=true

# Set the following to "platform" if you want to use ACPI to shut down
# your machine on hibernation
HIBERNATE_MODE=shutdown

# Comment this out to disable screen locking on resume
LOCK_SCREEN=true

# Uncomment this line to have DMA disabled before suspend and reenabled
# afterwards
# DISABLE_DMA=true

# Uncomment this line to attempt to reset the drive on resume. This seems
# to be needed for some Sonys
# RESET_DRIVE=true

# Add services to this list to stop them before suspend and restart them in 
# the resume process.
STOP_SERVICES="mysql "

# Restart Infra Red services on resume - off by default as it crashes some
# machines
RESTART_IRDA=false

# Switch to laptop-mode on battery power - off by default as it causes odd
# hangs on some machines
ENABLE_LAPTOP_MODE=false

Was hab ich da vergessen? Ich möchte nämlich ungern auf das "nv-modul" umsteigen, nur um den Ruhezustand hinzubiegen.

Gruß ezekiel
 

Anhänge

  • Xorg.0.log.txt
    23,5 KB · Aufrufe: 0
Problem gelöst: der Kernel benutzte trotz blacklisting das agpgart-modul. neustricken ohne dem agpgartmodul und ein einfaches nvidia-xconfig reichte aus :)
 

Ähnliche Themen

NGINX bietet intern abgerufene Seiten nur zum Download an, extern geht's

Nginx als Reverse Proxy für Nextcloud und Emby

X11 Monitor Position

Zugriff Ubuntu 16.04. auf Freigabe 18.04. LTS nicht möglich

Email via script via Exchange Server (SASL)

Zurück
Oben