Skip to content

Instantly share code, notes, and snippets.

@blackd
Created January 5, 2013 13:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blackd/4461583 to your computer and use it in GitHub Desktop.
Save blackd/4461583 to your computer and use it in GitHub Desktop.
# KDM master configuration file
#
# Definition: the greeter is the login dialog, i.e., the part of KDM
# which the user sees.
#
# You can configure every X-display individually.
# Every display has a display name, which consists of a host name
# (which is empty for local displays specified in {Static|Reserve}Servers),
# a colon, and a display number. Additionally, a display belongs to a
# display class (which can be ignored in most cases; the control center
# does not support this feature at all).
# Sections with display-specific settings have the formal syntax
# "[X-" host [":" number [ "_" class ]] "-" sub-section "]"
# You can use the "*" wildcard for host, number, and class. You may omit
# trailing components; they are assumed to be "*" then.
# The host part may be a domain specification like ".inf.tu-dresden.de".
# It may also be "+", which means non-empty, i.e. remote displays only.
# From which section a setting is actually taken is determined by these
# rules:
# - an exact match takes precedence over a partial match (for the host part),
# which in turn takes precedence over a wildcard ("+" taking precedence
# over "*")
# - precedence decreases from left to right for equally exact matches
# Example: display name "myhost:0", class "dpy".
# [X-myhost:0_dpy] precedes
# [X-myhost:0_*] (same as [X-myhost:0]) precedes
# [X-myhost:*_dpy] precedes
# [X-myhost:*_*] (same as [X-myhost]) precedes
# [X-+:0_dpy] precedes
# [X-*:0_dpy] precedes
# [X-*:0_*] (same as [X-*:0]) precedes
# [X-*:*_*] (same as [X-*])
# These sections do NOT match this display:
# [X-hishost], [X-myhost:0_dec], [X-*:1], [X-:*]
# If a setting is not found in any matching section, the default is used.
#
# Every comment applies to the following section or key. Note that all
# comments will be lost if you change this file with the systemsettings frontend.
# The defaults refer to KDM's built-in values, not anything set in this file.
#
# Special characters need to be backslash-escaped (leading and trailing
# spaces (\s), tab (\t), linefeed (\n), carriage return (\r) and the
# backslash itself (\\)).
# In lists, fields are separated with commas without whitespace in between.
# Some command strings are subject to simplified sh-style word splitting:
# single quotes (') and double quotes (") have the usual meaning; the backslash
# quotes everything (not only special characters). Note that the backslashes
# need to be doubled because of the two levels of quoting.
[General]
# This option exists solely for the purpose of a clean automatic upgrade.
# Do not even think about changing it!
ConfigVersion=2.4
# List of permanent displays. Displays with a hostname are foreign. A display
# class may be specified separated by an underscore.
# Default is ":0"
StaticServers=:1,:0
# List of on-demand displays. See StaticServers for syntax.
# Default is ""
ReserveServers=:2,:3,:4
# VTs to allocate to X-servers. A negative number means that the VT will be
# used only if it is free. If all VTs in this list are used up, the next free
# one greater than the last one in this list will be allocated.
# Default is ""
ServerVTs=-7
# TTYs (without /dev/) to monitor for activity while in console mode.
# Default is ""
ConsoleTTYs=tty1,tty2,tty3,tty4,tty5,tty6
# Where KDM should store its PID (do not store if empty).
# Default is ""
PidFile=/var/run/kdm.pid
# Whether KDM should lock the PID file to prevent having multiple KDM
# instances running at once. Do not change unless you are brave.
# Default is true
#LockPidFile=false
# Where to store authorization files.
# Default is "/var/run/xauth"
#AuthDir=/tmp
# Whether KDM should automatically re-read configuration files, if it
# finds them having changed.
# Default is true
#AutoRescan=false
# Additional environment variables KDM should pass on to all programs it runs.
# LD_LIBRARY_PATH and XCURSOR_THEME are good candidates;
# otherwise, it should not be necessary very often.
# Default is ""
#ExportList=LD_LIBRARY_PATH,ANOTHER_IMPORTANT_VAR
# A character device KDM should read entropy from.
# Empty means use the system's preferred entropy device.
# Default is ""
#RandomDevice=/dev/altrandom
# Where the command sockets should be created; make it empty to disable
# them.
# Default is "/var/run/xdmctl"
#FifoDir=/tmp
# The group to which the global command socket should belong;
# can be either a name or a numerical ID.
# Default is 0
#FifoGroup=xdmctl
# The user the greeter should run as. Empty results in root.
# Consider the impact on LogSource when setting it.
# Default is ""
GreeterUID=kdm
# The directory in which KDM should store persistent working data.
# Default is "/var/lib/kdm"
##DataDir=
DataDir=/var/lib/kdm
# The directory in which KDM should store users' .dmrc files. This is only
# needed if the home directories are not readable before actually logging in
# (like with AFS).
# Default is ""
#DmrcDir=/nfs-shared/var/dmrcs
[Xdmcp]
# Whether KDM should listen to incoming XDMCP requests.
# Default is true
Enable=false
# The UDP port on which KDM should listen for XDMCP requests. Do not change.
# Default is 177
#Port=177
# File with the private keys of X-terminals. Required for XDM authentication.
# Default is ""
#KeyFile=/usr/share/config/kdm/kdmkeys
# XDMCP access control file in the usual XDM-Xaccess format.
# Default is "/usr/share/config/kdm/Xaccess"
#Xaccess=
# Number of seconds to wait for display to respond after the user has
# selected a host from the chooser.
# Default is 15
#ChoiceTimeout=10
# Strip domain name from remote display names if it is equal to the local
# domain.
# Default is true
#RemoveDomainname=false
# Use the numeric IP address of the incoming connection on multihomed hosts
# instead of the host name.
# Default is false
#SourceAddress=true
# The program which is invoked to dynamically generate replies to XDMCP
# DirectQuery or BroadcastQuery requests.
# If empty, no program is invoked and "Willing to manage" is sent.
# Default is ""
Willing=/usr/share/config/kdm/Xwilling
[Shutdown]
# The command (subject to word splitting) to run to halt the system.
# Default is "/sbin/shutdown -h -P now"
#HaltCmd=
# The command (subject to word splitting) to run to reboot the system.
# Default is "/sbin/shutdown -r now"
#RebootCmd=
# Whether it is allowed to shut down the system via the global command socket.
# Default is false
#AllowFifo=true
# Whether it is allowed to abort active sessions when shutting down the
# system via the global command socket.
# Default is true
#AllowFifoNow=false
# The boot manager KDM should use for offering boot options in the
# shutdown dialog.
# "None" - no boot manager
# "Grub" - Grub boot manager
# "Grub2" - Grub2 boot manager
# "Burg" - Burg boot manager
# "Lilo" - Lilo boot manager (Linux on i386 & x86-64 only)
# Default is None
#BootManager=Grub
# Rough estimations about how many seconds KDM will spend at most on
# - opening a connection to the X-server (OpenTime) if the attempt
# - times out: OpenTimeout
# - is refused: OpenRepeat * OpenDelay
# - starting a local X-server (ServerTime):
# ServerAttempts * (ServerTimeout + OpenDelay)
# - starting a display:
# - local display: ServerTime + OpenTime
# - foreign display: StartAttempts * OpenTime
# - XDMCP display: OpenTime (repeated indefinitely by client)
# Core config for all displays
[X-*-Core]
# How long to wait before retrying to connect a display.
# Default is 15
#OpenDelay=15
# How long to wait before timing out a display connection attempt.
# Default is 120
#OpenTimeout=120
# How many connection attempts to make during a start attempt. Note that
# a timeout aborts the entire start attempt.
# Default is 5
#OpenRepeat=5
# Try at most that many times to start a display. If this fails, the display
# is disabled.
# Default is 4
#StartAttempts=4
# Ping remote display every that many minutes.
# Default is 5
#PingInterval=5
# Wait for a Pong that many minutes.
# Default is 5
#PingTimeout=5
# The name of this X-server's Xauth file.
# If empty, a random name in the AuthDir directory will be used.
# Default is ""
#AuthFile=
# Specify a file with X-resources for the greeter, chooser and background.
# The KDE frontend does not use this file, so you do not need it unless you
# use another background generator than krootimage.
# Default is ""
#Resources=
# The xrdb program to use to read the above specified recources.
# Subject to word splitting.
# Default is "/usr/bin/xrdb"
#Xrdb=
# A program to run before the greeter is shown. Can be used to start an
# xconsole or an alternative background generator. Subject to word splitting.
# Default is ""
Setup=/usr/share/config/kdm/Xsetup
# A program to run before a user session starts. Subject to word splitting.
# Default is ""
Startup=/usr/share/config/kdm/Xstartup
# A program to run after a user session exits. Subject to word splitting.
# Default is ""
Reset=/usr/share/config/kdm/Xreset
# The program which is run as the user which logs in. It is supposed to
# interpret the session argument (see SessionsDirs) and start an appropriate
# session according to it. Subject to word splitting.
# Default is "/usr/bin/xterm -ls -T"
Session=/usr/share/config/kdm/Xsession
# The program to run if Session fails.
# Default is "/usr/bin/xterm"
#FailsafeClient=
# The PATH for the Session program.
# Default is "/usr/local/bin:/usr/bin:/bin:/usr/games"
#UserPath=
# The PATH for Setup, Startup and Reset, etc.
# Default is "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
#SystemPath=
# The default system shell.
# Default is "/bin/sh"
#SystemShell=/bin/bash
# Where to put the user's X-server authorization file if ~/.Xauthority
# cannot be created.
# Default is "/tmp"
#UserAuthDir=
# If true, UserAuthDir will be used unconditionally.
# Default is false
#ForceUserAuthDir=true
# Whether to automatically restart sessions after X-server crashes.
# Note that enabling this makes circumventing screen lockers other than
# KDE's built-in one possible!
# Default is false
#AutoReLogin=true
# Allow root logins?
# Default is true
AllowRootLogin=false
# Allow to log in, when user has set an empty password?
# Default is true
AllowNullPasswd=false
# Who is allowed to shut down the system. This applies both to the
# greeter and to the command sockets.
# "None" - no "Shutdown..." menu entry is shown at all
# "Root" - the root password must be entered to shut down
# "All" - everybody can shut down the machine
# Default is All
AllowShutdown=Root
# Who is allowed to abort active sessions when shutting down.
# "None" - no forced shutdown is allowed at all
# "Root" - the root password must be entered to shut down forcibly
# "All" - everybody can shut down the machine forcibly
# Default is All
#AllowSdForceNow=Root
# The default choice for the shutdown condition/timing.
# "Schedule" - shut down after all active sessions exit (possibly at once)
# "TryNow" - shut down, if no active sessions are open; otherwise, do nothing
# "ForceNow" - shut down unconditionally
# Default is Schedule
#DefaultSdMode=ForceNow
# How to offer shutdown scheduling options:
# "Never" - not at all
# "Optional" - as a button in the simple shutdown dialogs
# "Always" - instead of the simple shutdown dialogs
# Default is Never
#ScheduledSd=Optional
# The directories containing session type definitions in .desktop format,
# ordered by falling priority.
# Default is "/usr/share/apps/kdm/sessions"
#SessionsDirs=/usr/share/config/kdm/sessions,/usr/share/apps/kdm/sessions
SessionsDirs=/usr/share/apps/kdm/sessions,/usr/share/xsessions
# The file (relative to $HOME) to redirect the session output to. The
# following character pairs are replaced:
# - %d -> current display
# - %u -> current user
# - %r -> empty at first. See below.
# - %% -> a single %
# When the constructed filename cannot be used safely and the specification
# contains %<stuff>r, other names will be tried - this time expanding %<stuff>r
# to <stuff> followed by a random number.
# Default is ".xsession-errors"
ClientLogFile=.xsession-errors-%d
# Fallback when ClientLogFile cannot be used. The same expansions are
# supported. DO NOT use relative paths here.
# Default is "/tmp/xerr-%u-%d%-r"
#ClientLogFallback=/var/log/xsession-errors/%u-%d%-r
# Whether KDM's built-in utmp/wtmp/lastlog registration should be used.
# Default is true
#UseSessReg=false
# Greeter config for all displays
[X-*-Greeter]
# Specify the widget style for the greeter. Empty means to use the
# built-in default which currently is "Oxygen-air".
# Default is ""
#GUIStyle=Plastique
# Specify the widget color scheme for the greeter. Empty means to use the
# built-in default which currently is "Oxygen-air".
# Default is ""
#ColorScheme=MidnightMeadow
# What should be shown in the greeter's logo are:
# "None" - nothing
# "Logo" - the image specified by LogoPixmap
# "Clock" - a neat analog clock
# Default is Clock
LogoArea=Logo
# The image to show when LogoArea=Logo.
# Default is ""
LogoPixmap=/usr/share/apps/kdm/pics/kdelogo.png
# The relative coordinates (X,Y in percent) of the center of the greeter.
# Default is "50,50"
#GreeterPos=30,40
# The screen the greeter should be displayed on in multi-headed and Xinerama
# setups. The numbering starts with 0. For Xinerama, it corresponds to the
# listing order in the active ServerLayout section of XF86Config; -1 means
# to use the upper-left screen, -2 means to use the upper-right screen.
# Default is 0
#GreeterScreen=-1
# The headline in the greeter. The following character pairs are replaced:
# - %d -> current display
# - %h -> host name, possibly with domain name
# - %n -> node name, most probably the host name without domain name
# - %s -> the operating system
# - %r -> the operating system's version
# - %m -> the machine (hardware) type
# - %% -> a single %
# Default is "Welcome to %s at %n"
#GreetString=K Desktop Environment (%n)
# Whether the fonts used in the greeter should be antialiased.
# Default is false
#AntiAliasing=true
# The font for the greeter headline. The value is encoded.
# Default is "Serif 20pt bold"
#GreetFont=Serif,20,-1,5,50,0,0,0,0,0
# The normal font used in the greeter. The value is encoded.
# Default is "Sans Serif 10pt"
#StdFont=Sans Serif,10,-1,5,50,0,0,0,0,0
# The font used for the "Login Failed" message. The value is encoded.
# Default is "Sans Serif 10pt bold"
#FailFont=Sans Serif,10,-1,5,75,0,0,0,0,0
# What to do with the Num Lock modifier for the time the greeter is running:
# "Off" - turn off
# "On" - turn on
# "Keep" - do not change the state
# Default is Keep
#NumLock=Off
# Language and locale to use in the greeter, encoded like $LANGUAGE.
# If empty, the settings from the environment are used.
# Default is ""
#Language=de_DE
# Enable autocompletion in the username line edit.
# Default is false
#UserCompletion=true
# Enable user list (names along with images) in the greeter.
# Default is true
#UserList=false
# User selection for UserCompletion and UserList:
# "NotHidden" - all users except those listed in HiddenUsers
# "Selected" - only the users listed in SelectedUsers
# Default is NotHidden
#ShowUsers=Selected
# For ShowUsers=Selected. @<group> means all users in that group.
# Default is ""
#SelectedUsers=root,johndoe
# For ShowUsers=NotHidden. @<group> means all users in that group.
# Default is ""
#HiddenUsers=root
# Special case of HiddenUsers: users with a non-zero UID less than this number
# will not be shown as well.
# Default is 0
MinShowUID=1000
# Complement to MinShowUID: users with a UID greater than this number will
# not be shown as well.
# Default is 65535
MaxShowUID=65000
# If false, the users are listed in the order they appear in /etc/passwd.
# If true, they are sorted alphabetically.
# Default is true
#SortUsers=false
# Specify, where the users' pictures should be taken from.
# "AdminOnly" - from <FaceDir>/$USER.face[.icon]
# "PreferAdmin" - prefer <FaceDir>, fallback on $HOME
# "PreferUser" - ... and the other way round
# "UserOnly" - from the user's $HOME/.face[.icon]
# Default is AdminOnly
#FaceSource=PreferUser
# The directory containing the user images if FaceSource is not UserOnly.
# Default is "/usr/share/apps/kdm/faces"
##FaceDir=/usr/share/faces
FaceDir=/var/lib/kdm/faces
# Specify, if/which user should be preselected for log in.
# "None" - do not preselect any user
# "Previous" - the user which successfully logged in last time
# "Default" - the user specified in the DefaultUser option
# Default is None
#PreselectUser=Previous
# If this is true, the password input line is focused automatically if
# a user is preselected.
# Default is false
#FocusPasswd=true
# If this is true, the entered password is echoed as bullets. Otherwise,
# no feedback is given at all.
# Default is true
#EchoPasswd=false
# If true, krootimage will be automatically started by KDM; otherwise, the
# Setup script should be used to setup the background.
# Default is true
#UseBackground=false
# The configuration file to be used by krootimage.
# Default is "/usr/share/config/kdm/backgroundrc"
#BackgroundCfg=
# Whether to grab keyboard and mouse while the greeter is visible. Grabs
# may improve security, but make on-screen keyboards, etc. unusable.
# "Never" - never grab
# "IfNoAuth" - grab if the display requires no X authorization
# "Always" - always grab
# Default is IfNoAuth
#GrabInput=Always
# Hold the X-server grabbed the whole time the greeter is visible. This
# may be more secure, but it will disable any background and other
# X-clients started from the Setup script.
# Default is false
#GrabServer=true
# How many seconds to wait for grab to succeed.
# Default is 3
#GrabTimeout=3
# Warn, if display has no X-authorization (local auth cannot be created,
# XDMCP display wants no auth, or display is foreign from StaticServers).
# Default is true
#AuthComplain=false
# Random seed for forging saved session types, etc. of unknown users.
# This value should be random but constant across the login domain.
# Default is 0
ForgingSeed=1355933063
# Specify conversation plugins for the login dialog. Each plugin can be
# specified as a base name (which expands to $kde_modulesdir/kgreet_$base)
# or as a full pathname.
# Default is "classic"
#PluginsLogin=sign
# Same as PluginsLogin, but for the shutdown dialog.
# Default is "classic"
#PluginsShutdown=modern
# A list of options of the form Key=Value. The conversation plugins can query
# these settings; it is up to them what possible keys are.
# Default is ""
#PluginOptions=SomeKey=randomvalue,Foo=bar
# Show the "Console Login" action in the greeter (if ServerTTY/ConsoleTTYs
# is configured).
# Default is true
#AllowConsole=false
# A program to run while the greeter is visible. It is supposed to preload
# as much as possible of the session that is going to be started (most
# probably).
# Default is ""
Preloader=/usr/bin/preloadkde
# Whether the greeter should be themed.
# Default is false
UseTheme=true
# The theme to use for the greeter. Can point to either a directory or an XML
# file.
# Default is ""
Theme=/usr/share/apps/kdm/themes/ariya
# Enable the Alt-Ctrl-D shortcut to toggle greeter theme debugging.
# Default is false
#AllowThemeDebug=true
# Core config for local displays
[X-:*-Core]
# How often to try to run the X-server. Running includes executing it and
# waiting for it to come up.
# Default is 1
#ServerAttempts=1
# How long to wait for a local X-server to come up.
# Default is 30
ServerTimeout=30
# The command line to start the X-server, without display number and VT spec.
# This string is subject to word splitting.
# Default is "/usr/bin/X"
ServerCmd=/usr/bin/X -br -novtswitch -quiet
# Additional arguments for the X-servers for local sessions.
# This string is subject to word splitting.
# Default is ""
ServerArgsLocal=-nolisten tcp
# Additional arguments for the X-servers for remote sessions.
# This string is subject to word splitting.
# Default is ""
#ServerArgsRemote=
# The user the X-server should run as. Empty results in root.
# Default is ""
#ServerUID=_x11
# Restart instead of resetting the local X-server after session exit.
# Use it if the server leaks memory etc.
# Default is false
TerminateServer=true
# Create X-authorizations for local displays.
# Default is true
#Authorize=false
# Which X-authorization mechanisms should be used.
# Default is "MIT-MAGIC-COOKIE-1"
#AuthNames=
# Need to reset the X-server to make it read initial Xauth file.
# Default is false
#ResetForAuth=true
# See above
AllowNullPasswd=true
# See above
AllowShutdown=All
# Enable password-less logins on this display. USE WITH EXTREME CARE!
# Default is false
#NoPassEnable=true
# The users that do not need to provide a password to log in. NEVER list root!
# "*" means all non-root users. @<group> means all users in that group.
# Default is ""
#NoPassUsers=fred,ethel
# Greeter config for local displays
[X-:*-Greeter]
# See above
PreselectUser=Previous
# See above
FocusPasswd=true
# Specify whether the greeter of local displays should start up in host chooser
# (remote) or login (local) mode and whether it is allowed to switch to the
# other mode.
# "LocalOnly" - only local login possible
# "DefaultLocal" - start up in local mode, but allow switching to remote mode
# "DefaultRemote" - ... and the other way round
# "RemoteOnly" - only choice of remote host possible
# Default is LocalOnly
LoginMode=DefaultLocal
# A list of hosts to be automatically added to the remote login menu. The
# special name "*" means broadcast.
# Default is "*"
#ChooserHosts=*,host1,host2,host3.local,login.domain.com
# Show the "Restart X Server"/"Close Connection" action in the greeter.
# Default is true
AllowClose=false
# Core config for 1st local display
[X-:0-Core]
ServerArgsLocal=-config xorg-2-displays.conf -nolisten tcp -br -isolateDevice PCI:1:0:0 -ac vt7 -logverbose 5 -verbose 5
# The VT the X-server should run on; auto-assign if zero, don't assign if -1.
# Better leave it zero and use ServerVTs.
# Default is 0
ServerVT=7
# Enable automatic login. USE WITH EXTREME CARE!
# Default is false
AutoLoginEnable=true
# If true, auto-login after logout. If false, auto-login is performed only
# when a display session starts up.
# Default is false
#AutoLoginAgain=true
# The delay in seconds before automatic login kicks in.
# Default is 0
#AutoLoginDelay=10
# The user to log in automatically. NEVER specify root!
# Default is ""
#AutoLoginUser=fred
# The password for the user to log in automatically. This is NOT required
# unless the user is logged into a NIS or Kerberos domain. If you use this
# option, you should "chmod 600 kdmrc" for obvious reasons.
# Default is ""
#AutoLoginPass=secret!
# Immediately lock the automatically started session. This works only with
# KDE sessions.
# Default is false
#AutoLoginLocked=true
# See above
ClientLogFile=.xsession-errors
# Core config for 1st local display
[X-:1-Core]
ServerArgsLocal=-config xorg-tv.conf -nolisten tcp -sharevts -br -isolateDevice PCI:2:0:0 -ac vt7 -logverbose 5 -verbose 5
# The VT the X-server should run on; auto-assign if zero, don't assign if -1.
# Better leave it zero and use ServerVTs.
# Default is 0
ServerVT=7
# Enable automatic login. USE WITH EXTREME CARE!
# Default is false
#AutoLoginEnable=true
# If true, auto-login after logout. If false, auto-login is performed only
# when a display session starts up.
# Default is false
AutoLoginAgain=true
# The delay in seconds before automatic login kicks in.
# Default is 0
#AutoLoginDelay=10
# The user to log in automatically. NEVER specify root!
# Default is ""
AutoLoginUser=xbmc
# The password for the user to log in automatically. This is NOT required
# unless the user is logged into a NIS or Kerberos domain. If you use this
# option, you should "chmod 600 kdmrc" for obvious reasons.
# Default is ""
#AutoLoginPass=secret!
# Immediately lock the automatically started session. This works only with
# KDE sessions.
# Default is false
#AutoLoginLocked=true
# See above
ClientLogFile=.xsession-errors
# Greeter config for 1st local display
[X-:0-Greeter]
# See above
#PreselectUser=Default
# The user to preselect if PreselectUser=Default.
# Default is ""
#DefaultUser=johndoe
# nvidia-settings: X configuration file generated by nvidia-settings
# nvidia-settings: version 310.19 (buildmeister@swio-display-x86-rhel47-08.nvidia.com) Thu Nov 8 02:08:55 PST 2012
Section "ServerFlags"
Option "AutoAddDevices" "false"
# Option "AutoEnableDevices" "false"
# Option "AllowMouseOpenFail" "on"
# Option "AllowEmptyInput" "on"
# Option "ZapWarning" "on"
# Option "HandleSepcialKeys" "off" # Zapping on
Option "DRI2" "on"
# Option "Xinerama" "off"
Option "AutoAddGPU" "off"
EndSection
Section "ServerLayout"
Identifier "Layout0"
Screen 0 "Screen0" 0 0
Screen 1 "Screen1" RightOf "Screen0"
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Mouse0" "CorePointer"
# Option "Xinerama" "1"
EndSection
Section "Files"
EndSection
Section "Module"
Load "dbe"
Load "extmod"
Load "type1"
Load "freetype"
Load "glx"
Load "xvmc"
Load "dri"
Load "dri2"
EndSection
Section "ServerFlags"
Option "RandRRotation" "0"
Option "GlxVisuals" "all"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/input/mice"
Option "Emulate3Buttons" "no"
Option "ZAxisMapping" "4 5"
EndSection
Section "InputDevice"
Identifier "Wacom0"
Driver "wacom"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbLayout" "us,bg"
Option "XkbVariant" "basic,bds"
Option "XkbOptions" "grp:alt_shift_toggle,lv3:menu_switch,grp_led:scroll,compose:rwin,eurosign:5"
EndSection
Section "InputClass"
Identifier "mceusb0"
MatchUSBID "0471:0815"
Option "Ignore" "true"
EndSection
Section "Monitor"
Identifier "Monitor1"
VendorName "Unknown"
ModelName "Samsung SyncMaster"
HorizSync 30.0 - 81.0
VertRefresh 56.0 - 75.0
Option "DPMS"
EndSection
Section "Monitor"
Identifier "Monitor0"
VendorName "Unknown"
ModelName "Philips 240B"
HorizSync 24.0 - 94.0
VertRefresh 48.0 - 85.0
EndSection
Section "Device"
Option "MultiGPU" "0"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
BoardName "GeForce GTX 560"
BusID "PCI:1:0:0"
Screen 0
EndSection
Section "Device"
Option "MultiGPU" "0"
Identifier "Videocard0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
Screen 0
EndSection
Section "Device"
Option "MultiGPU" "0"
Identifier "Videocard1"
Driver "nvidia"
VendorName "NVIDIA Corporation"
Screen 1
EndSection
Section "Device"
Option "MultiGPU" "0"
Identifier "Device1"
Driver "nvidia"
VendorName "NVIDIA Corporation"
BoardName "GeForce GTX 560"
BusID "PCI:1:0:0"
Screen 1
EndSection
Section "Screen"
# Removed Option "metamodes" "nvidia-auto-select +0+0"
Identifier "Screen1"
Device "Device1"
Monitor "Monitor1"
DefaultDepth 24
Option "FlatPanelProperties" "Scaling = Native, Dithering = Disabled"
Option "Coolbits" "1"
Option "TwinView" "0"
Option "TwinViewXineramaInfoOrder" "CRT-1"
Option "Stereo" "0"
Option "metamodes" "CRT: nvidia-auto-select +0+0; CRT: 1280x1024_75 +0+0; CRT: 1280x960 +0+0; CRT: 1152x864 +0+0; CRT: 1024x768 +0+0; CRT: 1024x768_70 +0+0; CRT: 1024x768_60 +0+0; CRT: 800x600 +0+0; CRT: 800x600_72 +0+0; CRT: 800x600_60 +0+0; CRT: 800x600_56 +0+0; CRT: 640x480 +0+0; CRT: 640x480_72 +0+0; CRT: 640x480_60 +0+0; CRT: nvidia-auto-select +0+0 {viewportout=1280x720+0+152}"
SubSection "Display"
Depth 24
EndSubSection
EndSection
Section "Screen"
# Removed Option "metamodes" "1920x1080_50 +0+0"
Identifier "Screen0"
Device "Device0"
Monitor "Monitor0
DefaultDepth 24
Option "TwinViewXineramaInfoOrder" "DPF-0"
Option "TwinView" "0"
Option "Stereo" "0"
Option "nvidiaXineramaInfoOrder" "DFP-0"
Option "metamodes" "DFP: 1920x1200 +0+0"
SubSection "Display"
Depth 24
EndSubSection
EndSection
Section "Extensions"
Option "Composite" "Disable"
EndSection
# nvidia-settings: X configuration file generated by nvidia-settings
# nvidia-settings: version 310.19 (buildmeister@swio-display-x86-rhel47-08.nvidia.com) Thu Nov 8 02:08:55 PST 2012
Section "ServerFlags"
Option "AutoAddDevices" "false"
Option "AutoEnableDevices" "false"
Option "AllowMouseOpenFail" "on"
Option "AllowEmptyInput" "on"
# Option "ZapWarning" "on"
# Option "HandleSepcialKeys" "off" # Zapping on
Option "DRI2" "on"
# Option "Xinerama" "off"
Option "AutoAddGPU" "off"
EndSection
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 data in "/etc/conf.d/gpm"
Identifier "Mouse0"
Driver "null"
Option "Protocol"
Option "Device" "/dev/input/mice"
Option "Emulate3Buttons" "no"
Option "ZAxisMapping" "4 5"
EndSection
Section "InputDevice"
# generated from default
Identifier "Keyboard0"
Driver "null"
EndSection
Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
BoardName "GeForce GT 240"
BusID "PCI:2:0:0"
Option "MultiGPU" "0"
EndSection
[ 862.717]
X.Org X Server 1.13.1
Release Date: 2012-12-13
[ 862.717] X Protocol Version 11, Revision 0
[ 862.717] Build Operating System: Linux 3.6.6-gentoo x86_64 Gentoo
[ 862.717] Current Operating System: Linux localhost 3.7.1-gentoo #4 SMP PREEMPT Sat Jan 5 13:41:52 EET 2013 x86_64
[ 862.717] Kernel command line: BOOT_IMAGE=/kernel-genkernel-x86_64-3.7.1-gentoo root=/dev/mapper/main-root_1 ro dolvm
[ 862.717] Build Date: 01 January 2013 06:13:23AM
[ 862.717]
[ 862.717] Current version of pixman: 0.28.2
[ 862.717] Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[ 862.717] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 862.718] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Jan 5 16:55:01 2013
[ 862.718] (++) Using config file: "/etc/X11/xorg-2-displays.conf"
[ 862.718] (==) Using config directory: "/etc/X11/xorg.conf.d"
[ 862.718] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[ 862.718] (==) ServerLayout "Layout0"
[ 862.718] (**) |-->Screen "Screen0" (0)
[ 862.718] (**) | |-->Monitor "Monitor0"
[ 862.718] (**) | |-->Device "Device0"
[ 862.718] (**) |-->Screen "Screen1" (1)
[ 862.718] (**) | |-->Monitor "Monitor1"
[ 862.718] (**) | |-->Device "Device1"
[ 862.718] (**) |-->Input Device "Keyboard0"
[ 862.718] (**) |-->Input Device "Mouse0"
[ 862.718] (**) Option "GlxVisuals" "all"
[ 862.718] (==) Automatically adding devices
[ 862.718] (==) Automatically enabling devices
[ 862.718] (==) Automatically adding GPU devices
[ 862.718] (==) FontPath set to:
/usr/share/fonts/misc/,
/usr/share/fonts/TTF/,
/usr/share/fonts/OTF/,
/usr/share/fonts/Type1/,
/usr/share/fonts/100dpi/,
/usr/share/fonts/75dpi/
[ 862.718] (==) ModulePath set to "/usr/lib64/xorg/modules"
[ 862.718] (**) Extension "Composite" is disabled
[ 862.718] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[ 862.718] (WW) Disabling Keyboard0
[ 862.718] (WW) Disabling Mouse0
[ 862.718] (II) Loader magic: 0x80cc20
[ 862.718] (II) Module ABI versions:
[ 862.718] X.Org ANSI C Emulation: 0.4
[ 862.718] X.Org Video Driver: 13.1
[ 862.718] X.Org XInput driver : 18.0
[ 862.718] X.Org Server Extension : 7.0
[ 862.720] (--) PCI:*(0:1:0:0) 10de:1201:1462:2326 rev 161, Mem @ 0xf6000000/33554432, 0xc8000000/134217728, 0xd0000000/67108864, I/O @ 0x0000e000/128, BIOS @ 0x????????/524288
[ 862.720] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[ 862.720] Initializing built-in extension Generic Event Extension
[ 862.720] Initializing built-in extension SHAPE
[ 862.720] Initializing built-in extension MIT-SHM
[ 862.720] Initializing built-in extension XInputExtension
[ 862.720] Initializing built-in extension XTEST
[ 862.720] Initializing built-in extension BIG-REQUESTS
[ 862.720] Initializing built-in extension SYNC
[ 862.720] Initializing built-in extension XKEYBOARD
[ 862.720] Initializing built-in extension XC-MISC
[ 862.720] Initializing built-in extension XINERAMA
[ 862.720] Initializing built-in extension XFIXES
[ 862.720] Initializing built-in extension RENDER
[ 862.720] Initializing built-in extension RANDR
[ 862.720] Initializing built-in extension COMPOSITE
[ 862.720] Initializing built-in extension DAMAGE
[ 862.720] Initializing built-in extension MIT-SCREEN-SAVER
[ 862.720] Initializing built-in extension DOUBLE-BUFFER
[ 862.720] Initializing built-in extension RECORD
[ 862.720] Initializing built-in extension DPMS
[ 862.720] Initializing built-in extension X-Resource
[ 862.720] Initializing built-in extension XVideo
[ 862.720] Initializing built-in extension XVideo-MotionCompensation
[ 862.720] Initializing built-in extension XFree86-VidModeExtension
[ 862.720] Initializing built-in extension XFree86-DGA
[ 862.720] Initializing built-in extension XFree86-DRI
[ 862.720] Initializing built-in extension DRI2
[ 862.720] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
[ 862.720] (II) LoadModule: "dbe"
[ 862.720] (II) Module "dbe" already built-in
[ 862.720] (II) LoadModule: "extmod"
[ 862.720] (II) Module "extmod" already built-in
[ 862.720] (II) LoadModule: "glx"
[ 862.720] (II) Loading /usr/lib64/xorg/modules/extensions/libglx.so
[ 862.726] (II) Module glx: vendor="NVIDIA Corporation"
[ 862.726] compiled for 4.0.2, module version = 1.0.0
[ 862.726] Module class: X.Org Server Extension
[ 862.726] (II) NVIDIA GLX Module 313.09 Tue Dec 4 22:06:18 PST 2012
[ 862.726] Loading extension GLX
[ 862.726] (II) LoadModule: "xvmc"
[ 862.727] (WW) Warning, couldn't open module xvmc
[ 862.727] (II) UnloadModule: "xvmc"
[ 862.727] (II) Unloading xvmc
[ 862.727] (EE) Failed to load module "xvmc" (module does not exist, 0)
[ 862.727] (II) LoadModule: "dri"
[ 862.727] (II) Module "dri" already built-in
[ 862.727] (II) LoadModule: "dri2"
[ 862.727] (II) Module "dri2" already built-in
[ 862.727] (II) LoadModule: "nvidia"
[ 862.727] (II) Loading /usr/lib64/xorg/modules/drivers/nvidia_drv.so
[ 862.727] (II) Module nvidia: vendor="NVIDIA Corporation"
[ 862.727] compiled for 4.0.2, module version = 1.0.0
[ 862.727] Module class: X.Org Video Driver
[ 862.727] (II) NVIDIA dlloader X Driver 313.09 Tue Dec 4 21:47:16 PST 2012
[ 862.727] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[ 862.727] (II) NVIDIA X compatibility module for ABI 13.0 built from git commit 98e3f3fde35ca805d44ee38394bfd86058f9f4b8
[ 862.727] (II) X log verbosity: 5
[ 862.727] (++) using VT number 7
[ 862.731] (II) Loading sub module "wfb"
[ 862.731] (II) LoadModule: "wfb"
[ 862.731] (II) Loading /usr/lib64/xorg/modules/libwfb.so
[ 862.731] (II) Module wfb: vendor="X.Org Foundation"
[ 862.731] compiled for 1.13.1, module version = 1.0.0
[ 862.731] ABI class: X.Org ANSI C Emulation, version 0.4
[ 862.731] (II) Loading sub module "ramdac"
[ 862.731] (II) LoadModule: "ramdac"
[ 862.731] (II) Module "ramdac" already built-in
[ 862.731] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
[ 862.731] (==) NVIDIA(0): RGB weight 888
[ 862.731] (==) NVIDIA(0): Default visual is TrueColor
[ 862.731] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[ 862.731] (**) NVIDIA(0): Option "Stereo" "0"
[ 862.731] (**) NVIDIA(0): Option "nvidiaXineramaInfoOrder" "DFP-0"
[ 862.731] (**) NVIDIA(0): Option "TwinViewXineramaInfoOrder" "DPF-0"
[ 862.731] (**) NVIDIA(0): Option "MultiGPU" "0"
[ 862.731] (==) NVIDIA(0): Using HW cursor
[ 862.731] (**) NVIDIA(0): Stereo disabled by request
[ 862.731] (==) NVIDIA(0): Video key set to default value of 0x101fe
[ 862.731] (**) NVIDIA(0): NVIDIA Multi-GPU disabled.
[ 862.731] (==) NVIDIA(0): Not mapping the primary surface by default.
[ 862.731] (**) NVIDIA(0): Option "MetaModes" "DFP: 1920x1200 +0+0"
[ 862.731] (**) NVIDIA(1): Option "Coolbits" "1"
[ 862.731] (**) NVIDIA(1): Option "MetaModes" "CRT: nvidia-auto-select +0+0; CRT: 1280x1024_75 +0+0; CRT: 1280x960 +0+0; CRT: 1152x864 +0+0; CRT: 1024x768 +0+0; CRT: 1024x768_70 +0+0; CRT: 1024x768_60 +0+0; CRT: 800x600 +0+0; CRT: 800x600_72 +0+0; CRT: 800x600_60 +0+0; CRT: 800x600_56 +0+0; CRT: 640x480 +0+0; CRT: 640x480_72 +0+0; CRT: 640x480_60 +0+0; CRT: nvidia-auto-select +0+0 {viewportout=1280x720+0+152}"
[ 862.731] (**) NVIDIA(0): Enabling 2D acceleration
[ 863.011] (II) NVIDIA(GPU-0): Display (Samsung SyncMaster (CRT-1)) does not support NVIDIA
[ 863.011] (II) NVIDIA(GPU-0): 3D Vision stereo.
[ 863.040] (II) NVIDIA(GPU-0): Display (Philips 240B (DFP-0)) does not support NVIDIA 3D
[ 863.040] (II) NVIDIA(GPU-0): Vision stereo.
[ 863.041] (II) NVIDIA(0): NVIDIA GPU GeForce GTX 560 (GF114) at PCI:1:0:0 (GPU-0)
[ 863.041] (--) NVIDIA(0): Memory: 1048576 kBytes
[ 863.041] (II) NVIDIA(0): Board ID: 0xd207
[ 863.041] (II) NVIDIA(0): Chip SKU: 325
[ 863.041] (II) NVIDIA(0): Project: 1041
[ 863.041] (II) NVIDIA(0): Project SKU: 0050
[ 863.041] (II) NVIDIA(0): GPU RAM Type: GDDR5
[ 863.041] (--) NVIDIA(0): VideoBIOS: 70.24.21.00.00
[ 863.041] (--) NVIDIA(0): Found 2 heads on board
[ 863.041] (II) NVIDIA(0): Supported display device(s): CRT-0, CRT-1, DFP-0, DFP-1,
[ 863.041] (II) NVIDIA(0): DFP-2
[ 863.041] (II) NVIDIA(0): Bus detected as PCI Express
[ 863.041] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[ 863.041] (II) NVIDIA(0): DFP scaling is supported on this GPU
[ 863.041] (II) NVIDIA(0): SPS : 2
[ 863.041] (II) NVIDIA(0): User configuration of GPU PowerMizer is supported
[ 863.041] (II) NVIDIA(0):
[ 863.044] (--) NVIDIA(0): Valid display device(s) on GeForce GTX 560 at PCI:1:0:0
[ 863.044] (--) NVIDIA(0): CRT-0
[ 863.044] (--) NVIDIA(0): Samsung SyncMaster (CRT-1) (connected)
[ 863.044] (--) NVIDIA(0): Philips 240B (DFP-0) (connected)
[ 863.044] (--) NVIDIA(0): DFP-1
[ 863.044] (--) NVIDIA(0): DFP-2
[ 863.044] (--) NVIDIA(0): CRT-0: 400.0 MHz maximum pixel clock
[ 863.044] (--) NVIDIA(0): Name Aliases for CRT-0:
[ 863.044] (--) NVIDIA(0): CRT
[ 863.044] (--) NVIDIA(0): CRT-0
[ 863.044] (--) NVIDIA(0): DPY-0
[ 863.044] (--) NVIDIA(0): DVI-I-0
[ 863.044] (--) NVIDIA(0): Samsung SyncMaster (CRT-1): 400.0 MHz maximum pixel clock
[ 863.044] (--) NVIDIA(0): Name Aliases for Samsung SyncMaster (CRT-1):
[ 863.044] (--) NVIDIA(0): CRT
[ 863.044] (--) NVIDIA(0): CRT-1
[ 863.044] (--) NVIDIA(0): DPY-1
[ 863.044] (--) NVIDIA(0): DVI-I-1
[ 863.044] (--) NVIDIA(0): DPY-EDID-9ead07ed-d741-8658-681f-e8ba781e38a6
[ 863.044] (--) NVIDIA(0): Philips 240B (DFP-0): 330.0 MHz maximum pixel clock
[ 863.044] (--) NVIDIA(0): Philips 240B (DFP-0): Internal Dual Link TMDS
[ 863.044] (--) NVIDIA(0): Philips 240B (DFP-0): Native FlatPanel Scaling is supported
[ 863.044] (--) NVIDIA(0): Philips 240B (DFP-0): DFP modes are not limited to 60 Hz refresh rate
[ 863.044] (--) NVIDIA(0): Philips 240B (DFP-0): DFP is not internal to notebook
[ 863.044] (--) NVIDIA(0): Name Aliases for Philips 240B (DFP-0):
[ 863.044] (--) NVIDIA(0): DFP
[ 863.044] (--) NVIDIA(0): DFP-0
[ 863.044] (--) NVIDIA(0): DPY-2
[ 863.044] (--) NVIDIA(0): DVI-I-2
[ 863.044] (--) NVIDIA(0): DPY-EDID-4f6171bc-7024-f031-ae50-02becfca15a1
[ 863.044] (--) NVIDIA(0): DFP-1: 165.0 MHz maximum pixel clock
[ 863.044] (--) NVIDIA(0): DFP-1: Internal Single Link TMDS
[ 863.044] (--) NVIDIA(0): DFP-1: DFP modes are not limited to 60 Hz refresh rate
[ 863.044] (--) NVIDIA(0): DFP-1: DFP is not internal to notebook
[ 863.044] (--) NVIDIA(0): Name Aliases for DFP-1:
[ 863.044] (--) NVIDIA(0): DFP
[ 863.044] (--) NVIDIA(0): DFP-1
[ 863.044] (--) NVIDIA(0): DPY-3
[ 863.044] (--) NVIDIA(0): HDMI-0
[ 863.044] (--) NVIDIA(0): DFP-2: 330.0 MHz maximum pixel clock
[ 863.044] (--) NVIDIA(0): DFP-2: Internal Single Link TMDS
[ 863.044] (--) NVIDIA(0): DFP-2: DFP modes are not limited to 60 Hz refresh rate
[ 863.044] (--) NVIDIA(0): DFP-2: DFP is not internal to notebook
[ 863.044] (--) NVIDIA(0): Name Aliases for DFP-2:
[ 863.044] (--) NVIDIA(0): DFP
[ 863.044] (--) NVIDIA(0): DFP-2
[ 863.044] (--) NVIDIA(0): DPY-4
[ 863.044] (--) NVIDIA(0): DVI-I-3
[ 863.044] (--) NVIDIA(0):
[ 863.044] (--) NVIDIA(0): --- EDID for Samsung SyncMaster (CRT-1) ---
[ 863.044] (--) NVIDIA(0): EDID Version : 1.3
[ 863.044] (--) NVIDIA(0): Manufacturer : SAM
[ 863.044] (--) NVIDIA(0): Monitor Name : Samsung SyncMaster
[ 863.044] (--) NVIDIA(0): Product ID : 0x01b7
[ 863.044] (--) NVIDIA(0): 32-bit Serial Number : 0x48413137
[ 863.044] (--) NVIDIA(0): Serial Number String : HSGL506346
[ 863.044] (--) NVIDIA(0): Manufacture Date : 2006, week 22
[ 863.044] (--) NVIDIA(0): DPMS Capabilities : Active Off
[ 863.044] (--) NVIDIA(0): Input Type : Analog
[ 863.044] (--) NVIDIA(0): Prefer first detailed timing : Yes
[ 863.044] (--) NVIDIA(0): Supports GTF : No
[ 863.044] (--) NVIDIA(0): Maximum Image Size : 340 mm x 270 mm
[ 863.044] (--) NVIDIA(0): Valid HSync Range : 30.0 kHz - 81.0 kHz
[ 863.044] (--) NVIDIA(0): Valid VRefresh Range : 56.0 Hz - 75.0 Hz
[ 863.044] (--) NVIDIA(0): EDID maximum pixel clock : 140.0 MHz
[ 863.044] (--) NVIDIA(0):
[ 863.044] (--) NVIDIA(0): Standard Timings:
[ 863.044] (--) NVIDIA(0): 1280 x 1024 @ 60 Hz
[ 863.044] (--) NVIDIA(0): 1280 x 960 @ 60 Hz
[ 863.044] (--) NVIDIA(0): 1152 x 864 @ 75 Hz
[ 863.044] (--) NVIDIA(0):
[ 863.044] (--) NVIDIA(0): Detailed Timings:
[ 863.044] (--) NVIDIA(0): 1280 x 1024 @ 60 Hz
[ 863.044] (--) NVIDIA(0): Pixel Clock : 108.00 MHz
[ 863.044] (--) NVIDIA(0): HRes, HSyncStart : 1280, 1328
[ 863.044] (--) NVIDIA(0): HSyncEnd, HTotal : 1440, 1688
[ 863.044] (--) NVIDIA(0): VRes, VSyncStart : 1024, 1025
[ 863.044] (--) NVIDIA(0): VSyncEnd, VTotal : 1028, 1066
[ 863.044] (--) NVIDIA(0): H/V Polarity : +/+
[ 863.044] (--) NVIDIA(0): Image Size : 338 mm x 270 mm
[ 863.044] (--) NVIDIA(0):
[ 863.044] (--) NVIDIA(0): Established Timings:
[ 863.044] (--) NVIDIA(0): 640 x 480 @ 60 Hz
[ 863.044] (--) NVIDIA(0): 640 x 480 @ 72 Hz
[ 863.044] (--) NVIDIA(0): 640 x 480 @ 75 Hz
[ 863.044] (--) NVIDIA(0): 800 x 600 @ 56 Hz
[ 863.044] (--) NVIDIA(0): 800 x 600 @ 60 Hz
[ 863.044] (--) NVIDIA(0): 800 x 600 @ 72 Hz
[ 863.044] (--) NVIDIA(0): 800 x 600 @ 75 Hz
[ 863.044] (--) NVIDIA(0): 1024 x 768 @ 60 Hz
[ 863.044] (--) NVIDIA(0): 1024 x 768 @ 70 Hz
[ 863.044] (--) NVIDIA(0): 1024 x 768 @ 75 Hz
[ 863.044] (--) NVIDIA(0): 1280 x 1024 @ 75 Hz
[ 863.044] (--) NVIDIA(0):
[ 863.044] (--) NVIDIA(0): --- End of EDID for Samsung SyncMaster (CRT-1) ---
[ 863.044] (--) NVIDIA(0):
[ 863.044] (--) NVIDIA(0):
[ 863.044] (--) NVIDIA(0): --- EDID for Philips 240B (DFP-0) ---
[ 863.044] (--) NVIDIA(0): EDID Version : 1.3
[ 863.044] (--) NVIDIA(0): Manufacturer : PHL
[ 863.044] (--) NVIDIA(0): Monitor Name : Philips 240B
[ 863.044] (--) NVIDIA(0): Product ID : 0x087f
[ 863.044] (--) NVIDIA(0): 32-bit Serial Number : 0x00004921
[ 863.044] (--) NVIDIA(0): Serial Number String : DL41131018721
[ 863.044] (--) NVIDIA(0): Manufacture Date : 2011, week 31
[ 863.044] (--) NVIDIA(0): DPMS Capabilities : Standby Suspend Active Off
[ 863.044] (--) NVIDIA(0): Input Type : Digital
[ 863.044] (--) NVIDIA(0): Prefer first detailed timing : Yes
[ 863.044] (--) NVIDIA(0): Supports GTF : No
[ 863.044] (--) NVIDIA(0): Maximum Image Size : 520 mm x 320 mm
[ 863.044] (--) NVIDIA(0): Valid HSync Range : 24.0 kHz - 94.0 kHz
[ 863.044] (--) NVIDIA(0): Valid VRefresh Range : 48.0 Hz - 85.0 Hz
[ 863.044] (--) NVIDIA(0): EDID maximum pixel clock : 170.0 MHz
[ 863.044] (--) NVIDIA(0): EDID bits per component : 0
[ 863.044] (--) NVIDIA(0):
[ 863.044] (--) NVIDIA(0): Standard Timings:
[ 863.044] (--) NVIDIA(0): 1152 x 864 @ 60 Hz
[ 863.044] (--) NVIDIA(0): 1280 x 960 @ 60 Hz
[ 863.044] (--) NVIDIA(0): 1280 x 720 @ 60 Hz
[ 863.044] (--) NVIDIA(0): 1440 x 900 @ 60 Hz
[ 863.044] (--) NVIDIA(0): 1440 x 900 @ 75 Hz
[ 863.044] (--) NVIDIA(0): 1600 x 1200 @ 60 Hz
[ 863.044] (--) NVIDIA(0): 1680 x 1050 @ 60 Hz
[ 863.044] (--) NVIDIA(0):
[ 863.044] (--) NVIDIA(0): Detailed Timings:
[ 863.044] (--) NVIDIA(0): 1920 x 1200 @ 60 Hz
[ 863.044] (--) NVIDIA(0): Pixel Clock : 154.00 MHz
[ 863.044] (--) NVIDIA(0): HRes, HSyncStart : 1920, 1968
[ 863.044] (--) NVIDIA(0): HSyncEnd, HTotal : 2000, 2080
[ 863.044] (--) NVIDIA(0): VRes, VSyncStart : 1200, 1203
[ 863.044] (--) NVIDIA(0): VSyncEnd, VTotal : 1209, 1235
[ 863.044] (--) NVIDIA(0): H/V Polarity : +/-
[ 863.044] (--) NVIDIA(0): Image Size : 519 mm x 324 mm
[ 863.044] (--) NVIDIA(0):
[ 863.044] (--) NVIDIA(0): Established Timings:
[ 863.044] (--) NVIDIA(0): 640 x 480 @ 60 Hz
[ 863.044] (--) NVIDIA(0): 640 x 480 @ 72 Hz
[ 863.044] (--) NVIDIA(0): 640 x 480 @ 75 Hz
[ 863.044] (--) NVIDIA(0): 800 x 600 @ 56 Hz
[ 863.044] (--) NVIDIA(0): 800 x 600 @ 60 Hz
[ 863.044] (--) NVIDIA(0): 800 x 600 @ 72 Hz
[ 863.044] (--) NVIDIA(0): 800 x 600 @ 75 Hz
[ 863.044] (--) NVIDIA(0): 1024 x 768 @ 60 Hz
[ 863.044] (--) NVIDIA(0): 1024 x 768 @ 70 Hz
[ 863.044] (--) NVIDIA(0): 1024 x 768 @ 75 Hz
[ 863.044] (--) NVIDIA(0): 1280 x 1024 @ 75 Hz
[ 863.044] (--) NVIDIA(0):
[ 863.044] (--) NVIDIA(0): --- End of EDID for Philips 240B (DFP-0) ---
[ 863.044] (--) NVIDIA(0):
[ 863.044] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
[ 863.044] (**) NVIDIA(0): device Philips 240B (DFP-0) (Using EDID frequencies has
[ 863.044] (**) NVIDIA(0): been enabled on all display devices.)
[ 863.044] (II) NVIDIA(0): Frequency information for Philips 240B (DFP-0):
[ 863.044] (II) NVIDIA(0): HorizSync : 24.000-94.000 kHz
[ 863.044] (II) NVIDIA(0): VertRefresh : 48.000-85.000 Hz
[ 863.044] (II) NVIDIA(0): (HorizSync from EDID)
[ 863.045] (II) NVIDIA(0): (VertRefresh from EDID)
[ 863.045] (II) NVIDIA(GPU-0):
[ 863.045] (II) NVIDIA(GPU-0): Native mode timings for Philips 240B (DFP-0):
[ 863.045] (II) NVIDIA(GPU-0): 1920 x 1200 @ 60 Hz
[ 863.045] (II) NVIDIA(GPU-0): Pixel Clock : 154.000 MHz
[ 863.045] (II) NVIDIA(GPU-0): HRes, HSyncStart : 1920, 1968
[ 863.045] (II) NVIDIA(GPU-0): HSyncEnd, HTotal : 2000, 2080
[ 863.045] (II) NVIDIA(GPU-0): VRes, VSyncStart : 1200, 1203
[ 863.045] (II) NVIDIA(GPU-0): VSyncEnd, VTotal : 1209, 1235
[ 863.045] (II) NVIDIA(GPU-0): H/V Polarity : +/-
[ 863.045] (II) NVIDIA(GPU-0):
[ 863.046] (II) NVIDIA(GPU-0):
[ 863.046] (II) NVIDIA(GPU-0): --- Modes in ModePool for Philips 240B (DFP-0) ---
[ 863.046] (II) NVIDIA(GPU-0): "nvidia-auto-select" : 1920 x 1200 @ 60.0 Hz (from: EDID)
[ 863.046] (II) NVIDIA(GPU-0): "1920x1200" : 1920 x 1200 @ 60.0 Hz (from: EDID)
[ 863.046] (II) NVIDIA(GPU-0): "1920x1200_60" : 1920 x 1200 @ 60.0 Hz (from: EDID)
[ 863.046] (II) NVIDIA(GPU-0): "1680x1050" : 1680 x 1050 @ 60.0 Hz (from: EDID)
[ 863.046] (II) NVIDIA(GPU-0): "1680x1050_60" : 1680 x 1050 @ 60.0 Hz (from: EDID)
[ 863.046] (II) NVIDIA(GPU-0): "1600x1200" : 1600 x 1200 @ 60.0 Hz (from: EDID)
[ 863.046] (II) NVIDIA(GPU-0): "1600x1200_60" : 1600 x 1200 @ 60.0 Hz (from: EDID)
[ 863.046] (II) NVIDIA(GPU-0): "1440x900" : 1440 x 900 @ 75.0 Hz (from: EDID)
[ 863.046] (II) NVIDIA(GPU-0): "1440x900_75" : 1440 x 900 @ 75.0 Hz (from: EDID)
[ 863.046] (II) NVIDIA(GPU-0): "1440x900_60" : 1440 x 900 @ 59.9 Hz (from: EDID)
[ 863.046] (II) NVIDIA(GPU-0): "1280x1024" : 1280 x 1024 @ 75.0 Hz (from: EDID)
[ 863.046] (II) NVIDIA(GPU-0): "1280x1024_75" : 1280 x 1024 @ 75.0 Hz (from: EDID)
[ 863.046] (II) NVIDIA(GPU-0): "1280x960" : 1280 x 960 @ 60.0 Hz (from: EDID)
[ 863.046] (II) NVIDIA(GPU-0): "1280x960_60" : 1280 x 960 @ 60.0 Hz (from: EDID)
[ 863.046] (II) NVIDIA(GPU-0): "1280x720" : 1280 x 720 @ 60.0 Hz (from: EDID)
[ 863.046] (II) NVIDIA(GPU-0): "1280x720_60" : 1280 x 720 @ 60.0 Hz (from: EDID)
[ 863.046] (II) NVIDIA(GPU-0): "1152x864" : 1152 x 864 @ 60.0 Hz (from: EDID)
[ 863.046] (II) NVIDIA(GPU-0): "1152x864_60" : 1152 x 864 @ 60.0 Hz (from: EDID)
[ 863.046] (II) NVIDIA(GPU-0): "1024x768" : 1024 x 768 @ 75.0 Hz (from: EDID)
[ 863.046] (II) NVIDIA(GPU-0): "1024x768_75" : 1024 x 768 @ 75.0 Hz (from: EDID)
[ 863.046] (II) NVIDIA(GPU-0): "1024x768_70" : 1024 x 768 @ 70.1 Hz (from: EDID)
[ 863.046] (II) NVIDIA(GPU-0): "1024x768_60" : 1024 x 768 @ 60.0 Hz (from: EDID)
[ 863.046] (II) NVIDIA(GPU-0): "800x600" : 800 x 600 @ 75.0 Hz (from: EDID)
[ 863.046] (II) NVIDIA(GPU-0): "800x600_75" : 800 x 600 @ 75.0 Hz (from: EDID)
[ 863.046] (II) NVIDIA(GPU-0): "800x600_72" : 800 x 600 @ 72.2 Hz (from: EDID)
[ 863.046] (II) NVIDIA(GPU-0): "800x600_60" : 800 x 600 @ 60.3 Hz (from: EDID)
[ 863.046] (II) NVIDIA(GPU-0): "800x600_56" : 800 x 600 @ 56.2 Hz (from: EDID)
[ 863.046] (II) NVIDIA(GPU-0): "640x480" : 640 x 480 @ 75.0 Hz (from: EDID)
[ 863.046] (II) NVIDIA(GPU-0): "640x480_75" : 640 x 480 @ 75.0 Hz (from: EDID)
[ 863.046] (II) NVIDIA(GPU-0): "640x480_72" : 640 x 480 @ 72.0 Hz (from: EDID)
[ 863.046] (II) NVIDIA(GPU-0): "640x480_60" : 640 x 480 @ 59.9 Hz (from: EDID)
[ 863.046] (II) NVIDIA(GPU-0): --- End of ModePool for Philips 240B (DFP-0): ---
[ 863.046] (II) NVIDIA(GPU-0):
[ 863.046] (II) NVIDIA(0): Display device(s) assigned to X screen 0:
[ 863.046] (II) NVIDIA(0): CRT-0
[ 863.046] (II) NVIDIA(0): Philips 240B (DFP-0)
[ 863.046] (II) NVIDIA(0): DFP-1
[ 863.046] (II) NVIDIA(0): DFP-2
[ 863.046] (II) NVIDIA(0): Using MetaMode string: "DFP: 1920x1200 +0+0"
[ 863.046] (II) NVIDIA(0): Requested modes:
[ 863.046] (II) NVIDIA(0): "DFP:1920x1200+0+0"
[ 863.046] (II) NVIDIA(0): Validated MetaModes:
[ 863.046] (II) NVIDIA(0): MetaMode "DFP:1920x1200+0+0":
[ 863.046] (II) NVIDIA(0): Size: 1920 x 1200
[ 863.046] (II) NVIDIA(0): Philips 240B (DFP-0): "1920x1200"
[ 863.046] (II) NVIDIA(0): Size : 1920 x 1200
[ 863.046] (II) NVIDIA(0): Offset : +0 +0
[ 863.046] (II) NVIDIA(0): Panning Domain: @ 1920 x 1200
[ 863.046] (II) NVIDIA(0): Virtual screen size determined to be 1920 x 1200
[ 863.046] (II) NVIDIA(0): Adding implicit MetaMode: "DVI-I-2: 1680x1050"
[ 863.046] (II) NVIDIA(0): Adding implicit MetaMode: "DVI-I-2: 1600x1200"
[ 863.046] (II) NVIDIA(0): Adding implicit MetaMode: "DVI-I-2: 1440x900"
[ 863.046] (II) NVIDIA(0): Adding implicit MetaMode: "DVI-I-2: 1440x900_60"
[ 863.046] (II) NVIDIA(0): Adding implicit MetaMode: "DVI-I-2: 1280x1024"
[ 863.046] (II) NVIDIA(0): Adding implicit MetaMode: "DVI-I-2: 1280x960"
[ 863.046] (II) NVIDIA(0): Adding implicit MetaMode: "DVI-I-2: 1280x720"
[ 863.047] (II) NVIDIA(0): Adding implicit MetaMode: "DVI-I-2: 1152x864"
[ 863.047] (II) NVIDIA(0): Adding implicit MetaMode: "DVI-I-2: 1024x768"
[ 863.047] (II) NVIDIA(0): Adding implicit MetaMode: "DVI-I-2: 1024x768_70"
[ 863.047] (II) NVIDIA(0): Adding implicit MetaMode: "DVI-I-2: 1024x768_60"
[ 863.047] (II) NVIDIA(0): Adding implicit MetaMode: "DVI-I-2: 800x600"
[ 863.047] (II) NVIDIA(0): Adding implicit MetaMode: "DVI-I-2: 800x600_72"
[ 863.047] (II) NVIDIA(0): Adding implicit MetaMode: "DVI-I-2: 800x600_60"
[ 863.047] (II) NVIDIA(0): Adding implicit MetaMode: "DVI-I-2: 800x600_56"
[ 863.047] (II) NVIDIA(0): Adding implicit MetaMode: "DVI-I-2: 640x480"
[ 863.047] (II) NVIDIA(0): Adding implicit MetaMode: "DVI-I-2: 640x480_72"
[ 863.047] (II) NVIDIA(0): Adding implicit MetaMode: "DVI-I-2: 640x480_60"
[ 863.047] (II) NVIDIA(0): Adding implicit MetaMode: "DVI-I-2: nvidia-auto-select { ViewPortIn = 1920 x 1080, ViewPortOut = 1920 x 1080 + 0 + 60 }"
[ 863.077] (II) NVIDIA(0): Computing DPI using physical size from Philips 240B (DFP-0)'s
[ 863.077] (II) NVIDIA(0): EDID and first mode to be programmed on Philips 240B
[ 863.077] (II) NVIDIA(0): (DFP-0):
[ 863.077] (II) NVIDIA(0): width : 1920 pixels 520 mm (DPI: 93)
[ 863.077] (II) NVIDIA(0): height : 1200 pixels 320 mm (DPI: 95)
[ 863.077] (--) NVIDIA(0): DPI set to (93, 95); computed from "UseEdidDpi" X config
[ 863.077] (--) NVIDIA(0): option
[ 863.077] (**) NVIDIA(1): Depth 24, (--) framebuffer bpp 32
[ 863.077] (==) NVIDIA(1): RGB weight 888
[ 863.077] (==) NVIDIA(1): Default visual is TrueColor
[ 863.077] (==) NVIDIA(1): Using gamma correction (1.0, 1.0, 1.0)
[ 863.077] (**) NVIDIA(1): Option "Stereo" "0"
[ 863.077] (**) NVIDIA(1): Option "TwinViewXineramaInfoOrder" "CRT-1"
[ 863.077] (**) NVIDIA(1): Option "MultiGPU" "0"
[ 863.077] (**) NVIDIA(1): Option "FlatPanelProperties" "Scaling = Native, Dithering = Disabled"
[ 863.077] (==) NVIDIA(1): Using HW cursor
[ 863.077] (**) NVIDIA(1): Stereo disabled by request
[ 863.077] (==) NVIDIA(1): Video key set to default value of 0x101fe
[ 863.077] (**) NVIDIA(1): NVIDIA Multi-GPU disabled.
[ 863.077] (WW) NVIDIA(1): Unrecognized FlatPanelProperties property "Scaling";
[ 863.077] (WW) NVIDIA(1): ignoring.
[ 863.077] (==) NVIDIA(1): Not mapping the primary surface by default.
[ 863.077] (II) NVIDIA(1): NVIDIA GPU GeForce GTX 560 (GF114) at PCI:1:0:0 (GPU-0)
[ 863.077] (--) NVIDIA(1): Memory: 1048576 kBytes
[ 863.077] (II) NVIDIA(1): Board ID: 0xd207
[ 863.077] (II) NVIDIA(1): Chip SKU: 325
[ 863.077] (II) NVIDIA(1): Project: 1041
[ 863.077] (II) NVIDIA(1): Project SKU: 0050
[ 863.077] (II) NVIDIA(1): GPU RAM Type: GDDR5
[ 863.077] (--) NVIDIA(1): VideoBIOS: 70.24.21.00.00
[ 863.077] (--) NVIDIA(1): Found 2 heads on board
[ 863.077] (II) NVIDIA(1): Supported display device(s): CRT-0, CRT-1, DFP-0, DFP-1,
[ 863.077] (II) NVIDIA(1): DFP-2
[ 863.077] (II) NVIDIA(1): Bus detected as PCI Express
[ 863.077] (II) NVIDIA(1): Detected PCI Express Link width: 16X
[ 863.077] (II) NVIDIA(1): DFP scaling is supported on this GPU
[ 863.077] (II) NVIDIA(1): SPS : 2
[ 863.077] (II) NVIDIA(1): User configuration of GPU PowerMizer is supported
[ 863.078] (II) NVIDIA(1):
[ 863.080] (--) NVIDIA(1): Valid display device(s) on GeForce GTX 560 at PCI:1:0:0
[ 863.080] (--) NVIDIA(1): CRT-0
[ 863.080] (--) NVIDIA(1): Samsung SyncMaster (CRT-1) (connected)
[ 863.080] (--) NVIDIA(1): Philips 240B (DFP-0) (connected)
[ 863.080] (--) NVIDIA(1): DFP-1
[ 863.080] (--) NVIDIA(1): DFP-2
[ 863.080] (--) NVIDIA(1): CRT-0: 400.0 MHz maximum pixel clock
[ 863.080] (--) NVIDIA(1): Name Aliases for CRT-0:
[ 863.080] (--) NVIDIA(1): CRT
[ 863.080] (--) NVIDIA(1): CRT-0
[ 863.080] (--) NVIDIA(1): DPY-0
[ 863.080] (--) NVIDIA(1): DVI-I-0
[ 863.080] (--) NVIDIA(1): Samsung SyncMaster (CRT-1): 400.0 MHz maximum pixel clock
[ 863.080] (--) NVIDIA(1): Name Aliases for Samsung SyncMaster (CRT-1):
[ 863.080] (--) NVIDIA(1): CRT
[ 863.080] (--) NVIDIA(1): CRT-1
[ 863.080] (--) NVIDIA(1): DPY-1
[ 863.080] (--) NVIDIA(1): DVI-I-1
[ 863.080] (--) NVIDIA(1): DPY-EDID-9ead07ed-d741-8658-681f-e8ba781e38a6
[ 863.080] (--) NVIDIA(1): Philips 240B (DFP-0): 330.0 MHz maximum pixel clock
[ 863.080] (--) NVIDIA(1): Philips 240B (DFP-0): Internal Dual Link TMDS
[ 863.080] (--) NVIDIA(1): Philips 240B (DFP-0): Native FlatPanel Scaling is supported
[ 863.080] (--) NVIDIA(1): Philips 240B (DFP-0): DFP modes are not limited to 60 Hz refresh rate
[ 863.080] (--) NVIDIA(1): Philips 240B (DFP-0): DFP is not internal to notebook
[ 863.080] (--) NVIDIA(1): Name Aliases for Philips 240B (DFP-0):
[ 863.080] (--) NVIDIA(1): DFP
[ 863.080] (--) NVIDIA(1): DFP-0
[ 863.080] (--) NVIDIA(1): DPY-2
[ 863.080] (--) NVIDIA(1): DVI-I-2
[ 863.080] (--) NVIDIA(1): DPY-EDID-4f6171bc-7024-f031-ae50-02becfca15a1
[ 863.080] (--) NVIDIA(1): DFP-1: 165.0 MHz maximum pixel clock
[ 863.080] (--) NVIDIA(1): DFP-1: Internal Single Link TMDS
[ 863.080] (--) NVIDIA(1): DFP-1: DFP modes are not limited to 60 Hz refresh rate
[ 863.080] (--) NVIDIA(1): DFP-1: DFP is not internal to notebook
[ 863.080] (--) NVIDIA(1): Name Aliases for DFP-1:
[ 863.080] (--) NVIDIA(1): DFP
[ 863.080] (--) NVIDIA(1): DFP-1
[ 863.080] (--) NVIDIA(1): DPY-3
[ 863.080] (--) NVIDIA(1): HDMI-0
[ 863.080] (--) NVIDIA(1): DFP-2: 330.0 MHz maximum pixel clock
[ 863.080] (--) NVIDIA(1): DFP-2: Internal Single Link TMDS
[ 863.080] (--) NVIDIA(1): DFP-2: DFP modes are not limited to 60 Hz refresh rate
[ 863.080] (--) NVIDIA(1): DFP-2: DFP is not internal to notebook
[ 863.080] (--) NVIDIA(1): Name Aliases for DFP-2:
[ 863.080] (--) NVIDIA(1): DFP
[ 863.080] (--) NVIDIA(1): DFP-2
[ 863.080] (--) NVIDIA(1): DPY-4
[ 863.080] (--) NVIDIA(1): DVI-I-3
[ 863.080] (--) NVIDIA(1):
[ 863.080] (--) NVIDIA(1): --- EDID for Samsung SyncMaster (CRT-1) ---
[ 863.080] (--) NVIDIA(1): EDID Version : 1.3
[ 863.080] (--) NVIDIA(1): Manufacturer : SAM
[ 863.080] (--) NVIDIA(1): Monitor Name : Samsung SyncMaster
[ 863.080] (--) NVIDIA(1): Product ID : 0x01b7
[ 863.080] (--) NVIDIA(1): 32-bit Serial Number : 0x48413137
[ 863.080] (--) NVIDIA(1): Serial Number String : HSGL506346
[ 863.080] (--) NVIDIA(1): Manufacture Date : 2006, week 22
[ 863.080] (--) NVIDIA(1): DPMS Capabilities : Active Off
[ 863.080] (--) NVIDIA(1): Input Type : Analog
[ 863.080] (--) NVIDIA(1): Prefer first detailed timing : Yes
[ 863.080] (--) NVIDIA(1): Supports GTF : No
[ 863.080] (--) NVIDIA(1): Maximum Image Size : 340 mm x 270 mm
[ 863.080] (--) NVIDIA(1): Valid HSync Range : 30.0 kHz - 81.0 kHz
[ 863.080] (--) NVIDIA(1): Valid VRefresh Range : 56.0 Hz - 75.0 Hz
[ 863.080] (--) NVIDIA(1): EDID maximum pixel clock : 140.0 MHz
[ 863.080] (--) NVIDIA(1):
[ 863.080] (--) NVIDIA(1): Standard Timings:
[ 863.080] (--) NVIDIA(1): 1280 x 1024 @ 60 Hz
[ 863.080] (--) NVIDIA(1): 1280 x 960 @ 60 Hz
[ 863.080] (--) NVIDIA(1): 1152 x 864 @ 75 Hz
[ 863.080] (--) NVIDIA(1):
[ 863.080] (--) NVIDIA(1): Detailed Timings:
[ 863.080] (--) NVIDIA(1): 1280 x 1024 @ 60 Hz
[ 863.080] (--) NVIDIA(1): Pixel Clock : 108.00 MHz
[ 863.080] (--) NVIDIA(1): HRes, HSyncStart : 1280, 1328
[ 863.080] (--) NVIDIA(1): HSyncEnd, HTotal : 1440, 1688
[ 863.080] (--) NVIDIA(1): VRes, VSyncStart : 1024, 1025
[ 863.080] (--) NVIDIA(1): VSyncEnd, VTotal : 1028, 1066
[ 863.080] (--) NVIDIA(1): H/V Polarity : +/+
[ 863.080] (--) NVIDIA(1): Image Size : 338 mm x 270 mm
[ 863.080] (--) NVIDIA(1):
[ 863.080] (--) NVIDIA(1): Established Timings:
[ 863.080] (--) NVIDIA(1): 640 x 480 @ 60 Hz
[ 863.080] (--) NVIDIA(1): 640 x 480 @ 72 Hz
[ 863.080] (--) NVIDIA(1): 640 x 480 @ 75 Hz
[ 863.080] (--) NVIDIA(1): 800 x 600 @ 56 Hz
[ 863.080] (--) NVIDIA(1): 800 x 600 @ 60 Hz
[ 863.080] (--) NVIDIA(1): 800 x 600 @ 72 Hz
[ 863.080] (--) NVIDIA(1): 800 x 600 @ 75 Hz
[ 863.080] (--) NVIDIA(1): 1024 x 768 @ 60 Hz
[ 863.080] (--) NVIDIA(1): 1024 x 768 @ 70 Hz
[ 863.080] (--) NVIDIA(1): 1024 x 768 @ 75 Hz
[ 863.080] (--) NVIDIA(1): 1280 x 1024 @ 75 Hz
[ 863.080] (--) NVIDIA(1):
[ 863.080] (--) NVIDIA(1): --- End of EDID for Samsung SyncMaster (CRT-1) ---
[ 863.080] (--) NVIDIA(1):
[ 863.080] (--) NVIDIA(1):
[ 863.080] (--) NVIDIA(1): --- EDID for Philips 240B (DFP-0) ---
[ 863.080] (--) NVIDIA(1): EDID Version : 1.3
[ 863.080] (--) NVIDIA(1): Manufacturer : PHL
[ 863.080] (--) NVIDIA(1): Monitor Name : Philips 240B
[ 863.080] (--) NVIDIA(1): Product ID : 0x087f
[ 863.080] (--) NVIDIA(1): 32-bit Serial Number : 0x00004921
[ 863.080] (--) NVIDIA(1): Serial Number String : DL41131018721
[ 863.080] (--) NVIDIA(1): Manufacture Date : 2011, week 31
[ 863.080] (--) NVIDIA(1): DPMS Capabilities : Standby Suspend Active Off
[ 863.080] (--) NVIDIA(1): Input Type : Digital
[ 863.080] (--) NVIDIA(1): Prefer first detailed timing : Yes
[ 863.080] (--) NVIDIA(1): Supports GTF : No
[ 863.080] (--) NVIDIA(1): Maximum Image Size : 520 mm x 320 mm
[ 863.080] (--) NVIDIA(1): Valid HSync Range : 24.0 kHz - 94.0 kHz
[ 863.080] (--) NVIDIA(1): Valid VRefresh Range : 48.0 Hz - 85.0 Hz
[ 863.080] (--) NVIDIA(1): EDID maximum pixel clock : 170.0 MHz
[ 863.080] (--) NVIDIA(1): EDID bits per component : 0
[ 863.080] (--) NVIDIA(1):
[ 863.080] (--) NVIDIA(1): Standard Timings:
[ 863.080] (--) NVIDIA(1): 1152 x 864 @ 60 Hz
[ 863.080] (--) NVIDIA(1): 1280 x 960 @ 60 Hz
[ 863.080] (--) NVIDIA(1): 1280 x 720 @ 60 Hz
[ 863.080] (--) NVIDIA(1): 1440 x 900 @ 60 Hz
[ 863.080] (--) NVIDIA(1): 1440 x 900 @ 75 Hz
[ 863.080] (--) NVIDIA(1): 1600 x 1200 @ 60 Hz
[ 863.080] (--) NVIDIA(1): 1680 x 1050 @ 60 Hz
[ 863.080] (--) NVIDIA(1):
[ 863.080] (--) NVIDIA(1): Detailed Timings:
[ 863.080] (--) NVIDIA(1): 1920 x 1200 @ 60 Hz
[ 863.080] (--) NVIDIA(1): Pixel Clock : 154.00 MHz
[ 863.080] (--) NVIDIA(1): HRes, HSyncStart : 1920, 1968
[ 863.080] (--) NVIDIA(1): HSyncEnd, HTotal : 2000, 2080
[ 863.080] (--) NVIDIA(1): VRes, VSyncStart : 1200, 1203
[ 863.080] (--) NVIDIA(1): VSyncEnd, VTotal : 1209, 1235
[ 863.080] (--) NVIDIA(1): H/V Polarity : +/-
[ 863.080] (--) NVIDIA(1): Image Size : 519 mm x 324 mm
[ 863.080] (--) NVIDIA(1):
[ 863.080] (--) NVIDIA(1): Established Timings:
[ 863.080] (--) NVIDIA(1): 640 x 480 @ 60 Hz
[ 863.080] (--) NVIDIA(1): 640 x 480 @ 72 Hz
[ 863.080] (--) NVIDIA(1): 640 x 480 @ 75 Hz
[ 863.080] (--) NVIDIA(1): 800 x 600 @ 56 Hz
[ 863.080] (--) NVIDIA(1): 800 x 600 @ 60 Hz
[ 863.080] (--) NVIDIA(1): 800 x 600 @ 72 Hz
[ 863.080] (--) NVIDIA(1): 800 x 600 @ 75 Hz
[ 863.080] (--) NVIDIA(1): 1024 x 768 @ 60 Hz
[ 863.080] (--) NVIDIA(1): 1024 x 768 @ 70 Hz
[ 863.080] (--) NVIDIA(1): 1024 x 768 @ 75 Hz
[ 863.080] (--) NVIDIA(1): 1280 x 1024 @ 75 Hz
[ 863.080] (--) NVIDIA(1):
[ 863.080] (--) NVIDIA(1): --- End of EDID for Philips 240B (DFP-0) ---
[ 863.080] (--) NVIDIA(1):
[ 863.080] (**) NVIDIA(1): Using HorizSync/VertRefresh ranges from the EDID for display
[ 863.080] (**) NVIDIA(1): device Samsung SyncMaster (CRT-1) (Using EDID frequencies
[ 863.080] (**) NVIDIA(1): has been enabled on all display devices.)
[ 863.081] (II) NVIDIA(1): Frequency information for Samsung SyncMaster (CRT-1):
[ 863.081] (II) NVIDIA(1): HorizSync : 30.000-81.000 kHz
[ 863.081] (II) NVIDIA(1): VertRefresh : 56.000-75.000 Hz
[ 863.081] (II) NVIDIA(1): (HorizSync from EDID)
[ 863.081] (II) NVIDIA(1): (VertRefresh from EDID)
[ 863.081] (II) NVIDIA(GPU-0):
[ 863.081] (II) NVIDIA(GPU-0): --- Modes in ModePool for Samsung SyncMaster (CRT-1) ---
[ 863.081] (II) NVIDIA(GPU-0): "nvidia-auto-select" : 1280 x 1024 @ 60.0 Hz (from: EDID)
[ 863.081] (II) NVIDIA(GPU-0): "1280x1024" : 1280 x 1024 @ 60.0 Hz (from: EDID)
[ 863.081] (II) NVIDIA(GPU-0): "1280x1024_60" : 1280 x 1024 @ 60.0 Hz (from: EDID)
[ 863.081] (II) NVIDIA(GPU-0): "1280x1024_75" : 1280 x 1024 @ 75.0 Hz (from: EDID)
[ 863.081] (II) NVIDIA(GPU-0): "1280x960" : 1280 x 960 @ 60.0 Hz (from: EDID)
[ 863.081] (II) NVIDIA(GPU-0): "1280x960_60" : 1280 x 960 @ 60.0 Hz (from: EDID)
[ 863.081] (II) NVIDIA(GPU-0): "1152x864" : 1152 x 864 @ 75.0 Hz (from: EDID)
[ 863.081] (II) NVIDIA(GPU-0): "1152x864_75" : 1152 x 864 @ 75.0 Hz (from: EDID)
[ 863.081] (II) NVIDIA(GPU-0): "1024x768" : 1024 x 768 @ 75.0 Hz (from: EDID)
[ 863.081] (II) NVIDIA(GPU-0): "1024x768_75" : 1024 x 768 @ 75.0 Hz (from: EDID)
[ 863.081] (II) NVIDIA(GPU-0): "1024x768_70" : 1024 x 768 @ 70.1 Hz (from: EDID)
[ 863.081] (II) NVIDIA(GPU-0): "1024x768_60" : 1024 x 768 @ 60.0 Hz (from: EDID)
[ 863.082] (II) NVIDIA(GPU-0): "800x600" : 800 x 600 @ 75.0 Hz (from: EDID)
[ 863.082] (II) NVIDIA(GPU-0): "800x600_75" : 800 x 600 @ 75.0 Hz (from: EDID)
[ 863.082] (II) NVIDIA(GPU-0): "800x600_72" : 800 x 600 @ 72.2 Hz (from: EDID)
[ 863.082] (II) NVIDIA(GPU-0): "800x600_60" : 800 x 600 @ 60.3 Hz (from: EDID)
[ 863.082] (II) NVIDIA(GPU-0): "800x600_56" : 800 x 600 @ 56.2 Hz (from: EDID)
[ 863.082] (II) NVIDIA(GPU-0): "640x480" : 640 x 480 @ 75.0 Hz (from: EDID)
[ 863.082] (II) NVIDIA(GPU-0): "640x480_75" : 640 x 480 @ 75.0 Hz (from: EDID)
[ 863.082] (II) NVIDIA(GPU-0): "640x480_72" : 640 x 480 @ 72.0 Hz (from: EDID)
[ 863.082] (II) NVIDIA(GPU-0): "640x480_60" : 640 x 480 @ 59.9 Hz (from: EDID)
[ 863.082] (II) NVIDIA(GPU-0): --- End of ModePool for Samsung SyncMaster (CRT-1): ---
[ 863.082] (II) NVIDIA(GPU-0):
[ 863.082] (II) NVIDIA(1): Display device(s) assigned to X screen 1:
[ 863.082] (II) NVIDIA(1): Samsung SyncMaster (CRT-1)
[ 863.082] (II) NVIDIA(1): Using MetaMode string: "CRT: nvidia-auto-select +0+0; CRT:
[ 863.082] (II) NVIDIA(1): 1280x1024_75 +0+0; CRT: 1280x960 +0+0; CRT: 1152x864 +0+0;
[ 863.082] (II) NVIDIA(1): CRT: 1024x768 +0+0; CRT: 1024x768_70 +0+0; CRT:
[ 863.082] (II) NVIDIA(1): 1024x768_60 +0+0; CRT: 800x600 +0+0; CRT: 800x600_72 +0+0;
[ 863.082] (II) NVIDIA(1): CRT: 800x600_60 +0+0; CRT: 800x600_56 +0+0; CRT: 640x480
[ 863.082] (II) NVIDIA(1): +0+0; CRT: 640x480_72 +0+0; CRT: 640x480_60 +0+0; CRT:
[ 863.082] (II) NVIDIA(1): nvidia-auto-select +0+0 {viewportout=1280x720+0+152}"
[ 863.082] (II) NVIDIA(1): Requested modes:
[ 863.082] (II) NVIDIA(1): "CRT:nvidia-auto-select+0+0"
[ 863.082] (II) NVIDIA(1): "CRT:1280x1024_75+0+0"
[ 863.082] (II) NVIDIA(1): "CRT:1280x960+0+0"
[ 863.082] (II) NVIDIA(1): "CRT:1152x864+0+0"
[ 863.082] (II) NVIDIA(1): "CRT:1024x768+0+0"
[ 863.082] (II) NVIDIA(1): "CRT:1024x768_70+0+0"
[ 863.082] (II) NVIDIA(1): "CRT:1024x768_60+0+0"
[ 863.082] (II) NVIDIA(1): "CRT:800x600+0+0"
[ 863.082] (II) NVIDIA(1): "CRT:800x600_72+0+0"
[ 863.082] (II) NVIDIA(1): "CRT:800x600_60+0+0"
[ 863.082] (II) NVIDIA(1): "CRT:800x600_56+0+0"
[ 863.082] (II) NVIDIA(1): "CRT:640x480+0+0"
[ 863.082] (II) NVIDIA(1): "CRT:640x480_72+0+0"
[ 863.082] (II) NVIDIA(1): "CRT:640x480_60+0+0"
[ 863.082] (II) NVIDIA(1): "CRT:nvidia-auto-select+0+0{viewportout=1280x720+0+152}"
[ 863.082] (II) NVIDIA(1): Validated MetaModes:
[ 863.082] (II) NVIDIA(1): MetaMode "CRT:nvidia-auto-select+0+0":
[ 863.082] (II) NVIDIA(1): Size: 1280 x 1024
[ 863.082] (II) NVIDIA(1): Samsung SyncMaster (CRT-1): "nvidia-auto-select"
[ 863.082] (II) NVIDIA(1): Size : 1280 x 1024
[ 863.082] (II) NVIDIA(1): Offset : +0 +0
[ 863.082] (II) NVIDIA(1): Panning Domain: @ 1280 x 1024
[ 863.082] (II) NVIDIA(1): MetaMode "CRT:1280x1024_75+0+0":
[ 863.082] (II) NVIDIA(1): Size: 1280 x 1024
[ 863.082] (II) NVIDIA(1): Samsung SyncMaster (CRT-1): "1280x1024_75"
[ 863.082] (II) NVIDIA(1): Size : 1280 x 1024
[ 863.082] (II) NVIDIA(1): Offset : +0 +0
[ 863.082] (II) NVIDIA(1): Panning Domain: @ 1280 x 1024
[ 863.082] (II) NVIDIA(1): MetaMode "CRT:1280x960+0+0":
[ 863.082] (II) NVIDIA(1): Size: 1280 x 960
[ 863.082] (II) NVIDIA(1): Samsung SyncMaster (CRT-1): "1280x960"
[ 863.082] (II) NVIDIA(1): Size : 1280 x 960
[ 863.082] (II) NVIDIA(1): Offset : +0 +0
[ 863.082] (II) NVIDIA(1): Panning Domain: @ 1280 x 960
[ 863.082] (II) NVIDIA(1): MetaMode "CRT:1152x864+0+0":
[ 863.082] (II) NVIDIA(1): Size: 1152 x 864
[ 863.082] (II) NVIDIA(1): Samsung SyncMaster (CRT-1): "1152x864"
[ 863.082] (II) NVIDIA(1): Size : 1152 x 864
[ 863.082] (II) NVIDIA(1): Offset : +0 +0
[ 863.082] (II) NVIDIA(1): Panning Domain: @ 1152 x 864
[ 863.082] (II) NVIDIA(1): MetaMode "CRT:1024x768+0+0":
[ 863.082] (II) NVIDIA(1): Size: 1024 x 768
[ 863.082] (II) NVIDIA(1): Samsung SyncMaster (CRT-1): "1024x768"
[ 863.082] (II) NVIDIA(1): Size : 1024 x 768
[ 863.082] (II) NVIDIA(1): Offset : +0 +0
[ 863.082] (II) NVIDIA(1): Panning Domain: @ 1024 x 768
[ 863.082] (II) NVIDIA(1): MetaMode "CRT:1024x768_70+0+0":
[ 863.082] (II) NVIDIA(1): Size: 1024 x 768
[ 863.082] (II) NVIDIA(1): Samsung SyncMaster (CRT-1): "1024x768_70"
[ 863.082] (II) NVIDIA(1): Size : 1024 x 768
[ 863.082] (II) NVIDIA(1): Offset : +0 +0
[ 863.082] (II) NVIDIA(1): Panning Domain: @ 1024 x 768
[ 863.082] (II) NVIDIA(1): MetaMode "CRT:1024x768_60+0+0":
[ 863.082] (II) NVIDIA(1): Size: 1024 x 768
[ 863.082] (II) NVIDIA(1): Samsung SyncMaster (CRT-1): "1024x768_60"
[ 863.082] (II) NVIDIA(1): Size : 1024 x 768
[ 863.082] (II) NVIDIA(1): Offset : +0 +0
[ 863.082] (II) NVIDIA(1): Panning Domain: @ 1024 x 768
[ 863.082] (II) NVIDIA(1): MetaMode "CRT:800x600+0+0":
[ 863.082] (II) NVIDIA(1): Size: 800 x 600
[ 863.082] (II) NVIDIA(1): Samsung SyncMaster (CRT-1): "800x600"
[ 863.082] (II) NVIDIA(1): Size : 800 x 600
[ 863.082] (II) NVIDIA(1): Offset : +0 +0
[ 863.082] (II) NVIDIA(1): Panning Domain: @ 800 x 600
[ 863.082] (II) NVIDIA(1): MetaMode "CRT:800x600_72+0+0":
[ 863.082] (II) NVIDIA(1): Size: 800 x 600
[ 863.082] (II) NVIDIA(1): Samsung SyncMaster (CRT-1): "800x600_72"
[ 863.082] (II) NVIDIA(1): Size : 800 x 600
[ 863.082] (II) NVIDIA(1): Offset : +0 +0
[ 863.082] (II) NVIDIA(1): Panning Domain: @ 800 x 600
[ 863.082] (II) NVIDIA(1): MetaMode "CRT:800x600_60+0+0":
[ 863.082] (II) NVIDIA(1): Size: 800 x 600
[ 863.082] (II) NVIDIA(1): Samsung SyncMaster (CRT-1): "800x600_60"
[ 863.082] (II) NVIDIA(1): Size : 800 x 600
[ 863.082] (II) NVIDIA(1): Offset : +0 +0
[ 863.082] (II) NVIDIA(1): Panning Domain: @ 800 x 600
[ 863.082] (II) NVIDIA(1): MetaMode "CRT:800x600_56+0+0":
[ 863.082] (II) NVIDIA(1): Size: 800 x 600
[ 863.082] (II) NVIDIA(1): Samsung SyncMaster (CRT-1): "800x600_56"
[ 863.082] (II) NVIDIA(1): Size : 800 x 600
[ 863.082] (II) NVIDIA(1): Offset : +0 +0
[ 863.082] (II) NVIDIA(1): Panning Domain: @ 800 x 600
[ 863.082] (II) NVIDIA(1): MetaMode "CRT:640x480+0+0":
[ 863.082] (II) NVIDIA(1): Size: 640 x 480
[ 863.082] (II) NVIDIA(1): Samsung SyncMaster (CRT-1): "640x480"
[ 863.082] (II) NVIDIA(1): Size : 640 x 480
[ 863.082] (II) NVIDIA(1): Offset : +0 +0
[ 863.082] (II) NVIDIA(1): Panning Domain: @ 640 x 480
[ 863.082] (II) NVIDIA(1): MetaMode "CRT:640x480_72+0+0":
[ 863.082] (II) NVIDIA(1): Size: 640 x 480
[ 863.082] (II) NVIDIA(1): Samsung SyncMaster (CRT-1): "640x480_72"
[ 863.082] (II) NVIDIA(1): Size : 640 x 480
[ 863.082] (II) NVIDIA(1): Offset : +0 +0
[ 863.082] (II) NVIDIA(1): Panning Domain: @ 640 x 480
[ 863.083] (II) NVIDIA(1): MetaMode "CRT:640x480_60+0+0":
[ 863.083] (II) NVIDIA(1): Size: 640 x 480
[ 863.083] (II) NVIDIA(1): Samsung SyncMaster (CRT-1): "640x480_60"
[ 863.083] (II) NVIDIA(1): Size : 640 x 480
[ 863.083] (II) NVIDIA(1): Offset : +0 +0
[ 863.083] (II) NVIDIA(1): Panning Domain: @ 640 x 480
[ 863.083] (II) NVIDIA(1): MetaMode "CRT:nvidia-auto-select+0+0{viewportout=1280x720+0+152}":
[ 863.083] (II) NVIDIA(1): Size: 1280 x 720
[ 863.083] (II) NVIDIA(1): Samsung SyncMaster (CRT-1): "nvidia-auto-select"
[ 863.083] (II) NVIDIA(1): Size : 1280 x 720
[ 863.083] (II) NVIDIA(1): Offset : +0 +0
[ 863.083] (II) NVIDIA(1): Panning Domain: @ 1280 x 720
[ 863.083] (II) NVIDIA(1): Virtual screen size determined to be 1280 x 1024
[ 863.085] (II) NVIDIA(1): Computing DPI using physical size from Samsung SyncMaster
[ 863.085] (II) NVIDIA(1): (CRT-1)'s EDID and first mode to be programmed on Samsung
[ 863.085] (II) NVIDIA(1): SyncMaster (CRT-1):
[ 863.085] (II) NVIDIA(1): width : 1280 pixels 340 mm (DPI: 95)
[ 863.085] (II) NVIDIA(1): height : 1024 pixels 270 mm (DPI: 96)
[ 863.085] (--) NVIDIA(1): DPI set to (95, 96); computed from "UseEdidDpi" X config
[ 863.085] (--) NVIDIA(1): option
[ 863.085] (--) Depth 24 pixmap format is 32 bpp
[ 863.284] (II) NVIDIA(GPU-1): Display (DENON, Ltd. DENON-AVAMP (DFP-1)) does not support
[ 863.284] (II) NVIDIA(GPU-1): NVIDIA 3D Vision stereo.
[ 863.287] (II) NVIDIA(GPU-1):
[ 863.287] (II) NVIDIA(GPU-1): Native mode timings for DENON, Ltd. DENON-AVAMP (DFP-1):
[ 863.287] (II) NVIDIA(GPU-1): 1920 x 1080 @ 60 Hz
[ 863.287] (II) NVIDIA(GPU-1): Pixel Clock : 138.500 MHz
[ 863.287] (II) NVIDIA(GPU-1): HRes, HSyncStart : 1920, 1968
[ 863.287] (II) NVIDIA(GPU-1): HSyncEnd, HTotal : 2000, 2080
[ 863.287] (II) NVIDIA(GPU-1): VRes, VSyncStart : 1080, 1083
[ 863.287] (II) NVIDIA(GPU-1): VSyncEnd, VTotal : 1088, 1111
[ 863.287] (II) NVIDIA(GPU-1): H/V Polarity : +/-
[ 863.287] (II) NVIDIA(GPU-1):
[ 863.291] (II) NVIDIA(GPU-1):
[ 863.291] (II) NVIDIA(GPU-1): --- Modes in ModePool for DENON, Ltd. DENON-AVAMP (DFP-1) ---
[ 863.291] (II) NVIDIA(GPU-1): "nvidia-auto-select" : 1920 x 1080 @ 59.9 Hz (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "1920x1080" : 1920 x 1080 @ 59.9 Hz (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "1920x1080_60" : 1920 x 1080 @ 59.9 Hz (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "1920x1080_60_0" : 1920 x 1080 @ 60.0 Hz (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "1920x1080_60_1" : CEA-861B:#16:1920x1080x59.940Hz/P (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "1920x1080_50" : CEA-861B:#31:1920x1080x50.000Hz/P (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "1920x1080_30" : CEA-861B:#34:1920x1080x29.970Hz/P (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "1920x1080_25" : CEA-861B:#33:1920x1080x25.000Hz/P (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "1920x1080_24" : CEA-861B:#32:1920x1080x23.970Hz/P (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "1920x1080_60i" : 1920 x 1080 @ 60.0 Hz Interlace (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "1920x1080_60i_0" : CEA-861B:#5:1920x1080x59.940Hz/I (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "1920x1080_50i" : CEA-861B:#20:1920x1080x50.000Hz/I (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "1360x768" : 1360 x 768 @ 59.8 Hz (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "1360x768_60" : 1360 x 768 @ 59.8 Hz (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "1280x1024" : 1280 x 1024 @ 60.0 Hz (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "1280x1024_60" : 1280 x 1024 @ 60.0 Hz (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "1280x720" : CEA-861B:#4:1280x720x59.940Hz/P (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "1280x720_60" : CEA-861B:#4:1280x720x59.940Hz/P (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "1280x720_50" : CEA-861B:#19:1280x720x50.000Hz/P (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "1024x768" : 1024 x 768 @ 75.0 Hz (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "1024x768_75" : 1024 x 768 @ 75.0 Hz (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "1024x768_70" : 1024 x 768 @ 70.1 Hz (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "1024x768_60" : 1024 x 768 @ 60.0 Hz (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "800x600" : 800 x 600 @ 75.0 Hz (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "800x600_75" : 800 x 600 @ 75.0 Hz (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "800x600_60" : 800 x 600 @ 60.3 Hz (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "720x576" : CEA-861B:#18:720x576x50.000Hz/P (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "720x576_50" : CEA-861B:#18:720x576x50.000Hz/P (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "720x576_50i" : CEA-861B:#21:1440x576x50.000Hz/I (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "720x480" : 720 x 480 @ 59.9 Hz (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "720x480_60" : 720 x 480 @ 59.9 Hz (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "640x480" : 640 x 480 @ 75.0 Hz (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "640x480_75" : 640 x 480 @ 75.0 Hz (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "640x480_60" : 640 x 480 @ 60.0 Hz (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "640x480_60_0" : 640 x 480 @ 59.9 Hz (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "640x480_60_1" : 640 x 480 @ 59.9 Hz (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "480x576" : CEA-861B:#30:1440x576x50.000Hz/P (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "480x576_50" : CEA-861B:#30:1440x576x50.000Hz/P (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "480x480" : CEA-861B:#14:1440x480x59.940Hz/P (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "480x480_60" : CEA-861B:#14:1440x480x59.940Hz/P (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "411x576" : CEA-861B:#38:2880x576x50.000Hz/P (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "411x576_50" : CEA-861B:#38:2880x576x50.000Hz/P (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "411x480" : CEA-861B:#35:2880x480x59.940Hz/P (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): "411x480_60" : CEA-861B:#35:2880x480x59.940Hz/P (from: EDID)
[ 863.291] (II) NVIDIA(GPU-1): --- End of ModePool for DENON, Ltd. DENON-AVAMP (DFP-1): ---
[ 863.291] (II) NVIDIA(GPU-1):
[ 863.294] (II) NVIDIA(GPU-1): NVIDIA GPU GeForce GT 240 (GT215) at PCI:2:0:0 (GPU-1)
[ 863.294] (--) NVIDIA(GPU-1): Memory: 1048576 kBytes
[ 863.294] (II) NVIDIA(GPU-1): Board ID: 0xca23
[ 863.294] (II) NVIDIA(GPU-1): GPU RAM Type: GDDR3
[ 863.294] (--) NVIDIA(GPU-1): VideoBIOS: 70.15.25.00.00
[ 863.294] (--) NVIDIA(GPU-1): Found 2 heads on board
[ 863.294] (II) NVIDIA(GPU-1): Supported display device(s): CRT-0, CRT-1, DFP-0, DFP-1
[ 863.294] (II) NVIDIA(GPU-1): Bus detected as PCI Express
[ 863.294] (II) NVIDIA(GPU-1): Detected PCI Express Link width: 16X
[ 863.294] (II) NVIDIA(GPU-1): DFP scaling is supported on this GPU
[ 863.294] (II) NVIDIA(GPU-1): SPS : 4
[ 863.294] (II) NVIDIA(GPU-1): User configuration of GPU PowerMizer is supported
[ 863.294] (II) NVIDIA(GPU-1):
[ 863.294] (--) NVIDIA(GPU-1): Valid display device(s) on GeForce GT 240 at PCI:2:0:0
[ 863.294] (--) NVIDIA(GPU-1): CRT-0
[ 863.294] (--) NVIDIA(GPU-1): CRT-1
[ 863.294] (--) NVIDIA(GPU-1): DFP-0
[ 863.294] (--) NVIDIA(GPU-1): DENON, Ltd. DENON-AVAMP (DFP-1) (connected)
[ 863.294] (--) NVIDIA(GPU-1): CRT-0: 480.0 MHz maximum pixel clock
[ 863.294] (--) NVIDIA(GPU-1): Name Aliases for CRT-0:
[ 863.294] (--) NVIDIA(GPU-1): CRT
[ 863.294] (--) NVIDIA(GPU-1): CRT-0
[ 863.294] (--) NVIDIA(GPU-1): DPY-5
[ 863.294] (--) NVIDIA(GPU-1): DVI-I-0
[ 863.294] (--) NVIDIA(GPU-1): CRT-1: 400.0 MHz maximum pixel clock
[ 863.294] (--) NVIDIA(GPU-1): Name Aliases for CRT-1:
[ 863.294] (--) NVIDIA(GPU-1): CRT
[ 863.294] (--) NVIDIA(GPU-1): CRT-1
[ 863.294] (--) NVIDIA(GPU-1): DPY-6
[ 863.294] (--) NVIDIA(GPU-1): VGA-0
[ 863.294] (--) NVIDIA(GPU-1): DFP-0: 330.0 MHz maximum pixel clock
[ 863.294] (--) NVIDIA(GPU-1): DFP-0: Internal Single Link TMDS
[ 863.294] (--) NVIDIA(GPU-1): DFP-0: DFP modes are not limited to 60 Hz refresh rate
[ 863.294] (--) NVIDIA(GPU-1): DFP-0: DFP is not internal to notebook
[ 863.294] (--) NVIDIA(GPU-1): Name Aliases for DFP-0:
[ 863.294] (--) NVIDIA(GPU-1): DFP
[ 863.294] (--) NVIDIA(GPU-1): DFP-0
[ 863.294] (--) NVIDIA(GPU-1): DPY-7
[ 863.294] (--) NVIDIA(GPU-1): DVI-I-1
[ 863.294] (--) NVIDIA(GPU-1): DENON, Ltd. DENON-AVAMP (DFP-1): 165.0 MHz maximum pixel clock
[ 863.294] (--) NVIDIA(GPU-1): DENON, Ltd. DENON-AVAMP (DFP-1): Internal Single Link TMDS
[ 863.294] (--) NVIDIA(GPU-1): DENON, Ltd. DENON-AVAMP (DFP-1): Native FlatPanel Scaling is supported
[ 863.294] (--) NVIDIA(GPU-1): DENON, Ltd. DENON-AVAMP (DFP-1): DFP modes are not limited to 60 Hz refresh rate
[ 863.294] (--) NVIDIA(GPU-1): DENON, Ltd. DENON-AVAMP (DFP-1): DFP is not internal to notebook
[ 863.294] (--) NVIDIA(GPU-1): Name Aliases for DENON, Ltd. DENON-AVAMP (DFP-1):
[ 863.294] (--) NVIDIA(GPU-1): DFP
[ 863.294] (--) NVIDIA(GPU-1): DFP-1
[ 863.294] (--) NVIDIA(GPU-1): DPY-8
[ 863.294] (--) NVIDIA(GPU-1): HDMI-0
[ 863.294] (--) NVIDIA(GPU-1): DPY-EDID-b6642c83-406b-d284-c9ae-702a665c6761
[ 863.294] (--) NVIDIA(GPU-1):
[ 863.294] (--) NVIDIA(GPU-1): --- EDID for DENON, Ltd. DENON-AVAMP (DFP-1) ---
[ 863.294] (--) NVIDIA(GPU-1): EDID Version : 1.3
[ 863.294] (--) NVIDIA(GPU-1): Manufacturer : DON
[ 863.294] (--) NVIDIA(GPU-1): Monitor Name : DENON, Ltd. DENON-AVAMP
[ 863.294] (--) NVIDIA(GPU-1): Product ID : 0x0014
[ 863.294] (--) NVIDIA(GPU-1): 32-bit Serial Number : 0x01010101
[ 863.294] (--) NVIDIA(GPU-1): Serial Number String :
[ 863.294] (--) NVIDIA(GPU-1): Manufacture Date : 2009, week 0
[ 863.294] (--) NVIDIA(GPU-1): DPMS Capabilities : Standby Suspend Active Off
[ 863.294] (--) NVIDIA(GPU-1): Input Type : Digital
[ 863.294] (--) NVIDIA(GPU-1): Prefer first detailed timing : Yes
[ 863.294] (--) NVIDIA(GPU-1): Supports GTF : No
[ 863.294] (--) NVIDIA(GPU-1): Maximum Image Size : 700 mm x 390 mm
[ 863.294] (--) NVIDIA(GPU-1): Valid HSync Range : 31.0 kHz - 84.0 kHz
[ 863.294] (--) NVIDIA(GPU-1): Valid VRefresh Range : 57.0 Hz - 75.0 Hz
[ 863.294] (--) NVIDIA(GPU-1): EDID maximum pixel clock : 180.0 MHz
[ 863.294] (--) NVIDIA(GPU-1): CEA-861 revision : 3
[ 863.294] (--) NVIDIA(GPU-1): IEEE Vendor Registration ID : 00-0c-03
[ 863.294] (--) NVIDIA(GPU-1): Supports YCbCr 4:4:4 : Yes
[ 863.294] (--) NVIDIA(GPU-1): Supports YCbCr 4:2:2 : Yes
[ 863.294] (--) NVIDIA(GPU-1): Supports Basic Audio : Yes
[ 863.294] (--) NVIDIA(GPU-1): Audio Descriptor : 0
[ 863.294] (--) NVIDIA(GPU-1): Audio Format : PCM
[ 863.294] (--) NVIDIA(GPU-1): Maximum Channels : 8
[ 863.294] (--) NVIDIA(GPU-1): Sample Rates : 32KHz, 44KHz, 48KHz, 88KHz, 96KHz, 176KHz, 192KHz
[ 863.294] (--) NVIDIA(GPU-1): Sample Sizes : 16-bits, 20-bits, 24-bits
[ 863.294] (--) NVIDIA(GPU-1): Audio Descriptor : 1
[ 863.294] (--) NVIDIA(GPU-1): Audio Format : DTS
[ 863.294] (--) NVIDIA(GPU-1): Maximum Channels : 6
[ 863.294] (--) NVIDIA(GPU-1): Sample Rates : 44KHz, 48KHz, 88KHz, 96KHz
[ 863.294] (--) NVIDIA(GPU-1): Maximum Bit Rate : 1536 kHz
[ 863.294] (--) NVIDIA(GPU-1): Audio Descriptor : 2
[ 863.294] (--) NVIDIA(GPU-1): Audio Format : AC-3
[ 863.294] (--) NVIDIA(GPU-1): Maximum Channels : 6
[ 863.294] (--) NVIDIA(GPU-1): Sample Rates : 32KHz, 44KHz, 48KHz
[ 863.294] (--) NVIDIA(GPU-1): Maximum Bit Rate : 640 kHz
[ 863.294] (--) NVIDIA(GPU-1): Audio Descriptor : 3
[ 863.294] (--) NVIDIA(GPU-1): Audio Format : DTS-HD
[ 863.294] (--) NVIDIA(GPU-1): Maximum Channels : 8
[ 863.294] (--) NVIDIA(GPU-1): Sample Rates : 44KHz, 48KHz, 88KHz, 96KHz, 176KHz, 192KHz
[ 863.294] (--) NVIDIA(GPU-1): Audio Descriptor : 4
[ 863.294] (--) NVIDIA(GPU-1): Audio Format : E-AC-3
[ 863.294] (--) NVIDIA(GPU-1): Maximum Channels : 8
[ 863.294] (--) NVIDIA(GPU-1): Sample Rates : 44KHz, 48KHz
[ 863.294] (--) NVIDIA(GPU-1): Audio Descriptor : 5
[ 863.294] (--) NVIDIA(GPU-1): Audio Format : MLP
[ 863.294] (--) NVIDIA(GPU-1): Maximum Channels : 6
[ 863.294] (--) NVIDIA(GPU-1): Sample Rates : 44KHz, 48KHz, 88KHz, 96KHz, 176KHz, 192KHz
[ 863.294] (--) NVIDIA(GPU-1): Audio Descriptor : 6
[ 863.294] (--) NVIDIA(GPU-1): Audio Format : MLP
[ 863.294] (--) NVIDIA(GPU-1): Maximum Channels : 8
[ 863.294] (--) NVIDIA(GPU-1): Sample Rates : 44KHz, 48KHz, 88KHz, 96KHz
[ 863.294] (--) NVIDIA(GPU-1): Speaker Allocation Data :
[ 863.294] (--) NVIDIA(GPU-1): Front Left + Front Right
[ 863.294] (--) NVIDIA(GPU-1): Low Frequency Effect
[ 863.294] (--) NVIDIA(GPU-1): Front Center
[ 863.294] (--) NVIDIA(GPU-1): Rear Left + Rear Right
[ 863.294] (--) NVIDIA(GPU-1): Rear Center
[ 863.294] (--) NVIDIA(GPU-1): Rear Left Center + Rear Right Center
[ 863.294] (--) NVIDIA(GPU-1): EDID bits per component : 0
[ 863.294] (--) NVIDIA(GPU-1):
[ 863.294] (--) NVIDIA(GPU-1): Standard Timings:
[ 863.294] (--) NVIDIA(GPU-1): 640 x 480 @ 60 Hz
[ 863.294] (--) NVIDIA(GPU-1): 800 x 600 @ 60 Hz
[ 863.294] (--) NVIDIA(GPU-1): 1024 x 768 @ 60 Hz
[ 863.294] (--) NVIDIA(GPU-1): 1280 x 1024 @ 60 Hz
[ 863.294] (--) NVIDIA(GPU-1): 1920 x 1080 @ 60 Hz
[ 863.294] (--) NVIDIA(GPU-1):
[ 863.294] (--) NVIDIA(GPU-1): Detailed Timings:
[ 863.294] (--) NVIDIA(GPU-1): 1920 x 1080 @ 60 Hz
[ 863.294] (--) NVIDIA(GPU-1): Pixel Clock : 138.50 MHz
[ 863.294] (--) NVIDIA(GPU-1): HRes, HSyncStart : 1920, 1968
[ 863.294] (--) NVIDIA(GPU-1): HSyncEnd, HTotal : 2000, 2080
[ 863.294] (--) NVIDIA(GPU-1): VRes, VSyncStart : 1080, 1083
[ 863.294] (--) NVIDIA(GPU-1): VSyncEnd, VTotal : 1088, 1111
[ 863.294] (--) NVIDIA(GPU-1): H/V Polarity : +/-
[ 863.294] (--) NVIDIA(GPU-1): Image Size : 1000 mm x 550 mm
[ 863.294] (--) NVIDIA(GPU-1): 1360 x 768 @ 60 Hz
[ 863.294] (--) NVIDIA(GPU-1): Pixel Clock : 84.75 MHz
[ 863.294] (--) NVIDIA(GPU-1): HRes, HSyncStart : 1360, 1432
[ 863.294] (--) NVIDIA(GPU-1): HSyncEnd, HTotal : 1568, 1776
[ 863.294] (--) NVIDIA(GPU-1): VRes, VSyncStart : 768, 771
[ 863.294] (--) NVIDIA(GPU-1): VSyncEnd, VTotal : 776, 798
[ 863.294] (--) NVIDIA(GPU-1): H/V Polarity : -/+
[ 863.294] (--) NVIDIA(GPU-1): Image Size : 700 mm x 390 mm
[ 863.294] (--) NVIDIA(GPU-1):
[ 863.294] (--) NVIDIA(GPU-1): Established Timings:
[ 863.294] (--) NVIDIA(GPU-1): 640 x 480 @ 60 Hz
[ 863.294] (--) NVIDIA(GPU-1): 640 x 480 @ 75 Hz
[ 863.294] (--) NVIDIA(GPU-1): 800 x 600 @ 60 Hz
[ 863.294] (--) NVIDIA(GPU-1): 800 x 600 @ 75 Hz
[ 863.294] (--) NVIDIA(GPU-1): 1024 x 768 @ 60 Hz
[ 863.294] (--) NVIDIA(GPU-1): 1024 x 768 @ 70 Hz
[ 863.294] (--) NVIDIA(GPU-1): 1024 x 768 @ 75 Hz
[ 863.294] (--) NVIDIA(GPU-1):
[ 863.294] (--) NVIDIA(GPU-1): CEA-861B Timings:
[ 863.294] (--) NVIDIA(GPU-1): 640 x 480 @ 60 Hz
[ 863.294] (--) NVIDIA(GPU-1): Pixel Clock : 25.17 MHz
[ 863.294] (--) NVIDIA(GPU-1): HRes, HSyncStart : 640, 656
[ 863.294] (--) NVIDIA(GPU-1): HSyncEnd, HTotal : 752, 800
[ 863.294] (--) NVIDIA(GPU-1): VRes, VSyncStart : 480, 490
[ 863.294] (--) NVIDIA(GPU-1): VSyncEnd, VTotal : 492, 525
[ 863.294] (--) NVIDIA(GPU-1): H/V Polarity : -/-
[ 863.294] (--) NVIDIA(GPU-1): CEA Format : 0
[ 863.294] (--) NVIDIA(GPU-1): Aspect Ratio : 4:3
[ 863.294] (--) NVIDIA(GPU-1): 720 x 480 @ 60 Hz
[ 863.294] (--) NVIDIA(GPU-1): Pixel Clock : 27.00 MHz
[ 863.294] (--) NVIDIA(GPU-1): HRes, HSyncStart : 720, 736
[ 863.294] (--) NVIDIA(GPU-1): HSyncEnd, HTotal : 798, 858
[ 863.294] (--) NVIDIA(GPU-1): VRes, VSyncStart : 480, 489
[ 863.294] (--) NVIDIA(GPU-1): VSyncEnd, VTotal : 495, 525
[ 863.294] (--) NVIDIA(GPU-1): H/V Polarity : -/-
[ 863.294] (--) NVIDIA(GPU-1): CEA Format : 2
[ 863.294] (--) NVIDIA(GPU-1): Aspect Ratio : 4:3
[ 863.294] (--) NVIDIA(GPU-1): 720 x 480 @ 60 Hz
[ 863.294] (--) NVIDIA(GPU-1): Pixel Clock : 27.00 MHz
[ 863.294] (--) NVIDIA(GPU-1): HRes, HSyncStart : 720, 736
[ 863.294] (--) NVIDIA(GPU-1): HSyncEnd, HTotal : 798, 858
[ 863.294] (--) NVIDIA(GPU-1): VRes, VSyncStart : 480, 489
[ 863.294] (--) NVIDIA(GPU-1): VSyncEnd, VTotal : 495, 525
[ 863.294] (--) NVIDIA(GPU-1): H/V Polarity : -/-
[ 863.294] (--) NVIDIA(GPU-1): CEA Format : 3
[ 863.294] (--) NVIDIA(GPU-1): Aspect Ratio : 16:9
[ 863.294] (--) NVIDIA(GPU-1): 720 x 576 @ 50 Hz
[ 863.294] (--) NVIDIA(GPU-1): Pixel Clock : 27.00 MHz
[ 863.294] (--) NVIDIA(GPU-1): HRes, HSyncStart : 1440, 1464
[ 863.294] (--) NVIDIA(GPU-1): HSyncEnd, HTotal : 1590, 1728
[ 863.294] (--) NVIDIA(GPU-1): VRes, VSyncStart : 576, 580
[ 863.294] (--) NVIDIA(GPU-1): VSyncEnd, VTotal : 586, 624
[ 863.294] (--) NVIDIA(GPU-1): H/V Polarity : -/-
[ 863.294] (--) NVIDIA(GPU-1): Interlaced : yes
[ 863.294] (--) NVIDIA(GPU-1): CEA Format : 21
[ 863.294] (--) NVIDIA(GPU-1): Aspect Ratio : 4:3
[ 863.294] (--) NVIDIA(GPU-1): 720 x 576 @ 50 Hz
[ 863.294] (--) NVIDIA(GPU-1): Pixel Clock : 27.00 MHz
[ 863.294] (--) NVIDIA(GPU-1): HRes, HSyncStart : 720, 732
[ 863.294] (--) NVIDIA(GPU-1): HSyncEnd, HTotal : 796, 864
[ 863.294] (--) NVIDIA(GPU-1): VRes, VSyncStart : 576, 581
[ 863.294] (--) NVIDIA(GPU-1): VSyncEnd, VTotal : 586, 625
[ 863.294] (--) NVIDIA(GPU-1): H/V Polarity : -/-
[ 863.294] (--) NVIDIA(GPU-1): CEA Format : 18
[ 863.294] (--) NVIDIA(GPU-1): Aspect Ratio : 16:9
[ 863.294] (--) NVIDIA(GPU-1): 1280 x 720 @ 50 Hz
[ 863.294] (--) NVIDIA(GPU-1): Pixel Clock : 74.25 MHz
[ 863.294] (--) NVIDIA(GPU-1): HRes, HSyncStart : 1280, 1720
[ 863.294] (--) NVIDIA(GPU-1): HSyncEnd, HTotal : 1760, 1980
[ 863.294] (--) NVIDIA(GPU-1): VRes, VSyncStart : 720, 725
[ 863.294] (--) NVIDIA(GPU-1): VSyncEnd, VTotal : 730, 750
[ 863.294] (--) NVIDIA(GPU-1): H/V Polarity : +/+
[ 863.294] (--) NVIDIA(GPU-1): CEA Format : 19
[ 863.294] (--) NVIDIA(GPU-1): Aspect Ratio : 16:9
[ 863.294] (--) NVIDIA(GPU-1): 1280 x 720 @ 60 Hz
[ 863.294] (--) NVIDIA(GPU-1): Pixel Clock : 74.18 MHz
[ 863.294] (--) NVIDIA(GPU-1): HRes, HSyncStart : 1280, 1390
[ 863.294] (--) NVIDIA(GPU-1): HSyncEnd, HTotal : 1430, 1650
[ 863.294] (--) NVIDIA(GPU-1): VRes, VSyncStart : 720, 725
[ 863.294] (--) NVIDIA(GPU-1): VSyncEnd, VTotal : 730, 750
[ 863.294] (--) NVIDIA(GPU-1): H/V Polarity : +/+
[ 863.295] (--) NVIDIA(GPU-1): CEA Format : 4
[ 863.295] (--) NVIDIA(GPU-1): Aspect Ratio : 16:9
[ 863.295] (--) NVIDIA(GPU-1): 1920 x 1080 @ 50 Hz
[ 863.295] (--) NVIDIA(GPU-1): Pixel Clock : 74.25 MHz
[ 863.295] (--) NVIDIA(GPU-1): HRes, HSyncStart : 1920, 2448
[ 863.295] (--) NVIDIA(GPU-1): HSyncEnd, HTotal : 2492, 2640
[ 863.295] (--) NVIDIA(GPU-1): VRes, VSyncStart : 1080, 1084
[ 863.295] (--) NVIDIA(GPU-1): VSyncEnd, VTotal : 1094, 1124
[ 863.295] (--) NVIDIA(GPU-1): H/V Polarity : +/+
[ 863.295] (--) NVIDIA(GPU-1): Interlaced : yes
[ 863.295] (--) NVIDIA(GPU-1): CEA Format : 20
[ 863.295] (--) NVIDIA(GPU-1): Aspect Ratio : 16:9
[ 863.295] (--) NVIDIA(GPU-1): 1920 x 1080 @ 60 Hz
[ 863.295] (--) NVIDIA(GPU-1): Pixel Clock : 74.18 MHz
[ 863.295] (--) NVIDIA(GPU-1): HRes, HSyncStart : 1920, 2008
[ 863.295] (--) NVIDIA(GPU-1): HSyncEnd, HTotal : 2052, 2200
[ 863.295] (--) NVIDIA(GPU-1): VRes, VSyncStart : 1080, 1084
[ 863.295] (--) NVIDIA(GPU-1): VSyncEnd, VTotal : 1094, 1124
[ 863.295] (--) NVIDIA(GPU-1): H/V Polarity : +/+
[ 863.295] (--) NVIDIA(GPU-1): Interlaced : yes
[ 863.295] (--) NVIDIA(GPU-1): CEA Format : 5
[ 863.295] (--) NVIDIA(GPU-1): Aspect Ratio : 16:9
[ 863.295] (--) NVIDIA(GPU-1): 1920 x 1080 @ 24 Hz
[ 863.295] (--) NVIDIA(GPU-1): Pixel Clock : 74.16 MHz
[ 863.295] (--) NVIDIA(GPU-1): HRes, HSyncStart : 1920, 2558
[ 863.295] (--) NVIDIA(GPU-1): HSyncEnd, HTotal : 2602, 2750
[ 863.295] (--) NVIDIA(GPU-1): VRes, VSyncStart : 1080, 1084
[ 863.295] (--) NVIDIA(GPU-1): VSyncEnd, VTotal : 1089, 1125
[ 863.295] (--) NVIDIA(GPU-1): H/V Polarity : +/+
[ 863.295] (--) NVIDIA(GPU-1): CEA Format : 32
[ 863.295] (--) NVIDIA(GPU-1): Aspect Ratio : 16:9
[ 863.295] (--) NVIDIA(GPU-1): 1920 x 1080 @ 25 Hz
[ 863.295] (--) NVIDIA(GPU-1): Pixel Clock : 74.25 MHz
[ 863.295] (--) NVIDIA(GPU-1): HRes, HSyncStart : 1920, 2448
[ 863.295] (--) NVIDIA(GPU-1): HSyncEnd, HTotal : 2492, 2640
[ 863.295] (--) NVIDIA(GPU-1): VRes, VSyncStart : 1080, 1084
[ 863.295] (--) NVIDIA(GPU-1): VSyncEnd, VTotal : 1089, 1125
[ 863.295] (--) NVIDIA(GPU-1): H/V Polarity : +/+
[ 863.295] (--) NVIDIA(GPU-1): CEA Format : 33
[ 863.295] (--) NVIDIA(GPU-1): Aspect Ratio : 16:9
[ 863.295] (--) NVIDIA(GPU-1): 1920 x 1080 @ 30 Hz
[ 863.295] (--) NVIDIA(GPU-1): Pixel Clock : 74.18 MHz
[ 863.295] (--) NVIDIA(GPU-1): HRes, HSyncStart : 1920, 2008
[ 863.295] (--) NVIDIA(GPU-1): HSyncEnd, HTotal : 2052, 2200
[ 863.295] (--) NVIDIA(GPU-1): VRes, VSyncStart : 1080, 1084
[ 863.295] (--) NVIDIA(GPU-1): VSyncEnd, VTotal : 1089, 1125
[ 863.295] (--) NVIDIA(GPU-1): H/V Polarity : +/+
[ 863.295] (--) NVIDIA(GPU-1): CEA Format : 34
[ 863.295] (--) NVIDIA(GPU-1): Aspect Ratio : 16:9
[ 863.295] (--) NVIDIA(GPU-1): 1920 x 1080 @ 50 Hz
[ 863.295] (--) NVIDIA(GPU-1): Pixel Clock : 148.50 MHz
[ 863.295] (--) NVIDIA(GPU-1): HRes, HSyncStart : 1920, 2448
[ 863.295] (--) NVIDIA(GPU-1): HSyncEnd, HTotal : 2492, 2640
[ 863.295] (--) NVIDIA(GPU-1): VRes, VSyncStart : 1080, 1084
[ 863.295] (--) NVIDIA(GPU-1): VSyncEnd, VTotal : 1089, 1125
[ 863.295] (--) NVIDIA(GPU-1): H/V Polarity : +/+
[ 863.295] (--) NVIDIA(GPU-1): CEA Format : 31
[ 863.295] (--) NVIDIA(GPU-1): Aspect Ratio : 16:9
[ 863.295] (--) NVIDIA(GPU-1): 1920 x 1080 @ 60 Hz
[ 863.295] (--) NVIDIA(GPU-1): Pixel Clock : 148.35 MHz
[ 863.295] (--) NVIDIA(GPU-1): HRes, HSyncStart : 1920, 2008
[ 863.295] (--) NVIDIA(GPU-1): HSyncEnd, HTotal : 2052, 2200
[ 863.295] (--) NVIDIA(GPU-1): VRes, VSyncStart : 1080, 1084
[ 863.295] (--) NVIDIA(GPU-1): VSyncEnd, VTotal : 1089, 1125
[ 863.295] (--) NVIDIA(GPU-1): H/V Polarity : +/+
[ 863.295] (--) NVIDIA(GPU-1): CEA Format : 16
[ 863.295] (--) NVIDIA(GPU-1): Aspect Ratio : 16:9
[ 863.295] (--) NVIDIA(GPU-1): 480 x 480 @ 60 Hz
[ 863.295] (--) NVIDIA(GPU-1): Pixel Clock : 54.00 MHz
[ 863.295] (--) NVIDIA(GPU-1): HRes, HSyncStart : 1440, 1472
[ 863.295] (--) NVIDIA(GPU-1): HSyncEnd, HTotal : 1596, 1716
[ 863.295] (--) NVIDIA(GPU-1): VRes, VSyncStart : 480, 489
[ 863.295] (--) NVIDIA(GPU-1): VSyncEnd, VTotal : 495, 525
[ 863.295] (--) NVIDIA(GPU-1): H/V Polarity : -/-
[ 863.295] (--) NVIDIA(GPU-1): CEA Format : 14
[ 863.295] (--) NVIDIA(GPU-1): Aspect Ratio : 4:3
[ 863.295] (--) NVIDIA(GPU-1): 411 x 480 @ 60 Hz
[ 863.295] (--) NVIDIA(GPU-1): Pixel Clock : 108.00 MHz
[ 863.295] (--) NVIDIA(GPU-1): HRes, HSyncStart : 2880, 2944
[ 863.295] (--) NVIDIA(GPU-1): HSyncEnd, HTotal : 3192, 3432
[ 863.295] (--) NVIDIA(GPU-1): VRes, VSyncStart : 480, 489
[ 863.295] (--) NVIDIA(GPU-1): VSyncEnd, VTotal : 495, 525
[ 863.295] (--) NVIDIA(GPU-1): H/V Polarity : -/-
[ 863.295] (--) NVIDIA(GPU-1): CEA Format : 35
[ 863.295] (--) NVIDIA(GPU-1): Aspect Ratio : 4:3
[ 863.295] (--) NVIDIA(GPU-1): 480 x 480 @ 60 Hz
[ 863.295] (--) NVIDIA(GPU-1): Pixel Clock : 54.00 MHz
[ 863.295] (--) NVIDIA(GPU-1): HRes, HSyncStart : 1440, 1472
[ 863.295] (--) NVIDIA(GPU-1): HSyncEnd, HTotal : 1596, 1716
[ 863.295] (--) NVIDIA(GPU-1): VRes, VSyncStart : 480, 489
[ 863.295] (--) NVIDIA(GPU-1): VSyncEnd, VTotal : 495, 525
[ 863.295] (--) NVIDIA(GPU-1): H/V Polarity : -/-
[ 863.295] (--) NVIDIA(GPU-1): CEA Format : 15
[ 863.295] (--) NVIDIA(GPU-1): Aspect Ratio : 16:9
[ 863.295] (--) NVIDIA(GPU-1): 411 x 480 @ 60 Hz
[ 863.295] (--) NVIDIA(GPU-1): Pixel Clock : 108.00 MHz
[ 863.295] (--) NVIDIA(GPU-1): HRes, HSyncStart : 2880, 2944
[ 863.295] (--) NVIDIA(GPU-1): HSyncEnd, HTotal : 3192, 3432
[ 863.295] (--) NVIDIA(GPU-1): VRes, VSyncStart : 480, 489
[ 863.295] (--) NVIDIA(GPU-1): VSyncEnd, VTotal : 495, 525
[ 863.295] (--) NVIDIA(GPU-1): H/V Polarity : -/-
[ 863.295] (--) NVIDIA(GPU-1): CEA Format : 36
[ 863.295] (--) NVIDIA(GPU-1): Aspect Ratio : 16:9
[ 863.295] (--) NVIDIA(GPU-1): 480 x 576 @ 50 Hz
[ 863.295] (--) NVIDIA(GPU-1): Pixel Clock : 54.00 MHz
[ 863.295] (--) NVIDIA(GPU-1): HRes, HSyncStart : 1440, 1464
[ 863.295] (--) NVIDIA(GPU-1): HSyncEnd, HTotal : 1592, 1728
[ 863.295] (--) NVIDIA(GPU-1): VRes, VSyncStart : 576, 581
[ 863.295] (--) NVIDIA(GPU-1): VSyncEnd, VTotal : 586, 625
[ 863.295] (--) NVIDIA(GPU-1): H/V Polarity : -/+
[ 863.295] (--) NVIDIA(GPU-1): CEA Format : 30
[ 863.295] (--) NVIDIA(GPU-1): Aspect Ratio : 16:9
[ 863.295] (--) NVIDIA(GPU-1): 411 x 576 @ 50 Hz
[ 863.295] (--) NVIDIA(GPU-1): Pixel Clock : 108.00 MHz
[ 863.295] (--) NVIDIA(GPU-1): HRes, HSyncStart : 2880, 2928
[ 863.295] (--) NVIDIA(GPU-1): HSyncEnd, HTotal : 3184, 3456
[ 863.295] (--) NVIDIA(GPU-1): VRes, VSyncStart : 576, 581
[ 863.295] (--) NVIDIA(GPU-1): VSyncEnd, VTotal : 586, 625
[ 863.295] (--) NVIDIA(GPU-1): H/V Polarity : -/-
[ 863.295] (--) NVIDIA(GPU-1): CEA Format : 38
[ 863.295] (--) NVIDIA(GPU-1): Aspect Ratio : 16:9
[ 863.295] (--) NVIDIA(GPU-1):
[ 863.295] (--) NVIDIA(GPU-1): Extension Block Detailed Timings:
[ 863.295] (--) NVIDIA(GPU-1): 720 x 480 @ 60 Hz
[ 863.295] (--) NVIDIA(GPU-1): Pixel Clock : 27.00 MHz
[ 863.295] (--) NVIDIA(GPU-1): HRes, HSyncStart : 720, 736
[ 863.295] (--) NVIDIA(GPU-1): HSyncEnd, HTotal : 798, 858
[ 863.295] (--) NVIDIA(GPU-1): VRes, VSyncStart : 480, 489
[ 863.295] (--) NVIDIA(GPU-1): VSyncEnd, VTotal : 495, 525
[ 863.295] (--) NVIDIA(GPU-1): H/V Polarity : -/-
[ 863.295] (--) NVIDIA(GPU-1): Image Size : 531 mm x 398 mm
[ 863.295] (--) NVIDIA(GPU-1): 1920 x 1080 @ 60 Hz
[ 863.295] (--) NVIDIA(GPU-1): Pixel Clock : 74.25 MHz
[ 863.295] (--) NVIDIA(GPU-1): HRes, HSyncStart : 1920, 2008
[ 863.295] (--) NVIDIA(GPU-1): HSyncEnd, HTotal : 2052, 2200
[ 863.295] (--) NVIDIA(GPU-1): VRes, VSyncStart : 1080, 1084
[ 863.295] (--) NVIDIA(GPU-1): VSyncEnd, VTotal : 1094, 1124
[ 863.295] (--) NVIDIA(GPU-1): H/V Polarity : +/+
[ 863.295] (--) NVIDIA(GPU-1): Interlaced : yes
[ 863.295] (--) NVIDIA(GPU-1): Image Size : 708 mm x 398 mm
[ 863.295] (--) NVIDIA(GPU-1):
[ 863.295] (--) NVIDIA(GPU-1): --- End of EDID for DENON, Ltd. DENON-AVAMP (DFP-1) ---
[ 863.295] (--) NVIDIA(GPU-1):
[ 863.295] (II) NVIDIA: Using 3072.00 MB of virtual memory for indirect memory
[ 863.295] (II) NVIDIA: access.
[ 863.298] (II) NVIDIA(0): kernel module enabled successfully
[ 863.298] (II) NVIDIA(0): GPU initialized
[ 863.298] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[ 863.298] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
[ 863.298] (II) NVIDIA(0): configuration option may not be set correctly. When the
[ 863.298] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
[ 863.298] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
[ 863.298] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
[ 863.298] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
[ 863.298] (II) NVIDIA(0): Config Options in the README.
[ 863.300] (II) NVIDIA(0): Setting mode "DFP:1920x1200+0+0"
[ 863.318] (II) NVIDIA(0): First mode initialized
[ 863.322] (II) NVIDIA(0): Using built-in logo image.
[ 863.322] (II) NVIDIA(0): Logo is 744x587 with depth 24.
[ 863.330] Loading extension NV-GLX
[ 863.373] (II) NVIDIA(0): Initialized OpenGL Acceleration
[ 863.373] (II) NVIDIA(0): Visuals set up
[ 863.373] (II) NVIDIA(0): Pixmap depths set up
[ 863.373] (II) NVIDIA(0): GLX visuals set up
[ 863.373] (II) NVIDIA(0): Framebuffer set up
[ 863.376] (==) NVIDIA(0): Disabling shared memory pixmaps
[ 863.376] (II) NVIDIA(0): Initialized X Rendering Acceleration
[ 863.376] (==) NVIDIA(0): Backing store disabled
[ 863.376] (==) NVIDIA(0): Silken mouse enabled
[ 863.376] (II) NVIDIA(0): Default colormap initialized.
[ 863.376] (II) NVIDIA(0): Palette loaded
[ 863.376] (==) NVIDIA(0): DPMS enabled
[ 863.376] Loading extension NV-CONTROL
[ 863.376] (WW) NVIDIA(0): Option "TwinView" is not used
[ 863.376] (II) Loading sub module "dri2"
[ 863.376] (II) LoadModule: "dri2"
[ 863.376] (II) Module "dri2" already built-in
[ 863.376] (II) NVIDIA(0): [DRI2] Setup complete
[ 863.376] (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia
[ 863.377] (II) NVIDIA(0): Screen initialization complete
[ 863.377] (--) RandR disabled
[ 863.379] (II) NVIDIA(1): kernel module enabled successfully
[ 863.379] (II) NVIDIA(1): GPU initialized
[ 863.379] (II) NVIDIA(1): ACPI: failed to connect to the ACPI event daemon; the daemon
[ 863.379] (II) NVIDIA(1): may not be running or the "AcpidSocketPath" X
[ 863.379] (II) NVIDIA(1): configuration option may not be set correctly. When the
[ 863.379] (II) NVIDIA(1): ACPI event daemon is available, the NVIDIA X driver will
[ 863.379] (II) NVIDIA(1): try to use it to receive ACPI event notifications. For
[ 863.379] (II) NVIDIA(1): details, please see the "ConnectToAcpid" and
[ 863.379] (II) NVIDIA(1): "AcpidSocketPath" X configuration options in Appendix B: X
[ 863.379] (II) NVIDIA(1): Config Options in the README.
[ 863.379] (II) NVIDIA(1): Setting mode "CRT:nvidia-auto-select+0+0"
[ 863.435] (II) NVIDIA(1): First mode initialized
[ 863.437] (II) NVIDIA(1): Using built-in logo image.
[ 863.437] (II) NVIDIA(1): Logo is 744x587 with depth 24.
[ 863.487] (II) NVIDIA(1): Initialized OpenGL Acceleration
[ 863.487] (II) NVIDIA(1): Visuals set up
[ 863.487] (II) NVIDIA(1): Pixmap depths set up
[ 863.487] (II) NVIDIA(1): GLX visuals set up
[ 863.487] (II) NVIDIA(1): Framebuffer set up
[ 863.489] (==) NVIDIA(1): Disabling shared memory pixmaps
[ 863.489] (II) NVIDIA(1): Initialized X Rendering Acceleration
[ 863.489] (==) NVIDIA(1): Backing store disabled
[ 863.489] (==) NVIDIA(1): Silken mouse enabled
[ 863.489] (II) NVIDIA(1): Default colormap initialized.
[ 863.489] (II) NVIDIA(1): Palette loaded
[ 863.489] (**) NVIDIA(1): DPMS enabled
[ 863.490] (WW) NVIDIA(1): Option "TwinView" is not used
[ 863.490] (II) Loading sub module "dri2"
[ 863.490] (II) LoadModule: "dri2"
[ 863.490] (II) Module "dri2" already built-in
[ 863.490] (II) NVIDIA(1): [DRI2] Setup complete
[ 863.490] (II) NVIDIA(1): [DRI2] VDPAU driver: nvidia
[ 863.490] (II) NVIDIA(1): Screen initialization complete
[ 863.490] (--) RandR disabled
[ 863.492] (II) Initializing extension GLX
[ 863.539] (II) XKB: Reusing cached keymap
[ 863.540] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[ 863.540] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[ 863.540] (II) LoadModule: "evdev"
[ 863.540] (II) Loading /usr/lib64/xorg/modules/input/evdev_drv.so
[ 863.540] (II) Module evdev: vendor="X.Org Foundation"
[ 863.540] compiled for 1.13.1, module version = 2.7.3
[ 863.540] Module class: X.Org XInput Driver
[ 863.540] ABI class: X.Org XInput driver, version 18.0
[ 863.540] (II) Using input driver 'evdev' for 'Power Button'
[ 863.540] Option "XkbRules" "evdev"
[ 863.540] Option "XkbModel" "evdev"
[ 863.540] Option "XkbLayout" "us"
[ 863.540] Option "_source" "server/udev"
[ 863.540] Option "name" "Power Button"
[ 863.540] Option "path" "/dev/input/event1"
[ 863.540] Option "device" "/dev/input/event1"
[ 863.540] Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
[ 863.540] Option "driver" "evdev"
[ 863.540] (**) Power Button: always reports core events
[ 863.540] (**) evdev: Power Button: Device: "/dev/input/event1"
[ 863.540] (--) evdev: Power Button: Vendor 0 Product 0x1
[ 863.540] (--) evdev: Power Button: Found keys
[ 863.540] (II) evdev: Power Button: Configuring as keyboard
[ 863.540] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
[ 863.540] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[ 863.540] (**) Option "xkb_rules" "evdev"
[ 863.540] (**) Option "xkb_model" "evdev"
[ 863.540] (**) Option "xkb_layout" "us"
[ 863.552] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[ 863.552] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[ 863.552] (II) Using input driver 'evdev' for 'Power Button'
[ 863.552] Option "XkbRules" "evdev"
[ 863.552] Option "XkbModel" "evdev"
[ 863.552] Option "XkbLayout" "us"
[ 863.552] Option "_source" "server/udev"
[ 863.552] Option "name" "Power Button"
[ 863.552] Option "path" "/dev/input/event0"
[ 863.552] Option "device" "/dev/input/event0"
[ 863.552] Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0/event0"
[ 863.552] Option "driver" "evdev"
[ 863.552] (**) Power Button: always reports core events
[ 863.552] (**) evdev: Power Button: Device: "/dev/input/event0"
[ 863.552] (--) evdev: Power Button: Vendor 0 Product 0x1
[ 863.552] (--) evdev: Power Button: Found keys
[ 863.552] (II) evdev: Power Button: Configuring as keyboard
[ 863.552] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0/event0"
[ 863.552] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[ 863.552] (**) Option "xkb_rules" "evdev"
[ 863.552] (**) Option "xkb_model" "evdev"
[ 863.552] (**) Option "xkb_layout" "us"
[ 863.552] (II) XKB: Reusing cached keymap
[ 863.552] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event17)
[ 863.552] (II) No input driver specified, ignoring this device.
[ 863.552] (II) This device may have been added with another device file.
[ 863.552] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event18)
[ 863.552] (II) No input driver specified, ignoring this device.
[ 863.552] (II) This device may have been added with another device file.
[ 863.553] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event19)
[ 863.553] (II) No input driver specified, ignoring this device.
[ 863.553] (II) This device may have been added with another device file.
[ 863.553] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event20)
[ 863.553] (II) No input driver specified, ignoring this device.
[ 863.553] (II) This device may have been added with another device file.
[ 863.553] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event21)
[ 863.553] (II) No input driver specified, ignoring this device.
[ 863.553] (II) This device may have been added with another device file.
[ 863.553] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event22)
[ 863.553] (II) No input driver specified, ignoring this device.
[ 863.553] (II) This device may have been added with another device file.
[ 863.553] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event23)
[ 863.553] (II) No input driver specified, ignoring this device.
[ 863.553] (II) This device may have been added with another device file.
[ 863.553] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event24)
[ 863.553] (II) No input driver specified, ignoring this device.
[ 863.553] (II) This device may have been added with another device file.
[ 863.553] (II) config/udev: Adding input device HDA Intel PCH Rear Mic (/dev/input/event10)
[ 863.553] (II) No input driver specified, ignoring this device.
[ 863.553] (II) This device may have been added with another device file.
[ 863.553] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event11)
[ 863.553] (II) No input driver specified, ignoring this device.
[ 863.553] (II) This device may have been added with another device file.
[ 863.553] (II) config/udev: Adding input device HDA Intel PCH Line Out Side (/dev/input/event12)
[ 863.553] (II) No input driver specified, ignoring this device.
[ 863.553] (II) This device may have been added with another device file.
[ 863.553] (II) config/udev: Adding input device HDA Intel PCH Line Out CLFE (/dev/input/event13)
[ 863.553] (II) No input driver specified, ignoring this device.
[ 863.553] (II) This device may have been added with another device file.
[ 863.554] (II) config/udev: Adding input device HDA Intel PCH Line Out Surround (/dev/input/event14)
[ 863.554] (II) No input driver specified, ignoring this device.
[ 863.554] (II) This device may have been added with another device file.
[ 863.554] (II) config/udev: Adding input device HDA Intel PCH Line Out Front (/dev/input/event15)
[ 863.554] (II) No input driver specified, ignoring this device.
[ 863.554] (II) This device may have been added with another device file.
[ 863.554] (II) config/udev: Adding input device HDA Intel PCH Line (/dev/input/event8)
[ 863.554] (II) No input driver specified, ignoring this device.
[ 863.554] (II) This device may have been added with another device file.
[ 863.554] (II) config/udev: Adding input device HDA Intel PCH Front Mic (/dev/input/event9)
[ 863.554] (II) No input driver specified, ignoring this device.
[ 863.554] (II) This device may have been added with another device file.
[ 863.554] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/event2)
[ 863.554] (**) Logitech USB Receiver: Applying InputClass "evdev keyboard catchall"
[ 863.554] (II) Using input driver 'evdev' for 'Logitech USB Receiver'
[ 863.554] Option "XkbRules" "evdev"
[ 863.554] Option "XkbModel" "evdev"
[ 863.554] Option "XkbLayout" "us"
[ 863.554] Option "_source" "server/udev"
[ 863.554] Option "name" "Logitech USB Receiver"
[ 863.554] Option "path" "/dev/input/event2"
[ 863.554] Option "device" "/dev/input/event2"
[ 863.554] Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3:1.0/input/input2/event2"
[ 863.554] Option "driver" "evdev"
[ 863.554] (**) Logitech USB Receiver: always reports core events
[ 863.554] (**) evdev: Logitech USB Receiver: Device: "/dev/input/event2"
[ 863.554] (--) evdev: Logitech USB Receiver: Vendor 0x46d Product 0xc52b
[ 863.554] (--) evdev: Logitech USB Receiver: Found keys
[ 863.554] (II) evdev: Logitech USB Receiver: Configuring as keyboard
[ 863.554] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3:1.0/input/input2/event2"
[ 863.554] (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: KEYBOARD, id 8)
[ 863.554] (**) Option "xkb_rules" "evdev"
[ 863.554] (**) Option "xkb_model" "evdev"
[ 863.554] (**) Option "xkb_layout" "us"
[ 863.554] (II) XKB: Reusing cached keymap
[ 863.554] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/event3)
[ 863.554] (**) Logitech USB Receiver: Applying InputClass "evdev pointer catchall"
[ 863.554] (**) Logitech USB Receiver: Applying InputClass "evdev keyboard catchall"
[ 863.554] (II) Using input driver 'evdev' for 'Logitech USB Receiver'
[ 863.554] Option "XkbRules" "evdev"
[ 863.554] Option "XkbModel" "evdev"
[ 863.554] Option "XkbLayout" "us"
[ 863.554] Option "_source" "server/udev"
[ 863.554] Option "name" "Logitech USB Receiver"
[ 863.554] Option "path" "/dev/input/event3"
[ 863.554] Option "device" "/dev/input/event3"
[ 863.554] Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3:1.1/input/input3/event3"
[ 863.554] Option "driver" "evdev"
[ 863.554] (**) Logitech USB Receiver: always reports core events
[ 863.554] (**) evdev: Logitech USB Receiver: Device: "/dev/input/event3"
[ 863.554] (--) evdev: Logitech USB Receiver: Vendor 0x46d Product 0xc52b
[ 863.554] (--) evdev: Logitech USB Receiver: Found 20 mouse buttons
[ 863.554] (--) evdev: Logitech USB Receiver: Found scroll wheel(s)
[ 863.554] (--) evdev: Logitech USB Receiver: Found relative axes
[ 863.554] (--) evdev: Logitech USB Receiver: Found x and y relative axes
[ 863.554] (--) evdev: Logitech USB Receiver: Found absolute axes
[ 863.554] (II) evdev: Logitech USB Receiver: Forcing absolute x/y axes to exist.
[ 863.554] (--) evdev: Logitech USB Receiver: Found keys
[ 863.554] (II) evdev: Logitech USB Receiver: Configuring as mouse
[ 863.554] (II) evdev: Logitech USB Receiver: Configuring as keyboard
[ 863.554] (II) evdev: Logitech USB Receiver: Adding scrollwheel support
[ 863.555] (**) evdev: Logitech USB Receiver: YAxisMapping: buttons 4 and 5
[ 863.555] (**) evdev: Logitech USB Receiver: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[ 863.555] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3:1.1/input/input3/event3"
[ 863.555] (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: KEYBOARD, id 9)
[ 863.555] (**) Option "xkb_rules" "evdev"
[ 863.555] (**) Option "xkb_model" "evdev"
[ 863.555] (**) Option "xkb_layout" "us"
[ 863.555] (II) XKB: Reusing cached keymap
[ 863.555] (II) evdev: Logitech USB Receiver: initialized for relative axes.
[ 863.555] (WW) evdev: Logitech USB Receiver: ignoring absolute axes.
[ 863.555] (**) Logitech USB Receiver: (accel) keeping acceleration scheme 1
[ 863.555] (**) Logitech USB Receiver: (accel) acceleration profile 0
[ 863.555] (**) Logitech USB Receiver: (accel) acceleration factor: 2.000
[ 863.555] (**) Logitech USB Receiver: (accel) acceleration threshold: 4
[ 863.555] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/mouse0)
[ 863.555] (II) No input driver specified, ignoring this device.
[ 863.555] (II) This device may have been added with another device file.
[ 863.555] (II) config/udev: Adding input device MLK 2.4G wireless combo set (/dev/input/event4)
[ 863.555] (**) MLK 2.4G wireless combo set: Applying InputClass "evdev keyboard catchall"
[ 863.555] (II) Using input driver 'evdev' for 'MLK 2.4G wireless combo set'
[ 863.555] Option "XkbRules" "evdev"
[ 863.555] Option "XkbModel" "evdev"
[ 863.555] Option "XkbLayout" "us"
[ 863.555] Option "_source" "server/udev"
[ 863.555] Option "name" "MLK 2.4G wireless combo set"
[ 863.555] Option "path" "/dev/input/event4"
[ 863.555] Option "device" "/dev/input/event4"
[ 863.555] Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.4/2-1.4:1.0/input/input4/event4"
[ 863.555] Option "driver" "evdev"
[ 863.555] (**) MLK 2.4G wireless combo set: always reports core events
[ 863.555] (**) evdev: MLK 2.4G wireless combo set: Device: "/dev/input/event4"
[ 863.555] (--) evdev: MLK 2.4G wireless combo set: Vendor 0x4fc Product 0x5d8
[ 863.555] (--) evdev: MLK 2.4G wireless combo set: Found keys
[ 863.555] (II) evdev: MLK 2.4G wireless combo set: Configuring as keyboard
[ 863.555] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.4/2-1.4:1.0/input/input4/event4"
[ 863.555] (II) XINPUT: Adding extended input device "MLK 2.4G wireless combo set" (type: KEYBOARD, id 10)
[ 863.555] (**) Option "xkb_rules" "evdev"
[ 863.555] (**) Option "xkb_model" "evdev"
[ 863.555] (**) Option "xkb_layout" "us"
[ 863.555] (II) XKB: Reusing cached keymap
[ 863.555] (II) config/udev: Adding input device MLK 2.4G wireless combo set (/dev/input/event5)
[ 863.555] (**) MLK 2.4G wireless combo set: Applying InputClass "evdev pointer catchall"
[ 863.555] (**) MLK 2.4G wireless combo set: Applying InputClass "evdev keyboard catchall"
[ 863.555] (II) Using input driver 'evdev' for 'MLK 2.4G wireless combo set'
[ 863.555] Option "XkbRules" "evdev"
[ 863.555] Option "XkbModel" "evdev"
[ 863.555] Option "XkbLayout" "us"
[ 863.555] Option "_source" "server/udev"
[ 863.555] Option "name" "MLK 2.4G wireless combo set"
[ 863.555] Option "path" "/dev/input/event5"
[ 863.555] Option "device" "/dev/input/event5"
[ 863.555] Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.4/2-1.4:1.1/input/input5/event5"
[ 863.555] Option "driver" "evdev"
[ 863.555] (**) MLK 2.4G wireless combo set: always reports core events
[ 863.555] (**) evdev: MLK 2.4G wireless combo set: Device: "/dev/input/event5"
[ 863.555] (--) evdev: MLK 2.4G wireless combo set: Vendor 0x4fc Product 0x5d8
[ 863.555] (--) evdev: MLK 2.4G wireless combo set: Found 9 mouse buttons
[ 863.555] (--) evdev: MLK 2.4G wireless combo set: Found scroll wheel(s)
[ 863.555] (--) evdev: MLK 2.4G wireless combo set: Found relative axes
[ 863.556] (--) evdev: MLK 2.4G wireless combo set: Found x and y relative axes
[ 863.556] (--) evdev: MLK 2.4G wireless combo set: Found absolute axes
[ 863.556] (II) evdev: MLK 2.4G wireless combo set: Forcing absolute x/y axes to exist.
[ 863.556] (--) evdev: MLK 2.4G wireless combo set: Found keys
[ 863.556] (II) evdev: MLK 2.4G wireless combo set: Configuring as mouse
[ 863.556] (II) evdev: MLK 2.4G wireless combo set: Configuring as keyboard
[ 863.556] (II) evdev: MLK 2.4G wireless combo set: Adding scrollwheel support
[ 863.556] (**) evdev: MLK 2.4G wireless combo set: YAxisMapping: buttons 4 and 5
[ 863.556] (**) evdev: MLK 2.4G wireless combo set: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[ 863.556] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.4/2-1.4:1.1/input/input5/event5"
[ 863.556] (II) XINPUT: Adding extended input device "MLK 2.4G wireless combo set" (type: KEYBOARD, id 11)
[ 863.556] (**) Option "xkb_rules" "evdev"
[ 863.556] (**) Option "xkb_model" "evdev"
[ 863.556] (**) Option "xkb_layout" "us"
[ 863.556] (II) XKB: Reusing cached keymap
[ 863.556] (II) evdev: MLK 2.4G wireless combo set: initialized for relative axes.
[ 863.556] (WW) evdev: MLK 2.4G wireless combo set: ignoring absolute axes.
[ 863.556] (**) MLK 2.4G wireless combo set: (accel) keeping acceleration scheme 1
[ 863.556] (**) MLK 2.4G wireless combo set: (accel) acceleration profile 0
[ 863.556] (**) MLK 2.4G wireless combo set: (accel) acceleration factor: 2.000
[ 863.556] (**) MLK 2.4G wireless combo set: (accel) acceleration threshold: 4
[ 863.556] (II) config/udev: Adding input device MLK 2.4G wireless combo set (/dev/input/mouse1)
[ 863.556] (II) No input driver specified, ignoring this device.
[ 863.556] (II) This device may have been added with another device file.
[ 863.556] (II) config/udev: Adding input device Media Center Ed. eHome Infrared Remote Transceiver (0471:0815) (/dev/input/event7)
[ 863.556] (**) Media Center Ed. eHome Infrared Remote Transceiver (0471:0815): Ignoring device from InputClass "mceusb0"
[ 863.556] (II) config/udev: Adding input device PC Speaker (/dev/input/event6)
[ 863.556] (II) No input driver specified, ignoring this device.
[ 863.556] (II) This device may have been added with another device file.
[ 863.556] (II) config/udev: Adding input device MCE IR Keyboard/Mouse (mceusb) (/dev/input/event16)
[ 863.556] (**) MCE IR Keyboard/Mouse (mceusb): Applying InputClass "evdev pointer catchall"
[ 863.556] (**) MCE IR Keyboard/Mouse (mceusb): Applying InputClass "evdev keyboard catchall"
[ 863.556] (II) Using input driver 'evdev' for 'MCE IR Keyboard/Mouse (mceusb)'
[ 863.556] Option "XkbRules" "evdev"
[ 863.556] Option "XkbModel" "evdev"
[ 863.556] Option "XkbLayout" "us"
[ 863.556] Option "_source" "server/udev"
[ 863.556] Option "name" "MCE IR Keyboard/Mouse (mceusb)"
[ 863.556] Option "path" "/dev/input/event16"
[ 863.556] Option "device" "/dev/input/event16"
[ 863.556] Option "config_info" "udev:/sys/devices/virtual/input/input16/event16"
[ 863.556] Option "driver" "evdev"
[ 863.556] (**) MCE IR Keyboard/Mouse (mceusb): always reports core events
[ 863.556] (**) evdev: MCE IR Keyboard/Mouse (mceusb): Device: "/dev/input/event16"
[ 863.556] (--) evdev: MCE IR Keyboard/Mouse (mceusb): Vendor 0 Product 0
[ 863.556] (--) evdev: MCE IR Keyboard/Mouse (mceusb): Found 3 mouse buttons
[ 863.556] (--) evdev: MCE IR Keyboard/Mouse (mceusb): Found relative axes
[ 863.556] (--) evdev: MCE IR Keyboard/Mouse (mceusb): Found x and y relative axes
[ 863.556] (--) evdev: MCE IR Keyboard/Mouse (mceusb): Found keys
[ 863.556] (II) evdev: MCE IR Keyboard/Mouse (mceusb): Configuring as mouse
[ 863.556] (II) evdev: MCE IR Keyboard/Mouse (mceusb): Configuring as keyboard
[ 863.556] (**) evdev: MCE IR Keyboard/Mouse (mceusb): YAxisMapping: buttons 4 and 5
[ 863.556] (**) evdev: MCE IR Keyboard/Mouse (mceusb): EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[ 863.556] (**) Option "config_info" "udev:/sys/devices/virtual/input/input16/event16"
[ 863.556] (II) XINPUT: Adding extended input device "MCE IR Keyboard/Mouse (mceusb)" (type: KEYBOARD, id 12)
[ 863.556] (**) Option "xkb_rules" "evdev"
[ 863.556] (**) Option "xkb_model" "evdev"
[ 863.556] (**) Option "xkb_layout" "us"
[ 863.556] (II) XKB: Reusing cached keymap
[ 863.557] (II) evdev: MCE IR Keyboard/Mouse (mceusb): initialized for relative axes.
[ 863.557] (**) MCE IR Keyboard/Mouse (mceusb): (accel) keeping acceleration scheme 1
[ 863.557] (**) MCE IR Keyboard/Mouse (mceusb): (accel) acceleration profile 0
[ 863.557] (**) MCE IR Keyboard/Mouse (mceusb): (accel) acceleration factor: 2.000
[ 863.557] (**) MCE IR Keyboard/Mouse (mceusb): (accel) acceleration threshold: 4
[ 863.557] (II) config/udev: Adding input device MCE IR Keyboard/Mouse (mceusb) (/dev/input/mouse2)
[ 863.557] (II) No input driver specified, ignoring this device.
[ 863.557] (II) This device may have been added with another device file.
[ 896.256] (II) NVIDIA(GPU-0): Display (Samsung SyncMaster (CRT-1)) does not support NVIDIA
[ 896.256] (II) NVIDIA(GPU-0): 3D Vision stereo.
[ 896.256] (**) NVIDIA(1): Using HorizSync/VertRefresh ranges from the EDID for display
[ 896.256] (**) NVIDIA(1): device Samsung SyncMaster (CRT-1) (Using EDID frequencies
[ 896.256] (**) NVIDIA(1): has been enabled on all display devices.)
[ 896.256] (II) NVIDIA(1): Frequency information for Samsung SyncMaster (CRT-1):
[ 896.256] (II) NVIDIA(1): HorizSync : 30.000-81.000 kHz
[ 896.256] (II) NVIDIA(1): VertRefresh : 56.000-75.000 Hz
[ 896.256] (II) NVIDIA(1): (HorizSync from EDID)
[ 896.256] (II) NVIDIA(1): (VertRefresh from EDID)
[ 896.257] (II) NVIDIA(GPU-0):
[ 896.257] (II) NVIDIA(GPU-0): --- Modes in ModePool for Samsung SyncMaster (CRT-1) ---
[ 896.257] (II) NVIDIA(GPU-0): "nvidia-auto-select" : 1280 x 1024 @ 60.0 Hz (from: EDID)
[ 896.257] (II) NVIDIA(GPU-0): "1280x1024" : 1280 x 1024 @ 60.0 Hz (from: EDID)
[ 896.257] (II) NVIDIA(GPU-0): "1280x1024_60" : 1280 x 1024 @ 60.0 Hz (from: EDID)
[ 896.257] (II) NVIDIA(GPU-0): "1280x1024_75" : 1280 x 1024 @ 75.0 Hz (from: EDID)
[ 896.257] (II) NVIDIA(GPU-0): "1280x960" : 1280 x 960 @ 60.0 Hz (from: EDID)
[ 896.257] (II) NVIDIA(GPU-0): "1280x960_60" : 1280 x 960 @ 60.0 Hz (from: EDID)
[ 896.257] (II) NVIDIA(GPU-0): "1152x864" : 1152 x 864 @ 75.0 Hz (from: EDID)
[ 896.257] (II) NVIDIA(GPU-0): "1152x864_75" : 1152 x 864 @ 75.0 Hz (from: EDID)
[ 896.257] (II) NVIDIA(GPU-0): "1024x768" : 1024 x 768 @ 75.0 Hz (from: EDID)
[ 896.257] (II) NVIDIA(GPU-0): "1024x768_75" : 1024 x 768 @ 75.0 Hz (from: EDID)
[ 896.257] (II) NVIDIA(GPU-0): "1024x768_70" : 1024 x 768 @ 70.1 Hz (from: EDID)
[ 896.257] (II) NVIDIA(GPU-0): "1024x768_60" : 1024 x 768 @ 60.0 Hz (from: EDID)
[ 896.257] (II) NVIDIA(GPU-0): "800x600" : 800 x 600 @ 75.0 Hz (from: EDID)
[ 896.257] (II) NVIDIA(GPU-0): "800x600_75" : 800 x 600 @ 75.0 Hz (from: EDID)
[ 896.257] (II) NVIDIA(GPU-0): "800x600_72" : 800 x 600 @ 72.2 Hz (from: EDID)
[ 896.257] (II) NVIDIA(GPU-0): "800x600_60" : 800 x 600 @ 60.3 Hz (from: EDID)
[ 896.257] (II) NVIDIA(GPU-0): "800x600_56" : 800 x 600 @ 56.2 Hz (from: EDID)
[ 896.257] (II) NVIDIA(GPU-0): "640x480" : 640 x 480 @ 75.0 Hz (from: EDID)
[ 896.257] (II) NVIDIA(GPU-0): "640x480_75" : 640 x 480 @ 75.0 Hz (from: EDID)
[ 896.257] (II) NVIDIA(GPU-0): "640x480_72" : 640 x 480 @ 72.0 Hz (from: EDID)
[ 896.257] (II) NVIDIA(GPU-0): "640x480_60" : 640 x 480 @ 59.9 Hz (from: EDID)
[ 896.257] (II) NVIDIA(GPU-0): --- End of ModePool for Samsung SyncMaster (CRT-1): ---
[ 896.257] (II) NVIDIA(GPU-0):
[ 896.287] (II) NVIDIA(GPU-0): Display (Philips 240B (DFP-0)) does not support NVIDIA 3D
[ 896.287] (II) NVIDIA(GPU-0): Vision stereo.
[ 896.287] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
[ 896.287] (**) NVIDIA(0): device Philips 240B (DFP-0) (Using EDID frequencies has
[ 896.287] (**) NVIDIA(0): been enabled on all display devices.)
[ 896.287] (II) NVIDIA(0): Frequency information for Philips 240B (DFP-0):
[ 896.287] (II) NVIDIA(0): HorizSync : 24.000-94.000 kHz
[ 896.287] (II) NVIDIA(0): VertRefresh : 48.000-85.000 Hz
[ 896.287] (II) NVIDIA(0): (HorizSync from EDID)
[ 896.287] (II) NVIDIA(0): (VertRefresh from EDID)
[ 896.287] (II) NVIDIA(GPU-0):
[ 896.287] (II) NVIDIA(GPU-0): Native mode timings for Philips 240B (DFP-0):
[ 896.287] (II) NVIDIA(GPU-0): 1920 x 1200 @ 60 Hz
[ 896.287] (II) NVIDIA(GPU-0): Pixel Clock : 154.000 MHz
[ 896.287] (II) NVIDIA(GPU-0): HRes, HSyncStart : 1920, 1968
[ 896.287] (II) NVIDIA(GPU-0): HSyncEnd, HTotal : 2000, 2080
[ 896.287] (II) NVIDIA(GPU-0): VRes, VSyncStart : 1200, 1203
[ 896.287] (II) NVIDIA(GPU-0): VSyncEnd, VTotal : 1209, 1235
[ 896.287] (II) NVIDIA(GPU-0): H/V Polarity : +/-
[ 896.287] (II) NVIDIA(GPU-0):
[ 896.289] (II) NVIDIA(GPU-0):
[ 896.289] (II) NVIDIA(GPU-0): --- Modes in ModePool for Philips 240B (DFP-0) ---
[ 896.289] (II) NVIDIA(GPU-0): "nvidia-auto-select" : 1920 x 1200 @ 60.0 Hz (from: EDID)
[ 896.289] (II) NVIDIA(GPU-0): "1920x1200" : 1920 x 1200 @ 60.0 Hz (from: EDID)
[ 896.289] (II) NVIDIA(GPU-0): "1920x1200_60" : 1920 x 1200 @ 60.0 Hz (from: EDID)
[ 896.289] (II) NVIDIA(GPU-0): "1680x1050" : 1680 x 1050 @ 60.0 Hz (from: EDID)
[ 896.289] (II) NVIDIA(GPU-0): "1680x1050_60" : 1680 x 1050 @ 60.0 Hz (from: EDID)
[ 896.289] (II) NVIDIA(GPU-0): "1600x1200" : 1600 x 1200 @ 60.0 Hz (from: EDID)
[ 896.289] (II) NVIDIA(GPU-0): "1600x1200_60" : 1600 x 1200 @ 60.0 Hz (from: EDID)
[ 896.289] (II) NVIDIA(GPU-0): "1440x900" : 1440 x 900 @ 75.0 Hz (from: EDID)
[ 896.289] (II) NVIDIA(GPU-0): "1440x900_75" : 1440 x 900 @ 75.0 Hz (from: EDID)
[ 896.289] (II) NVIDIA(GPU-0): "1440x900_60" : 1440 x 900 @ 59.9 Hz (from: EDID)
[ 896.289] (II) NVIDIA(GPU-0): "1280x1024" : 1280 x 1024 @ 75.0 Hz (from: EDID)
[ 896.289] (II) NVIDIA(GPU-0): "1280x1024_75" : 1280 x 1024 @ 75.0 Hz (from: EDID)
[ 896.289] (II) NVIDIA(GPU-0): "1280x960" : 1280 x 960 @ 60.0 Hz (from: EDID)
[ 896.289] (II) NVIDIA(GPU-0): "1280x960_60" : 1280 x 960 @ 60.0 Hz (from: EDID)
[ 896.289] (II) NVIDIA(GPU-0): "1280x720" : 1280 x 720 @ 60.0 Hz (from: EDID)
[ 896.289] (II) NVIDIA(GPU-0): "1280x720_60" : 1280 x 720 @ 60.0 Hz (from: EDID)
[ 896.289] (II) NVIDIA(GPU-0): "1152x864" : 1152 x 864 @ 60.0 Hz (from: EDID)
[ 896.289] (II) NVIDIA(GPU-0): "1152x864_60" : 1152 x 864 @ 60.0 Hz (from: EDID)
[ 896.289] (II) NVIDIA(GPU-0): "1024x768" : 1024 x 768 @ 75.0 Hz (from: EDID)
[ 896.289] (II) NVIDIA(GPU-0): "1024x768_75" : 1024 x 768 @ 75.0 Hz (from: EDID)
[ 896.289] (II) NVIDIA(GPU-0): "1024x768_70" : 1024 x 768 @ 70.1 Hz (from: EDID)
[ 896.289] (II) NVIDIA(GPU-0): "1024x768_60" : 1024 x 768 @ 60.0 Hz (from: EDID)
[ 896.289] (II) NVIDIA(GPU-0): "800x600" : 800 x 600 @ 75.0 Hz (from: EDID)
[ 896.289] (II) NVIDIA(GPU-0): "800x600_75" : 800 x 600 @ 75.0 Hz (from: EDID)
[ 896.289] (II) NVIDIA(GPU-0): "800x600_72" : 800 x 600 @ 72.2 Hz (from: EDID)
[ 896.289] (II) NVIDIA(GPU-0): "800x600_60" : 800 x 600 @ 60.3 Hz (from: EDID)
[ 896.289] (II) NVIDIA(GPU-0): "800x600_56" : 800 x 600 @ 56.2 Hz (from: EDID)
[ 896.289] (II) NVIDIA(GPU-0): "640x480" : 640 x 480 @ 75.0 Hz (from: EDID)
[ 896.289] (II) NVIDIA(GPU-0): "640x480_75" : 640 x 480 @ 75.0 Hz (from: EDID)
[ 896.289] (II) NVIDIA(GPU-0): "640x480_72" : 640 x 480 @ 72.0 Hz (from: EDID)
[ 896.289] (II) NVIDIA(GPU-0): "640x480_60" : 640 x 480 @ 59.9 Hz (from: EDID)
[ 896.289] (II) NVIDIA(GPU-0): --- End of ModePool for Philips 240B (DFP-0): ---
[ 896.289] (II) NVIDIA(GPU-0):
[ 863.560]
X.Org X Server 1.13.1
Release Date: 2012-12-13
[ 863.560] X Protocol Version 11, Revision 0
[ 863.560] Build Operating System: Linux 3.6.6-gentoo x86_64 Gentoo
[ 863.560] Current Operating System: Linux localhost 3.7.1-gentoo #4 SMP PREEMPT Sat Jan 5 13:41:52 EET 2013 x86_64
[ 863.560] Kernel command line: BOOT_IMAGE=/kernel-genkernel-x86_64-3.7.1-gentoo root=/dev/mapper/main-root_1 ro dolvm
[ 863.560] Build Date: 01 January 2013 06:13:23AM
[ 863.560]
[ 863.560] Current version of pixman: 0.28.2
[ 863.560] Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[ 863.560] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 863.560] (==) Log file: "/var/log/Xorg.1.log", Time: Sat Jan 5 16:55:02 2013
[ 863.560] (++) Using config file: "/etc/X11/xorg-tv.conf"
[ 863.560] (==) Using config directory: "/etc/X11/xorg.conf.d"
[ 863.560] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[ 863.560] (==) ServerLayout "Layout0"
[ 863.560] (==) No screen section available. Using defaults.
[ 863.560] (**) |-->Screen "Default Screen Section" (0)
[ 863.560] (**) | |-->Monitor "<default monitor>"
[ 863.560] (==) No device specified for screen "Default Screen Section".
Using the first device section listed.
[ 863.560] (**) | |-->Device "Device0"
[ 863.560] (==) No monitor specified for screen "Default Screen Section".
Using a default monitor configuration.
[ 863.560] (**) |-->Input Device "Keyboard0"
[ 863.560] (**) |-->Input Device "Mouse0"
[ 863.560] (**) Option "AllowMouseOpenFail" "on"
[ 863.560] (**) Option "Xinerama" "0"
[ 863.560] (**) Option "AutoAddDevices" "false"
[ 863.560] (**) Option "AutoEnableDevices" "false"
[ 863.560] (**) Option "DRI2" "on"
[ 863.561] (**) Option "AutoAddGPU" "off"
[ 863.561] (**) Not automatically adding devices
[ 863.561] (**) Not automatically enabling devices
[ 863.561] (**) Not automatically adding GPU devices
[ 863.561] (==) FontPath set to:
/usr/share/fonts/misc/,
/usr/share/fonts/TTF/,
/usr/share/fonts/OTF/,
/usr/share/fonts/Type1/,
/usr/share/fonts/100dpi/,
/usr/share/fonts/75dpi/
[ 863.561] (==) ModulePath set to "/usr/lib64/xorg/modules"
[ 863.561] (II) Loader magic: 0x80cc20
[ 863.561] (II) Module ABI versions:
[ 863.561] X.Org ANSI C Emulation: 0.4
[ 863.561] X.Org Video Driver: 13.1
[ 863.561] X.Org XInput driver : 18.0
[ 863.561] X.Org Server Extension : 7.0
[ 863.563] (--) PCI:*(0:2:0:0) 10de:0ca3:10de:072e rev 162, Mem @ 0xf9000000/16777216, 0xb0000000/268435456, 0xc0000000/33554432, I/O @ 0x0000d000/128, BIOS @ 0x????????/524288
[ 863.563] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[ 863.563] Initializing built-in extension Generic Event Extension
[ 863.563] Initializing built-in extension SHAPE
[ 863.563] Initializing built-in extension MIT-SHM
[ 863.563] Initializing built-in extension XInputExtension
[ 863.563] Initializing built-in extension XTEST
[ 863.563] Initializing built-in extension BIG-REQUESTS
[ 863.563] Initializing built-in extension SYNC
[ 863.563] Initializing built-in extension XKEYBOARD
[ 863.563] Initializing built-in extension XC-MISC
[ 863.563] Initializing built-in extension XINERAMA
[ 863.563] Initializing built-in extension XFIXES
[ 863.563] Initializing built-in extension RENDER
[ 863.563] Initializing built-in extension RANDR
[ 863.563] Initializing built-in extension COMPOSITE
[ 863.563] Initializing built-in extension DAMAGE
[ 863.563] Initializing built-in extension MIT-SCREEN-SAVER
[ 863.563] Initializing built-in extension DOUBLE-BUFFER
[ 863.563] Initializing built-in extension RECORD
[ 863.563] Initializing built-in extension DPMS
[ 863.563] Initializing built-in extension X-Resource
[ 863.563] Initializing built-in extension XVideo
[ 863.563] Initializing built-in extension XVideo-MotionCompensation
[ 863.563] Initializing built-in extension XFree86-VidModeExtension
[ 863.563] Initializing built-in extension XFree86-DGA
[ 863.563] Initializing built-in extension XFree86-DRI
[ 863.563] Initializing built-in extension DRI2
[ 863.563] (II) LoadModule: "glx"
[ 863.563] (II) Loading /usr/lib64/xorg/modules/extensions/libglx.so
[ 863.569] (II) Module glx: vendor="NVIDIA Corporation"
[ 863.569] compiled for 4.0.2, module version = 1.0.0
[ 863.569] Module class: X.Org Server Extension
[ 863.569] (II) NVIDIA GLX Module 313.09 Tue Dec 4 22:06:18 PST 2012
[ 863.569] Loading extension GLX
[ 863.569] (II) LoadModule: "nvidia"
[ 863.569] (II) Loading /usr/lib64/xorg/modules/drivers/nvidia_drv.so
[ 863.569] (II) Module nvidia: vendor="NVIDIA Corporation"
[ 863.569] compiled for 4.0.2, module version = 1.0.0
[ 863.569] Module class: X.Org Video Driver
[ 863.569] (II) LoadModule: "null"
[ 863.569] (WW) Warning, couldn't open module null
[ 863.569] (II) UnloadModule: "null"
[ 863.569] (II) Unloading null
[ 863.569] (EE) Failed to load module "null" (module does not exist, 0)
[ 863.569] (II) NVIDIA dlloader X Driver 313.09 Tue Dec 4 21:47:16 PST 2012
[ 863.569] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[ 863.569] (II) NVIDIA X compatibility module for ABI 13.0 built from git commit 98e3f3fde35ca805d44ee38394bfd86058f9f4b8
[ 863.569] (II) X log verbosity: 5
[ 863.569] (++) using VT number 7
[ 863.569] (II) Loading sub module "wfb"
[ 863.569] (II) LoadModule: "wfb"
[ 863.569] (II) Loading /usr/lib64/xorg/modules/libwfb.so
[ 863.570] (II) Module wfb: vendor="X.Org Foundation"
[ 863.570] compiled for 1.13.1, module version = 1.0.0
[ 863.570] ABI class: X.Org ANSI C Emulation, version 0.4
[ 863.570] (II) Loading sub module "ramdac"
[ 863.570] (II) LoadModule: "ramdac"
[ 863.570] (II) Module "ramdac" already built-in
[ 863.570] (II) NVIDIA(0): Creating default Display subsection in Screen section
"Default Screen Section" for depth/fbbpp 24/32
[ 863.570] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
[ 863.570] (==) NVIDIA(0): RGB weight 888
[ 863.570] (==) NVIDIA(0): Default visual is TrueColor
[ 863.570] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[ 863.570] (**) NVIDIA(0): Option "MultiGPU" "0"
[ 863.570] (==) NVIDIA(0): Using HW cursor
[ 863.570] (==) NVIDIA(0): Video key set to default value of 0x101fe
[ 863.570] (**) NVIDIA(0): NVIDIA Multi-GPU disabled.
[ 863.570] (==) NVIDIA(0): Not mapping the primary surface by default.
[ 863.570] (**) NVIDIA(0): Enabling 2D acceleration
[ 863.615] (II) NVIDIA(GPU-0): Display (DENON, Ltd. DENON-AVAMP (DFP-1)) does not support
[ 863.615] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
[ 863.616] (II) NVIDIA(0): NVIDIA GPU GeForce GT 240 (GT215) at PCI:2:0:0 (GPU-0)
[ 863.616] (--) NVIDIA(0): Memory: 1048576 kBytes
[ 863.616] (II) NVIDIA(0): Board ID: 0xca23
[ 863.616] (II) NVIDIA(0): GPU RAM Type: GDDR3
[ 863.616] (--) NVIDIA(0): VideoBIOS: 70.15.25.00.00
[ 863.616] (--) NVIDIA(0): Found 2 heads on board
[ 863.616] (II) NVIDIA(0): Supported display device(s): CRT-0, CRT-1, DFP-0, DFP-1
[ 863.616] (II) NVIDIA(0): Bus detected as PCI Express
[ 863.616] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[ 863.616] (II) NVIDIA(0): DFP scaling is supported on this GPU
[ 863.616] (II) NVIDIA(0): SPS : 4
[ 863.616] (II) NVIDIA(0): User configuration of GPU PowerMizer is supported
[ 863.616] (II) NVIDIA(0):
[ 863.619] (--) NVIDIA(0): Valid display device(s) on GeForce GT 240 at PCI:2:0:0
[ 863.619] (--) NVIDIA(0): CRT-0
[ 863.619] (--) NVIDIA(0): CRT-1
[ 863.619] (--) NVIDIA(0): DFP-0
[ 863.619] (--) NVIDIA(0): DENON, Ltd. DENON-AVAMP (DFP-1) (connected)
[ 863.619] (--) NVIDIA(0): CRT-0: 480.0 MHz maximum pixel clock
[ 863.619] (--) NVIDIA(0): Name Aliases for CRT-0:
[ 863.619] (--) NVIDIA(0): CRT
[ 863.619] (--) NVIDIA(0): CRT-0
[ 863.619] (--) NVIDIA(0): DPY-0
[ 863.619] (--) NVIDIA(0): DVI-I-0
[ 863.619] (--) NVIDIA(0): CRT-1: 400.0 MHz maximum pixel clock
[ 863.619] (--) NVIDIA(0): Name Aliases for CRT-1:
[ 863.619] (--) NVIDIA(0): CRT
[ 863.619] (--) NVIDIA(0): CRT-1
[ 863.619] (--) NVIDIA(0): DPY-1
[ 863.619] (--) NVIDIA(0): VGA-0
[ 863.619] (--) NVIDIA(0): DFP-0: 330.0 MHz maximum pixel clock
[ 863.619] (--) NVIDIA(0): DFP-0: Internal Single Link TMDS
[ 863.619] (--) NVIDIA(0): DFP-0: DFP modes are not limited to 60 Hz refresh rate
[ 863.619] (--) NVIDIA(0): DFP-0: DFP is not internal to notebook
[ 863.619] (--) NVIDIA(0): Name Aliases for DFP-0:
[ 863.619] (--) NVIDIA(0): DFP
[ 863.619] (--) NVIDIA(0): DFP-0
[ 863.619] (--) NVIDIA(0): DPY-2
[ 863.619] (--) NVIDIA(0): DVI-I-1
[ 863.619] (--) NVIDIA(0): DENON, Ltd. DENON-AVAMP (DFP-1): 165.0 MHz maximum pixel clock
[ 863.619] (--) NVIDIA(0): DENON, Ltd. DENON-AVAMP (DFP-1): Internal Single Link TMDS
[ 863.619] (--) NVIDIA(0): DENON, Ltd. DENON-AVAMP (DFP-1): Native FlatPanel Scaling is supported
[ 863.619] (--) NVIDIA(0): DENON, Ltd. DENON-AVAMP (DFP-1): DFP modes are not limited to 60 Hz refresh rate
[ 863.619] (--) NVIDIA(0): DENON, Ltd. DENON-AVAMP (DFP-1): DFP is not internal to notebook
[ 863.619] (--) NVIDIA(0): Name Aliases for DENON, Ltd. DENON-AVAMP (DFP-1):
[ 863.619] (--) NVIDIA(0): DFP
[ 863.619] (--) NVIDIA(0): DFP-1
[ 863.619] (--) NVIDIA(0): DPY-3
[ 863.619] (--) NVIDIA(0): HDMI-0
[ 863.619] (--) NVIDIA(0): DPY-EDID-b6642c83-406b-d284-c9ae-702a665c6761
[ 863.619] (--) NVIDIA(0):
[ 863.619] (--) NVIDIA(0): --- EDID for DENON, Ltd. DENON-AVAMP (DFP-1) ---
[ 863.619] (--) NVIDIA(0): EDID Version : 1.3
[ 863.619] (--) NVIDIA(0): Manufacturer : DON
[ 863.619] (--) NVIDIA(0): Monitor Name : DENON, Ltd. DENON-AVAMP
[ 863.619] (--) NVIDIA(0): Product ID : 0x0014
[ 863.619] (--) NVIDIA(0): 32-bit Serial Number : 0x01010101
[ 863.619] (--) NVIDIA(0): Serial Number String :
[ 863.619] (--) NVIDIA(0): Manufacture Date : 2009, week 0
[ 863.619] (--) NVIDIA(0): DPMS Capabilities : Standby Suspend Active Off
[ 863.619] (--) NVIDIA(0): Input Type : Digital
[ 863.619] (--) NVIDIA(0): Prefer first detailed timing : Yes
[ 863.619] (--) NVIDIA(0): Supports GTF : No
[ 863.619] (--) NVIDIA(0): Maximum Image Size : 700 mm x 390 mm
[ 863.619] (--) NVIDIA(0): Valid HSync Range : 31.0 kHz - 84.0 kHz
[ 863.619] (--) NVIDIA(0): Valid VRefresh Range : 57.0 Hz - 75.0 Hz
[ 863.619] (--) NVIDIA(0): EDID maximum pixel clock : 180.0 MHz
[ 863.619] (--) NVIDIA(0): CEA-861 revision : 3
[ 863.619] (--) NVIDIA(0): IEEE Vendor Registration ID : 00-0c-03
[ 863.619] (--) NVIDIA(0): Supports YCbCr 4:4:4 : Yes
[ 863.619] (--) NVIDIA(0): Supports YCbCr 4:2:2 : Yes
[ 863.619] (--) NVIDIA(0): Supports Basic Audio : Yes
[ 863.619] (--) NVIDIA(0): Audio Descriptor : 0
[ 863.619] (--) NVIDIA(0): Audio Format : PCM
[ 863.619] (--) NVIDIA(0): Maximum Channels : 8
[ 863.619] (--) NVIDIA(0): Sample Rates : 32KHz, 44KHz, 48KHz, 88KHz, 96KHz, 176KHz, 192KHz
[ 863.619] (--) NVIDIA(0): Sample Sizes : 16-bits, 20-bits, 24-bits
[ 863.619] (--) NVIDIA(0): Audio Descriptor : 1
[ 863.619] (--) NVIDIA(0): Audio Format : DTS
[ 863.619] (--) NVIDIA(0): Maximum Channels : 6
[ 863.619] (--) NVIDIA(0): Sample Rates : 44KHz, 48KHz, 88KHz, 96KHz
[ 863.619] (--) NVIDIA(0): Maximum Bit Rate : 1536 kHz
[ 863.619] (--) NVIDIA(0): Audio Descriptor : 2
[ 863.619] (--) NVIDIA(0): Audio Format : AC-3
[ 863.619] (--) NVIDIA(0): Maximum Channels : 6
[ 863.619] (--) NVIDIA(0): Sample Rates : 32KHz, 44KHz, 48KHz
[ 863.619] (--) NVIDIA(0): Maximum Bit Rate : 640 kHz
[ 863.619] (--) NVIDIA(0): Audio Descriptor : 3
[ 863.619] (--) NVIDIA(0): Audio Format : DTS-HD
[ 863.619] (--) NVIDIA(0): Maximum Channels : 8
[ 863.619] (--) NVIDIA(0): Sample Rates : 44KHz, 48KHz, 88KHz, 96KHz, 176KHz, 192KHz
[ 863.619] (--) NVIDIA(0): Audio Descriptor : 4
[ 863.619] (--) NVIDIA(0): Audio Format : E-AC-3
[ 863.619] (--) NVIDIA(0): Maximum Channels : 8
[ 863.619] (--) NVIDIA(0): Sample Rates : 44KHz, 48KHz
[ 863.619] (--) NVIDIA(0): Audio Descriptor : 5
[ 863.619] (--) NVIDIA(0): Audio Format : MLP
[ 863.619] (--) NVIDIA(0): Maximum Channels : 6
[ 863.619] (--) NVIDIA(0): Sample Rates : 44KHz, 48KHz, 88KHz, 96KHz, 176KHz, 192KHz
[ 863.619] (--) NVIDIA(0): Audio Descriptor : 6
[ 863.619] (--) NVIDIA(0): Audio Format : MLP
[ 863.619] (--) NVIDIA(0): Maximum Channels : 8
[ 863.619] (--) NVIDIA(0): Sample Rates : 44KHz, 48KHz, 88KHz, 96KHz
[ 863.619] (--) NVIDIA(0): Speaker Allocation Data :
[ 863.619] (--) NVIDIA(0): Front Left + Front Right
[ 863.619] (--) NVIDIA(0): Low Frequency Effect
[ 863.619] (--) NVIDIA(0): Front Center
[ 863.619] (--) NVIDIA(0): Rear Left + Rear Right
[ 863.619] (--) NVIDIA(0): Rear Center
[ 863.619] (--) NVIDIA(0): Rear Left Center + Rear Right Center
[ 863.619] (--) NVIDIA(0): EDID bits per component : 0
[ 863.619] (--) NVIDIA(0):
[ 863.619] (--) NVIDIA(0): Standard Timings:
[ 863.619] (--) NVIDIA(0): 640 x 480 @ 60 Hz
[ 863.619] (--) NVIDIA(0): 800 x 600 @ 60 Hz
[ 863.619] (--) NVIDIA(0): 1024 x 768 @ 60 Hz
[ 863.619] (--) NVIDIA(0): 1280 x 1024 @ 60 Hz
[ 863.619] (--) NVIDIA(0): 1920 x 1080 @ 60 Hz
[ 863.619] (--) NVIDIA(0):
[ 863.619] (--) NVIDIA(0): Detailed Timings:
[ 863.619] (--) NVIDIA(0): 1920 x 1080 @ 60 Hz
[ 863.619] (--) NVIDIA(0): Pixel Clock : 138.50 MHz
[ 863.619] (--) NVIDIA(0): HRes, HSyncStart : 1920, 1968
[ 863.619] (--) NVIDIA(0): HSyncEnd, HTotal : 2000, 2080
[ 863.619] (--) NVIDIA(0): VRes, VSyncStart : 1080, 1083
[ 863.619] (--) NVIDIA(0): VSyncEnd, VTotal : 1088, 1111
[ 863.619] (--) NVIDIA(0): H/V Polarity : +/-
[ 863.619] (--) NVIDIA(0): Image Size : 1000 mm x 550 mm
[ 863.619] (--) NVIDIA(0): 1360 x 768 @ 60 Hz
[ 863.619] (--) NVIDIA(0): Pixel Clock : 84.75 MHz
[ 863.620] (--) NVIDIA(0): HRes, HSyncStart : 1360, 1432
[ 863.620] (--) NVIDIA(0): HSyncEnd, HTotal : 1568, 1776
[ 863.620] (--) NVIDIA(0): VRes, VSyncStart : 768, 771
[ 863.620] (--) NVIDIA(0): VSyncEnd, VTotal : 776, 798
[ 863.620] (--) NVIDIA(0): H/V Polarity : -/+
[ 863.620] (--) NVIDIA(0): Image Size : 700 mm x 390 mm
[ 863.620] (--) NVIDIA(0):
[ 863.620] (--) NVIDIA(0): Established Timings:
[ 863.620] (--) NVIDIA(0): 640 x 480 @ 60 Hz
[ 863.620] (--) NVIDIA(0): 640 x 480 @ 75 Hz
[ 863.620] (--) NVIDIA(0): 800 x 600 @ 60 Hz
[ 863.620] (--) NVIDIA(0): 800 x 600 @ 75 Hz
[ 863.620] (--) NVIDIA(0): 1024 x 768 @ 60 Hz
[ 863.620] (--) NVIDIA(0): 1024 x 768 @ 70 Hz
[ 863.620] (--) NVIDIA(0): 1024 x 768 @ 75 Hz
[ 863.620] (--) NVIDIA(0):
[ 863.620] (--) NVIDIA(0): CEA-861B Timings:
[ 863.620] (--) NVIDIA(0): 640 x 480 @ 60 Hz
[ 863.620] (--) NVIDIA(0): Pixel Clock : 25.17 MHz
[ 863.620] (--) NVIDIA(0): HRes, HSyncStart : 640, 656
[ 863.620] (--) NVIDIA(0): HSyncEnd, HTotal : 752, 800
[ 863.620] (--) NVIDIA(0): VRes, VSyncStart : 480, 490
[ 863.620] (--) NVIDIA(0): VSyncEnd, VTotal : 492, 525
[ 863.620] (--) NVIDIA(0): H/V Polarity : -/-
[ 863.620] (--) NVIDIA(0): CEA Format : 0
[ 863.620] (--) NVIDIA(0): Aspect Ratio : 4:3
[ 863.620] (--) NVIDIA(0): 720 x 480 @ 60 Hz
[ 863.620] (--) NVIDIA(0): Pixel Clock : 27.00 MHz
[ 863.620] (--) NVIDIA(0): HRes, HSyncStart : 720, 736
[ 863.620] (--) NVIDIA(0): HSyncEnd, HTotal : 798, 858
[ 863.620] (--) NVIDIA(0): VRes, VSyncStart : 480, 489
[ 863.620] (--) NVIDIA(0): VSyncEnd, VTotal : 495, 525
[ 863.620] (--) NVIDIA(0): H/V Polarity : -/-
[ 863.620] (--) NVIDIA(0): CEA Format : 2
[ 863.620] (--) NVIDIA(0): Aspect Ratio : 4:3
[ 863.620] (--) NVIDIA(0): 720 x 480 @ 60 Hz
[ 863.620] (--) NVIDIA(0): Pixel Clock : 27.00 MHz
[ 863.620] (--) NVIDIA(0): HRes, HSyncStart : 720, 736
[ 863.620] (--) NVIDIA(0): HSyncEnd, HTotal : 798, 858
[ 863.620] (--) NVIDIA(0): VRes, VSyncStart : 480, 489
[ 863.620] (--) NVIDIA(0): VSyncEnd, VTotal : 495, 525
[ 863.620] (--) NVIDIA(0): H/V Polarity : -/-
[ 863.620] (--) NVIDIA(0): CEA Format : 3
[ 863.620] (--) NVIDIA(0): Aspect Ratio : 16:9
[ 863.620] (--) NVIDIA(0): 720 x 576 @ 50 Hz
[ 863.620] (--) NVIDIA(0): Pixel Clock : 27.00 MHz
[ 863.620] (--) NVIDIA(0): HRes, HSyncStart : 1440, 1464
[ 863.620] (--) NVIDIA(0): HSyncEnd, HTotal : 1590, 1728
[ 863.620] (--) NVIDIA(0): VRes, VSyncStart : 576, 580
[ 863.620] (--) NVIDIA(0): VSyncEnd, VTotal : 586, 624
[ 863.620] (--) NVIDIA(0): H/V Polarity : -/-
[ 863.620] (--) NVIDIA(0): Interlaced : yes
[ 863.620] (--) NVIDIA(0): CEA Format : 21
[ 863.620] (--) NVIDIA(0): Aspect Ratio : 4:3
[ 863.620] (--) NVIDIA(0): 720 x 576 @ 50 Hz
[ 863.620] (--) NVIDIA(0): Pixel Clock : 27.00 MHz
[ 863.620] (--) NVIDIA(0): HRes, HSyncStart : 720, 732
[ 863.620] (--) NVIDIA(0): HSyncEnd, HTotal : 796, 864
[ 863.620] (--) NVIDIA(0): VRes, VSyncStart : 576, 581
[ 863.620] (--) NVIDIA(0): VSyncEnd, VTotal : 586, 625
[ 863.620] (--) NVIDIA(0): H/V Polarity : -/-
[ 863.620] (--) NVIDIA(0): CEA Format : 18
[ 863.620] (--) NVIDIA(0): Aspect Ratio : 16:9
[ 863.620] (--) NVIDIA(0): 1280 x 720 @ 50 Hz
[ 863.620] (--) NVIDIA(0): Pixel Clock : 74.25 MHz
[ 863.620] (--) NVIDIA(0): HRes, HSyncStart : 1280, 1720
[ 863.620] (--) NVIDIA(0): HSyncEnd, HTotal : 1760, 1980
[ 863.620] (--) NVIDIA(0): VRes, VSyncStart : 720, 725
[ 863.620] (--) NVIDIA(0): VSyncEnd, VTotal : 730, 750
[ 863.620] (--) NVIDIA(0): H/V Polarity : +/+
[ 863.620] (--) NVIDIA(0): CEA Format : 19
[ 863.620] (--) NVIDIA(0): Aspect Ratio : 16:9
[ 863.620] (--) NVIDIA(0): 1280 x 720 @ 60 Hz
[ 863.620] (--) NVIDIA(0): Pixel Clock : 74.18 MHz
[ 863.620] (--) NVIDIA(0): HRes, HSyncStart : 1280, 1390
[ 863.620] (--) NVIDIA(0): HSyncEnd, HTotal : 1430, 1650
[ 863.620] (--) NVIDIA(0): VRes, VSyncStart : 720, 725
[ 863.620] (--) NVIDIA(0): VSyncEnd, VTotal : 730, 750
[ 863.620] (--) NVIDIA(0): H/V Polarity : +/+
[ 863.620] (--) NVIDIA(0): CEA Format : 4
[ 863.620] (--) NVIDIA(0): Aspect Ratio : 16:9
[ 863.620] (--) NVIDIA(0): 1920 x 1080 @ 50 Hz
[ 863.620] (--) NVIDIA(0): Pixel Clock : 74.25 MHz
[ 863.620] (--) NVIDIA(0): HRes, HSyncStart : 1920, 2448
[ 863.620] (--) NVIDIA(0): HSyncEnd, HTotal : 2492, 2640
[ 863.620] (--) NVIDIA(0): VRes, VSyncStart : 1080, 1084
[ 863.620] (--) NVIDIA(0): VSyncEnd, VTotal : 1094, 1124
[ 863.620] (--) NVIDIA(0): H/V Polarity : +/+
[ 863.620] (--) NVIDIA(0): Interlaced : yes
[ 863.620] (--) NVIDIA(0): CEA Format : 20
[ 863.620] (--) NVIDIA(0): Aspect Ratio : 16:9
[ 863.620] (--) NVIDIA(0): 1920 x 1080 @ 60 Hz
[ 863.620] (--) NVIDIA(0): Pixel Clock : 74.18 MHz
[ 863.620] (--) NVIDIA(0): HRes, HSyncStart : 1920, 2008
[ 863.620] (--) NVIDIA(0): HSyncEnd, HTotal : 2052, 2200
[ 863.620] (--) NVIDIA(0): VRes, VSyncStart : 1080, 1084
[ 863.620] (--) NVIDIA(0): VSyncEnd, VTotal : 1094, 1124
[ 863.620] (--) NVIDIA(0): H/V Polarity : +/+
[ 863.620] (--) NVIDIA(0): Interlaced : yes
[ 863.620] (--) NVIDIA(0): CEA Format : 5
[ 863.620] (--) NVIDIA(0): Aspect Ratio : 16:9
[ 863.620] (--) NVIDIA(0): 1920 x 1080 @ 24 Hz
[ 863.620] (--) NVIDIA(0): Pixel Clock : 74.16 MHz
[ 863.620] (--) NVIDIA(0): HRes, HSyncStart : 1920, 2558
[ 863.620] (--) NVIDIA(0): HSyncEnd, HTotal : 2602, 2750
[ 863.620] (--) NVIDIA(0): VRes, VSyncStart : 1080, 1084
[ 863.620] (--) NVIDIA(0): VSyncEnd, VTotal : 1089, 1125
[ 863.620] (--) NVIDIA(0): H/V Polarity : +/+
[ 863.620] (--) NVIDIA(0): CEA Format : 32
[ 863.620] (--) NVIDIA(0): Aspect Ratio : 16:9
[ 863.620] (--) NVIDIA(0): 1920 x 1080 @ 25 Hz
[ 863.620] (--) NVIDIA(0): Pixel Clock : 74.25 MHz
[ 863.620] (--) NVIDIA(0): HRes, HSyncStart : 1920, 2448
[ 863.620] (--) NVIDIA(0): HSyncEnd, HTotal : 2492, 2640
[ 863.620] (--) NVIDIA(0): VRes, VSyncStart : 1080, 1084
[ 863.620] (--) NVIDIA(0): VSyncEnd, VTotal : 1089, 1125
[ 863.620] (--) NVIDIA(0): H/V Polarity : +/+
[ 863.620] (--) NVIDIA(0): CEA Format : 33
[ 863.620] (--) NVIDIA(0): Aspect Ratio : 16:9
[ 863.620] (--) NVIDIA(0): 1920 x 1080 @ 30 Hz
[ 863.620] (--) NVIDIA(0): Pixel Clock : 74.18 MHz
[ 863.620] (--) NVIDIA(0): HRes, HSyncStart : 1920, 2008
[ 863.620] (--) NVIDIA(0): HSyncEnd, HTotal : 2052, 2200
[ 863.620] (--) NVIDIA(0): VRes, VSyncStart : 1080, 1084
[ 863.620] (--) NVIDIA(0): VSyncEnd, VTotal : 1089, 1125
[ 863.620] (--) NVIDIA(0): H/V Polarity : +/+
[ 863.620] (--) NVIDIA(0): CEA Format : 34
[ 863.620] (--) NVIDIA(0): Aspect Ratio : 16:9
[ 863.620] (--) NVIDIA(0): 1920 x 1080 @ 50 Hz
[ 863.620] (--) NVIDIA(0): Pixel Clock : 148.50 MHz
[ 863.620] (--) NVIDIA(0): HRes, HSyncStart : 1920, 2448
[ 863.620] (--) NVIDIA(0): HSyncEnd, HTotal : 2492, 2640
[ 863.620] (--) NVIDIA(0): VRes, VSyncStart : 1080, 1084
[ 863.620] (--) NVIDIA(0): VSyncEnd, VTotal : 1089, 1125
[ 863.620] (--) NVIDIA(0): H/V Polarity : +/+
[ 863.620] (--) NVIDIA(0): CEA Format : 31
[ 863.620] (--) NVIDIA(0): Aspect Ratio : 16:9
[ 863.620] (--) NVIDIA(0): 1920 x 1080 @ 60 Hz
[ 863.620] (--) NVIDIA(0): Pixel Clock : 148.35 MHz
[ 863.620] (--) NVIDIA(0): HRes, HSyncStart : 1920, 2008
[ 863.620] (--) NVIDIA(0): HSyncEnd, HTotal : 2052, 2200
[ 863.620] (--) NVIDIA(0): VRes, VSyncStart : 1080, 1084
[ 863.620] (--) NVIDIA(0): VSyncEnd, VTotal : 1089, 1125
[ 863.620] (--) NVIDIA(0): H/V Polarity : +/+
[ 863.620] (--) NVIDIA(0): CEA Format : 16
[ 863.620] (--) NVIDIA(0): Aspect Ratio : 16:9
[ 863.620] (--) NVIDIA(0): 480 x 480 @ 60 Hz
[ 863.620] (--) NVIDIA(0): Pixel Clock : 54.00 MHz
[ 863.620] (--) NVIDIA(0): HRes, HSyncStart : 1440, 1472
[ 863.620] (--) NVIDIA(0): HSyncEnd, HTotal : 1596, 1716
[ 863.620] (--) NVIDIA(0): VRes, VSyncStart : 480, 489
[ 863.620] (--) NVIDIA(0): VSyncEnd, VTotal : 495, 525
[ 863.620] (--) NVIDIA(0): H/V Polarity : -/-
[ 863.620] (--) NVIDIA(0): CEA Format : 14
[ 863.620] (--) NVIDIA(0): Aspect Ratio : 4:3
[ 863.620] (--) NVIDIA(0): 411 x 480 @ 60 Hz
[ 863.620] (--) NVIDIA(0): Pixel Clock : 108.00 MHz
[ 863.620] (--) NVIDIA(0): HRes, HSyncStart : 2880, 2944
[ 863.620] (--) NVIDIA(0): HSyncEnd, HTotal : 3192, 3432
[ 863.620] (--) NVIDIA(0): VRes, VSyncStart : 480, 489
[ 863.620] (--) NVIDIA(0): VSyncEnd, VTotal : 495, 525
[ 863.620] (--) NVIDIA(0): H/V Polarity : -/-
[ 863.620] (--) NVIDIA(0): CEA Format : 35
[ 863.620] (--) NVIDIA(0): Aspect Ratio : 4:3
[ 863.620] (--) NVIDIA(0): 480 x 480 @ 60 Hz
[ 863.620] (--) NVIDIA(0): Pixel Clock : 54.00 MHz
[ 863.620] (--) NVIDIA(0): HRes, HSyncStart : 1440, 1472
[ 863.620] (--) NVIDIA(0): HSyncEnd, HTotal : 1596, 1716
[ 863.620] (--) NVIDIA(0): VRes, VSyncStart : 480, 489
[ 863.620] (--) NVIDIA(0): VSyncEnd, VTotal : 495, 525
[ 863.620] (--) NVIDIA(0): H/V Polarity : -/-
[ 863.620] (--) NVIDIA(0): CEA Format : 15
[ 863.620] (--) NVIDIA(0): Aspect Ratio : 16:9
[ 863.620] (--) NVIDIA(0): 411 x 480 @ 60 Hz
[ 863.620] (--) NVIDIA(0): Pixel Clock : 108.00 MHz
[ 863.620] (--) NVIDIA(0): HRes, HSyncStart : 2880, 2944
[ 863.620] (--) NVIDIA(0): HSyncEnd, HTotal : 3192, 3432
[ 863.620] (--) NVIDIA(0): VRes, VSyncStart : 480, 489
[ 863.620] (--) NVIDIA(0): VSyncEnd, VTotal : 495, 525
[ 863.620] (--) NVIDIA(0): H/V Polarity : -/-
[ 863.620] (--) NVIDIA(0): CEA Format : 36
[ 863.620] (--) NVIDIA(0): Aspect Ratio : 16:9
[ 863.620] (--) NVIDIA(0): 480 x 576 @ 50 Hz
[ 863.620] (--) NVIDIA(0): Pixel Clock : 54.00 MHz
[ 863.620] (--) NVIDIA(0): HRes, HSyncStart : 1440, 1464
[ 863.620] (--) NVIDIA(0): HSyncEnd, HTotal : 1592, 1728
[ 863.620] (--) NVIDIA(0): VRes, VSyncStart : 576, 581
[ 863.620] (--) NVIDIA(0): VSyncEnd, VTotal : 586, 625
[ 863.620] (--) NVIDIA(0): H/V Polarity : -/+
[ 863.620] (--) NVIDIA(0): CEA Format : 30
[ 863.620] (--) NVIDIA(0): Aspect Ratio : 16:9
[ 863.620] (--) NVIDIA(0): 411 x 576 @ 50 Hz
[ 863.620] (--) NVIDIA(0): Pixel Clock : 108.00 MHz
[ 863.620] (--) NVIDIA(0): HRes, HSyncStart : 2880, 2928
[ 863.620] (--) NVIDIA(0): HSyncEnd, HTotal : 3184, 3456
[ 863.620] (--) NVIDIA(0): VRes, VSyncStart : 576, 581
[ 863.620] (--) NVIDIA(0): VSyncEnd, VTotal : 586, 625
[ 863.620] (--) NVIDIA(0): H/V Polarity : -/-
[ 863.620] (--) NVIDIA(0): CEA Format : 38
[ 863.620] (--) NVIDIA(0): Aspect Ratio : 16:9
[ 863.620] (--) NVIDIA(0):
[ 863.620] (--) NVIDIA(0): Extension Block Detailed Timings:
[ 863.620] (--) NVIDIA(0): 720 x 480 @ 60 Hz
[ 863.620] (--) NVIDIA(0): Pixel Clock : 27.00 MHz
[ 863.620] (--) NVIDIA(0): HRes, HSyncStart : 720, 736
[ 863.620] (--) NVIDIA(0): HSyncEnd, HTotal : 798, 858
[ 863.620] (--) NVIDIA(0): VRes, VSyncStart : 480, 489
[ 863.620] (--) NVIDIA(0): VSyncEnd, VTotal : 495, 525
[ 863.620] (--) NVIDIA(0): H/V Polarity : -/-
[ 863.620] (--) NVIDIA(0): Image Size : 531 mm x 398 mm
[ 863.620] (--) NVIDIA(0): 1920 x 1080 @ 60 Hz
[ 863.620] (--) NVIDIA(0): Pixel Clock : 74.25 MHz
[ 863.620] (--) NVIDIA(0): HRes, HSyncStart : 1920, 2008
[ 863.620] (--) NVIDIA(0): HSyncEnd, HTotal : 2052, 2200
[ 863.620] (--) NVIDIA(0): VRes, VSyncStart : 1080, 1084
[ 863.620] (--) NVIDIA(0): VSyncEnd, VTotal : 1094, 1124
[ 863.620] (--) NVIDIA(0): H/V Polarity : +/+
[ 863.620] (--) NVIDIA(0): Interlaced : yes
[ 863.620] (--) NVIDIA(0): Image Size : 708 mm x 398 mm
[ 863.620] (--) NVIDIA(0):
[ 863.620] (--) NVIDIA(0): --- End of EDID for DENON, Ltd. DENON-AVAMP (DFP-1) ---
[ 863.620] (--) NVIDIA(0):
[ 863.620] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
[ 863.620] (**) NVIDIA(0): device DENON, Ltd. DENON-AVAMP (DFP-1) (Using EDID
[ 863.620] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
[ 863.621] (II) NVIDIA(0): Frequency information for DENON, Ltd. DENON-AVAMP (DFP-1):
[ 863.621] (II) NVIDIA(0): HorizSync : 31.000-84.000 kHz
[ 863.621] (II) NVIDIA(0): VertRefresh : 57.000-75.000 Hz
[ 863.621] (II) NVIDIA(0): (HorizSync from EDID)
[ 863.621] (II) NVIDIA(0): (VertRefresh from EDID)
[ 863.621] (II) NVIDIA(GPU-0):
[ 863.621] (II) NVIDIA(GPU-0): Native mode timings for DENON, Ltd. DENON-AVAMP (DFP-1):
[ 863.621] (II) NVIDIA(GPU-0): 1920 x 1080 @ 60 Hz
[ 863.621] (II) NVIDIA(GPU-0): Pixel Clock : 138.500 MHz
[ 863.621] (II) NVIDIA(GPU-0): HRes, HSyncStart : 1920, 1968
[ 863.621] (II) NVIDIA(GPU-0): HSyncEnd, HTotal : 2000, 2080
[ 863.621] (II) NVIDIA(GPU-0): VRes, VSyncStart : 1080, 1083
[ 863.621] (II) NVIDIA(GPU-0): VSyncEnd, VTotal : 1088, 1111
[ 863.621] (II) NVIDIA(GPU-0): H/V Polarity : +/-
[ 863.621] (II) NVIDIA(GPU-0):
[ 863.621] (WW) NVIDIA(GPU-0): The EDID for DENON, Ltd. DENON-AVAMP (DFP-1) contradicts
[ 863.621] (WW) NVIDIA(GPU-0): itself: mode "720x576" is specified in the EDID; however,
[ 863.621] (WW) NVIDIA(GPU-0): the EDID's valid HorizSync range (31.000-84.000 kHz) would
[ 863.621] (WW) NVIDIA(GPU-0): exclude this mode's HorizSync (15.6 kHz); ignoring
[ 863.621] (WW) NVIDIA(GPU-0): HorizSync check for mode "720x576".
[ 863.621] (WW) NVIDIA(GPU-0): The EDID for DENON, Ltd. DENON-AVAMP (DFP-1) contradicts
[ 863.621] (WW) NVIDIA(GPU-0): itself: mode "720x576" is specified in the EDID; however,
[ 863.621] (WW) NVIDIA(GPU-0): the EDID's valid VertRefresh range (57.000-75.000 Hz)
[ 863.621] (WW) NVIDIA(GPU-0): would exclude this mode's VertRefresh (50.0 Hz); ignoring
[ 863.621] (WW) NVIDIA(GPU-0): VertRefresh check for mode "720x576".
[ 863.622] (WW) NVIDIA(GPU-0): The EDID for DENON, Ltd. DENON-AVAMP (DFP-1) contradicts
[ 863.622] (WW) NVIDIA(GPU-0): itself: mode "720x576" is specified in the EDID; however,
[ 863.622] (WW) NVIDIA(GPU-0): the EDID's valid VertRefresh range (57.000-75.000 Hz)
[ 863.622] (WW) NVIDIA(GPU-0): would exclude this mode's VertRefresh (50.0 Hz); ignoring
[ 863.622] (WW) NVIDIA(GPU-0): VertRefresh check for mode "720x576".
[ 863.622] (WW) NVIDIA(GPU-0): The EDID for DENON, Ltd. DENON-AVAMP (DFP-1) contradicts
[ 863.622] (WW) NVIDIA(GPU-0): itself: mode "1280x720" is specified in the EDID; however,
[ 863.622] (WW) NVIDIA(GPU-0): the EDID's valid VertRefresh range (57.000-75.000 Hz)
[ 863.622] (WW) NVIDIA(GPU-0): would exclude this mode's VertRefresh (50.0 Hz); ignoring
[ 863.622] (WW) NVIDIA(GPU-0): VertRefresh check for mode "1280x720".
[ 863.622] (WW) NVIDIA(GPU-0): The EDID for DENON, Ltd. DENON-AVAMP (DFP-1) contradicts
[ 863.622] (WW) NVIDIA(GPU-0): itself: mode "1920x1080" is specified in the EDID;
[ 863.622] (WW) NVIDIA(GPU-0): however, the EDID's valid HorizSync range (31.000-84.000
[ 863.622] (WW) NVIDIA(GPU-0): kHz) would exclude this mode's HorizSync (28.1 kHz);
[ 863.622] (WW) NVIDIA(GPU-0): ignoring HorizSync check for mode "1920x1080".
[ 863.622] (WW) NVIDIA(GPU-0): The EDID for DENON, Ltd. DENON-AVAMP (DFP-1) contradicts
[ 863.622] (WW) NVIDIA(GPU-0): itself: mode "1920x1080" is specified in the EDID;
[ 863.622] (WW) NVIDIA(GPU-0): however, the EDID's valid VertRefresh range (57.000-75.000
[ 863.622] (WW) NVIDIA(GPU-0): Hz) would exclude this mode's VertRefresh (50.0 Hz);
[ 863.622] (WW) NVIDIA(GPU-0): ignoring VertRefresh check for mode "1920x1080".
[ 863.622] (WW) NVIDIA(GPU-0): The EDID for DENON, Ltd. DENON-AVAMP (DFP-1) contradicts
[ 863.622] (WW) NVIDIA(GPU-0): itself: mode "1920x1080" is specified in the EDID;
[ 863.622] (WW) NVIDIA(GPU-0): however, the EDID's valid HorizSync range (31.000-84.000
[ 863.622] (WW) NVIDIA(GPU-0): kHz) would exclude this mode's HorizSync (27.0 kHz);
[ 863.622] (WW) NVIDIA(GPU-0): ignoring HorizSync check for mode "1920x1080".
[ 863.622] (WW) NVIDIA(GPU-0): The EDID for DENON, Ltd. DENON-AVAMP (DFP-1) contradicts
[ 863.622] (WW) NVIDIA(GPU-0): itself: mode "1920x1080" is specified in the EDID;
[ 863.622] (WW) NVIDIA(GPU-0): however, the EDID's valid VertRefresh range (57.000-75.000
[ 863.622] (WW) NVIDIA(GPU-0): Hz) would exclude this mode's VertRefresh (24.0 Hz);
[ 863.622] (WW) NVIDIA(GPU-0): ignoring VertRefresh check for mode "1920x1080".
[ 863.622] (WW) NVIDIA(GPU-0): The EDID for DENON, Ltd. DENON-AVAMP (DFP-1) contradicts
[ 863.622] (WW) NVIDIA(GPU-0): itself: mode "1920x1080" is specified in the EDID;
[ 863.622] (WW) NVIDIA(GPU-0): however, the EDID's valid HorizSync range (31.000-84.000
[ 863.622] (WW) NVIDIA(GPU-0): kHz) would exclude this mode's HorizSync (28.1 kHz);
[ 863.622] (WW) NVIDIA(GPU-0): ignoring HorizSync check for mode "1920x1080".
[ 863.622] (WW) NVIDIA(GPU-0): The EDID for DENON, Ltd. DENON-AVAMP (DFP-1) contradicts
[ 863.622] (WW) NVIDIA(GPU-0): itself: mode "1920x1080" is specified in the EDID;
[ 863.622] (WW) NVIDIA(GPU-0): however, the EDID's valid VertRefresh range (57.000-75.000
[ 863.622] (WW) NVIDIA(GPU-0): Hz) would exclude this mode's VertRefresh (25.0 Hz);
[ 863.622] (WW) NVIDIA(GPU-0): ignoring VertRefresh check for mode "1920x1080".
[ 863.623] (WW) NVIDIA(GPU-0): The EDID for DENON, Ltd. DENON-AVAMP (DFP-1) contradicts
[ 863.623] (WW) NVIDIA(GPU-0): itself: mode "1920x1080" is specified in the EDID;
[ 863.623] (WW) NVIDIA(GPU-0): however, the EDID's valid VertRefresh range (57.000-75.000
[ 863.623] (WW) NVIDIA(GPU-0): Hz) would exclude this mode's VertRefresh (30.0 Hz);
[ 863.623] (WW) NVIDIA(GPU-0): ignoring VertRefresh check for mode "1920x1080".
[ 863.623] (WW) NVIDIA(GPU-0): The EDID for DENON, Ltd. DENON-AVAMP (DFP-1) contradicts
[ 863.623] (WW) NVIDIA(GPU-0): itself: mode "1920x1080" is specified in the EDID;
[ 863.623] (WW) NVIDIA(GPU-0): however, the EDID's valid VertRefresh range (57.000-75.000
[ 863.623] (WW) NVIDIA(GPU-0): Hz) would exclude this mode's VertRefresh (50.0 Hz);
[ 863.623] (WW) NVIDIA(GPU-0): ignoring VertRefresh check for mode "1920x1080".
[ 863.623] (WW) NVIDIA(GPU-0): The EDID for DENON, Ltd. DENON-AVAMP (DFP-1) contradicts
[ 863.623] (WW) NVIDIA(GPU-0): itself: mode "480x576" is specified in the EDID; however,
[ 863.623] (WW) NVIDIA(GPU-0): the EDID's valid VertRefresh range (57.000-75.000 Hz)
[ 863.623] (WW) NVIDIA(GPU-0): would exclude this mode's VertRefresh (50.0 Hz); ignoring
[ 863.623] (WW) NVIDIA(GPU-0): VertRefresh check for mode "480x576".
[ 863.623] (WW) NVIDIA(GPU-0): The EDID for DENON, Ltd. DENON-AVAMP (DFP-1) contradicts
[ 863.623] (WW) NVIDIA(GPU-0): itself: mode "411x576" is specified in the EDID; however,
[ 863.623] (WW) NVIDIA(GPU-0): the EDID's valid VertRefresh range (57.000-75.000 Hz)
[ 863.623] (WW) NVIDIA(GPU-0): would exclude this mode's VertRefresh (50.0 Hz); ignoring
[ 863.623] (WW) NVIDIA(GPU-0): VertRefresh check for mode "411x576".
[ 863.625] (II) NVIDIA(GPU-0):
[ 863.625] (II) NVIDIA(GPU-0): --- Modes in ModePool for DENON, Ltd. DENON-AVAMP (DFP-1) ---
[ 863.625] (II) NVIDIA(GPU-0): "nvidia-auto-select" : 1920 x 1080 @ 59.9 Hz (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "1920x1080" : 1920 x 1080 @ 59.9 Hz (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "1920x1080_60" : 1920 x 1080 @ 59.9 Hz (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "1920x1080_60_0" : 1920 x 1080 @ 60.0 Hz (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "1920x1080_60_1" : CEA-861B:#16:1920x1080x59.940Hz/P (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "1920x1080_50" : CEA-861B:#31:1920x1080x50.000Hz/P (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "1920x1080_30" : CEA-861B:#34:1920x1080x29.970Hz/P (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "1920x1080_25" : CEA-861B:#33:1920x1080x25.000Hz/P (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "1920x1080_24" : CEA-861B:#32:1920x1080x23.970Hz/P (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "1920x1080_60i" : 1920 x 1080 @ 60.0 Hz Interlace (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "1920x1080_60i_0" : CEA-861B:#5:1920x1080x59.940Hz/I (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "1920x1080_50i" : CEA-861B:#20:1920x1080x50.000Hz/I (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "1360x768" : 1360 x 768 @ 59.8 Hz (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "1360x768_60" : 1360 x 768 @ 59.8 Hz (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "1280x1024" : 1280 x 1024 @ 60.0 Hz (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "1280x1024_60" : 1280 x 1024 @ 60.0 Hz (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "1280x720" : CEA-861B:#4:1280x720x59.940Hz/P (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "1280x720_60" : CEA-861B:#4:1280x720x59.940Hz/P (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "1280x720_50" : CEA-861B:#19:1280x720x50.000Hz/P (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "1024x768" : 1024 x 768 @ 75.0 Hz (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "1024x768_75" : 1024 x 768 @ 75.0 Hz (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "1024x768_70" : 1024 x 768 @ 70.1 Hz (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "1024x768_60" : 1024 x 768 @ 60.0 Hz (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "800x600" : 800 x 600 @ 75.0 Hz (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "800x600_75" : 800 x 600 @ 75.0 Hz (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "800x600_60" : 800 x 600 @ 60.3 Hz (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "720x576" : CEA-861B:#18:720x576x50.000Hz/P (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "720x576_50" : CEA-861B:#18:720x576x50.000Hz/P (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "720x576_50i" : CEA-861B:#21:1440x576x50.000Hz/I (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "720x480" : 720 x 480 @ 59.9 Hz (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "720x480_60" : 720 x 480 @ 59.9 Hz (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "640x480" : 640 x 480 @ 75.0 Hz (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "640x480_75" : 640 x 480 @ 75.0 Hz (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "640x480_60" : 640 x 480 @ 60.0 Hz (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "640x480_60_0" : 640 x 480 @ 59.9 Hz (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "640x480_60_1" : 640 x 480 @ 59.9 Hz (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "480x576" : CEA-861B:#30:1440x576x50.000Hz/P (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "480x576_50" : CEA-861B:#30:1440x576x50.000Hz/P (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "480x480" : CEA-861B:#14:1440x480x59.940Hz/P (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "480x480_60" : CEA-861B:#14:1440x480x59.940Hz/P (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "411x576" : CEA-861B:#38:2880x576x50.000Hz/P (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "411x576_50" : CEA-861B:#38:2880x576x50.000Hz/P (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "411x480" : CEA-861B:#35:2880x480x59.940Hz/P (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): "411x480_60" : CEA-861B:#35:2880x480x59.940Hz/P (from: EDID)
[ 863.625] (II) NVIDIA(GPU-0): --- End of ModePool for DENON, Ltd. DENON-AVAMP (DFP-1): ---
[ 863.625] (II) NVIDIA(GPU-0):
[ 863.625] (II) NVIDIA(0): Display device(s) assigned to X screen 0:
[ 863.625] (II) NVIDIA(0): CRT-0
[ 863.625] (II) NVIDIA(0): CRT-1
[ 863.625] (II) NVIDIA(0): DFP-0
[ 863.625] (II) NVIDIA(0): DENON, Ltd. DENON-AVAMP (DFP-1)
[ 863.625] (==) NVIDIA(0):
[ 863.625] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
[ 863.625] (==) NVIDIA(0): will be used as the requested mode.
[ 863.625] (==) NVIDIA(0):
[ 863.625] (II) NVIDIA(0): Requested modes:
[ 863.625] (II) NVIDIA(0): "DFP-1:nvidia-auto-select"
[ 863.625] (II) NVIDIA(0): Validated MetaModes:
[ 863.625] (II) NVIDIA(0): MetaMode "DFP-1:nvidia-auto-select":
[ 863.625] (II) NVIDIA(0): Size: 1920 x 1080
[ 863.625] (II) NVIDIA(0): DENON, Ltd. DENON-AVAMP (DFP-1): "nvidia-auto-select"
[ 863.625] (II) NVIDIA(0): Size : 1920 x 1080
[ 863.625] (II) NVIDIA(0): Offset : +0 +0
[ 863.625] (II) NVIDIA(0): Panning Domain: @ 1920 x 1080
[ 863.625] (II) NVIDIA(0): Virtual screen size determined to be 1920 x 1080
[ 863.625] (II) NVIDIA(0): Adding implicit MetaMode: "HDMI-0: 1920x1080_60_0"
[ 863.626] (II) NVIDIA(0): Adding implicit MetaMode: "HDMI-0: 1920x1080_60_1"
[ 863.626] (II) NVIDIA(0): Adding implicit MetaMode: "HDMI-0: 1920x1080_50"
[ 863.626] (II) NVIDIA(0): Adding implicit MetaMode: "HDMI-0: 1920x1080_30"
[ 863.626] (II) NVIDIA(0): Adding implicit MetaMode: "HDMI-0: 1920x1080_25"
[ 863.626] (II) NVIDIA(0): Adding implicit MetaMode: "HDMI-0: 1920x1080_24"
[ 863.626] (II) NVIDIA(0): Adding implicit MetaMode: "HDMI-0: 1920x1080_60i"
[ 863.626] (II) NVIDIA(0): Adding implicit MetaMode: "HDMI-0: 1920x1080_60i_0"
[ 863.626] (II) NVIDIA(0): Adding implicit MetaMode: "HDMI-0: 1920x1080_50i"
[ 863.626] (II) NVIDIA(0): Adding implicit MetaMode: "HDMI-0: 1360x768"
[ 863.626] (II) NVIDIA(0): Adding implicit MetaMode: "HDMI-0: 1280x1024"
[ 863.626] (II) NVIDIA(0): Adding implicit MetaMode: "HDMI-0: 1280x720"
[ 863.626] (II) NVIDIA(0): Adding implicit MetaMode: "HDMI-0: 1280x720_50"
[ 863.626] (II) NVIDIA(0): Adding implicit MetaMode: "HDMI-0: 1024x768"
[ 863.626] (II) NVIDIA(0): Adding implicit MetaMode: "HDMI-0: 1024x768_70"
[ 863.626] (II) NVIDIA(0): Adding implicit MetaMode: "HDMI-0: 1024x768_60"
[ 863.626] (II) NVIDIA(0): Adding implicit MetaMode: "HDMI-0: 800x600"
[ 863.626] (II) NVIDIA(0): Adding implicit MetaMode: "HDMI-0: 800x600_60"
[ 863.626] (II) NVIDIA(0): Adding implicit MetaMode: "HDMI-0: 720x576"
[ 863.627] (II) NVIDIA(0): Adding implicit MetaMode: "HDMI-0: 720x576_50i"
[ 863.627] (II) NVIDIA(0): Adding implicit MetaMode: "HDMI-0: 720x480"
[ 863.627] (II) NVIDIA(0): Adding implicit MetaMode: "HDMI-0: 640x480"
[ 863.627] (II) NVIDIA(0): Adding implicit MetaMode: "HDMI-0: 640x480_60"
[ 863.627] (II) NVIDIA(0): Adding implicit MetaMode: "HDMI-0: 640x480_60_0"
[ 863.627] (II) NVIDIA(0): Adding implicit MetaMode: "HDMI-0: 640x480_60_1"
[ 863.627] (II) NVIDIA(0): Adding implicit MetaMode: "HDMI-0: 480x576"
[ 863.627] (II) NVIDIA(0): Adding implicit MetaMode: "HDMI-0: 480x480"
[ 863.627] (II) NVIDIA(0): Adding implicit MetaMode: "HDMI-0: 411x576"
[ 863.627] (II) NVIDIA(0): Adding implicit MetaMode: "HDMI-0: 411x480"
[ 863.630] (II) NVIDIA(0): Computing DPI using physical size from DENON, Ltd. DENON-AVAMP
[ 863.630] (II) NVIDIA(0): (DFP-1)'s EDID and first mode to be programmed on DENON,
[ 863.630] (II) NVIDIA(0): Ltd. DENON-AVAMP (DFP-1):
[ 863.630] (II) NVIDIA(0): width : 1920 pixels 700 mm (DPI: 69)
[ 863.630] (II) NVIDIA(0): height : 1080 pixels 390 mm (DPI: 70)
[ 863.630] (--) NVIDIA(0): DPI set to (69, 70); computed from "UseEdidDpi" X config
[ 863.630] (--) NVIDIA(0): option
[ 863.630] (--) Depth 24 pixmap format is 32 bpp
[ 863.717] (II) NVIDIA(GPU-1): Display (Samsung SyncMaster (CRT-1)) does not support NVIDIA
[ 863.717] (II) NVIDIA(GPU-1): 3D Vision stereo.
[ 863.747] (II) NVIDIA(GPU-1): Display (Philips 240B (DFP-0)) does not support NVIDIA 3D
[ 863.747] (II) NVIDIA(GPU-1): Vision stereo.
[ 863.751] (EE) NVIDIA(GPU-1): EVO Push buffer channel allocation failed
[ 863.751] (EE) *** Aborting ***
[ 863.751] (EE) NVIDIA(GPU-1): Failed to allocate EVO core DMA push buffer
[ 863.751] (EE) *** Aborting ***
[ 863.753] (II) NVIDIA(GPU-1):
[ 863.753] (II) NVIDIA(GPU-1): --- Modes in ModePool for Samsung SyncMaster (CRT-1) ---
[ 863.753] (II) NVIDIA(GPU-1): "nvidia-auto-select" : 1280 x 1024 @ 60.0 Hz (from: EDID)
[ 863.753] (II) NVIDIA(GPU-1): "1280x1024" : 1280 x 1024 @ 60.0 Hz (from: EDID)
[ 863.753] (II) NVIDIA(GPU-1): "1280x1024_60" : 1280 x 1024 @ 60.0 Hz (from: EDID)
[ 863.753] (II) NVIDIA(GPU-1): "1280x1024_75" : 1280 x 1024 @ 75.0 Hz (from: EDID)
[ 863.753] (II) NVIDIA(GPU-1): "1280x960" : 1280 x 960 @ 60.0 Hz (from: EDID)
[ 863.753] (II) NVIDIA(GPU-1): "1280x960_60" : 1280 x 960 @ 60.0 Hz (from: EDID)
[ 863.753] (II) NVIDIA(GPU-1): "1152x864" : 1152 x 864 @ 75.0 Hz (from: EDID)
[ 863.753] (II) NVIDIA(GPU-1): "1152x864_75" : 1152 x 864 @ 75.0 Hz (from: EDID)
[ 863.753] (II) NVIDIA(GPU-1): "1024x768" : 1024 x 768 @ 75.0 Hz (from: EDID)
[ 863.753] (II) NVIDIA(GPU-1): "1024x768_75" : 1024 x 768 @ 75.0 Hz (from: EDID)
[ 863.753] (II) NVIDIA(GPU-1): "1024x768_70" : 1024 x 768 @ 70.1 Hz (from: EDID)
[ 863.753] (II) NVIDIA(GPU-1): "1024x768_60" : 1024 x 768 @ 60.0 Hz (from: EDID)
[ 863.753] (II) NVIDIA(GPU-1): "800x600" : 800 x 600 @ 75.0 Hz (from: EDID)
[ 863.753] (II) NVIDIA(GPU-1): "800x600_75" : 800 x 600 @ 75.0 Hz (from: EDID)
[ 863.753] (II) NVIDIA(GPU-1): "800x600_72" : 800 x 600 @ 72.2 Hz (from: EDID)
[ 863.753] (II) NVIDIA(GPU-1): "800x600_60" : 800 x 600 @ 60.3 Hz (from: EDID)
[ 863.753] (II) NVIDIA(GPU-1): "800x600_56" : 800 x 600 @ 56.2 Hz (from: EDID)
[ 863.753] (II) NVIDIA(GPU-1): "640x480" : 640 x 480 @ 75.0 Hz (from: EDID)
[ 863.753] (II) NVIDIA(GPU-1): "640x480_75" : 640 x 480 @ 75.0 Hz (from: EDID)
[ 863.753] (II) NVIDIA(GPU-1): "640x480_72" : 640 x 480 @ 72.0 Hz (from: EDID)
[ 863.753] (II) NVIDIA(GPU-1): "640x480_60" : 640 x 480 @ 59.9 Hz (from: EDID)
[ 863.753] (II) NVIDIA(GPU-1): --- End of ModePool for Samsung SyncMaster (CRT-1): ---
[ 863.753] (II) NVIDIA(GPU-1):
[ 863.753] (II) NVIDIA(GPU-1):
[ 863.753] (II) NVIDIA(GPU-1): Native mode timings for Philips 240B (DFP-0):
[ 863.753] (II) NVIDIA(GPU-1): 1920 x 1200 @ 60 Hz
[ 863.753] (II) NVIDIA(GPU-1): Pixel Clock : 154.000 MHz
[ 863.753] (II) NVIDIA(GPU-1): HRes, HSyncStart : 1920, 1968
[ 863.753] (II) NVIDIA(GPU-1): HSyncEnd, HTotal : 2000, 2080
[ 863.753] (II) NVIDIA(GPU-1): VRes, VSyncStart : 1200, 1203
[ 863.753] (II) NVIDIA(GPU-1): VSyncEnd, VTotal : 1209, 1235
[ 863.753] (II) NVIDIA(GPU-1): H/V Polarity : +/-
[ 863.753] (II) NVIDIA(GPU-1):
[ 863.755] (II) NVIDIA(GPU-1):
[ 863.755] (II) NVIDIA(GPU-1): --- Modes in ModePool for Philips 240B (DFP-0) ---
[ 863.755] (II) NVIDIA(GPU-1): "nvidia-auto-select" : 1920 x 1200 @ 60.0 Hz (from: EDID)
[ 863.755] (II) NVIDIA(GPU-1): "1920x1200" : 1920 x 1200 @ 60.0 Hz (from: EDID)
[ 863.755] (II) NVIDIA(GPU-1): "1920x1200_60" : 1920 x 1200 @ 60.0 Hz (from: EDID)
[ 863.755] (II) NVIDIA(GPU-1): "1680x1050" : 1680 x 1050 @ 60.0 Hz (from: EDID)
[ 863.755] (II) NVIDIA(GPU-1): "1680x1050_60" : 1680 x 1050 @ 60.0 Hz (from: EDID)
[ 863.755] (II) NVIDIA(GPU-1): "1600x1200" : 1600 x 1200 @ 60.0 Hz (from: EDID)
[ 863.755] (II) NVIDIA(GPU-1): "1600x1200_60" : 1600 x 1200 @ 60.0 Hz (from: EDID)
[ 863.755] (II) NVIDIA(GPU-1): "1440x900" : 1440 x 900 @ 75.0 Hz (from: EDID)
[ 863.755] (II) NVIDIA(GPU-1): "1440x900_75" : 1440 x 900 @ 75.0 Hz (from: EDID)
[ 863.755] (II) NVIDIA(GPU-1): "1440x900_60" : 1440 x 900 @ 59.9 Hz (from: EDID)
[ 863.755] (II) NVIDIA(GPU-1): "1280x1024" : 1280 x 1024 @ 75.0 Hz (from: EDID)
[ 863.755] (II) NVIDIA(GPU-1): "1280x1024_75" : 1280 x 1024 @ 75.0 Hz (from: EDID)
[ 863.755] (II) NVIDIA(GPU-1): "1280x960" : 1280 x 960 @ 60.0 Hz (from: EDID)
[ 863.755] (II) NVIDIA(GPU-1): "1280x960_60" : 1280 x 960 @ 60.0 Hz (from: EDID)
[ 863.755] (II) NVIDIA(GPU-1): "1280x720" : 1280 x 720 @ 60.0 Hz (from: EDID)
[ 863.755] (II) NVIDIA(GPU-1): "1280x720_60" : 1280 x 720 @ 60.0 Hz (from: EDID)
[ 863.755] (II) NVIDIA(GPU-1): "1152x864" : 1152 x 864 @ 60.0 Hz (from: EDID)
[ 863.755] (II) NVIDIA(GPU-1): "1152x864_60" : 1152 x 864 @ 60.0 Hz (from: EDID)
[ 863.755] (II) NVIDIA(GPU-1): "1024x768" : 1024 x 768 @ 75.0 Hz (from: EDID)
[ 863.755] (II) NVIDIA(GPU-1): "1024x768_75" : 1024 x 768 @ 75.0 Hz (from: EDID)
[ 863.755] (II) NVIDIA(GPU-1): "1024x768_70" : 1024 x 768 @ 70.1 Hz (from: EDID)
[ 863.755] (II) NVIDIA(GPU-1): "1024x768_60" : 1024 x 768 @ 60.0 Hz (from: EDID)
[ 863.755] (II) NVIDIA(GPU-1): "800x600" : 800 x 600 @ 75.0 Hz (from: EDID)
[ 863.755] (II) NVIDIA(GPU-1): "800x600_75" : 800 x 600 @ 75.0 Hz (from: EDID)
[ 863.755] (II) NVIDIA(GPU-1): "800x600_72" : 800 x 600 @ 72.2 Hz (from: EDID)
[ 863.755] (II) NVIDIA(GPU-1): "800x600_60" : 800 x 600 @ 60.3 Hz (from: EDID)
[ 863.755] (II) NVIDIA(GPU-1): "800x600_56" : 800 x 600 @ 56.2 Hz (from: EDID)
[ 863.755] (II) NVIDIA(GPU-1): "640x480" : 640 x 480 @ 75.0 Hz (from: EDID)
[ 863.755] (II) NVIDIA(GPU-1): "640x480_75" : 640 x 480 @ 75.0 Hz (from: EDID)
[ 863.755] (II) NVIDIA(GPU-1): "640x480_72" : 640 x 480 @ 72.0 Hz (from: EDID)
[ 863.755] (II) NVIDIA(GPU-1): "640x480_60" : 640 x 480 @ 59.9 Hz (from: EDID)
[ 863.755] (II) NVIDIA(GPU-1): --- End of ModePool for Philips 240B (DFP-0): ---
[ 863.755] (II) NVIDIA(GPU-1):
[ 863.755] (EE)
[ 863.755] (EE) Backtrace:
[ 863.755] (EE) 0: /usr/bin/X (xorg_backtrace+0x36) [0x59a036]
[ 863.755] (EE) 1: /usr/bin/X (0x400000+0x19dfa9) [0x59dfa9]
[ 863.755] (EE) 2: /lib64/libpthread.so.0 (0x7f1abbcaf000+0x103b0) [0x7f1abbcbf3b0]
[ 863.755] (EE) 3: /lib64/libc.so.6 (cfree+0x14) [0x7f1aba98ecf4]
[ 863.755] (EE) 4: /usr/lib64/xorg/modules/drivers/nvidia_drv.so (0x7f1ab61a4000+0xd16d8) [0x7f1ab62756d8]
[ 863.755] (EE) 5: /usr/lib64/xorg/modules/drivers/nvidia_drv.so (0x7f1ab61a4000+0x6f9a0) [0x7f1ab62139a0]
[ 863.755] (EE) 6: /usr/lib64/xorg/modules/drivers/nvidia_drv.so (0x7f1ab61a4000+0xdb305) [0x7f1ab627f305]
[ 863.755] (EE) 7: /usr/lib64/xorg/modules/drivers/nvidia_drv.so (0x7f1ab61a4000+0x5231e3) [0x7f1ab66c71e3]
[ 863.755] (EE) 8: /usr/lib64/xorg/modules/drivers/nvidia_drv.so (0x7f1ab61a4000+0x51a6c0) [0x7f1ab66be6c0]
[ 863.755] (EE) 9: /usr/bin/X (AddScreen+0xb8) [0x439ea8]
[ 863.755] (EE) 10: /usr/bin/X (InitOutput+0x3ec) [0x47cf2c]
[ 863.755] (EE) 11: /usr/bin/X (0x400000+0x281e3) [0x4281e3]
[ 863.755] (EE) 12: /lib64/libc.so.6 (__libc_start_main+0xfd) [0x7f1aba93171d]
[ 863.755] (EE) 13: /usr/bin/X (0x400000+0x27f69) [0x427f69]
[ 863.755] (EE)
[ 863.755] (EE) Segmentation fault at address 0x420
[ 863.755]
Fatal server error:
[ 863.755] Caught signal 11 (Segmentation fault). Server aborting
[ 863.755]
[ 863.755] (EE)
Please consult the The X.Org Foundation support
at http://wiki.x.org
for help.
[ 863.755] (EE) Please also check the log file at "/var/log/Xorg.1.log" for additional information.
[ 863.755] (EE)
[ 863.755] Server terminated with error (1). Closing log file.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment