You are not logged in.

#1 2015-05-23 06:21:19

jeremy5561
Member
Registered: 2015-05-17
Posts: 12

[SOLVED] Xrandr can't persist settings

Hi. I'm trying to make my monitor run at 120 Hz. I've had a long painful experience trying to get this done using my xorg.conf file and that didn't work out. Instead, I'm trying to do it through xrandr. The following command

xrandr --output DVI-I-1 --mode 1920x1080 --rate 120.0

does the trick in Terminal. However I'm having problems getting this to run on startup. I'm using GDM and GNOME. My /etc/gdm/Init/Default is as follows

#!/bin/sh
# Stolen from the debian kdm setup, aren't I sneaky
# Plus a lot of fun stuff added
#  -George

PATH="/usr/bin:$PATH"
OLD_IFS=$IFS

#xrandr --output DVI-I-1 --primary --right-of DVI-D-0
#xrandr --output DVI-D-0 --mode 1920x1080 --rate 60.0
xrandr --output DVI-I-1 --mode 1920x1080 --rate 120.0

gdmwhich () {
  COMMAND="$1"
  OUTPUT=
  IFS=:
  for dir in $PATH
  do
    if test -x "$dir/$COMMAND" ; then
      if test "x$OUTPUT" = "x" ; then
        OUTPUT="$dir/$COMMAND"
      fi
    fi
  done
  IFS=$OLD_IFS
  echo "$OUTPUT"
}

sysresources=/etc/X11/Xresources

# merge in defaults
if [ -f "$sysresources" ]; then
    xrdb -merge "$sysresources"
fi

sysmodmap=/etc/X11/Xmodmap

XMODMAP=`gdmwhich xmodmap`
if [ "x$XMODMAP" != "x" ] ; then
  if [ "x$GDM_PARENT_DISPLAY" = "x" ]; then
    if [ -f $sysmodmap ]; then
      $XMODMAP $sysmodmap
    fi
  else
    ( DISPLAY=$GDM_PARENT_DISPLAY XAUTHORITY=$GDM_PARENT_XAUTHORITY $XMODMAP -pke ) | $XMODMAP -
  fi

  #
  # Switch Sun's Alt and Meta mod mappings
  #

  UNAME=`gdmwhich uname`
  PROCESSOR=`$UNAME -p`
  if [ "x$PROCESSOR" = "xsparc" ]; then
    if $XMODMAP | grep mod4 | grep Alt > /dev/null 2>/dev/null
    then
      $XMODMAP -e "clear Mod1" \
               -e "clear Mod4" \
               -e "add Mod1 = Alt_L" \
               -e "add Mod1 = Alt_R" \
               -e "add Mod4 = Meta_L" \
               -e "add Mod4 = Meta_R"
    fi
  fi
fi

SETXKBMAP=`gdmwhich setxkbmap`
if [ "x$SETXKBMAP" != "x" ] ; then
  # FIXME: is this all right?  Is this completely on crack?
  # What this does is move the xkb configuration from the GDM_PARENT_DISPLAY
  # FIXME: This should be done in code.  Or there must be an easier way ...
  if [ -n "$GDM_PARENT_DISPLAY" ]; then
    XKBSETUP=`( DISPLAY=$GDM_PARENT_DISPLAY XAUTHORITY=$GDM_PARENT_XAUTHORITY $SETXKBMAP -v )`
    if [ -n "$XKBSETUP" ]; then
      XKBKEYMAP=`echo "$XKBSETUP" | grep '^keymap' | awk '{ print $2 }'`
      XKBTYPES=`echo "$XKBSETUP" | grep '^types' | awk '{ print $2 }'`
      XKBCOMPAT=`echo "$XKBSETUP" | grep '^compat' | awk '{ print $2 }'`
      XKBSYMBOLS=`echo "$XKBSETUP" | grep '^symbols' | awk '{ print $2 }'`
      XKBGEOMETRY=`echo "$XKBSETUP" | grep '^geometry' | awk '{ print $2 }'`
      if [ -n "$XKBKEYMAP" ]; then
        $SETXKBMAP -keymap "$XKBKEYMAP"
      elif [ -n "$XKBTYPES" -a -n "$XKBCOMPAT" -a -n "$XKBSYMBOLS" -a -n "$XKBGEOMETRY" ]; then
        $SETXKBMAP -types "$XKBTYPES" -compat "$XKBCOMPAT" -symbols "$XKBSYMBOLS" -geometry "$XKBGEOMETRY"
      elif [ -n "$XKBTYPES" -a -n "$XKBCOMPAT" -a -n "$XKBSYMBOLS" ]; then
        $SETXKBMAP -types "$XKBTYPES" -compat "$XKBCOMPAT" -symbols "$XKBSYMBOLS"
      elif [ -n "$XKBSYMBOLS" ]; then
        $SETXKBMAP -symbols "$XKBSYMBOLS"
      fi
    fi
  fi
fi

exit 0

This doesn't do the job. The monitor stays at 60 Hz.

Any ideas? My monitor looks a bit flickery during startup, so I think it is trying...

(I've tried uncommenting the first 2 xrandr lines and that didn't work either)

Last edited by jeremy5561 (2015-05-24 15:54:59)

Offline

#2 2015-05-23 06:24:36

jeremy5561
Member
Registered: 2015-05-17
Posts: 12

Re: [SOLVED] Xrandr can't persist settings

For reference, my xorg.conf

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 352.09  (buildmeister@swio-display-x86-rhel47-06)  Tue May 12 15:28:55 PDT 2015

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0"
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
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      "Unknown"
    HorizSync       28.0 - 33.0
    VertRefresh     43.0 - 72.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

my xorg.conf.d/10-monitor.conf

# nvidia-settings: X configuration file generated by nvidia-settings
# nvidia-settings:  version 352.09  (buildmeister@swio-display-x86-rhel47-06)  Tue May 12 15:27:42 PDT 2015

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"
    # HorizSync source: edid, VertRefresh source: edid
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Ancor Communications Inc ASUS VG278HR"
    HorizSync       24.0 - 140.0
    VertRefresh     50.0 - 122.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce GTX 680"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "Stereo" "0"
    Option         "nvidiaXineramaInfoOrder" "DFP-0"
    Option         "metamodes" "DVI-I-1: 1920x1080_120 +1920+0, DVI-D-0: 1920x1080_60 +0+0"
    Option         "SLI" "Off"
    Option         "MultiGPU" "Off"
    Option         "BaseMosaic" "off"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

Offline

#3 2015-05-23 07:56:57

ctxfi-user
Member
Registered: 2010-10-31
Posts: 56

Re: [SOLVED] Xrandr can't persist settings

Some time (years!) ago i had to set full hd mode with 50 hz to use in a media center environment. This was the solution:

Try dropping all helper scripts using xrandr and solely use xorg.conf.d settings with follow additional option (documented here):

Option "FlatPanelProperties" "Scaling = Native"

Hope this helps!

Offline

#4 2015-05-23 19:29:30

jeremy5561
Member
Registered: 2015-05-17
Posts: 12

Re: [SOLVED] Xrandr can't persist settings

Didn't work.... why is this so hard?


My new x.org.conf (I deleted everything in xorg.conf.d/ and removed the xrandr commands in Default)

# nvidia-settings: X configuration file generated by nvidia-settings
# nvidia-settings:  version 352.09  (buildmeister@swio-display-x86-rhel47-06)  Tue May 12 15:27:42 PDT 2015

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"
    # HorizSync source: edid, VertRefresh source: edid
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "DELL ST2320L"
    HorizSync       30.0 - 83.0
    VertRefresh     56.0 - 76.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce GTX 680"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "Stereo" "0"
    Option         "nvidiaXineramaInfoOrder" "DFP-0"
    Option         "metamodes" "DVI-D-0: 1920x1080_60 +0+0, DVI-I-1: 1920x1080_120 +1920+0"
    Option         "SLI" "Off"
    Option         "MultiGPU" "Off"
    Option         "BaseMosaic" "off"
    Option         "FlatPanelProperties" "Scaling = Native"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

Thanks for the help though... any other suggestions?

Offline

#5 2015-05-23 20:32:53

jeremy5561
Member
Registered: 2015-05-17
Posts: 12

Re: [SOLVED] Xrandr can't persist settings

If it helps, this is my Xorg.0.log

[    19.055] _XSERVTransSocketUNIXCreateListener: ...SocketCreateListener() failed
[    19.055] _XSERVTransMakeAllCOTSServerListeners: server already running
[    19.056] 
X.Org X Server 1.17.1
Release Date: 2015-02-10
[    19.056] X Protocol Version 11, Revision 0
[    19.056] Build Operating System: Linux 3.19.2-1-ARCH x86_64 
[    19.056] Current Operating System: Linux orion01 4.0.4-2-ARCH #1 SMP PREEMPT Fri May 22 03:05:23 UTC 2015 x86_64
[    19.056] Kernel command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img root=/dev/sda5 rw
[    19.056] Build Date: 14 April 2015  10:34:18AM
[    19.056]  
[    19.056] Current version of pixman: 0.32.6
[    19.056] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    19.056] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    19.056] (==) Log file: "/var/log/Xorg.0.log", Time: Sat May 23 15:27:41 2015
[    19.056] (==) Using config file: "/etc/X11/xorg.conf"
[    19.056] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    19.057] (==) ServerLayout "Layout0"
[    19.057] (**) |-->Screen "Screen0" (0)
[    19.057] (**) |   |-->Monitor "Monitor0"
[    19.057] (**) |   |-->Device "Device0"
[    19.057] (**) |-->Input Device "Keyboard0"
[    19.057] (**) |-->Input Device "Mouse0"
[    19.057] (**) Option "Xinerama" "0"
[    19.057] (==) Automatically adding devices
[    19.057] (==) Automatically enabling devices
[    19.057] (==) Automatically adding GPU devices
[    19.057] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
[    19.057] 	Entry deleted from font path.
[    19.057] 	(Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
[    19.057] (==) FontPath set to:
	/usr/share/fonts/misc/,
	/usr/share/fonts/TTF/,
	/usr/share/fonts/OTF/,
	/usr/share/fonts/Type1/,
	/usr/share/fonts/75dpi/
[    19.057] (==) ModulePath set to "/usr/lib/xorg/modules"
[    19.057] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[    19.057] (WW) Disabling Keyboard0
[    19.057] (WW) Disabling Mouse0
[    19.057] (II) Loader magic: 0x815d80
[    19.057] (II) Module ABI versions:
[    19.057] 	X.Org ANSI C Emulation: 0.4
[    19.057] 	X.Org Video Driver: 19.0
[    19.057] 	X.Org XInput driver : 21.0
[    19.057] 	X.Org Server Extension : 9.0
[    19.059] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c3
[    19.059] (II) xfree86: Adding drm device (/dev/dri/card0)
[    19.060] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 10 paused 0
[    19.061] (--) PCI:*(0:1:0:0) 10de:1180:3842:2680 rev 161, Mem @ 0xf6000000/16777216, 0xe8000000/134217728, 0xf0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/524288
[    19.061] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[    19.062] (II) LoadModule: "glx"
[    19.062] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    19.072] (II) Module glx: vendor="NVIDIA Corporation"
[    19.072] 	compiled for 4.0.2, module version = 1.0.0
[    19.072] 	Module class: X.Org Server Extension
[    19.072] (II) NVIDIA GLX Module  352.09  Tue May 12 14:17:34 PDT 2015
[    19.072] (II) LoadModule: "nvidia"
[    19.072] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[    19.073] (II) Module nvidia: vendor="NVIDIA Corporation"
[    19.073] 	compiled for 4.0.2, module version = 1.0.0
[    19.073] 	Module class: X.Org Video Driver
[    19.073] (II) NVIDIA dlloader X Driver  352.09  Tue May 12 13:54:27 PDT 2015
[    19.073] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[    19.073] (++) using VT number 2

[    19.073] (II) Loading sub module "fb"
[    19.073] (II) LoadModule: "fb"
[    19.073] (II) Loading /usr/lib/xorg/modules/libfb.so
[    19.073] (II) Module fb: vendor="X.Org Foundation"
[    19.073] 	compiled for 1.17.1, module version = 1.0.0
[    19.073] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    19.073] (II) Loading sub module "wfb"
[    19.073] (II) LoadModule: "wfb"
[    19.074] (II) Loading /usr/lib/xorg/modules/libwfb.so
[    19.074] (II) Module wfb: vendor="X.Org Foundation"
[    19.074] 	compiled for 1.17.1, module version = 1.0.0
[    19.074] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    19.074] (II) Loading sub module "ramdac"
[    19.074] (II) LoadModule: "ramdac"
[    19.074] (II) Module "ramdac" already built-in
[    19.074] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
[    19.074] (==) NVIDIA(0): RGB weight 888
[    19.074] (==) NVIDIA(0): Default visual is TrueColor
[    19.074] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[    19.074] (**) NVIDIA(0): Option "Stereo" "0"
[    19.074] (**) NVIDIA(0): Option "nvidiaXineramaInfoOrder" "DFP-0"
[    19.075] (**) NVIDIA(0): Option "SLI" "Off"
[    19.075] (**) NVIDIA(0): Option "MultiGPU" "Off"
[    19.075] (**) NVIDIA(0): Option "FlatPanelProperties" "Scaling = Native"
[    19.075] (**) NVIDIA(0): Option "BaseMosaic" "off"
[    19.075] (**) NVIDIA(0): Stereo disabled by request
[    19.075] (**) NVIDIA(0): NVIDIA SLI disabled.
[    19.075] (**) NVIDIA(0): NVIDIA Multi-GPU disabled.
[    19.075] (WW) NVIDIA(0): Unrecognized FlatPanelProperties property "Scaling";
[    19.075] (WW) NVIDIA(0):     ignoring.
[    19.075] (**) NVIDIA(0): Option "MetaModes" "DVI-D-0: 1920x1080_60 +0+0, DVI-I-1: 1920x1080_120 +1920+0"
[    19.075] (**) NVIDIA(0): Enabling 2D acceleration
[    19.076] (II) NVIDIA: Allocated GPU:0 (GPU-988a9a37-bc3f-386f-b20c-d46145e6c6bd) @
[    19.076] (II) NVIDIA:     PCI:0000:01:00.0
[    19.090] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
[    19.090] (--) NVIDIA(0):     CRT-0
[    19.090] (--) NVIDIA(0):     DFP-0 (boot)
[    19.090] (--) NVIDIA(0):     DFP-1
[    19.090] (--) NVIDIA(0):     DFP-2
[    19.090] (--) NVIDIA(0):     DFP-3
[    19.090] (--) NVIDIA(0):     DFP-4
[    19.102] (--) NVIDIA(0): CRT-0: disconnected
[    19.102] (--) NVIDIA(0): CRT-0: 400.0 MHz maximum pixel clock
[    19.102] (--) NVIDIA(0): 
[    19.125] (--) NVIDIA: GPU:0: Display (Ancor Communications Inc ASUS VG278HR (DVI-I-1)) supports NVIDIA 3D Vision stereo.
[    19.125] (--) NVIDIA(0): Ancor Communications Inc ASUS VG278HR (DFP-0): connected
[    19.125] (--) NVIDIA(0): Ancor Communications Inc ASUS VG278HR (DFP-0): Internal TMDS
[    19.125] (--) NVIDIA(0): Ancor Communications Inc ASUS VG278HR (DFP-0): 330.0 MHz maximum pixel clock
[    19.125] (--) NVIDIA(0): 
[    19.125] (--) NVIDIA(0): DFP-1: disconnected
[    19.125] (--) NVIDIA(0): DFP-1: Internal TMDS
[    19.125] (--) NVIDIA(0): DFP-1: 165.0 MHz maximum pixel clock
[    19.125] (--) NVIDIA(0): 
[    19.125] (--) NVIDIA(0): DFP-2: disconnected
[    19.125] (--) NVIDIA(0): DFP-2: Internal TMDS
[    19.125] (--) NVIDIA(0): DFP-2: 165.0 MHz maximum pixel clock
[    19.125] (--) NVIDIA(0): 
[    19.132] (--) NVIDIA(0): DELL ST2320L (DFP-3): connected
[    19.132] (--) NVIDIA(0): DELL ST2320L (DFP-3): Internal TMDS
[    19.132] (--) NVIDIA(0): DELL ST2320L (DFP-3): 330.0 MHz maximum pixel clock
[    19.132] (--) NVIDIA(0): 
[    19.132] (--) NVIDIA(0): DFP-4: disconnected
[    19.132] (--) NVIDIA(0): DFP-4: Internal DisplayPort
[    19.132] (--) NVIDIA(0): DFP-4: 960.0 MHz maximum pixel clock
[    19.132] (--) NVIDIA(0): 
[    19.132] (II) NVIDIA(GPU-0): Found DRM driver nvidia-drm (20150116)
[    19.133] (II) NVIDIA(0): NVIDIA GPU GeForce GTX 680 (GK104) at PCI:1:0:0 (GPU-0)
[    19.133] (--) NVIDIA(0): Memory: 2097152 kBytes
[    19.133] (--) NVIDIA(0): VideoBIOS: 80.04.47.00.f0
[    19.133] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[    19.154] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
[    19.154] (**) NVIDIA(0):     device Ancor Communications Inc ASUS VG278HR (DFP-0)
[    19.154] (**) NVIDIA(0):     (Using EDID frequencies has been enabled on all display
[    19.154] (**) NVIDIA(0):     devices.)
[    19.156] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
[    19.156] (**) NVIDIA(0):     device DELL ST2320L (DFP-3) (Using EDID frequencies has
[    19.156] (**) NVIDIA(0):     been enabled on all display devices.)
[    19.157] (II) NVIDIA(0): Validated MetaModes:
[    19.157] (II) NVIDIA(0):     "DVI-D-0:1920x1080_60+0+0,DVI-I-1:1920x1080_120+1920+0"
[    19.157] (II) NVIDIA(0): Virtual screen size determined to be 3840 x 1080
[    19.163] (--) NVIDIA(0): DPI set to (81, 80); computed from "UseEdidDpi" X config
[    19.163] (--) NVIDIA(0):     option
[    19.163] (--) Depth 24 pixmap format is 32 bpp
[    19.163] (II) NVIDIA: Using 3072.00 MB of virtual memory for indirect memory
[    19.163] (II) NVIDIA:     access.
[    19.166] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[    19.166] (II) NVIDIA(0):     may not be running or the "AcpidSocketPath" X
[    19.166] (II) NVIDIA(0):     configuration option may not be set correctly.  When the
[    19.166] (II) NVIDIA(0):     ACPI event daemon is available, the NVIDIA X driver will
[    19.166] (II) NVIDIA(0):     try to use it to receive ACPI event notifications.  For
[    19.166] (II) NVIDIA(0):     details, please see the "ConnectToAcpid" and
[    19.166] (II) NVIDIA(0):     "AcpidSocketPath" X configuration options in Appendix B: X
[    19.166] (II) NVIDIA(0):     Config Options in the README.
[    19.179] (II) NVIDIA(0): Setting mode "DVI-D-0:1920x1080_60+0+0,DVI-I-1:1920x1080_120+1920+0"
[    19.234] (==) NVIDIA(0): Disabling shared memory pixmaps
[    19.234] (==) NVIDIA(0): Backing store enabled
[    19.234] (==) NVIDIA(0): Silken mouse enabled
[    19.235] (**) NVIDIA(0): DPMS enabled
[    19.235] (II) Loading sub module "dri2"
[    19.235] (II) LoadModule: "dri2"
[    19.235] (II) Module "dri2" already built-in
[    19.235] (II) NVIDIA(0): [DRI2] Setup complete
[    19.235] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[    19.235] (--) RandR disabled
[    19.240] (II) Initializing extension GLX
[    19.240] (II) Indirect GLX disabled.(II) config/udev: Adding input device Power Button (/dev/input/event7)
[    19.310] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    19.310] (II) LoadModule: "evdev"
[    19.310] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    19.311] (II) Module evdev: vendor="X.Org Foundation"
[    19.311] 	compiled for 1.17.1, module version = 2.9.2
[    19.311] 	Module class: X.Org XInput Driver
[    19.311] 	ABI class: X.Org XInput driver, version 21.0
[    19.311] (II) systemd-logind: got fd for /dev/input/event7 13:71 fd 32 paused 0
[    19.311] (II) Using input driver 'evdev' for 'Power Button'
[    19.311] (**) Power Button: always reports core events
[    19.311] (**) evdev: Power Button: Device: "/dev/input/event7"
[    19.311] (--) evdev: Power Button: Vendor 0 Product 0x1
[    19.311] (--) evdev: Power Button: Found keys
[    19.311] (II) evdev: Power Button: Configuring as keyboard
[    19.311] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input9/event7"
[    19.311] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    19.311] (**) Option "xkb_rules" "evdev"
[    19.312] (**) Option "xkb_model" "pc104"
[    19.312] (**) Option "xkb_layout" "us"
[    19.336] (II) config/udev: Adding input device Power Button (/dev/input/event6)
[    19.336] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    19.337] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 33 paused 0
[    19.337] (II) Using input driver 'evdev' for 'Power Button'
[    19.337] (**) Power Button: always reports core events
[    19.337] (**) evdev: Power Button: Device: "/dev/input/event6"
[    19.337] (--) evdev: Power Button: Vendor 0 Product 0x1
[    19.337] (--) evdev: Power Button: Found keys
[    19.337] (II) evdev: Power Button: Configuring as keyboard
[    19.337] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input8/event6"
[    19.337] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[    19.337] (**) Option "xkb_rules" "evdev"
[    19.337] (**) Option "xkb_model" "pc104"
[    19.337] (**) Option "xkb_layout" "us"
[    19.337] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event19)
[    19.337] (II) No input driver specified, ignoring this device.
[    19.337] (II) This device may have been added with another device file.
[    19.337] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event20)
[    19.337] (II) No input driver specified, ignoring this device.
[    19.337] (II) This device may have been added with another device file.
[    19.337] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event21)
[    19.337] (II) No input driver specified, ignoring this device.
[    19.337] (II) This device may have been added with another device file.
[    19.338] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event22)
[    19.338] (II) No input driver specified, ignoring this device.
[    19.338] (II) This device may have been added with another device file.
[    19.338] (II) config/udev: Adding input device Razer Razer DeathAdder 2013 (/dev/input/event0)
[    19.338] (**) Razer Razer DeathAdder 2013: Applying InputClass "evdev pointer catchall"
[    19.338] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 34 paused 0
[    19.338] (II) Using input driver 'evdev' for 'Razer Razer DeathAdder 2013'
[    19.338] (**) Razer Razer DeathAdder 2013: always reports core events
[    19.338] (**) evdev: Razer Razer DeathAdder 2013: Device: "/dev/input/event0"
[    19.338] (--) evdev: Razer Razer DeathAdder 2013: Vendor 0x1532 Product 0x37
[    19.338] (--) evdev: Razer Razer DeathAdder 2013: Found 9 mouse buttons
[    19.338] (--) evdev: Razer Razer DeathAdder 2013: Found scroll wheel(s)
[    19.338] (--) evdev: Razer Razer DeathAdder 2013: Found relative axes
[    19.338] (--) evdev: Razer Razer DeathAdder 2013: Found x and y relative axes
[    19.338] (II) evdev: Razer Razer DeathAdder 2013: Configuring as mouse
[    19.338] (II) evdev: Razer Razer DeathAdder 2013: Adding scrollwheel support
[    19.338] (**) evdev: Razer Razer DeathAdder 2013: YAxisMapping: buttons 4 and 5
[    19.339] (**) evdev: Razer Razer DeathAdder 2013: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    19.339] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-1/3-1:1.0/0003:1532:0037.0001/input/input2/event0"
[    19.339] (II) XINPUT: Adding extended input device "Razer Razer DeathAdder 2013" (type: MOUSE, id 8)
[    19.339] (II) evdev: Razer Razer DeathAdder 2013: initialized for relative axes.
[    19.339] (**) Razer Razer DeathAdder 2013: (accel) keeping acceleration scheme 1
[    19.339] (**) Razer Razer DeathAdder 2013: (accel) acceleration profile 0
[    19.339] (**) Razer Razer DeathAdder 2013: (accel) acceleration factor: 2.000
[    19.339] (**) Razer Razer DeathAdder 2013: (accel) acceleration threshold: 4
[    19.339] (II) config/udev: Adding input device Razer Razer DeathAdder 2013 (/dev/input/mouse0)
[    19.339] (II) No input driver specified, ignoring this device.
[    19.339] (II) This device may have been added with another device file.
[    19.339] (II) config/udev: Adding input device Razer Razer DeathAdder 2013 (/dev/input/event1)
[    19.339] (**) Razer Razer DeathAdder 2013: Applying InputClass "evdev keyboard catchall"
[    19.340] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 35 paused 0
[    19.340] (II) Using input driver 'evdev' for 'Razer Razer DeathAdder 2013'
[    19.340] (**) Razer Razer DeathAdder 2013: always reports core events
[    19.340] (**) evdev: Razer Razer DeathAdder 2013: Device: "/dev/input/event1"
[    19.340] (--) evdev: Razer Razer DeathAdder 2013: Vendor 0x1532 Product 0x37
[    19.340] (--) evdev: Razer Razer DeathAdder 2013: Found 1 mouse buttons
[    19.340] (--) evdev: Razer Razer DeathAdder 2013: Found scroll wheel(s)
[    19.340] (--) evdev: Razer Razer DeathAdder 2013: Found relative axes
[    19.340] (II) evdev: Razer Razer DeathAdder 2013: Forcing relative x/y axes to exist.
[    19.340] (--) evdev: Razer Razer DeathAdder 2013: Found absolute axes
[    19.340] (--) evdev: Razer Razer DeathAdder 2013: Found absolute multitouch axes
[    19.340] (--) evdev: Razer Razer DeathAdder 2013: Found keys
[    19.340] (II) evdev: Razer Razer DeathAdder 2013: Configuring as mouse
[    19.340] (II) evdev: Razer Razer DeathAdder 2013: Configuring as keyboard
[    19.340] (II) evdev: Razer Razer DeathAdder 2013: Adding scrollwheel support
[    19.340] (**) evdev: Razer Razer DeathAdder 2013: YAxisMapping: buttons 4 and 5
[    19.340] (**) evdev: Razer Razer DeathAdder 2013: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    19.340] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-1/3-1:1.1/0003:1532:0037.0002/input/input3/event1"
[    19.340] (II) XINPUT: Adding extended input device "Razer Razer DeathAdder 2013" (type: KEYBOARD, id 9)
[    19.340] (**) Option "xkb_rules" "evdev"
[    19.340] (**) Option "xkb_model" "pc104"
[    19.340] (**) Option "xkb_layout" "us"
[    19.340] (II) evdev: Razer Razer DeathAdder 2013: initialized for relative axes.
[    19.340] (WW) evdev: Razer Razer DeathAdder 2013: ignoring absolute axes.
[    19.341] (**) Razer Razer DeathAdder 2013: (accel) keeping acceleration scheme 1
[    19.341] (**) Razer Razer DeathAdder 2013: (accel) acceleration profile 0
[    19.341] (**) Razer Razer DeathAdder 2013: (accel) acceleration factor: 2.000
[    19.341] (**) Razer Razer DeathAdder 2013: (accel) acceleration threshold: 4
[    19.341] (II) config/udev: Adding input device Razer Razer DeathAdder 2013 (/dev/input/event2)
[    19.341] (**) Razer Razer DeathAdder 2013: Applying InputClass "evdev keyboard catchall"
[    19.341] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 36 paused 0
[    19.341] (II) Using input driver 'evdev' for 'Razer Razer DeathAdder 2013'
[    19.342] (**) Razer Razer DeathAdder 2013: always reports core events
[    19.342] (**) evdev: Razer Razer DeathAdder 2013: Device: "/dev/input/event2"
[    19.342] (--) evdev: Razer Razer DeathAdder 2013: Vendor 0x1532 Product 0x37
[    19.342] (--) evdev: Razer Razer DeathAdder 2013: Found keys
[    19.342] (II) evdev: Razer Razer DeathAdder 2013: Configuring as keyboard
[    19.342] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-1/3-1:1.2/0003:1532:0037.0003/input/input4/event2"
[    19.342] (II) XINPUT: Adding extended input device "Razer Razer DeathAdder 2013" (type: KEYBOARD, id 10)
[    19.342] (**) Option "xkb_rules" "evdev"
[    19.342] (**) Option "xkb_model" "pc104"
[    19.342] (**) Option "xkb_layout" "us"
[    19.342] (II) config/udev: Adding input device HDA Intel PCH Front Mic (/dev/input/event10)
[    19.342] (II) No input driver specified, ignoring this device.
[    19.342] (II) This device may have been added with another device file.
[    19.343] (II) config/udev: Adding input device HDA Intel PCH Rear Mic (/dev/input/event11)
[    19.343] (II) No input driver specified, ignoring this device.
[    19.343] (II) This device may have been added with another device file.
[    19.343] (II) config/udev: Adding input device HDA Intel PCH Line (/dev/input/event12)
[    19.343] (II) No input driver specified, ignoring this device.
[    19.343] (II) This device may have been added with another device file.
[    19.343] (II) config/udev: Adding input device HDA Intel PCH Line Out Front (/dev/input/event13)
[    19.343] (II) No input driver specified, ignoring this device.
[    19.343] (II) This device may have been added with another device file.
[    19.343] (II) config/udev: Adding input device HDA Intel PCH Line Out Surround (/dev/input/event14)
[    19.343] (II) No input driver specified, ignoring this device.
[    19.343] (II) This device may have been added with another device file.
[    19.344] (II) config/udev: Adding input device HDA Intel PCH Line Out CLFE (/dev/input/event15)
[    19.344] (II) No input driver specified, ignoring this device.
[    19.344] (II) This device may have been added with another device file.
[    19.344] (II) config/udev: Adding input device HDA Intel PCH Line Out Side (/dev/input/event16)
[    19.344] (II) No input driver specified, ignoring this device.
[    19.344] (II) This device may have been added with another device file.
[    19.344] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event17)
[    19.344] (II) No input driver specified, ignoring this device.
[    19.344] (II) This device may have been added with another device file.
[    19.345] (II) config/udev: Adding input device Microsoft LifeCam-VX700  v2.0 (/dev/input/event18)
[    19.345] (**) Microsoft LifeCam-VX700  v2.0: Applying InputClass "evdev keyboard catchall"
[    19.345] (II) systemd-logind: got fd for /dev/input/event18 13:82 fd 37 paused 0
[    19.345] (II) Using input driver 'evdev' for 'Microsoft LifeCam-VX700  v2.0'
[    19.345] (**) Microsoft LifeCam-VX700  v2.0: always reports core events
[    19.345] (**) evdev: Microsoft LifeCam-VX700  v2.0: Device: "/dev/input/event18"
[    19.345] (--) evdev: Microsoft LifeCam-VX700  v2.0: Vendor 0x45e Product 0x770
[    19.345] (--) evdev: Microsoft LifeCam-VX700  v2.0: Found keys
[    19.345] (II) evdev: Microsoft LifeCam-VX700  v2.0: Configuring as keyboard
[    19.345] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.5/2-1.5:1.0/input/input21/event18"
[    19.345] (II) XINPUT: Adding extended input device "Microsoft LifeCam-VX700  v2.0" (type: KEYBOARD, id 11)
[    19.345] (**) Option "xkb_rules" "evdev"
[    19.345] (**) Option "xkb_model" "pc104"
[    19.345] (**) Option "xkb_layout" "us"
[    19.346] (II) config/udev: Adding input device Corsair Corsair K70B Gaming Keyboard (/dev/input/event3)
[    19.346] (**) Corsair Corsair K70B Gaming Keyboard: Applying InputClass "evdev keyboard catchall"
[    19.346] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 38 paused 0
[    19.346] (II) Using input driver 'evdev' for 'Corsair Corsair K70B Gaming Keyboard'
[    19.346] (**) Corsair Corsair K70B Gaming Keyboard: always reports core events
[    19.347] (**) evdev: Corsair Corsair K70B Gaming Keyboard: Device: "/dev/input/event3"
[    19.347] (--) evdev: Corsair Corsair K70B Gaming Keyboard: Vendor 0x1b1c Product 0x1b09
[    19.347] (--) evdev: Corsair Corsair K70B Gaming Keyboard: Found keys
[    19.347] (II) evdev: Corsair Corsair K70B Gaming Keyboard: Configuring as keyboard
[    19.347] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.6/2-1.6:1.0/0003:1B1C:1B09.0004/input/input5/event3"
[    19.347] (II) XINPUT: Adding extended input device "Corsair Corsair K70B Gaming Keyboard" (type: KEYBOARD, id 12)
[    19.347] (**) Option "xkb_rules" "evdev"
[    19.347] (**) Option "xkb_model" "pc104"
[    19.347] (**) Option "xkb_layout" "us"
[    19.347] (II) config/udev: Adding input device Corsair Corsair K70B Gaming Keyboard (/dev/input/event4)
[    19.347] (**) Corsair Corsair K70B Gaming Keyboard: Applying InputClass "evdev keyboard catchall"
[    19.348] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 39 paused 0
[    19.348] (II) Using input driver 'evdev' for 'Corsair Corsair K70B Gaming Keyboard'
[    19.348] (**) Corsair Corsair K70B Gaming Keyboard: always reports core events
[    19.348] (**) evdev: Corsair Corsair K70B Gaming Keyboard: Device: "/dev/input/event4"
[    19.348] (--) evdev: Corsair Corsair K70B Gaming Keyboard: Vendor 0x1b1c Product 0x1b09
[    19.348] (--) evdev: Corsair Corsair K70B Gaming Keyboard: Found 1 mouse buttons
[    19.348] (--) evdev: Corsair Corsair K70B Gaming Keyboard: Found scroll wheel(s)
[    19.348] (--) evdev: Corsair Corsair K70B Gaming Keyboard: Found relative axes
[    19.348] (II) evdev: Corsair Corsair K70B Gaming Keyboard: Forcing relative x/y axes to exist.
[    19.348] (--) evdev: Corsair Corsair K70B Gaming Keyboard: Found absolute axes
[    19.348] (II) evdev: Corsair Corsair K70B Gaming Keyboard: Forcing absolute x/y axes to exist.
[    19.348] (--) evdev: Corsair Corsair K70B Gaming Keyboard: Found keys
[    19.348] (II) evdev: Corsair Corsair K70B Gaming Keyboard: Configuring as mouse
[    19.348] (II) evdev: Corsair Corsair K70B Gaming Keyboard: Configuring as keyboard
[    19.348] (II) evdev: Corsair Corsair K70B Gaming Keyboard: Adding scrollwheel support
[    19.348] (**) evdev: Corsair Corsair K70B Gaming Keyboard: YAxisMapping: buttons 4 and 5
[    19.348] (**) evdev: Corsair Corsair K70B Gaming Keyboard: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    19.348] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.6/2-1.6:1.1/0003:1B1C:1B09.0005/input/input6/event4"
[    19.348] (II) XINPUT: Adding extended input device "Corsair Corsair K70B Gaming Keyboard" (type: KEYBOARD, id 13)
[    19.348] (**) Option "xkb_rules" "evdev"
[    19.348] (**) Option "xkb_model" "pc104"
[    19.348] (**) Option "xkb_layout" "us"
[    19.348] (II) evdev: Corsair Corsair K70B Gaming Keyboard: initialized for relative axes.
[    19.348] (WW) evdev: Corsair Corsair K70B Gaming Keyboard: ignoring absolute axes.
[    19.349] (**) Corsair Corsair K70B Gaming Keyboard: (accel) keeping acceleration scheme 1
[    19.349] (**) Corsair Corsair K70B Gaming Keyboard: (accel) acceleration profile 0
[    19.349] (**) Corsair Corsair K70B Gaming Keyboard: (accel) acceleration factor: 2.000
[    19.349] (**) Corsair Corsair K70B Gaming Keyboard: (accel) acceleration threshold: 4
[    19.349] (II) config/udev: Adding input device Corsair Corsair K70B Gaming Keyboard (/dev/input/event5)
[    19.349] (**) Corsair Corsair K70B Gaming Keyboard: Applying InputClass "evdev keyboard catchall"
[    19.350] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 40 paused 0
[    19.350] (II) Using input driver 'evdev' for 'Corsair Corsair K70B Gaming Keyboard'
[    19.350] (**) Corsair Corsair K70B Gaming Keyboard: always reports core events
[    19.350] (**) evdev: Corsair Corsair K70B Gaming Keyboard: Device: "/dev/input/event5"
[    19.350] (--) evdev: Corsair Corsair K70B Gaming Keyboard: Vendor 0x1b1c Product 0x1b09
[    19.350] (--) evdev: Corsair Corsair K70B Gaming Keyboard: Found keys
[    19.350] (II) evdev: Corsair Corsair K70B Gaming Keyboard: Configuring as keyboard
[    19.350] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.6/2-1.6:1.2/0003:1B1C:1B09.0006/input/input7/event5"
[    19.350] (II) XINPUT: Adding extended input device "Corsair Corsair K70B Gaming Keyboard" (type: KEYBOARD, id 14)
[    19.350] (**) Option "xkb_rules" "evdev"
[    19.350] (**) Option "xkb_model" "pc104"
[    19.350] (**) Option "xkb_layout" "us"
[    19.350] (II) config/udev: Adding input device Eee PC WMI hotkeys (/dev/input/event9)
[    19.350] (**) Eee PC WMI hotkeys: Applying InputClass "evdev keyboard catchall"
[    19.351] (II) systemd-logind: got fd for /dev/input/event9 13:73 fd 41 paused 0
[    19.351] (II) Using input driver 'evdev' for 'Eee PC WMI hotkeys'
[    19.351] (**) Eee PC WMI hotkeys: always reports core events
[    19.351] (**) evdev: Eee PC WMI hotkeys: Device: "/dev/input/event9"
[    19.351] (--) evdev: Eee PC WMI hotkeys: Vendor 0 Product 0
[    19.351] (--) evdev: Eee PC WMI hotkeys: Found keys
[    19.351] (II) evdev: Eee PC WMI hotkeys: Configuring as keyboard
[    19.351] (**) Option "config_info" "udev:/sys/devices/platform/eeepc-wmi/input/input12/event9"
[    19.351] (II) XINPUT: Adding extended input device "Eee PC WMI hotkeys" (type: KEYBOARD, id 15)
[    19.351] (**) Option "xkb_rules" "evdev"
[    19.351] (**) Option "xkb_model" "pc104"
[    19.351] (**) Option "xkb_layout" "us"
[    19.351] (II) config/udev: Adding input device PC Speaker (/dev/input/event8)
[    19.351] (II) No input driver specified, ignoring this device.
[    19.351] (II) This device may have been added with another device file.
[    22.250] (--) NVIDIA(GPU-0): CRT-0: disconnected
[    22.250] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[    22.250] (--) NVIDIA(GPU-0): 
[    22.273] (--) NVIDIA: GPU:0: Display (Ancor Communications Inc ASUS VG278HR (DVI-I-1)) supports NVIDIA 3D Vision stereo.
[    22.273] (--) NVIDIA(GPU-0): Ancor Communications Inc ASUS VG278HR (DFP-0): connected
[    22.273] (--) NVIDIA(GPU-0): Ancor Communications Inc ASUS VG278HR (DFP-0): Internal TMDS
[    22.273] (--) NVIDIA(GPU-0): Ancor Communications Inc ASUS VG278HR (DFP-0): 330.0 MHz maximum pixel clock
[    22.273] (--) NVIDIA(GPU-0): 
[    22.274] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    22.274] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    22.274] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    22.274] (--) NVIDIA(GPU-0): 
[    22.274] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    22.274] (--) NVIDIA(GPU-0): DFP-2: Internal TMDS
[    22.274] (--) NVIDIA(GPU-0): DFP-2: 165.0 MHz maximum pixel clock
[    22.274] (--) NVIDIA(GPU-0): 
[    22.280] (--) NVIDIA(GPU-0): DELL ST2320L (DFP-3): connected
[    22.280] (--) NVIDIA(GPU-0): DELL ST2320L (DFP-3): Internal TMDS
[    22.280] (--) NVIDIA(GPU-0): DELL ST2320L (DFP-3): 330.0 MHz maximum pixel clock
[    22.280] (--) NVIDIA(GPU-0): 
[    22.280] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    22.280] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[    22.280] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[    22.280] (--) NVIDIA(GPU-0): 
[    22.411] (II) NVIDIA(0): Setting mode "DVI-D-0: nvidia-auto-select @1920x1080 +0+0 {ViewPortIn=1920x1080, ViewPortOut=1920x1080+0+0}"
[    22.470] (II) NVIDIA(0): Setting mode "DVI-I-1: nvidia-auto-select @1920x1080 +1920+0 {ViewPortIn=1920x1080, ViewPortOut=1920x1080+0+0}, DVI-D-0: nvidia-auto-select @1920x1080 +0+0 {ViewPortIn=1920x1080, ViewPortOut=1920x1080+0+0}"
[    23.675] (--) NVIDIA(GPU-0): CRT-0: disconnected
[    23.675] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[    23.675] (--) NVIDIA(GPU-0): 
[    23.698] (--) NVIDIA: GPU:0: Display (Ancor Communications Inc ASUS VG278HR (DVI-I-1)) supports NVIDIA 3D Vision stereo.
[    23.699] (--) NVIDIA(GPU-0): Ancor Communications Inc ASUS VG278HR (DFP-0): connected
[    23.699] (--) NVIDIA(GPU-0): Ancor Communications Inc ASUS VG278HR (DFP-0): Internal TMDS
[    23.699] (--) NVIDIA(GPU-0): Ancor Communications Inc ASUS VG278HR (DFP-0): 330.0 MHz maximum pixel clock
[    23.699] (--) NVIDIA(GPU-0): 
[    23.699] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    23.699] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    23.699] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    23.699] (--) NVIDIA(GPU-0): 
[    23.699] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    23.699] (--) NVIDIA(GPU-0): DFP-2: Internal TMDS
[    23.699] (--) NVIDIA(GPU-0): DFP-2: 165.0 MHz maximum pixel clock
[    23.699] (--) NVIDIA(GPU-0): 
[    23.705] (--) NVIDIA(GPU-0): DELL ST2320L (DFP-3): connected
[    23.705] (--) NVIDIA(GPU-0): DELL ST2320L (DFP-3): Internal TMDS
[    23.705] (--) NVIDIA(GPU-0): DELL ST2320L (DFP-3): 330.0 MHz maximum pixel clock
[    23.705] (--) NVIDIA(GPU-0): 
[    23.706] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    23.706] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[    23.706] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[    23.706] (--) NVIDIA(GPU-0): 
[   312.002] (--) NVIDIA(GPU-0): CRT-0: disconnected
[   312.002] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[   312.002] (--) NVIDIA(GPU-0): 
[   312.034] (--) NVIDIA: GPU:0: Display (Ancor Communications Inc ASUS VG278HR (DVI-I-1)) supports NVIDIA 3D Vision stereo.
[   312.034] (--) NVIDIA(GPU-0): Ancor Communications Inc ASUS VG278HR (DFP-0): connected
[   312.034] (--) NVIDIA(GPU-0): Ancor Communications Inc ASUS VG278HR (DFP-0): Internal TMDS
[   312.034] (--) NVIDIA(GPU-0): Ancor Communications Inc ASUS VG278HR (DFP-0): 330.0 MHz maximum pixel clock
[   312.034] (--) NVIDIA(GPU-0): 
[   312.034] (--) NVIDIA(GPU-0): DFP-1: disconnected
[   312.034] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[   312.034] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[   312.034] (--) NVIDIA(GPU-0): 
[   312.035] (--) NVIDIA(GPU-0): DFP-2: disconnected
[   312.035] (--) NVIDIA(GPU-0): DFP-2: Internal TMDS
[   312.035] (--) NVIDIA(GPU-0): DFP-2: 165.0 MHz maximum pixel clock
[   312.035] (--) NVIDIA(GPU-0): 
[   312.043] (--) NVIDIA(GPU-0): DELL ST2320L (DFP-3): connected
[   312.043] (--) NVIDIA(GPU-0): DELL ST2320L (DFP-3): Internal TMDS
[   312.043] (--) NVIDIA(GPU-0): DELL ST2320L (DFP-3): 330.0 MHz maximum pixel clock
[   312.043] (--) NVIDIA(GPU-0): 
[   312.043] (--) NVIDIA(GPU-0): DFP-4: disconnected
[   312.043] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[   312.043] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[   312.043] (--) NVIDIA(GPU-0): 
[   312.118] (II) NVIDIA(0): Setting mode "DVI-I-1: 1920x1080_120 @1920x1080 +1920+0 {ViewPortIn=1920x1080, ViewPortOut=1920x1080+0+0}, DVI-D-0: nvidia-auto-select @1920x1080 +0+0 {ViewPortIn=1920x1080, ViewPortOut=1920x1080+0+0}"
[   312.497] (--) NVIDIA(GPU-0): CRT-0: disconnected
[   312.497] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[   312.497] (--) NVIDIA(GPU-0): 
[   312.521] (--) NVIDIA: GPU:0: Display (Ancor Communications Inc ASUS VG278HR (DVI-I-1)) supports NVIDIA 3D Vision stereo.
[   312.521] (--) NVIDIA(GPU-0): Ancor Communications Inc ASUS VG278HR (DFP-0): connected
[   312.521] (--) NVIDIA(GPU-0): Ancor Communications Inc ASUS VG278HR (DFP-0): Internal TMDS
[   312.521] (--) NVIDIA(GPU-0): Ancor Communications Inc ASUS VG278HR (DFP-0): 330.0 MHz maximum pixel clock
[   312.521] (--) NVIDIA(GPU-0): 
[   312.521] (--) NVIDIA(GPU-0): DFP-1: disconnected
[   312.521] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[   312.521] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[   312.521] (--) NVIDIA(GPU-0): 
[   312.521] (--) NVIDIA(GPU-0): DFP-2: disconnected
[   312.521] (--) NVIDIA(GPU-0): DFP-2: Internal TMDS
[   312.521] (--) NVIDIA(GPU-0): DFP-2: 165.0 MHz maximum pixel clock
[   312.521] (--) NVIDIA(GPU-0): 
[   312.527] (--) NVIDIA(GPU-0): DELL ST2320L (DFP-3): connected
[   312.527] (--) NVIDIA(GPU-0): DELL ST2320L (DFP-3): Internal TMDS
[   312.527] (--) NVIDIA(GPU-0): DELL ST2320L (DFP-3): 330.0 MHz maximum pixel clock
[   312.527] (--) NVIDIA(GPU-0): 
[   312.527] (--) NVIDIA(GPU-0): DFP-4: disconnected
[   312.527] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[   312.527] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[   312.527] (--) NVIDIA(GPU-0): 
[   364.917] (--) NVIDIA(GPU-0): CRT-0: disconnected
[   364.917] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[   364.917] (--) NVIDIA(GPU-0): 
[   364.941] (--) NVIDIA: GPU:0: Display (Ancor Communications Inc ASUS VG278HR (DVI-I-1)) supports NVIDIA 3D Vision stereo.
[   364.941] (--) NVIDIA(GPU-0): Ancor Communications Inc ASUS VG278HR (DFP-0): connected
[   364.941] (--) NVIDIA(GPU-0): Ancor Communications Inc ASUS VG278HR (DFP-0): Internal TMDS
[   364.941] (--) NVIDIA(GPU-0): Ancor Communications Inc ASUS VG278HR (DFP-0): 330.0 MHz maximum pixel clock
[   364.941] (--) NVIDIA(GPU-0): 
[   364.941] (--) NVIDIA(GPU-0): DFP-1: disconnected
[   364.941] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[   364.941] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[   364.941] (--) NVIDIA(GPU-0): 
[   364.941] (--) NVIDIA(GPU-0): DFP-2: disconnected
[   364.941] (--) NVIDIA(GPU-0): DFP-2: Internal TMDS
[   364.941] (--) NVIDIA(GPU-0): DFP-2: 165.0 MHz maximum pixel clock
[   364.941] (--) NVIDIA(GPU-0): 
[   364.947] (--) NVIDIA(GPU-0): DELL ST2320L (DFP-3): connected
[   364.947] (--) NVIDIA(GPU-0): DELL ST2320L (DFP-3): Internal TMDS
[   364.947] (--) NVIDIA(GPU-0): DELL ST2320L (DFP-3): 330.0 MHz maximum pixel clock
[   364.947] (--) NVIDIA(GPU-0): 
[   364.947] (--) NVIDIA(GPU-0): DFP-4: disconnected
[   364.947] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[   364.947] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[   364.947] (--) NVIDIA(GPU-0): 

Offline

#6 2015-05-23 20:59:24

Gusar
Member
Registered: 2009-08-25
Posts: 3,605

Re: [SOLVED] Xrandr can't persist settings

This should do. Emphasis on the "should" smile

Section "Device"
    Identifier     "GTX680"
    Driver         "nvidia"
    Option         "VertRefresh"    "DVI-I-1: 120"
EndSection

No other sections required, just this, remove the rest.

Alternative, xrandr way (the above is the Nvidia way):

Section "Monitor"
    Identifier     "DVI-I-1"
    VertRefresh    120
EndSection

Again, nothing else in the file, but this small section. And again, "should" work smile

Offline

#7 2015-05-24 12:10:59

ctxfi-user
Member
Registered: 2010-10-31
Posts: 56

Re: [SOLVED] Xrandr can't persist settings

My first note is no help: According to http://us.download.nvidia.com/XFree86/L … tions.html the scaling setting of FlatPanelOptions was dropped. My media center configuration runs with nvidia 290.10-1, but was never updated.

Maybe its worth to try it step by step: Drop the nvidia part of your xorg.conf.d, restart X and use only nvidia-settings to get the desired configuration. If this is possible than it should also be possible with a xorg.conf. Find the minimal required settings in nvidia-settings and in the final step persist it in xorg.conf with the help of the nvidia docs above.

Last edited by ctxfi-user (2015-05-24 12:21:53)

Offline

#8 2015-05-24 15:54:12

jeremy5561
Member
Registered: 2015-05-17
Posts: 12

Re: [SOLVED] Xrandr can't persist settings

Gusar's suggestions worked smile. It's confusing why nvidia-settings doesn't set this up properly or why there isn't a simpler way of doing it. But here's my updated (working) xorg.conf! Thanks!

# nvidia-settings: X configuration file generated by nvidia-settings
# nvidia-settings:  version 352.09  (buildmeister@swio-display-x86-rhel47-06)  Tue May 12 15:27:42 PDT 2015

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"
    # HorizSync source: edid, VertRefresh source: edid
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "DELL ST2320L"
    HorizSync       30.0 - 83.0
    VertRefresh     56.0 - 76.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce GTX 680"
    Option         "VertRefresh"    "DVI-I-1: 120"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "Stereo" "0"
    Option         "nvidiaXineramaInfoOrder" "DFP-0"
    Option         "metamodes" "DVI-D-0: 1920x1080_60 +0+0, DVI-I-1: 1920x1080_120 +1920+0"
    Option         "SLI" "Off"
    Option         "MultiGPU" "Off"
    Option         "BaseMosaic" "off"
    Option         "FlatPanelProperties" "Scaling = Native"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

Offline

#9 2015-05-24 17:36:27

Gusar
Member
Registered: 2009-08-25
Posts: 3,605

Re: [SOLVED] Xrandr can't persist settings

Not sure what can be simpler than a line that says "this display should have a refresh rate of 120", which is exactly what

Option "VertRefresh" "DVI-I-1: 120"

does smile

Offline

Board footer

Powered by FluxBB