NVIDIA driver causes lagginess

When using NVIDIA drivers for my 9600 GT, Gnome 3 is occasionally laggy, especially when entering Activities. However, the nouveau drivers work perfectly. I need the NVIDIA drivers, though, since I would like to play some graphics intensive games. My drivers are up to date (295.xx), any ideas?

Awesome.  Thanks so much for your help.  I just followed the Bumblebee wiki, and it seems to be working.
When I do "optirun glxspheres", it takes 5 or 6 seconds to run the thing.  Is that normal?
Also, here https://wiki.archlinux.org/index.php/Bu … VIDIA_card
I'm not sure what to make of
options bbswitch load_state=0 unload_state=0
I check the documentation and their example give values of 0 and 1 respectively.  It's clear what the values mean, but I'm not sure WHAT is being referred to as loaded and unloaded.  What values are the likely ones that I want?

Similar Messages

  • Nvidia driver causes "INIT: Id "x" respawning too fast"

    Hi.  I'm having lot's of trouble getting my nvidia card working.  I checked out more threads than I'd like to list.  Although there's lot's of stuff on this error, there's little on nvidia (more on radeon, but nothing helped so far).  I've looked at
    http://bbs.archbang.org/viewtopic.php?id=2889
    among other arch forum threads and non-arch forum pages too.
    This is a new install on an ASUS N53S.
    During my initial install of Arch, I went with the xf86-video-intel-sna driver because the wiki recommended installing proprietary nvidia drivers after X is working.  The intel driver worked fine and I got my desktop up and running no problem.
    But if I try switching to either the nvidia driver (as per the wiki) or the nouveau driver I get this message at startup (and slim fails to start)
    INIT: Id "x" respawning too fast: disabled for 5 minutes
    If I try "startxfce4", it spits out some stuff, culminating in "Fatal server error: no screens found"
    The card is NVIDIA GeForce GT550M
    I can't tell if the problem is with the driver, xorg.conf, or slim (or something else).  Any help would be great.  Thanks.
    Last edited by Pacopag (2012-07-20 14:35:55)

    Awesome.  Thanks so much for your help.  I just followed the Bumblebee wiki, and it seems to be working.
    When I do "optirun glxspheres", it takes 5 or 6 seconds to run the thing.  Is that normal?
    Also, here https://wiki.archlinux.org/index.php/Bu … VIDIA_card
    I'm not sure what to make of
    options bbswitch load_state=0 unload_state=0
    I check the documentation and their example give values of 0 and 1 respectively.  It's clear what the values mean, but I'm not sure WHAT is being referred to as loaded and unloaded.  What values are the likely ones that I want?

  • [SOLVED] nvidia driver causes blank screen soon after boot

    Hi,
    I have a NVIDIA 560 and was originally using the nouveau driver, but that gave slow performance when doing anything (eg. resizing windows), so I installed the nvidia driver instead by following the wiki section:
    https://wiki.archlinux.org/index.php/NV … au_drivers
    by essentially just following the scripts given there. After switching to nvidia, the screen goes blank soon after boot. I get back into the system by using nomodeset in menu.cfg.
    My question is how do I even begin to find the problem, eg. what log file(s) should I look in and post?
    Thanks
    Last edited by mark1977 (2012-08-19 17:38:42)

    Yes it's the 560 Ti. Thanks I just installed straight from the repos. I've also installed cuda-sdk and cuda-toolkit. I've compiled the libraries inside /opt/cuda-sdk/CUDALibraries fine.
    No I go to compile the sdk examples by running make in /opt/cuda-sdk/C and get the following error:
    # make
    make[1]: Entering directory `/opt/cuda-sdk/C/common'
    make[1]: Leaving directory `/opt/cuda-sdk/C/common'
    make[1]: Entering directory `/opt/cuda-sdk/C/common'
    make[1]: Leaving directory `/opt/cuda-sdk/C/common'
    make[1]: Entering directory `/opt/cuda-sdk/C/common'
    make[1]: Leaving directory `/opt/cuda-sdk/C/common'
    make[1]: Entering directory `/opt/cuda-sdk/shared'
    make[1]: Leaving directory `/opt/cuda-sdk/shared'
    make[1]: Entering directory `/opt/cuda-sdk/C/src/newdelete'
    make[1]: Leaving directory `/opt/cuda-sdk/C/src/newdelete'
    make[1]: Entering directory `/opt/cuda-sdk/C/src/simpleTextureDrv'
    /usr/bin/ld: cannot find -lcuda
    collect2: error: ld returned 1 exit status
    make[1]: *** [../../bin/linux/release/simpleTextureDrv] Error 1
    make[1]: Leaving directory `/opt/cuda-sdk/C/src/simpleTextureDrv'
    make: *** [src/simpleTextureDrv/Makefile.ph_build] Error 2
    The Makefile itself essentially seems to just include the file /opt/cuda-sdk/C/common/common.mk, which is:
    # Copyright 1993-2011 NVIDIA Corporation. All rights reserved.
    # NVIDIA Corporation and its licensors retain all intellectual property and
    # proprietary rights in and to this software and related documentation.
    # Any use, reproduction, disclosure, or distribution of this software
    # and related documentation without an express license agreement from
    # NVIDIA Corporation is strictly prohibited.
    # Please refer to the applicable NVIDIA end user license agreement (EULA)
    # associated with this source code for terms and conditions that govern
    # your use of this NVIDIA software.
    # Common build script for CUDA source projects for Linux and Mac platforms
    .SUFFIXES : .cu .cu_dbg.o .c_dbg.o .cpp_dbg.o .cu_rel.o .c_rel.o .cpp_rel.o .cubin .ptx
    # Add new SM Versions here as devices with new Compute Capability are released
    SM_VERSIONS := 10 11 12 13 20 21 30
    CUDA_INSTALL_PATH ?= /opt/cuda-toolkit
    ifdef cuda-install
    CUDA_INSTALL_PATH := $(cuda-install)
    endif
    # detect OS
    OSUPPER = $(shell uname -s 2>/dev/null | tr [:lower:] [:upper:])
    OSLOWER = $(shell uname -s 2>/dev/null | tr [:upper:] [:lower:])
    # 'linux' is output for Linux system, 'darwin' for OS X
    DARWIN = $(strip $(findstring DARWIN, $(OSUPPER)))
    ifneq ($(DARWIN),)
    SNOWLEOPARD = $(strip $(findstring 10.6, $(shell egrep "<string>10\.6" /System/Library/CoreServices/SystemVersion.plist)))
    LION = $(strip $(findstring 10.7, $(shell egrep "<string>10\.7" /System/Library/CoreServices/SystemVersion.plist)))
    endif
    # detect 32-bit or 64-bit platform
    HP_64 = $(shell uname -m | grep 64)
    OSARCH= $(shell uname -m)
    # Basic directory setup for SDK
    # (override directories only if they are not already defined)
    SRCDIR ?=
    ROOTDIR ?= ..
    ROOTBINDIR ?= $(ROOTDIR)/../bin
    BINDIR ?= $(ROOTBINDIR)/$(OSLOWER)
    ROOTOBJDIR ?= obj
    LIBDIR := $(ROOTDIR)/../lib
    COMMONDIR := $(ROOTDIR)/../common
    SHAREDDIR := $(ROOTDIR)/../../shared/
    # Compilers
    NVCC := $(CUDA_INSTALL_PATH)/bin/nvcc
    CXX := g++ -fPIC
    CC := gcc -fPIC
    LINK := g++ -fPIC
    # Includes
    INCLUDES += -I. -I$(CUDA_INSTALL_PATH)/include -I$(COMMONDIR)/inc -I$(SHAREDDIR)/inc
    # Warning flags
    CXXWARN_FLAGS := \
    -W -Wall \
    -Wimplicit \
    -Wswitch \
    -Wformat \
    -Wchar-subscripts \
    -Wparentheses \
    -Wmultichar \
    -Wtrigraphs \
    -Wpointer-arith \
    -Wcast-align \
    -Wreturn-type \
    -Wno-unused-function \
    $(SPACE)
    CWARN_FLAGS := $(CXXWARN_FLAGS) \
    -Wstrict-prototypes \
    -Wmissing-prototypes \
    -Wmissing-declarations \
    -Wnested-externs \
    -Wmain \
    # architecture flag for nvcc and gcc compilers build
    CUBIN_ARCH_FLAG :=
    CXX_ARCH_FLAGS :=
    NVCCFLAGS :=
    LIB_ARCH := $(OSARCH)
    # Determining the necessary Cross-Compilation Flags
    # 32-bit OS, but we target 64-bit cross compilation
    ifeq ($(x86_64),1)
    NVCCFLAGS += -m64
    LIB_ARCH = x86_64
    ifneq ($(DARWIN),)
    CXX_ARCH_FLAGS += -arch x86_64
    else
    CXX_ARCH_FLAGS += -m64
    endif
    else
    # 64-bit OS, and we target 32-bit cross compilation
    ifeq ($(i386),1)
    NVCCFLAGS += -m32
    LIB_ARCH = i386
    ifneq ($(DARWIN),)
    CXX_ARCH_FLAGS += -arch i386
    else
    CXX_ARCH_FLAGS += -m32
    endif
    else
    ifeq "$(strip $(HP_64))" ""
    LIB_ARCH = i386
    NVCCFLAGS += -m32
    ifneq ($(DARWIN),)
    CXX_ARCH_FLAGS += -arch i386
    else
    CXX_ARCH_FLAGS += -m32
    endif
    else
    LIB_ARCH = x86_64
    NVCCFLAGS += -m64
    ifneq ($(DARWIN),)
    CXX_ARCH_FLAGS += -arch x86_64
    else
    CXX_ARCH_FLAGS += -m64
    endif
    endif
    endif
    endif
    # Compiler-specific flags (by default, we always use sm_10, sm_20, and sm_30), unless we use the SMVERSION template
    GENCODE_SM10 := -gencode=arch=compute_10,code=\"sm_10,compute_10\"
    GENCODE_SM20 := -gencode=arch=compute_20,code=\"sm_20,compute_20\"
    GENCODE_SM30 := -gencode=arch=compute_30,code=\"sm_30,compute_30\"
    CXXFLAGS += $(CXXWARN_FLAGS) $(CXX_ARCH_FLAGS)
    CFLAGS += $(CWARN_FLAGS) $(CXX_ARCH_FLAGS)
    LINKFLAGS += -L/usr/lib
    LINK += $(LINKFLAGS) $(CXX_ARCH_FLAGS)
    # This option for Mac allows CUDA applications to work without requiring to set DYLD_LIBRARY_PATH
    ifneq ($(DARWIN),)
    LINK += -Xlinker -rpath $(CUDA_INSTALL_PATH)/lib
    endif
    # Common flags
    COMMONFLAGS += $(INCLUDES) -DUNIX
    # If we are enabling GPU based debugging, then we want to use -G, warning that this
    # May have a significant impact on GPU device code, since optimizations are turned off
    ifeq ($(gpudbg),1)
    NVCCFLAGS += -G
    dbg = $(gpudbg)
    endif
    # Debug/release configuration
    ifeq ($(dbg),1)
    COMMONFLAGS += -g
    NVCCFLAGS += -D_DEBUG
    CXXFLAGS += -D_DEBUG
    CFLAGS += -D_DEBUG
    BINSUBDIR := debug
    LIBSUFFIX := D
    else
    COMMONFLAGS += -O2
    BINSUBDIR := release
    LIBSUFFIX :=
    NVCCFLAGS += --compiler-options -fno-strict-aliasing
    CXXFLAGS += -fno-strict-aliasing
    CFLAGS += -fno-strict-aliasing
    endif
    # architecture flag for cubin build
    CUBIN_ARCH_FLAG :=
    # OpenGL is used or not (if it is used, then it is necessary to include GLEW)
    ifeq ($(USEGLLIB),1)
    ifneq ($(DARWIN),)
    OPENGLLIB := -L/System/Library/Frameworks/OpenGL.framework/Libraries
    OPENGLLIB += -lGL -lGLU $(COMMONDIR)/lib/$(OSLOWER)/libGLEW.a
    else
    # this case for linux platforms
    OPENGLLIB := -lGL -lGLU -lX11 -lXi -lXmu
    # check if x86_64 flag has been set, otherwise, check HP_64 is i386/x86_64
    ifeq ($(x86_64),1)
    OPENGLLIB += -lGLEW_x86_64 -L/usr/X11R6/lib64
    else
    ifeq ($(i386),)
    ifeq "$(strip $(HP_64))" ""
    OPENGLLIB += -lGLEW -L/usr/X11R6/lib
    else
    OPENGLLIB += -lGLEW_x86_64 -L/usr/X11R6/lib64
    endif
    endif
    endif
    # check if i386 flag has been set, otehrwise check HP_64 is i386/x86_64
    ifeq ($(i386),1)
    OPENGLLIB += -lGLEW -L/usr/X11R6/lib
    else
    ifeq ($(x86_64),)
    ifeq "$(strip $(HP_64))" ""
    OPENGLLIB += -lGLEW -L/usr/X11R6/lib
    else
    OPENGLLIB += -lGLEW_x86_64 -L/usr/X11R6/lib64
    endif
    endif
    endif
    endif
    endif
    ifeq ($(USEGLUT),1)
    ifneq ($(DARWIN),)
    OPENGLLIB += -framework GLUT
    else
    ifeq ($(x86_64),1)
    OPENGLLIB += -lglut -L/usr/lib64
    endif
    ifeq ($(i386),1)
    OPENGLLIB += -lglut -L/usr/lib
    endif
    ifeq ($(x86_64),)
    ifeq ($(i386),)
    OPENGLLIB += -lglut
    endif
    endif
    endif
    endif
    ifeq ($(USEPARAMGL),1)
    PARAMGLLIB := -lparamgl_$(LIB_ARCH)$(LIBSUFFIX)
    endif
    ifeq ($(USERENDERCHECKGL),1)
    RENDERCHECKGLLIB := -lrendercheckgl_$(LIB_ARCH)$(LIBSUFFIX)
    endif
    ifeq ($(USENVCUVID), 1)
    ifneq ($(DARWIN),)
    NVCUVIDLIB := -L../../common/lib/darwin -lnvcuvid
    endif
    endif
    # Libs
    ifneq ($(DARWIN),)
    LIB := -L$(CUDA_INSTALL_PATH)/lib -L$(LIBDIR) -L$(COMMONDIR)/lib/$(OSLOWER) -L$(SHAREDDIR)/lib $(NVCUVIDLIB)
    else
    ifeq "$(strip $(HP_64))" ""
    ifeq ($(x86_64),1)
    LIB := -L$(CUDA_INSTALL_PATH)/lib64 -L$(LIBDIR) -L$(COMMONDIR)/lib/$(OSLOWER) -L$(SHAREDDIR)/lib
    else
    LIB := -L$(CUDA_INSTALL_PATH)/lib -L$(LIBDIR) -L$(COMMONDIR)/lib/$(OSLOWER) -L$(SHAREDDIR)/lib
    endif
    else
    ifeq ($(i386),1)
    LIB := -L$(CUDA_INSTALL_PATH)/lib -L$(LIBDIR) -L$(COMMONDIR)/lib/$(OSLOWER) -L$(SHAREDDIR)/lib
    else
    LIB := -L$(CUDA_INSTALL_PATH)/lib64 -L$(LIBDIR) -L$(COMMONDIR)/lib/$(OSLOWER) -L$(SHAREDDIR)/lib
    endif
    endif
    endif
    # If dynamically linking to CUDA and CUDART, we exclude the libraries from the LIB
    ifeq ($(USECUDADYNLIB),1)
    LIB += ${OPENGLLIB} $(PARAMGLLIB) $(RENDERCHECKGLLIB) ${LIB} -ldl -rdynamic
    else
    # static linking, we will statically link against CUDA and CUDART
    ifeq ($(USEDRVAPI),1)
    LIB += -L/usr/lib -lcuda ${OPENGLLIB} $(PARAMGLLIB) $(RENDERCHECKGLLIB) ${LIB}
    else
    ifeq ($(emu),1)
    LIB += -lcudartemu
    else
    LIB += -lcudart
    endif
    LIB += ${OPENGLLIB} $(PARAMGLLIB) $(RENDERCHECKGLLIB) ${LIB}
    endif
    endif
    ifeq ($(USECUFFT),1)
    ifeq ($(emu),1)
    LIB += -lcufftemu
    else
    LIB += -lcufft
    endif
    endif
    ifeq ($(USECUBLAS),1)
    ifeq ($(emu),1)
    LIB += -lcublasemu
    else
    LIB += -lcublas
    endif
    endif
    ifeq ($(USECURAND),1)
    LIB += -lcurand
    endif
    ifeq ($(USECUSPARSE),1)
    LIB += -lcusparse
    endif
    # Lib/exe configuration
    # Lib/exe configuration
    # Lib/exe configuration
    ifneq ($(STATIC_LIB),)
    TARGETDIR := $(LIBDIR)
    TARGET := $(subst .a,_$(LIB_ARCH)$(LIBSUFFIX).a,$(LIBDIR)/$(STATIC_LIB))
    LINKLINE = ar rucv $(TARGET) $(OBJS)
    else
    ifneq ($(OMIT_CUTIL_LIB),1)
    LIB += -lcutil_$(LIB_ARCH)$(LIBSUFFIX)
    endif
    ifneq ($(OMIT_SHRUTIL_LIB),1)
    LIB += -lshrutil_$(LIB_ARCH)$(LIBSUFFIX)
    endif
    # Device emulation configuration
    ifeq ($(emu), 1)
    NVCCFLAGS += -deviceemu
    CUDACCFLAGS +=
    BINSUBDIR := emu$(BINSUBDIR)
    # consistency, makes developing easier
    CXXFLAGS += -D__DEVICE_EMULATION__
    CFLAGS += -D__DEVICE_EMULATION__
    endif
    TARGETDIR := $(BINDIR)/$(BINSUBDIR)
    TARGET := $(TARGETDIR)/$(EXECUTABLE)
    LINKLINE = $(LINK) -o $(TARGET) $(OBJS) $(LIB)
    endif
    # check if verbose
    ifeq ($(verbose), 1)
    VERBOSE :=
    else
    VERBOSE := @
    endif
    # Check for input flags and set compiler flags appropriately
    ifeq ($(fastmath), 1)
    NVCCFLAGS += -use_fast_math
    endif
    ifeq ($(keep), 1)
    NVCCFLAGS += -keep
    NVCC_KEEP_CLEAN := *.i* *.cubin *.cu.c *.cudafe* *.fatbin.c *.ptx
    endif
    ifdef maxregisters
    NVCCFLAGS += -maxrregcount $(maxregisters)
    endif
    ifeq ($(ptxas), 1)
    NVCCFLAGS += --ptxas-options=-v
    endif
    # Add cudacc flags
    NVCCFLAGS += $(CUDACCFLAGS)
    # Add common flags
    NVCCFLAGS += $(COMMONFLAGS)
    CXXFLAGS += $(COMMONFLAGS)
    CFLAGS += $(COMMONFLAGS)
    ifeq ($(nvcc_warn_verbose),1)
    NVCCFLAGS += $(addprefix --compiler-options ,$(CXXWARN_FLAGS))
    NVCCFLAGS += --compiler-options -fno-strict-aliasing
    endif
    # Set up object files
    OBJDIR := $(ROOTOBJDIR)/$(LIB_ARCH)/$(BINSUBDIR)
    OBJS += $(patsubst %.cpp,$(OBJDIR)/%.cpp.o,$(notdir $(CCFILES)))
    OBJS += $(patsubst %.c,$(OBJDIR)/%.c.o,$(notdir $(CFILES)))
    OBJS += $(patsubst %.cu,$(OBJDIR)/%.cu.o,$(notdir $(CUFILES)))
    # Set up cubin output files
    CUBINDIR := $(SRCDIR)data
    CUBINS += $(patsubst %.cu,$(CUBINDIR)/%.cubin,$(notdir $(CUBINFILES)))
    # Set up PTX output files
    PTXDIR := $(SRCDIR)data
    PTXBINS += $(patsubst %.cu,$(PTXDIR)/%.ptx,$(notdir $(PTXFILES)))
    # Rules
    $(OBJDIR)/%.c.o : $(SRCDIR)%.c $(C_DEPS)
    $(VERBOSE)$(CC) $(CFLAGS) -o $@ -c $<
    $(OBJDIR)/%.cpp.o : $(SRCDIR)%.cpp $(C_DEPS)
    $(VERBOSE)$(CXX) $(CXXFLAGS) -o $@ -c $<
    # Default arch includes gencode for sm_10, sm_20, sm_30, and other archs from GENCODE_ARCH declared in the makefile
    $(OBJDIR)/%.cu.o : $(SRCDIR)%.cu $(CU_DEPS)
    $(VERBOSE)$(NVCC) $(GENCODE_SM10) $(GENCODE_ARCH) $(GENCODE_SM20) $(GENCODE_SM30) $(NVCCFLAGS) $(SMVERSIONFLAGS) -o $@ -c $<
    # Default arch includes gencode for sm_10, sm_20, sm_30, and other archs from GENCODE_ARCH declared in the makefile
    $(CUBINDIR)/%.cubin : $(SRCDIR)%.cu cubindirectory
    $(VERBOSE)$(NVCC) $(GENCODE_SM10) $(GENCODE_ARCH) $(GENCODE_SM20) $(GENCODE_SM30) $(CUBIN_ARCH_FLAG) $(NVCCFLAGS) $(SMVERSIONFLAGS) -o $@ -cubin $<
    $(PTXDIR)/%.ptx : $(SRCDIR)%.cu ptxdirectory
    $(VERBOSE)$(NVCC) $(CUBIN_ARCH_FLAG) $(NVCCFLAGS) $(SMVERSIONFLAGS) -o $@ -ptx $<
    # The following definition is a template that gets instantiated for each SM
    # version (sm_10, sm_13, etc.) stored in SMVERSIONS. It does 2 things:
    # 1. It adds to OBJS a .cu_sm_XX.o for each .cu file it finds in CUFILES_sm_XX.
    # 2. It generates a rule for building .cu_sm_XX.o files from the corresponding
    # .cu file.
    # The intended use for this is to allow Makefiles that use common.mk to compile
    # files to different Compute Capability targets (aka SM arch version). To do
    # so, in the Makefile, list files for each SM arch separately, like so:
    # This will be used over the default rule abov
    # CUFILES_sm_10 := mycudakernel_sm10.cu app.cu
    # CUFILES_sm_12 := anothercudakernel_sm12.cu
    define SMVERSION_template
    #OBJS += $(patsubst %.cu,$(OBJDIR)/%.cu_$(1).o,$(notdir $(CUFILES_$(1))))
    OBJS += $(patsubst %.cu,$(OBJDIR)/%.cu_$(1).o,$(notdir $(CUFILES_sm_$(1))))
    $(OBJDIR)/%.cu_$(1).o : $(SRCDIR)%.cu $(CU_DEPS)
    # $(VERBOSE)$(NVCC) -o $$@ -c $$< $(NVCCFLAGS) $(1)
    $(VERBOSE)$(NVCC) -gencode=arch=compute_$(1),code=\"sm_$(1),compute_$(1)\" $(GENCODE_SM20) $(GENCODE_SM30) -o $$@ -c $$< $(NVCCFLAGS)
    endef
    # This line invokes the above template for each arch version stored in
    # SM_VERSIONS. The call funtion invokes the template, and the eval
    # function interprets it as make commands.
    $(foreach smver,$(SM_VERSIONS),$(eval $(call SMVERSION_template,$(smver))))
    $(TARGET): makedirectories $(OBJS) $(CUBINS) $(PTXBINS) Makefile
    $(VERBOSE)$(LINKLINE)
    cubindirectory:
    $(VERBOSE)mkdir -p $(CUBINDIR)
    ptxdirectory:
    $(VERBOSE)mkdir -p $(PTXDIR)
    makedirectories:
    $(VERBOSE)mkdir -p $(LIBDIR)
    $(VERBOSE)mkdir -p $(OBJDIR)
    $(VERBOSE)mkdir -p $(TARGETDIR)
    tidy :
    $(VERBOSE)find . | egrep "#" | xargs rm -f
    $(VERBOSE)find . | egrep "\~" | xargs rm -f
    clean : tidy
    $(VERBOSE)rm -f *.stub.c *.gpu *.cu.cpp *.i *.ii
    $(VERBOSE)rm -f *.cubin *.ptx *.fatbin.c *.hash
    $(VERBOSE)rm -f *.cudafe1.c *.cudafe2.c *.cudafe1.cpp *.cudafe2.cpp
    $(VERBOSE)rm -f $(OBJS)
    $(VERBOSE)rm -f $(CUBINS)
    $(VERBOSE)rm -f $(PTXBINS)
    $(VERBOSE)rm -f $(TARGET)
    $(VERBOSE)rm -f $(NVCC_KEEP_CLEAN)
    $(VERBOSE)rm -f $(ROOTBINDIR)/$(OSLOWER)/$(BINSUBDIR)/*.ppm
    $(VERBOSE)rm -f $(ROOTBINDIR)/$(OSLOWER)/$(BINSUBDIR)/*.pgm
    $(VERBOSE)rm -f $(ROOTBINDIR)/$(OSLOWER)/$(BINSUBDIR)/*.bin
    $(VERBOSE)rm -f $(ROOTBINDIR)/$(OSLOWER)/$(BINSUBDIR)/*.bmp
    $(VERBOSE)rm -f $(ROOTBINDIR)/$(OSLOWER)/$(BINSUBDIR)/*.txt
    $(VERBOSE)rm -f $(CUBINDIR)/*.cubin $(PTXDIR)/*.ptx
    $(VERBOSE)rm -rf $(ROOTOBJDIR)
    $(VERBOSE)rm -rf $(LIBDIR)
    $(VERBOSE)rm -rf $(OBJDIR)
    $(VERBOSE)rm -rf $(TARGETDIR)
    clobber : clean
    $(VERBOSE)rm -rf $(COMMONDIR)/lib/*.a
    $(VERBOSE)rm -rf $(SHAREDDIR)/lib/*.a
    $(VERBOSE)rm -rf $(COMMONDIR)/obj
    $(VERBOSE)rm -rf $(SHAREDDIR)/obj
    The output of echo $LD_LIBRARY_PATH is blank.
    I have checked for libcuda and can find it:
    # ls /usr/lib | grep libcuda
    libcuda.so.1
    libcuda.so.304.32
    Is there something obvious I need to do to get these to compile?
    Thanks again.

  • Problem with nvidia driver, causing system to be unusable

    Hello, I've got a problem I assume with nvidia driver. My graphics card is gtx 460, here's my usual glxgears output:
    http://dl.dropbox.com/u/16474487/noerror.png
    After random amount of time (usually from 30 mins to ~2hours) something 'breaks' and here's what happens:
    http://dl.dropbox.com/u/16474487/error.png
    I've tried different desktop environments, under xfce4 it also breaks, i've been testing also nvidia-beta and nvidia-all drivers, but it won't help. After 'breaking' i must restart nvidia module, then all again is working fine.
    -- mod edit: read the Forum Etiquette and only post thumbnails http://wiki.archlinux.org/index.php/For … s_and_Code [jwr] --

    Vazz wrote:Hello, I've got a problem I assume with nvidia driver. My graphics card is gtx 460, here's my usual glxgears output:
    http://dl.dropbox.com/u/16474487/noerror.png
    After random amount of time (usually from 30 mins to ~2hours) something 'breaks' and here's what happens:
    http://dl.dropbox.com/u/16474487/error.png
    I've tried different desktop environments, under xfce4 it also breaks, i've been testing also nvidia-beta and nvidia-all drivers, but it won't help. After 'breaking' i must restart nvidia module, then all again is working fine.
    Hey Vazz, there is a problem with the nvidia linux drivers/gtx460 hardware, but sadly it only affects a small population.
    There is a thread on the nvidia support forums with many others having more or less the same problems.
    Still no response from nvidia yet...  In the meantime use nouveau.
    Last edited by Loafers (2011-01-20 05:13:58)

  • T61 nvidia driver causes font problems

    after my last update a new graphics driver for the nvidia quadro 140m was installed.
    the new version (7618) caused bad problems with my fonts. (they could not been displayed)
    -> only squares for each letter 
    it took me a have day to find out, that it was the graphic driver (i didn't expected that).
    After I reinstalled my fontexplorer and repared my windows installation several times,
    it took me another half day to find the download to the old driver again. (7471)
    ftp://ftp.software.ibm.com/pc/pccbbs/mobiles/7kd165ww.exe
    now it works again with the old driver and i hope there will be an update and at least a notice in the thinkpad system update.
    frustrated greets. 

    Hi Puschl636,
    I had a similar problem. I have 3.03a of the presentation director and the most current display driver.
    If I boot with dual screens, the first time I do it, I have to open the lid to the laptop and then close it after startup and it will usually move to the dual screen profile.
    It may be a temp fix, but after that, as long as I have it docked, the dual screens come up.
    Hope that helps!
    Roy 

  • Nvidia driver causing problems what should i use?

    Hi,
    Just switched my hard disk to a temporary machine and the nvidia card on it is causing crashes and random freezes on my machine.
    Since its just temporary, I can't be bothered to mess around with the configuration at the moment.
    Could someone please tell me what would be the default driver for me to use?
    I don't have need for compositing or 3d acceleration.
    Thanks in advance,
    Ali

    Well seeing as how you don't need 3d perhaps nouveau might be worth a shot: http://wiki.archlinux.org/index.php/Nouveau
    Word is that eventually it will replace the standard "nv" driver and it will be incorporated into the 2.6.33 kernel.  In my experience the nouveau driver is faster than the standard nv.
    To use it you will need to remove your current nvidia drivers and then change your xorg.conf to use nouveau.  In addition you must enable KMS which is easy enough, see the wiki.  I just happened to change from the nvidia blob to nouveau last night after installing KDE 4.4... So far I am satisfied and feel better about supporting the open source driver.
    Last edited by davidm (2010-02-11 09:17:50)

  • Laggy performance with Nvidia driver

    Greetings,
    I am trying to use my nvidia 9800 GTX card with the Nvidia driver in the official repos.  I have a dual monitor setup with gnome 3.10 installed.  Everything is snappy with the default configurations with the Noveau driver.
    A typical extended desktop environment would be preferable.  From what I understand from the multihead and multiple monitor sections of the wiki is that twinview or xinerama would accomplish this, but it is mentioned that xinerama does not work for this newer version of the nvidia driver.  I used nvidia-settings to set up the monitors in the right location and saved the config file to /etc/X11/xorg.conf.d/10-monitor.conf as suggested in the wiki. I tried making some configuration changes to the tune of the examples in the wiki, but every change I make seems to result in an even buggier or unbootable x server.  I scrapped the nvidia driver and installed noveau to test it out, now  I'm back to the initial configuration on the nvidia driver.   
    The display configuration is actually what I want now, but the system feels overly heavy and laggy.   Any suggestions?
    Here is the output of my (Corrected) most recent xorg log
    X.Org X Server 1.14.4
    Release Date: 2013-10-31
    [ 2.823] X Protocol Version 11, Revision 0
    [ 2.823] Build Operating System: Linux 3.11.6-1-ARCH x86_64
    [ 2.823] Current Operating System: Linux bigarch 3.12.3-1-ARCH #1 SMP PREEMPT Wed Dec 4 21:45:42 CET 2013 x86_64
    [ 2.823] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=8c847ab2-4f0a-4b91-82c8-716aadf0b24c rw quiet
    [ 2.823] Build Date: 01 November 2013 05:10:48PM
    [ 2.823]
    [ 2.823] Current version of pixman: 0.32.4
    [ 2.823] Before reporting problems, check [url]http://wiki.x.org[/url]
    to make sure that you have the latest version.
    [ 2.823] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 2.823] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Dec 8 15:54:59 2013
    [ 2.824] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 2.825] (==) No Layout section. Using the first Screen section.
    [ 2.825] (==) No screen section available. Using defaults.
    [ 2.825] (**) |-->Screen "Default Screen Section" (0)
    [ 2.825] (**) | |-->Monitor "<default monitor>"
    [ 2.825] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 2.825] (==) Automatically adding devices
    [ 2.825] (==) Automatically enabling devices
    [ 2.825] (==) Automatically adding GPU devices
    [ 2.828] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 2.828] Entry deleted from font path.
    [ 2.828] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 2.828] Entry deleted from font path.
    [ 2.828] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 2.828] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 2.828] Entry deleted from font path.
    [ 2.828] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 2.828] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 2.828] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 2.828] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 2.828] (II) Loader magic: 0x7fdc20
    [ 2.828] (II) Module ABI versions:
    [ 2.828] X.Org ANSI C Emulation: 0.4
    [ 2.829] X.Org Video Driver: 14.1
    [ 2.829] X.Org XInput driver : 19.1
    [ 2.829] X.Org Server Extension : 7.0
    [ 2.830] (--) PCI:*(0:1:0:0) 10de:0612:10de:0577 rev 162, Mem @ 0xfd000000/16777216, 0xd0000000/268435456, 0xfa000000/33554432, I/O @ 0x0000cc00/128, BIOS @ 0x????????/131072
    [ 2.830] Initializing built-in extension Generic Event Extension
    [ 2.830] Initializing built-in extension SHAPE
    [ 2.830] Initializing built-in extension MIT-SHM
    [ 2.830] Initializing built-in extension XInputExtension
    [ 2.830] Initializing built-in extension XTEST
    [ 2.830] Initializing built-in extension BIG-REQUESTS
    [ 2.830] Initializing built-in extension SYNC
    [ 2.830] Initializing built-in extension XKEYBOARD
    [ 2.830] Initializing built-in extension XC-MISC
    [ 2.830] Initializing built-in extension SECURITY
    [ 2.830] Initializing built-in extension XINERAMA
    [ 2.830] Initializing built-in extension XFIXES
    [ 2.830] Initializing built-in extension RENDER
    [ 2.830] Initializing built-in extension RANDR
    [ 2.830] Initializing built-in extension COMPOSITE
    [ 2.830] Initializing built-in extension DAMAGE
    [ 2.830] Initializing built-in extension MIT-SCREEN-SAVER
    [ 2.830] Initializing built-in extension DOUBLE-BUFFER
    [ 2.830] Initializing built-in extension RECORD
    [ 2.830] Initializing built-in extension DPMS
    [ 2.830] Initializing built-in extension X-Resource
    [ 2.830] Initializing built-in extension XVideo
    [ 2.830] Initializing built-in extension XVideo-MotionCompensation
    [ 2.830] Initializing built-in extension XFree86-VidModeExtension
    [ 2.830] Initializing built-in extension XFree86-DGA
    [ 2.830] Initializing built-in extension XFree86-DRI
    [ 2.830] Initializing built-in extension DRI2
    [ 2.830] (II) LoadModule: "glx"
    [ 2.833] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 2.835] (II) Module glx: vendor="X.Org Foundation"
    [ 2.835] compiled for 1.14.4, module version = 1.0.0
    [ 2.835] ABI class: X.Org Server Extension, version 7.0
    [ 2.835] (==) AIGLX enabled
    [ 2.835] Loading extension GLX
    [ 2.835] (==) Matched nouveau as autoconfigured driver 0
    [ 2.835] (==) Matched nvidia as autoconfigured driver 1
    [ 2.835] (==) Matched nv as autoconfigured driver 2
    [ 2.835] (==) Matched vesa as autoconfigured driver 3
    [ 2.835] (==) Matched modesetting as autoconfigured driver 4
    [ 2.835] (==) Matched fbdev as autoconfigured driver 5
    [ 2.836] (==) Assigned the driver to the xf86ConfigLayout
    [ 2.836] (II) LoadModule: "nouveau"
    [ 2.836] (II) Loading /usr/lib/xorg/modules/drivers/nouveau_drv.so
    [ 2.838] (II) Module nouveau: vendor="X.Org Foundation"
    [ 2.838] compiled for 1.14.4, module version = 1.0.10
    [ 2.838] Module class: X.Org Video Driver
    [ 2.838] ABI class: X.Org Video Driver, version 14.1
    [ 2.838] (II) LoadModule: "nvidia"
    [ 2.839] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 2.848] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 2.848] compiled for 4.0.2, module version = 1.0.0
    [ 2.848] Module class: X.Org Video Driver
    [ 2.849] (II) LoadModule: "nv"
    [ 2.851] (WW) Warning, couldn't open module nv
    [ 2.851] (II) UnloadModule: "nv"
    [ 2.851] (II) Unloading nv
    [ 2.851] (EE) Failed to load module "nv" (module does not exist, 0)
    [ 2.851] (II) LoadModule: "vesa"
    [ 2.851] (WW) Warning, couldn't open module vesa
    [ 2.851] (II) UnloadModule: "vesa"
    [ 2.852] (II) Unloading vesa
    [ 2.852] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 2.852] (II) LoadModule: "modesetting"
    [ 2.852] (WW) Warning, couldn't open module modesetting
    [ 2.852] (II) UnloadModule: "modesetting"
    [ 2.852] (II) Unloading modesetting
    [ 2.852] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 2.852] (II) LoadModule: "fbdev"
    [ 2.852] (WW) Warning, couldn't open module fbdev
    [ 2.852] (II) UnloadModule: "fbdev"
    [ 2.852] (II) Unloading fbdev
    [ 2.852] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 2.852] (II) NOUVEAU driver
    [ 2.852] (II) NOUVEAU driver for NVIDIA chipset families :
    [ 2.852] RIVA TNT (NV04)
    [ 2.852] RIVA TNT2 (NV05)
    [ 2.852] GeForce 256 (NV10)
    [ 2.852] GeForce 2 (NV11, NV15)
    [ 2.852] GeForce 4MX (NV17, NV18)
    [ 2.852] GeForce 3 (NV20)
    [ 2.852] GeForce 4Ti (NV25, NV28)
    [ 2.852] GeForce FX (NV3x)
    [ 2.852] GeForce 6 (NV4x)
    [ 2.852] GeForce 7 (G7x)
    [ 2.853] GeForce 8 (G8x)
    [ 2.853] GeForce GTX 200 (NVA0)
    [ 2.853] GeForce GTX 400 (NVC0)
    [ 2.853] (II) NVIDIA dlloader X Driver 331.20 Wed Oct 30 17:16:53 PDT 2013
    [ 2.853] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 2.853] (++) using VT number 1
    [ 2.853] (EE) [drm] KMS not enabled
    [ 2.855] (II) Loading sub module "fb"
    [ 2.855] (II) LoadModule: "fb"
    [ 2.855] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 2.856] (II) Module fb: vendor="X.Org Foundation"
    [ 2.856] compiled for 1.14.4, module version = 1.0.0
    [ 2.856] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 2.856] (WW) Unresolved symbol: fbGetGCPrivateKey
    [ 2.856] (II) Loading sub module "wfb"
    [ 2.856] (II) LoadModule: "wfb"
    [ 2.856] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 2.858] (II) Module wfb: vendor="X.Org Foundation"
    [ 2.858] compiled for 1.14.4, module version = 1.0.0
    [ 2.858] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 2.858] (II) Loading sub module "ramdac"
    [ 2.858] (II) LoadModule: "ramdac"
    [ 2.858] (II) Module "ramdac" already built-in
    [ 3.013] (II) NVIDIA(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 3.013] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
    [ 3.013] (==) NVIDIA(0): RGB weight 888
    [ 3.013] (==) NVIDIA(0): Default visual is TrueColor
    [ 3.014] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 3.014] (**) NVIDIA(0): Enabling 2D acceleration
    [ 3.014] (EE) NVIDIA(0): Failed to initialize the GLX module; please check in your X
    [ 3.014] (EE) NVIDIA(0): log file that the GLX module has been loaded in your X
    [ 3.014] (EE) NVIDIA(0): server, and that the module is the NVIDIA GLX module. If
    [ 3.014] (EE) NVIDIA(0): you continue to encounter problems, Please try
    [ 3.014] (EE) NVIDIA(0): reinstalling the NVIDIA driver.
    [ 3.876] (II) NVIDIA(0): Display (Acer AL2216W (CRT-1)) does not support NVIDIA 3D
    [ 3.876] (II) NVIDIA(0): Vision stereo.
    [ 3.918] (II) NVIDIA(0): Display (Ancor Communications Inc ASUS VH242H (DFP-0)) does
    [ 3.918] (II) NVIDIA(0): not support NVIDIA 3D Vision stereo.
    [ 3.919] (II) NVIDIA(GPU-0): Found DRM driver nvidia-drm (20130102)
    [ 3.919] (II) NVIDIA(0): NVIDIA GPU GeForce 9800 GTX/9800 GTX+ (G92) at PCI:1:0:0
    [ 3.919] (II) NVIDIA(0): (GPU-0)
    [ 3.919] (--) NVIDIA(0): Memory: 524288 kBytes
    [ 3.919] (--) NVIDIA(0): VideoBIOS: 62.92.40.00.07
    [ 3.919] (II) NVIDIA(0): Detected PCI Express Link width: 16X
    [ 3.923] (--) NVIDIA(0): Valid display device(s) on GeForce 9800 GTX/9800 GTX+ at PCI:1:0:0
    [ 3.923] (--) NVIDIA(0): CRT-0
    [ 3.923] (--) NVIDIA(0): Acer AL2216W (CRT-1) (connected)
    [ 3.923] (--) NVIDIA(0): TV-0
    [ 3.923] (--) NVIDIA(0): Ancor Communications Inc ASUS VH242H (DFP-0) (boot, connected)
    [ 3.923] (--) NVIDIA(0): DFP-1
    [ 3.923] (--) NVIDIA(0): CRT-0: 400.0 MHz maximum pixel clock
    [ 3.923] (--) NVIDIA(0): Acer AL2216W (CRT-1): 400.0 MHz maximum pixel clock
    [ 3.923] (--) NVIDIA(0): TV-0: 400.0 MHz maximum pixel clock
    [ 3.923] (--) NVIDIA(0): Ancor Communications Inc ASUS VH242H (DFP-0): Internal Dual Link TMDS
    [ 3.923] (--) NVIDIA(0): Ancor Communications Inc ASUS VH242H (DFP-0): 330.0 MHz maximum pixel clock
    [ 3.923] (--) NVIDIA(0): DFP-1: Internal Single Link TMDS
    [ 3.923] (--) NVIDIA(0): DFP-1: 330.0 MHz maximum pixel clock
    [ 3.923] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 3.923] (**) NVIDIA(0): device Acer AL2216W (CRT-1) (Using EDID frequencies has
    [ 3.923] (**) NVIDIA(0): been enabled on all display devices.)
    [ 3.924] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 3.924] (**) NVIDIA(0): device Ancor Communications Inc ASUS VH242H (DFP-0) (Using
    [ 3.924] (**) NVIDIA(0): EDID frequencies has been enabled on all display
    [ 3.924] (**) NVIDIA(0): devices.)
    [ 3.926] (==) NVIDIA(0):
    [ 3.926] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
    [ 3.926] (==) NVIDIA(0): will be used as the requested mode.
    [ 3.926] (==) NVIDIA(0):
    [ 3.926] (II) NVIDIA(0): Validated MetaModes:
    [ 3.926] (II) NVIDIA(0): "DFP-0:nvidia-auto-select,CRT-1:nvidia-auto-select"
    [ 3.926] (II) NVIDIA(0): Virtual screen size determined to be 3600 x 1080
    [ 3.959] (--) NVIDIA(0): DPI set to (93, 94); computed from "UseEdidDpi" X config
    [ 3.960] (--) NVIDIA(0): option
    [ 3.960] (--) Depth 24 pixmap format is 32 bpp
    [ 3.960] (II) NVIDIA: Using 768.00 MB of virtual memory for indirect memory access.
    [ 3.962] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
    [ 3.962] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
    [ 3.962] (II) NVIDIA(0): configuration option may not be set correctly. When the
    [ 3.962] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
    [ 3.962] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
    [ 3.962] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
    [ 3.962] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 3.962] (II) NVIDIA(0): Config Options in the README.
    [ 3.965] (II) NVIDIA(0): Setting mode "DFP-0:nvidia-auto-select,CRT-1:nvidia-auto-select"
    [ 4.022] Loading extension NV-GLX
    [ 4.056] (==) NVIDIA(0): Disabling shared memory pixmaps
    [ 4.056] (==) NVIDIA(0): Backing store disabled
    [ 4.056] (==) NVIDIA(0): Silken mouse enabled
    [ 4.057] (==) NVIDIA(0): DPMS enabled
    [ 4.057] Loading extension NV-CONTROL
    [ 4.057] Loading extension XINERAMA
    [ 4.057] (II) Loading sub module "dri2"
    [ 4.057] (II) LoadModule: "dri2"
    [ 4.057] (II) Module "dri2" already built-in
    [ 4.057] (II) NVIDIA(0): [DRI2] Setup complete
    [ 4.057] (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia
    [ 4.057] (--) RandR disabled
    [ 4.062] (II) AIGLX: Screen 0 is not DRI2 capable
    [ 4.062] (II) AIGLX: Screen 0 is not DRI capable
    [ 4.135] (II) AIGLX: Loaded and initialized swrast
    [ 4.135] (II) GLX: Initialized DRISWRAST GL provider for screen 0
    [ 4.191] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 4.191] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 4.192] (II) LoadModule: "evdev"
    [ 4.192] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 4.193] (II) Module evdev: vendor="X.Org Foundation"
    [ 4.193] compiled for 1.14.3, module version = 2.8.2
    [ 4.193] Module class: X.Org XInput Driver
    [ 4.193] ABI class: X.Org XInput driver, version 19.1
    [ 4.193] (II) Using input driver 'evdev' for 'Power Button'
    [ 4.193] (**) Power Button: always reports core events
    [ 4.193] (**) evdev: Power Button: Device: "/dev/input/event1"
    [ 4.193] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 4.193] (--) evdev: Power Button: Found keys
    [ 4.193] (II) evdev: Power Button: Configuring as keyboard
    [ 4.193] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event1"
    [ 4.193] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 4.193] (**) Option "xkb_rules" "evdev"
    [ 4.193] (**) Option "xkb_model" "pc104"
    [ 4.193] (**) Option "xkb_layout" "us"
    [ 4.216] (II) config/udev: Adding input device Power Button (/dev/input/event0)
    [ 4.216] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 4.216] (II) Using input driver 'evdev' for 'Power Button'
    [ 4.216] (**) Power Button: always reports core events
    [ 4.216] (**) evdev: Power Button: Device: "/dev/input/event0"
    [ 4.216] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 4.216] (--) evdev: Power Button: Found keys
    [ 4.216] (II) evdev: Power Button: Configuring as keyboard
    [ 4.216] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1/event0"
    [ 4.216] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 4.216] (**) Option "xkb_rules" "evdev"
    [ 4.216] (**) Option "xkb_model" "pc104"
    [ 4.216] (**) Option "xkb_layout" "us"
    [ 4.216] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 4.216] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 4.216] setversion 1.4 failed
    [ 4.217] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event3)
    [ 4.217] (II) No input driver specified, ignoring this device.
    [ 4.217] (II) This device may have been added with another device file.
    [ 4.217] (II) config/udev: Adding input device HDA Intel Line Out CLFE (/dev/input/event6)
    [ 4.217] (II) No input driver specified, ignoring this device.
    [ 4.217] (II) This device may have been added with another device file.
    [ 4.217] (II) config/udev: Adding input device HDA Intel Line Out Side (/dev/input/event5)
    [ 4.217] (II) No input driver specified, ignoring this device.
    [ 4.217] (II) This device may have been added with another device file.
    [ 4.217] (II) config/udev: Adding input device HDA Intel Front Headphone (/dev/input/event4)
    [ 4.217] (II) No input driver specified, ignoring this device.
    [ 4.217] (II) This device may have been added with another device file.
    [ 4.217] (II) config/udev: Adding input device HDA Intel Front Mic (/dev/input/event11)
    [ 4.217] (II) No input driver specified, ignoring this device.
    [ 4.218] (II) This device may have been added with another device file.
    [ 4.218] (II) config/udev: Adding input device HDA Intel Rear Mic (/dev/input/event10)
    [ 4.218] (II) No input driver specified, ignoring this device.
    [ 4.218] (II) This device may have been added with another device file.
    [ 4.218] (II) config/udev: Adding input device HDA Intel Line (/dev/input/event9)
    [ 4.218] (II) No input driver specified, ignoring this device.
    [ 4.218] (II) This device may have been added with another device file.
    [ 4.218] (II) config/udev: Adding input device HDA Intel Line Out Front (/dev/input/event8)
    [ 4.218] (II) No input driver specified, ignoring this device.
    [ 4.218] (II) This device may have been added with another device file.
    [ 4.218] (II) config/udev: Adding input device HDA Intel Line Out Surround (/dev/input/event7)
    [ 4.218] (II) No input driver specified, ignoring this device.
    [ 4.218] (II) This device may have been added with another device file.
    [ 4.219] (II) config/udev: Adding input device Logitech Unifying Device. Wireless PID:101a (/dev/input/event13)
    [ 4.219] (**) Logitech Unifying Device. Wireless PID:101a: Applying InputClass "evdev pointer catchall"
    [ 4.219] (II) Using input driver 'evdev' for 'Logitech Unifying Device. Wireless PID:101a'
    [ 4.219] (**) Logitech Unifying Device. Wireless PID:101a: always reports core events
    [ 4.219] (**) evdev: Logitech Unifying Device. Wireless PID:101a: Device: "/dev/input/event13"
    [ 4.219] (--) evdev: Logitech Unifying Device. Wireless PID:101a: Vendor 0x46d Product 0xc52b
    [ 4.219] (--) evdev: Logitech Unifying Device. Wireless PID:101a: Found 20 mouse buttons
    [ 4.219] (--) evdev: Logitech Unifying Device. Wireless PID:101a: Found scroll wheel(s)
    [ 4.219] (--) evdev: Logitech Unifying Device. Wireless PID:101a: Found relative axes
    [ 4.219] (--) evdev: Logitech Unifying Device. Wireless PID:101a: Found x and y relative axes
    [ 4.219] (II) evdev: Logitech Unifying Device. Wireless PID:101a: Configuring as mouse
    [ 4.219] (II) evdev: Logitech Unifying Device. Wireless PID:101a: Adding scrollwheel support
    [ 4.219] (**) evdev: Logitech Unifying Device. Wireless PID:101a: YAxisMapping: buttons 4 and 5
    [ 4.219] (**) evdev: Logitech Unifying Device. Wireless PID:101a: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 4.219] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.2/usb9/9-1/9-1:1.2/0003:046D:C52B.0003/input/input14/event13"
    [ 4.219] (II) XINPUT: Adding extended input device "Logitech Unifying Device. Wireless PID:101a" (type: MOUSE, id 8)
    [ 4.219] (II) evdev: Logitech Unifying Device. Wireless PID:101a: initialized for relative axes.
    [ 4.220] (**) Logitech Unifying Device. Wireless PID:101a: (accel) keeping acceleration scheme 1
    [ 4.220] (**) Logitech Unifying Device. Wireless PID:101a: (accel) acceleration profile 0
    [ 4.220] (**) Logitech Unifying Device. Wireless PID:101a: (accel) acceleration factor: 2.000
    [ 4.220] (**) Logitech Unifying Device. Wireless PID:101a: (accel) acceleration threshold: 4
    [ 4.220] (II) config/udev: Adding input device Logitech Unifying Device. Wireless PID:101a (/dev/input/mouse0)
    [ 4.220] (II) No input driver specified, ignoring this device.
    [ 4.220] (II) This device may have been added with another device file.
    [ 4.220] (II) config/udev: Adding input device Microsoft Comfort Curve Keyboard 2000 (/dev/input/event12)
    [ 4.220] (**) Microsoft Comfort Curve Keyboard 2000: Applying InputClass "evdev keyboard catchall"
    [ 4.220] (II) Using input driver 'evdev' for 'Microsoft Comfort Curve Keyboard 2000'
    [ 4.220] (**) Microsoft Comfort Curve Keyboard 2000: always reports core events
    [ 4.220] (**) evdev: Microsoft Comfort Curve Keyboard 2000: Device: "/dev/input/event12"
    [ 4.220] (--) evdev: Microsoft Comfort Curve Keyboard 2000: Vendor 0x45e Product 0xdd
    [ 4.220] (--) evdev: Microsoft Comfort Curve Keyboard 2000: Found keys
    [ 4.220] (II) evdev: Microsoft Comfort Curve Keyboard 2000: Configuring as keyboard
    [ 4.220] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.2/usb9/9-2/9-2:1.0/input/input13/event12"
    [ 4.220] (II) XINPUT: Adding extended input device "Microsoft Comfort Curve Keyboard 2000" (type: KEYBOARD, id 9)
    [ 4.220] (**) Option "xkb_rules" "evdev"
    [ 4.220] (**) Option "xkb_model" "pc104"
    [ 4.220] (**) Option "xkb_layout" "us"
    [ 4.221] (II) config/udev: Adding input device Microsoft Comfort Curve Keyboard 2000 (/dev/input/event14)
    [ 4.221] (**) Microsoft Comfort Curve Keyboard 2000: Applying InputClass "evdev keyboard catchall"
    [ 4.221] (II) Using input driver 'evdev' for 'Microsoft Comfort Curve Keyboard 2000'
    [ 4.221] (**) Microsoft Comfort Curve Keyboard 2000: always reports core events
    [ 4.221] (**) evdev: Microsoft Comfort Curve Keyboard 2000: Device: "/dev/input/event14"
    [ 4.221] (--) evdev: Microsoft Comfort Curve Keyboard 2000: Vendor 0x45e Product 0xdd
    [ 4.221] (--) evdev: Microsoft Comfort Curve Keyboard 2000: Found 1 mouse buttons
    [ 4.221] (--) evdev: Microsoft Comfort Curve Keyboard 2000: Found scroll wheel(s)
    [ 4.221] (--) evdev: Microsoft Comfort Curve Keyboard 2000: Found relative axes
    [ 4.221] (II) evdev: Microsoft Comfort Curve Keyboard 2000: Forcing relative x/y axes to exist.
    [ 4.221] (--) evdev: Microsoft Comfort Curve Keyboard 2000: Found absolute axes
    [ 4.221] (II) evdev: Microsoft Comfort Curve Keyboard 2000: Forcing absolute x/y axes to exist.
    [ 4.221] (--) evdev: Microsoft Comfort Curve Keyboard 2000: Found keys
    [ 4.221] (II) evdev: Microsoft Comfort Curve Keyboard 2000: Configuring as mouse
    [ 4.221] (II) evdev: Microsoft Comfort Curve Keyboard 2000: Configuring as keyboard
    [ 4.221] (II) evdev: Microsoft Comfort Curve Keyboard 2000: Adding scrollwheel support
    [ 4.221] (**) evdev: Microsoft Comfort Curve Keyboard 2000: YAxisMapping: buttons 4 and 5
    [ 4.221] (**) evdev: Microsoft Comfort Curve Keyboard 2000: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 4.221] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.2/usb9/9-2/9-2:1.1/input/input15/event14"
    [ 4.221] (II) XINPUT: Adding extended input device "Microsoft Comfort Curve Keyboard 2000" (type: KEYBOARD, id 10)
    [ 4.221] (**) Option "xkb_rules" "evdev"
    [ 4.221] (**) Option "xkb_model" "pc104"
    [ 4.221] (**) Option "xkb_layout" "us"
    [ 4.221] (II) evdev: Microsoft Comfort Curve Keyboard 2000: initialized for relative axes.
    [ 4.221] (WW) evdev: Microsoft Comfort Curve Keyboard 2000: ignoring absolute axes.
    [ 4.221] (**) Microsoft Comfort Curve Keyboard 2000: (accel) keeping acceleration scheme 1
    [ 4.221] (**) Microsoft Comfort Curve Keyboard 2000: (accel) acceleration profile 0
    [ 4.221] (**) Microsoft Comfort Curve Keyboard 2000: (accel) acceleration factor: 2.000
    [ 4.221] (**) Microsoft Comfort Curve Keyboard 2000: (accel) acceleration threshold: 4
    [ 4.222] (II) config/udev: Adding input device UVC Camera (046d:081b) (/dev/input/event15)
    [ 4.222] (**) UVC Camera (046d:081b): Applying InputClass "evdev keyboard catchall"
    [ 4.222] (II) Using input driver 'evdev' for 'UVC Camera (046d:081b)'
    [ 4.222] (**) UVC Camera (046d:081b): always reports core events
    [ 4.222] (**) evdev: UVC Camera (046d:081b): Device: "/dev/input/event15"
    [ 4.222] (--) evdev: UVC Camera (046d:081b): Vendor 0x46d Product 0x81b
    [ 4.222] (--) evdev: UVC Camera (046d:081b): Found keys
    [ 4.222] (II) evdev: UVC Camera (046d:081b): Configuring as keyboard
    [ 4.222] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.7/usb10/10-3/10-3:1.0/input/input16/event15"
    [ 4.222] (II) XINPUT: Adding extended input device "UVC Camera (046d:081b)" (type: KEYBOARD, id 11)
    [ 4.222] (**) Option "xkb_rules" "evdev"
    [ 4.222] (**) Option "xkb_model" "pc104"
    [ 4.222] (**) Option "xkb_layout" "us"
    [ 4.222] (II) config/udev: Adding input device PC Speaker (/dev/input/event2)
    [ 4.222] (II) No input driver specified, ignoring this device.
    [ 4.222] (II) This device may have been added with another device file.
    [ 4.225] (II) config/udev: removing device Microsoft Comfort Curve Keyboard 2000
    [ 4.250] (II) evdev: Microsoft Comfort Curve Keyboard 2000: Close
    [ 4.250] (II) UnloadModule: "evdev"
    [ 4.250] (II) config/udev: Adding input device Microsoft Comfort Curve Keyboard 2000 (/dev/input/event12)
    [ 4.250] (**) Microsoft Comfort Curve Keyboard 2000: Applying InputClass "evdev keyboard catchall"
    [ 4.250] (II) Using input driver 'evdev' for 'Microsoft Comfort Curve Keyboard 2000'
    [ 4.250] (**) Microsoft Comfort Curve Keyboard 2000: always reports core events
    [ 4.250] (**) evdev: Microsoft Comfort Curve Keyboard 2000: Device: "/dev/input/event12"
    [ 4.250] (--) evdev: Microsoft Comfort Curve Keyboard 2000: Vendor 0x45e Product 0xdd
    [ 4.250] (--) evdev: Microsoft Comfort Curve Keyboard 2000: Found keys
    [ 4.250] (II) evdev: Microsoft Comfort Curve Keyboard 2000: Configuring as keyboard
    [ 4.250] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.2/usb9/9-2/9-2:1.0/input/input13/event12"
    [ 4.250] (II) XINPUT: Adding extended input device "Microsoft Comfort Curve Keyboard 2000" (type: KEYBOARD, id 9)
    [ 4.250] (**) Option "xkb_rules" "evdev"
    [ 4.250] (**) Option "xkb_model" "pc104"
    [ 4.250] (**) Option "xkb_layout" "us"
    [ 4.250] (II) config/udev: removing device Logitech Unifying Device. Wireless PID:101a
    [ 4.276] (II) evdev: Logitech Unifying Device. Wireless PID:101a: Close
    [ 4.276] (II) UnloadModule: "evdev"
    [ 4.276] (II) config/udev: Adding input device Logitech Unifying Device. Wireless PID:101a (/dev/input/event13)
    [ 4.276] (**) Logitech Unifying Device. Wireless PID:101a: Applying InputClass "evdev pointer catchall"
    [ 4.276] (II) Using input driver 'evdev' for 'Logitech Unifying Device. Wireless PID:101a'
    [ 4.276] (**) Logitech Unifying Device. Wireless PID:101a: always reports core events
    [ 4.276] (**) evdev: Logitech Unifying Device. Wireless PID:101a: Device: "/dev/input/event13"
    [ 4.276] (--) evdev: Logitech Unifying Device. Wireless PID:101a: Vendor 0x46d Product 0xc52b
    [ 4.277] (--) evdev: Logitech Unifying Device. Wireless PID:101a: Found 20 mouse buttons
    [ 4.277] (--) evdev: Logitech Unifying Device. Wireless PID:101a: Found scroll wheel(s)
    [ 4.277] (--) evdev: Logitech Unifying Device. Wireless PID:101a: Found relative axes
    [ 4.277] (--) evdev: Logitech Unifying Device. Wireless PID:101a: Found x and y relative axes
    [ 4.277] (II) evdev: Logitech Unifying Device. Wireless PID:101a: Configuring as mouse
    [ 4.277] (II) evdev: Logitech Unifying Device. Wireless PID:101a: Adding scrollwheel support
    [ 4.277] (**) evdev: Logitech Unifying Device. Wireless PID:101a: YAxisMapping: buttons 4 and 5
    [ 4.277] (**) evdev: Logitech Unifying Device. Wireless PID:101a: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 4.277] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.2/usb9/9-1/9-1:1.2/0003:046D:C52B.0003/input/input14/event13"
    [ 4.277] (II) XINPUT: Adding extended input device "Logitech Unifying Device. Wireless PID:101a" (type: MOUSE, id 8)
    [ 4.277] (II) evdev: Logitech Unifying Device. Wireless PID:101a: initialized for relative axes.
    [ 4.277] (**) Logitech Unifying Device. Wireless PID:101a: (accel) keeping acceleration scheme 1
    [ 4.277] (**) Logitech Unifying Device. Wireless PID:101a: (accel) acceleration profile 0
    [ 4.277] (**) Logitech Unifying Device. Wireless PID:101a: (accel) acceleration factor: 2.000
    [ 4.277] (**) Logitech Unifying Device. Wireless PID:101a: (accel) acceleration threshold: 4
    [ 4.277] (II) config/udev: Adding input device Logitech Unifying Device. Wireless PID:101a (/dev/input/mouse0)
    [ 4.277] (II) No input driver specified, ignoring this device.
    [ 4.277] (II) This device may have been added with another device file.
    [ 4.277] (II) config/udev: removing device Microsoft Comfort Curve Keyboard 2000
    [ 4.303] (II) evdev: Microsoft Comfort Curve Keyboard 2000: Close
    [ 4.303] (II) UnloadModule: "evdev"
    [ 4.303] (II) config/udev: Adding input device Microsoft Comfort Curve Keyboard 2000 (/dev/input/event14)
    [ 4.303] (**) Microsoft Comfort Curve Keyboard 2000: Applying InputClass "evdev keyboard catchall"
    [ 4.303] (II) Using input driver 'evdev' for 'Microsoft Comfort Curve Keyboard 2000'
    [ 4.303] (**) Microsoft Comfort Curve Keyboard 2000: always reports core events
    [ 4.303] (**) evdev: Microsoft Comfort Curve Keyboard 2000: Device: "/dev/input/event14"
    [ 4.303] (--) evdev: Microsoft Comfort Curve Keyboard 2000: Vendor 0x45e Product 0xdd
    [ 4.303] (--) evdev: Microsoft Comfort Curve Keyboard 2000: Found 1 mouse buttons
    [ 4.303] (--) evdev: Microsoft Comfort Curve Keyboard 2000: Found scroll wheel(s)
    [ 4.303] (--) evdev: Microsoft Comfort Curve Keyboard 2000: Found relative axes
    [ 4.303] (II) evdev: Microsoft Comfort Curve Keyboard 2000: Forcing relative x/y axes to exist.
    [ 4.303] (--) evdev: Microsoft Comfort Curve Keyboard 2000: Found absolute axes
    [ 4.303] (II) evdev: Microsoft Comfort Curve Keyboard 2000: Forcing absolute x/y axes to exist.
    [ 4.303] (--) evdev: Microsoft Comfort Curve Keyboard 2000: Found keys
    [ 4.303] (II) evdev: Microsoft Comfort Curve Keyboard 2000: Configuring as mouse
    [ 4.303] (II) evdev: Microsoft Comfort Curve Keyboard 2000: Configuring as keyboard
    [ 4.303] (II) evdev: Microsoft Comfort Curve Keyboard 2000: Adding scrollwheel support
    [ 4.303] (**) evdev: Microsoft Comfort Curve Keyboard 2000: YAxisMapping: buttons 4 and 5
    [ 4.303] (**) evdev: Microsoft Comfort Curve Keyboard 2000: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 4.303] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.2/usb9/9-2/9-2:1.1/input/input15/event14"
    [ 4.303] (II) XINPUT: Adding extended input device "Microsoft Comfort Curve Keyboard 2000" (type: KEYBOARD, id 10)
    [ 4.303] (**) Option "xkb_rules" "evdev"
    [ 4.303] (**) Option "xkb_model" "pc104"
    [ 4.303] (**) Option "xkb_layout" "us"
    [ 4.304] (II) evdev: Microsoft Comfort Curve Keyboard 2000: initialized for relative axes.
    [ 4.304] (WW) evdev: Microsoft Comfort Curve Keyboard 2000: ignoring absolute axes.
    [ 4.304] (**) Microsoft Comfort Curve Keyboard 2000: (accel) keeping acceleration scheme 1
    [ 4.304] (**) Microsoft Comfort Curve Keyboard 2000: (accel) acceleration profile 0
    [ 4.304] (**) Microsoft Comfort Curve Keyboard 2000: (accel) acceleration factor: 2.000
    [ 4.304] (**) Microsoft Comfort Curve Keyboard 2000: (accel) acceleration threshold: 4
    [ 4.304] removing GPU device /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card0 /dev/dri/card0
    [ 4.304] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 4.304] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 4.304] setversion 1.4 failed
    [ 4.304] (II) config/udev: removing device UVC Camera (046d:081b)
    [ 4.330] (II) evdev: UVC Camera (046d:081b): Close
    [ 4.330] (II) UnloadModule: "evdev"
    [ 4.330] (II) config/udev: Adding input device UVC Camera (046d:081b) (/dev/input/event15)
    [ 4.330] (**) UVC Camera (046d:081b): Applying InputClass "evdev keyboard catchall"
    [ 4.330] (II) Using input driver 'evdev' for 'UVC Camera (046d:081b)'
    [ 4.330] (**) UVC Camera (046d:081b): always reports core events
    [ 4.330] (**) evdev: UVC Camera (046d:081b): Device: "/dev/input/event15"
    [ 4.330] (--) evdev: UVC Camera (046d:081b): Vendor 0x46d Product 0x81b
    [ 4.330] (--) evdev: UVC Camera (046d:081b): Found keys
    [ 4.330] (II) evdev: UVC Camera (046d:081b): Configuring as keyboard
    [ 4.330] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.7/usb10/10-3/10-3:1.0/input/input16/event15"
    [ 4.330] (II) XINPUT: Adding extended input device "UVC Camera (046d:081b)" (type: KEYBOARD, id 11)
    [ 4.330] (**) Option "xkb_rules" "evdev"
    [ 4.330] (**) Option "xkb_model" "pc104"
    [ 4.330] (**) Option "xkb_layout" "us"
    [ 5.323] (II) NVIDIA(GPU-0): Display (Acer AL2216W (CRT-1)) does not support NVIDIA 3D
    [ 5.323] (II) NVIDIA(GPU-0): Vision stereo.
    [ 5.364] (II) NVIDIA(GPU-0): Display (Ancor Communications Inc ASUS VH242H (DFP-0)) does
    [ 5.364] (II) NVIDIA(GPU-0): not support NVIDIA 3D Vision stereo.
    [ 5.690] (II) NVIDIA(0): Setting mode "DVI-I-1: nvidia-auto-select @1680x1050 +1920+0 {ViewPortIn=1680x1050, ViewPortOut=1680x1050+0+0}"
    [ 5.805] (II) NVIDIA(0): Setting mode "DVI-I-2: nvidia-auto-select @1920x1080 +0+0 {ViewPortIn=1920x1080, ViewPortOut=1920x1080+0+0}, DVI-I-1: nvidia-auto-select @1680x1050 +1920+0 {ViewPortIn=1680x1050, ViewPortOut=1680x1050+0+0}"
    [ 6.374] (II) NVIDIA(GPU-0): Display (Acer AL2216W (CRT-1)) does not support NVIDIA 3D
    [ 6.374] (II) NVIDIA(GPU-0): Vision stereo.
    [ 6.415] (II) NVIDIA(GPU-0): Display (Ancor Communications Inc ASUS VH242H (DFP-0)) does
    [ 6.415] (II) NVIDIA(GPU-0): not support NVIDIA 3D Vision stereo.
    [ 16.066] (II) NVIDIA(GPU-0): Display (Acer AL2216W (CRT-1)) does not support NVIDIA 3D
    [ 16.066] (II) NVIDIA(GPU-0): Vision stereo.
    [ 16.107] (II) NVIDIA(GPU-0): Display (Ancor Communications Inc ASUS VH242H (DFP-0)) does
    [ 16.107] (II) NVIDIA(GPU-0): not support NVIDIA 3D Vision stereo.
    [ 16.218] (II) NVIDIA(0): Setting mode "DVI-I-1: nvidia-auto-select @1680x1050 +1920+0 {ViewPortIn=1680x1050, ViewPortOut=1680x1050+0+0}"
    [ 16.323] (II) NVIDIA(0): Setting mode "DVI-I-2: nvidia-auto-select @1920x1080 +0+0 {ViewPortIn=1920x1080, ViewPortOut=1920x1080+0+0}, DVI-I-1: nvidia-auto-select @1680x1050 +1920+0 {ViewPortIn=1680x1050, ViewPortOut=1680x1050+0+0}"
    [ 16.743] (II) NVIDIA(GPU-0): Display (Acer AL2216W (CRT-1)) does not support NVIDIA 3D
    [ 16.743] (II) NVIDIA(GPU-0): Vision stereo.
    [ 16.784] (II) NVIDIA(GPU-0): Display (Ancor Communications Inc ASUS VH242H (DFP-0)) does
    [ 16.784] (II) NVIDIA(GPU-0): not support NVIDIA 3D Vision stereo.
    [ 382.257] (II) NVIDIA(GPU-0): Display (Acer AL2216W (CRT-1)) does not support NVIDIA 3D
    [ 382.257] (II) NVIDIA(GPU-0): Vision stereo.
    [ 382.298] (II) NVIDIA(GPU-0): Display (Ancor Communications Inc ASUS VH242H (DFP-0)) does
    [ 382.298] (II) NVIDIA(GPU-0): not support NVIDIA 3D Vision stereo.
    [ 406.359] (II) NVIDIA(GPU-0): Display (Acer AL2216W (CRT-1)) does not support NVIDIA 3D
    [ 406.359] (II) NVIDIA(GPU-0): Vision stereo.
    [ 406.401] (II) NVIDIA(GPU-0): Display (Ancor Communications Inc ASUS VH242H (DFP-0)) does
    [ 406.401] (II) NVIDIA(GPU-0): not support NVIDIA 3D Vision stereo.
    [ 1133.343] (II) NVIDIA(0): Setting mode "DVI-I-2:nvidia-auto-select{ViewPortIn=1366x768,ViewPortOut=1920x1079+0+0}"
    [ 1133.682] (II) NVIDIA(GPU-0): Display (Acer AL2216W (CRT-1)) does not support NVIDIA 3D
    [ 1133.682] (II) NVIDIA(GPU-0): Vision stereo.
    [ 1133.724] (II) NVIDIA(GPU-0): Display (Ancor Communications Inc ASUS VH242H (DFP-0)) does
    [ 1133.724] (II) NVIDIA(GPU-0): not support NVIDIA 3D Vision stereo.
    [ 1142.928] (II) NVIDIA(0): Setting mode "DVI-I-2: nvidia-auto-select @1920x1080 +0+0 {ViewPortIn=1920x1080, ViewPortOut=1920x1080+0+0}, DVI-I-1: nvidia-auto-select @1680x1050 +1920+0 {ViewPortIn=1680x1050, ViewPortOut=1680x1050+0+0}"
    [ 1143.167] (II) NVIDIA(GPU-0): Display (Acer AL2216W (CRT-1)) does not support NVIDIA 3D
    [ 1143.167] (II) NVIDIA(GPU-0): Vision stereo.
    [ 1143.209] (II) NVIDIA(GPU-0): Display (Ancor Communications Inc ASUS VH242H (DFP-0)) does
    [ 1143.209] (II) NVIDIA(GPU-0): not support NVIDIA 3D Vision stereo.
    Last edited by verlyn13 (2013-12-08 23:36:23)

    Is it safe to conclude that I did not properly install the nvidia driver since the output in the xorg file shows that nouveau module is being loaded?  I am not sure where I went wrong since the wiki says to simply
    pacman -S nvidia nvidia-utils
    and the nouveau driver will be automatically blacklisted and the nvidia driver installed.
    I found this https://wiki.archlinux.org/index.php/NV … au_drivers which provides a script for switching between nvidia and nouveau drivers. It states the scripts may be
    out of date and the sed lines not necessary.  From what I see there was no "nouveau" module being loaded in /etc/mkinitcpio.conf.
    As of now I removed the nvidia and nvidia-utils packages and reinstalled the nouveau driver as described in the wiki.  It is quick and stable now, but does not look nearly as nice as it would be with the proprietary drivers.  My system was incredibly buggy and unstable with the nvidia drivers installed, which I just don't understand.  My keyboard would not work at the login screen, and would complain about mounting some partitions I have in fstab. 
    Here is the current information from my system:
    cat /var/log/Xorg.0.log
    X.Org X Server 1.14.4
    Release Date: 2013-10-31
    [ 3.078] X Protocol Version 11, Revision 0
    [ 3.078] Build Operating System: Linux 3.11.6-1-ARCH x86_64
    [ 3.078] Current Operating System: Linux bigarch 3.12.3-1-ARCH #1 SMP PREEMPT Wed Dec 4 21:45:42 CET 2013 x86_64
    [ 3.078] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=8c847ab2-4f0a-4b91-82c8-716aadf0b24c rw quiet
    [ 3.078] Build Date: 01 November 2013 05:10:48PM
    [ 3.078]
    [ 3.078] Current version of pixman: 0.32.4
    [ 3.078] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 3.078] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 3.078] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Dec 9 21:38:25 2013
    [ 3.079] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 3.080] (==) No Layout section. Using the first Screen section.
    [ 3.080] (==) No screen section available. Using defaults.
    [ 3.080] (**) |-->Screen "Default Screen Section" (0)
    [ 3.080] (**) | |-->Monitor "<default monitor>"
    [ 3.080] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 3.080] (==) Automatically adding devices
    [ 3.080] (==) Automatically enabling devices
    [ 3.080] (==) Automatically adding GPU devices
    [ 3.083] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 3.083] Entry deleted from font path.
    [ 3.084] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 3.084] Entry deleted from font path.
    [ 3.084] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 3.084] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 3.084] Entry deleted from font path.
    [ 3.084] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 3.084] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 3.084] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 3.084] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 3.084] (II) Loader magic: 0x7fdc20
    [ 3.084] (II) Module ABI versions:
    [ 3.084] X.Org ANSI C Emulation: 0.4
    [ 3.084] X.Org Video Driver: 14.1
    [ 3.084] X.Org XInput driver : 19.1
    [ 3.084] X.Org Server Extension : 7.0
    [ 3.084] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 3.086] (--) PCI:*(0:1:0:0) 10de:0612:10de:0577 rev 162, Mem @ 0xfd000000/16777216, 0xd0000000/268435456, 0xfa000000/33554432, I/O @ 0x0000cc00/128, BIOS @ 0x????????/131072
    [ 3.086] Initializing built-in extension Generic Event Extension
    [ 3.086] Initializing built-in extension SHAPE
    [ 3.086] Initializing built-in extension MIT-SHM
    [ 3.086] Initializing built-in extension XInputExtension
    [ 3.086] Initializing built-in extension XTEST
    [ 3.086] Initializing built-in extension BIG-REQUESTS
    [ 3.086] Initializing built-in extension SYNC
    [ 3.086] Initializing built-in extension XKEYBOARD
    [ 3.086] Initializing built-in extension XC-MISC
    [ 3.086] Initializing built-in extension SECURITY
    [ 3.086] Initializing built-in extension XINERAMA
    [ 3.086] Initializing built-in extension XFIXES
    [ 3.086] Initializing built-in extension RENDER
    [ 3.086] Initializing built-in extension RANDR
    [ 3.086] Initializing built-in extension COMPOSITE
    [ 3.086] Initializing built-in extension DAMAGE
    [ 3.086] Initializing built-in extension MIT-SCREEN-SAVER
    [ 3.086] Initializing built-in extension DOUBLE-BUFFER
    [ 3.086] Initializing built-in extension RECORD
    [ 3.086] Initializing built-in extension DPMS
    [ 3.086] Initializing built-in extension X-Resource
    [ 3.086] Initializing built-in extension XVideo
    [ 3.086] Initializing built-in extension XVideo-MotionCompensation
    [ 3.086] Initializing built-in extension XFree86-VidModeExtension
    [ 3.086] Initializing built-in extension XFree86-DGA
    [ 3.086] Initializing built-in extension XFree86-DRI
    [ 3.086] Initializing built-in extension DRI2
    [ 3.086] (II) LoadModule: "glx"
    [ 3.089] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 3.091] (II) Module glx: vendor="X.Org Foundation"
    [ 3.091] compiled for 1.14.4, module version = 1.0.0
    [ 3.092] ABI class: X.Org Server Extension, version 7.0
    [ 3.092] (==) AIGLX enabled
    [ 3.092] Loading extension GLX
    [ 3.092] (==) Matched nouveau as autoconfigured driver 0
    [ 3.092] (==) Matched nvidia as autoconfigured driver 1
    [ 3.092] (==) Matched nv as autoconfigured driver 2
    [ 3.092] (==) Matched nouveau as autoconfigured driver 3
    [ 3.092] (==) Matched nvidia as autoconfigured driver 4
    [ 3.092] (==) Matched nv as autoconfigured driver 5
    [ 3.092] (==) Matched vesa as autoconfigured driver 6
    [ 3.092] (==) Matched modesetting as autoconfigured driver 7
    [ 3.092] (==) Matched fbdev as autoconfigured driver 8
    [ 3.092] (==) Assigned the driver to the xf86ConfigLayout
    [ 3.092] (II) LoadModule: "nouveau"
    [ 3.093] (II) Loading /usr/lib/xorg/modules/drivers/nouveau_drv.so
    [ 3.095] (II) Module nouveau: vendor="X.Org Foundation"
    [ 3.095] compiled for 1.14.4, module version = 1.0.10
    [ 3.095] Module class: X.Org Video Driver
    [ 3.095] ABI class: X.Org Video Driver, version 14.1
    [ 3.096] (II) LoadModule: "nvidia"
    [ 3.097] (WW) Warning, couldn't open module nvidia
    [ 3.097] (II) UnloadModule: "nvidia"
    [ 3.097] (II) Unloading nvidia
    [ 3.097] (EE) Failed to load module "nvidia" (module does not exist, 0)
    [ 3.097] (II) LoadModule: "nv"
    [ 3.098] (WW) Warning, couldn't open module nv
    [ 3.098] (II) UnloadModule: "nv"
    [ 3.098] (II) Unloading nv
    [ 3.098] (EE) Failed to load module "nv" (module does not exist, 0)
    [ 3.098] (II) LoadModule: "vesa"
    [ 3.098] (WW) Warning, couldn't open module vesa
    [ 3.098] (II) UnloadModule: "vesa"
    [ 3.098] (II) Unloading vesa
    [ 3.098] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 3.098] (II) LoadModule: "modesetting"
    [ 3.098] (WW) Warning, couldn't open module modesetting
    [ 3.098] (II) UnloadModule: "modesetting"
    [ 3.098] (II) Unloading modesetting
    [ 3.098] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 3.098] (II) LoadModule: "fbdev"
    [ 3.098] (WW) Warning, couldn't open module fbdev
    [ 3.098] (II) UnloadModule: "fbdev"
    [ 3.098] (II) Unloading fbdev
    [ 3.098] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 3.098] (II) NOUVEAU driver
    [ 3.098] (II) NOUVEAU driver for NVIDIA chipset families :
    [ 3.098] RIVA TNT (NV04)
    [ 3.098] RIVA TNT2 (NV05)
    [ 3.098] GeForce 256 (NV10)
    [ 3.098] GeForce 2 (NV11, NV15)
    [ 3.098] GeForce 4MX (NV17, NV18)
    [ 3.098] GeForce 3 (NV20)
    [ 3.098] GeForce 4Ti (NV25, NV28)
    [ 3.098] GeForce FX (NV3x)
    [ 3.098] GeForce 6 (NV4x)
    [ 3.098] GeForce 7 (G7x)
    [ 3.099] GeForce 8 (G8x)
    [ 3.099] GeForce GTX 200 (NVA0)
    [ 3.099] GeForce GTX 400 (NVC0)
    [ 3.099] (++) using VT number 1
    [ 3.099] (II) [drm] nouveau interface version: 1.1.1
    [ 3.099] (II) Loading sub module "dri2"
    [ 3.099] (II) LoadModule: "dri2"
    [ 3.099] (II) Module "dri2" already built-in
    [ 3.099] (--) NOUVEAU(0): Chipset: "NVIDIA NV92"
    [ 3.099] (II) NOUVEAU(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 3.099] (==) NOUVEAU(0): Depth 24, (--) framebuffer bpp 32
    [ 3.099] (==) NOUVEAU(0): RGB weight 888
    [ 3.099] (==) NOUVEAU(0): Default visual is TrueColor
    [ 3.099] (==) NOUVEAU(0): Using HW cursor
    [ 3.099] (==) NOUVEAU(0): GLX sync to VBlank disabled.
    [ 3.099] (==) NOUVEAU(0): Page flipping enabled
    [ 3.099] (==) NOUVEAU(0): Swap limit set to 2 [Max allowed 2]
    [ 3.136] (II) NOUVEAU(0): Output DVI-I-1 has no monitor section
    [ 3.164] (II) NOUVEAU(0): Output DVI-I-2 has no monitor section
    [ 3.194] (II) NOUVEAU(0): EDID for output DVI-I-1
    [ 3.194] (II) NOUVEAU(0): Manufacturer: ACI Model: 24f3 Serial#: 48640
    [ 3.194] (II) NOUVEAU(0): Year: 2010 Week: 49
    [ 3.194] (II) NOUVEAU(0): EDID Version: 1.3
    [ 3.194] (II) NOUVEAU(0): Digital Display Input
    [ 3.194] (II) NOUVEAU(0): Max Image Size [cm]: horiz.: 52 vert.: 29
    [ 3.194] (II) NOUVEAU(0): Gamma: 2.20
    [ 3.194] (II) NOUVEAU(0): DPMS capabilities: Off
    [ 3.194] (II) NOUVEAU(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 3.194] (II) NOUVEAU(0): First detailed timing is preferred mode
    [ 3.194] (II) NOUVEAU(0): redX: 0.644 redY: 0.332 greenX: 0.286 greenY: 0.601
    [ 3.194] (II) NOUVEAU(0): blueX: 0.152 blueY: 0.076 whiteX: 0.312 whiteY: 0.328
    [ 3.194] (II) NOUVEAU(0): Supported established timings:
    [ 3.194] (II) NOUVEAU(0): 720x400@70Hz
    [ 3.194] (II) NOUVEAU(0): 640x480@60Hz
    [ 3.194] (II) NOUVEAU(0): 640x480@67Hz
    [ 3.194] (II) NOUVEAU(0): 640x480@72Hz
    [ 3.194] (II) NOUVEAU(0): 640x480@75Hz
    [ 3.194] (II) NOUVEAU(0): 800x600@56Hz
    [ 3.194] (II) NOUVEAU(0): 800x600@60Hz
    [ 3.194] (II) NOUVEAU(0): 800x600@72Hz
    [ 3.194] (II) NOUVEAU(0): 800x600@75Hz
    [ 3.194] (II) NOUVEAU(0): 832x624@75Hz
    [ 3.194] (II) NOUVEAU(0): 1024x768@60Hz
    [ 3.194] (II) NOUVEAU(0): 1024x768@70Hz
    [ 3.194] (II) NOUVEAU(0): 1024x768@75Hz
    [ 3.194] (II) NOUVEAU(0): 1280x1024@75Hz
    [ 3.194] (II) NOUVEAU(0): Manufacturer's mask: 0
    [ 3.194] (II) NOUVEAU(0): Supported standard timings:
    [ 3.194] (II) NOUVEAU(0): #0: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    [ 3.194] (II) NOUVEAU(0): #1: hsize: 1280 vsize 960 refresh: 60 vid: 16513
    [ 3.194] (II) NOUVEAU(0): #2: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 3.194] (II) NOUVEAU(0): #3: hsize: 1440 vsize 900 refresh: 60 vid: 149
    [ 3.194] (II) NOUVEAU(0): #4: hsize: 1680 vsize 1050 refresh: 60 vid: 179
    [ 3.194] (II) NOUVEAU(0): #5: hsize: 1920 vsize 1080 refresh: 60 vid: 49361
    [ 3.194] (II) NOUVEAU(0): Supported detailed timing:
    [ 3.194] (II) NOUVEAU(0): clock: 148.5 MHz Image Size: 521 x 293 mm
    [ 3.194] (II) NOUVEAU(0): h_active: 1920 h_sync: 2008 h_sync_end 2052 h_blank_end 2200 h_border: 0
    [ 3.194] (II) NOUVEAU(0): v_active: 1080 v_sync: 1084 v_sync_end 1089 v_blanking: 1125 v_border: 0
    [ 3.194] (II) NOUVEAU(0): Serial No: ACLMTF048640
    [ 3.194] (II) NOUVEAU(0): Ranges: V min: 55 V max: 75 Hz, H min: 30 H max: 85 kHz, PixClock max 165 MHz
    [ 3.194] (II) NOUVEAU(0): Monitor name: ASUS VH242H
    [ 3.194] (II) NOUVEAU(0): EDID (in hex):
    [ 3.194] (II) NOUVEAU(0): 00ffffffffffff000469f32400be0000
    [ 3.194] (II) NOUVEAU(0): 3114010380341d782ac720a455499927
    [ 3.194] (II) NOUVEAU(0): 135054bfef00714f814081809500b300
    [ 3.194] (II) NOUVEAU(0): d1c001010101023a801871382d40582c
    [ 3.194] (II) NOUVEAU(0): 450009252100001e000000ff0041434c
    [ 3.194] (II) NOUVEAU(0): 4d54463034383634300a000000fd0037
    [ 3.194] (II) NOUVEAU(0): 4b1e5510000a202020202020000000fc
    [ 3.194] (II) NOUVEAU(0): 0041535553205648323432480a200079
    [ 3.194] (II) NOUVEAU(0): Printing probed modes for output DVI-I-1
    [ 3.194] (II) NOUVEAU(0): Modeline "1920x1080"x60.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
    [ 3.194] (II) NOUVEAU(0): Modeline "1680x1050"x59.9 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
    [ 3.194] (II) NOUVEAU(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 3.194] (II) NOUVEAU(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 3.194] (II) NOUVEAU(0): Modeline "1440x900"x59.9 88.75 1440 1488 1520 1600 900 903 909 926 +hsync -vsync (55.5 kHz e)
    [ 3.194] (II) NOUVEAU(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 3.194] (II) NOUVEAU(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 3.194] (II) NOUVEAU(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz e)
    [ 3.194] (II) NOUVEAU(0): Modeline "1024x768"x70.1 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 3.194] (II) NOUVEAU(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 3.194] (II) NOUVEAU(0): Modeline "832x624"x74.6 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 3.194] (II) NOUVEAU(0): Modeline "800x600"x72.2 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 3.194] (II) NOUVEAU(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 3.194] (II) NOUVEAU(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 3.194] (II) NOUVEAU(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 3.194] (II) NOUVEAU(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 3.194] (II) NOUVEAU(0): Modeline "640x480"x72.8 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (37.9 kHz e)
    [ 3.194] (II) NOUVEAU(0): Modeline "640x480"x66.7 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 3.194] (II) NOUVEAU(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 3.194] (II) NOUVEAU(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 3.223] (II) NOUVEAU(0): EDID for output DVI-I-2
    [ 3.223] (II) NOUVEAU(0): Manufacturer: ACR Model: ada1 Serial#: 2168464612
    [ 3.223] (II) NOUVEAU(0): Year: 2008 Week: 14
    [ 3.223] (II) NOUVEAU(0): EDID Version: 1.3
    [ 3.223] (II) NOUVEAU(0): Analog Display Input, Input Voltage Level: 0.700/0.300 V
    [ 3.223] (II) NOUVEAU(0): Sync: Separate
    [ 3.223] (II) NOUVEAU(0): Max Image Size [cm]: horiz.: 47 vert.: 30
    [ 3.223] (II) NOUVEAU(0): Gamma: 2.20
    [ 3.223] (II) NOUVEAU(0): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
    [ 3.223] (II) NOUVEAU(0): First detailed timing is preferred mode
    [ 3.223] (II) NOUVEAU(0): redX: 0.640 redY: 0.329 greenX: 0.300 greenY: 0.600
    [ 3.223] (II) NOUVEAU(0): blueX: 0.150 blueY: 0.060 whiteX: 0.313 whiteY: 0.329
    [ 3.223] (II) NOUVEAU(0): Supported established timings:
    [ 3.223] (II) NOUVEAU(0): 720x400@70Hz
    [ 3.223] (II) NOUVEAU(0): 640x480@60Hz
    [ 3.223] (II) NOUVEAU(0): 640x480@67Hz
    [ 3.223] (II) NOUVEAU(0): 640x480@72Hz
    [ 3.223] (II) NOUVEAU(0): 640x480@75Hz
    [ 3.223] (II) NOUVEAU(0): 800x600@56Hz
    [ 3.223] (II) NOUVEAU(0): 800x600@60Hz
    [ 3.223] (II) NOUVEAU(0): 800x600@72Hz
    [ 3.223] (II) NOUVEAU(0): 800x600@75Hz
    [ 3.223] (II) NOUVEAU(0): 832x624@75Hz
    [ 3.223] (II) NOUVEAU(0): 1024x768@60Hz
    [ 3.223] (II) NOUVEAU(0): 1024x768@70Hz
    [ 3.223] (II) NOUVEAU(0): 1024x768@75Hz
    [ 3.223] (II) NOUVEAU(0): 1280x1024@75Hz
    [ 3.223] (II) NOUVEAU(0): 1152x864@75Hz
    [ 3.223] (II) NOUVEAU(0): Manufacturer's mask: 10
    [ 3.223] (II) NOUVEAU(0): Supported standard timings:
    [ 3.223] (II) NOUVEAU(0): #0: hsize: 1600 vsize 1200 refresh: 60 vid: 16553
    [ 3.223] (II) NOUVEAU(0): #1: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    [ 3.223] (II) NOUVEAU(0): #2: hsize: 1280 vsize 960 refresh: 60 vid: 16513
    [ 3.223] (II) NOUVEAU(0): #3: hsize: 1360 vsize 765 refresh: 60 vid: 49291
    [ 3.223] (II) NOUVEAU(0): #4: hsize: 1440 vsize 900 refresh: 60 vid: 149
    [ 3.223] (II) NOUVEAU(0): #5: hsize: 1440 vsize 900 refresh: 75 vid: 3989
    [ 3.223] (II) NOUVEAU(0): #6: hsize: 1400 vsize 1050 refresh: 60 vid: 16528
    [ 3.223] (II) NOUVEAU(0): Supported detailed timing:
    [ 3.223] (II) NOUVEAU(0): clock: 146.2 MHz Image Size: 474 x 296 mm
    [ 3.223] (II) NOUVEAU(0): h_active: 1680 h_sync: 1784 h_sync_end 1960 h_blank_end 2240 h_border: 0
    [ 3.223] (II) NOUVEAU(0): v_active: 1050 v_sync: 1053 v_sync_end 1059 v_blanking: 1089 v_border: 0
    [ 3.223] (II) NOUVEAU(0): Ranges: V min: 56 V max: 77 Hz, H min: 31 H max: 84 kHz, PixClock max 175 MHz
    [ 3.223] (II) NOUVEAU(0): Serial No: LA10C0414031
    [ 3.223] (II) NOUVEAU(0): Monitor name: AL2216W
    [ 3.223] (II) NOUVEAU(0): EDID (in hex):
    [ 3.223] (II) NOUVEAU(0): 00ffffffffffff000472a1ade4244081
    [ 3.223] (II) NOUVEAU(0): 0e120103082f1e78eade95a3544c9926
    [ 3.223] (II) NOUVEAU(0): 0f5054bfef90a940714f81408bc09500
    [ 3.223] (II) NOUVEAU(0): 950f9040010121399030621a274068b0
    [ 3.223] (II) NOUVEAU(0): 3600da2811000019000000fd00384d1f
    [ 3.223] (II) NOUVEAU(0): 5411000a202020202020000000ff004c
    [ 3.224] (II) NOUVEAU(0): 41313043303431343033310a000000fc
    [ 3.224] (II) NOUVEAU(0): 00414c32323136570a20202020200045
    [ 3.224] (II) NOUVEAU(0): Printing probed modes for output DVI-I-2
    [ 3.224] (II) NOUVEAU(0): Modeline "1680x1050"x60.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync -vsync (65.3 kHz eP)
    [ 3.224] (II) NOUVEAU(0): Modeline "1600x1200"x60.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
    [ 3.224] (II) NOUVEAU(0): Modeline "1400x1050"x60.0 121.75 1400 1488 1632 1864 1050 1053 1057 1089 -hsync +vsync (65.3 kHz e)
    [ 3.224] (II) NOUVEAU(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 3.224] (II) NOUVEAU(0): Modeline "1440x900"x75.0 136.75 1440 1536 1688 1936 900 903 909 942 -hsync +vsync (70.6 kHz e)
    [ 3.224] (II) NOUVEAU(0): Modeline "1440x900"x59.9 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz e)
    [ 3.224] (II) NOUVEAU(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 3.224] (II) NOUVEAU(0): Modeline "1360x768"x59.8 84.75 1366 1431 1567 1776 768 771 781 798 -hsync +vsync (47.7 kHz)
    [ 3.224] (II) NOUVEAU(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 3.224] (II) NOUVEAU(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz e)
    [ 3.224] (II) NOUVEAU(0): Modeline "1024x768"x70.1 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 3.224] (II) NOUVEAU(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 3.224] (II) NOUVEAU(0): Modeline "832x624"x74.6 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 3.224] (II) NOUVEAU(0): Modeline "800x600"x72.2 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 3.224] (II) NOUVEAU(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 3.224] (II) NOUVEAU(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 3.224] (II) NOUVEAU(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 3.224] (II) NOUVEAU(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 3.224] (II) NOUVEAU(0): Modeline "640x480"x72.8 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (37.9 kHz e)
    [ 3.224] (II) NOUVEAU(0): Modeline "640x480"x66.7 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 3.224] (II) NOUVEAU(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 3.224] (II) NOUVEAU(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 3.224] (II) NOUVEAU(0): Output DVI-I-1 connected
    [ 3.224] (II) NOUVEAU(0): Output DVI-I-2 connected
    [ 3.224] (II) NOUVEAU(0): Using exact sizes for initial modes
    [ 3.224] (II) NOUVEAU(0): Output DVI-I-1 using initial mode 1680x1050
    [ 3.224] (II) NOUVEAU(0): Output DVI-I-2 using initial mode 1680x1050
    [ 3.224] (II) NOUVEAU(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 3.224] (--) NOUVEAU(0): Virtual size is 1680x1050 (pitch 0)
    [ 3.224] (**) NOUVEAU(0): Driver mode "1680x1050": 146.2 MHz (scaled from 0.0 MHz), 65.3 kHz, 60.0 Hz
    [ 3.224] (II) NOUVEAU(0): Modeline "1680x1050"x60.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync -vsync (65.3 kHz eP)
    [ 3.224] (**) NOUVEAU(0): Driver mode "1600x1200": 162.0 MHz (scaled from 0.0 MHz), 75.0 kHz, 60.0 Hz
    [ 3.224] (II) NOUVEAU(0): Modeline "1600x1200"x60.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
    [ 3.224] (**) NOUVEAU(0): Driver mode "1400x1050": 121.8 MHz (scaled from 0.0 MHz), 65.3 kHz, 60.0 Hz
    [ 3.224] (II) NOUVEAU(0): Modeline "1400x1050"x60.0 121.75 1400 1488 1632 1864 1050 1053 1057 1089 -hsync +vsync (65.3 kHz e)
    [ 3.224] (**) NOUVEAU(0): Driver mode "1280x1024": 135.0 MHz (scaled from 0.0 MHz), 80.0 kHz, 75.0 Hz
    [ 3.224] (II) NOUVEAU(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 3.224] (**) NOUVEAU(0): Driver mode "1440x900": 136.8 MHz (scaled from 0.0 MHz), 70.6 kHz, 75.0 Hz
    [ 3.224] (II) NOUVEAU(0): Modeline "1440x900"x75.0 136.75 1440 1536 1688 1936 900 903 909 942 -hsync +vsync (70.6 kHz e)
    [ 3.224] (**) NOUVEAU(0): Driver mode "1440x900": 106.5 MHz (scaled from 0.0 MHz), 55.9 kHz, 59.9 Hz
    [ 3.224] (II) NOUVEAU(0): Modeline "1440x900"x59.9 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz e)
    [ 3.224] (**) NOUVEAU(0): Driver mode "1280x960": 108.0 MHz (scaled from 0.0 MHz), 60.0 kHz, 60.0 Hz
    [ 3.224] (II) NOUVEAU(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 3.224] (**) NOUVEAU(0): Mode "1360x768": 84.8 MHz (scaled from 0.0 MHz), 47.7 kHz, 59.8 Hz
    [ 3.224] (II) NOUVEAU(0): Modeline "1360x768"x59.8 84.75 1366 1431 1567 1776 768 771 781 798 -hsync +vsync (47.7 kHz)
    [ 3.224] (**) NOUVEAU(0): Driver mode "1152x864": 108.0 MHz (scaled from 0.0 MHz), 67.5 kHz, 75.0 Hz
    [ 3.224] (II) NOUVEAU(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 3.224] (**) NOUVEAU(0): Driver mode "1024x768": 78.8 MHz (scaled from 0.0 MHz), 60.1 kHz, 75.1 Hz
    [ 3.224] (II) NOUVEAU(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz e)
    [ 3.224] (**) NOUVEAU(0): Driver mode "1024x768": 75.0 MHz (scaled from 0.0 MHz), 56.5 kHz, 70.1 Hz
    [ 3.224] (II) NOUVEAU(0): Modeline "1024x768"x70.1 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 3.224] (**) NOUVEAU(0): Driver mode "1024x768": 65.0 MHz (scaled from 0.0 MHz), 48.4 kHz, 60.0 Hz
    [ 3.224] (II) NOUVEAU(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 3.224] (**) NOUVEAU(0): Driver mode "832x624": 57.3 MHz (scaled from 0.0 MHz), 49.7 kHz, 74.6 Hz
    [ 3.224] (II) NOUVEAU(0): Modeline "832x624"x74.6 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 3.224] (**) NOUVEAU(0): Driver mode "800x600": 50.0 MHz (scaled from 0.0 MHz), 48.1 kHz, 72.2 Hz
    [ 3.224] (II) NOUVEAU(0): Modeline "800x600"x72.2 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 3.224] (**) NOUVEAU(0): Driver mode "800x600": 49.5 MHz (scaled from 0.0 MHz), 46.9 kHz, 75.0 Hz
    [ 3.224] (II) NOUVEAU(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 3.224] (**) NOUVEAU(0): Driver mode "800x600": 40.0 MHz (scaled from 0.0 MHz), 37.9 kHz, 60.3 Hz
    [ 3.224] (II) NOUVEAU(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 3.224] (**) NOUVEAU(0): Driver mode "800x600": 36.0 MHz (scaled from 0.0 MHz), 35.2 kHz, 56.2 Hz
    [ 3.224] (II) NOUVEAU(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 3.224] (**) NOUVEAU(0): Driver mode "640x480": 31.5 MHz (scaled from 0.0 MHz), 37.5 kHz, 75.0 Hz
    [ 3.224] (II) NOUVEAU(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 3.224] (**) NOUVEAU(0): Driver mode "640x480": 31.5 MHz (scaled from 0.0 MHz), 37.9 kHz, 72.8 Hz
    [ 3.224] (II) NOUVEAU(0): Modeline "640x480"x72.8 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (37.9 kHz e)
    [ 3.224] (**) NOUVEAU(0): Driver mode "640x480": 30.2 MHz (scaled from 0.0 MHz), 35.0 kHz, 66.7 Hz
    [ 3.224] (II) NOUVEAU(0): Modeline "640x480"x66.7 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 3.224] (**) NOUVEAU(0): Driver mode "640x480": 25.2 MHz (scaled from 0.0 MHz), 31.5 kHz, 60.0 Hz
    [ 3.224] (II) NOUVEAU(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 3.224] (**) NOUVEAU(0): Driver mode "720x400": 28.3 MHz (scaled from 0.0 MHz), 31.5 kHz, 70.1 Hz
    [ 3.224] (II) NOUVEAU(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 3.224] (==) NOUVEAU(0): DPI set to (96, 96)
    [ 3.224] (II) Loading sub module "fb"
    [ 3.224] (II) LoadModule: "fb"
    [ 3.225] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 3.226] (II) Module fb: vendor="X.Org Foundation"
    [ 3.226] compiled for 1.14.4, module version = 1.0.0
    [ 3.226] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 3.226] (II) Loading sub module "exa"
    [ 3.226] (II) LoadModule: "exa"
    [ 3.226] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 3.227] (II) Module exa: vendor="X.Org Foundation"
    [ 3.227] compiled for 1.14.4, module version = 2.6.0
    [ 3.227] ABI class: X.Org Video Driver, version 14.1
    [ 3.227] (II) Loading sub module "shadowfb"
    [ 3.227] (II) LoadModule: "shadowfb"
    [ 3.227] (II) Loading /usr/lib/xorg/modules/libshadowfb.so
    [ 3.228] (II) Module shadowfb: vendor="X.Org Foundation"
    [ 3.228] compiled for 1.14.4, module version = 1.0.0
    [ 3.228] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 3.228] (--) Depth 24 pixmap format is 32 bpp
    [ 3.228] (II) NOUVEAU(0): Opened GPU channel 0
    [ 3.232] (II) NOUVEAU(0): [DRI2] Setup complete
    [ 3.232] (II) NOUVEAU(0): [DRI2] DRI driver: nouveau
    [ 3.232] (II) NOUVEAU(0): [DRI2] VDPAU driver: nouveau
    [ 3.234] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 3.234] (II) EXA(0): Driver registered support for the following operations:
    [ 3.234] (II) Solid
    [ 3.234] (II) Copy
    [ 3.234] (II) Composite (RENDER acceleration)
    [ 3.234] (II) UploadToScreen
    [ 3.234] (II) DownloadFromScreen
    [ 3.234] (==) NOUVEAU(0): Backing store disabled
    [ 3.234] (==) NOUVEAU(0): Silken mouse enabled
    [ 3.234] (II) NOUVEAU(0): [XvMC] Associated with Nouveau GeForce 8/9 Textured Video.
    [ 3.234] (II) NOUVEAU(0): [XvMC] Extension initialized.
    [ 3.234] (==) NOUVEAU(0): DPMS enabled
    [ 3.234] (II) NOUVEAU(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 3.235] (--) RandR disabled
    [ 3.313] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 3.313] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 3.313] (II) AIGLX: enabled GLX_ARB_create_context
    [ 3.313] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 3.313] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 3.313] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 3.313] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 3.313] (II) AIGLX: Loaded and initialized nouveau
    [ 3.313] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 3.317] (II) NOUVEAU(0): NVEnterVT is called.
    [ 3.395] (II) NOUVEAU(0): Setting screen physical size to 444 x 277
    [ 3.395] resize called 1680 1050
    [ 3.451] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 3.451] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 3.451] (II) LoadModule: "evdev"
    [ 3.451] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 3.453] (II) Module evdev: vendor="X.Org Foundation"
    [ 3.453] compiled for 1.14.3, module version = 2.8.2
    [ 3.453] Module class: X.Org XInput Driver
    [ 3.453] ABI class: X.Org XInput driver, version 19.1
    [ 3.453] (II) Using input driver 'evdev' for 'Power Button'
    [ 3.453] (**) Power Button: always reports core events
    [ 3.453] (**) evdev: Power Button: Device: "/dev/input/event1"
    [ 3.453] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 3.453] (--) evdev: Power Button: Found keys
    [ 3.453] (II) evdev: Power Button: Configuring as keyboard
    [ 3.453] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event1"
    [ 3.453] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 3.453] (**) Option "xkb_rules" "evdev"
    [ 3.453] (**) Option "xkb_model" "pc104"
    [ 3.453] (**) Option "xkb_layout" "us"
    [ 3.478] (II) config/udev: Adding input device Power Button (/dev/input/event0)
    [ 3.478] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 3.478] (II) Using input driver 'evdev' for 'Power Button'
    [ 3.478] (**) Power Button: always reports core events
    [ 3.478] (**) evdev: Power Button: Device: "/dev/input/event0"
    [ 3.478] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 3.478] (--) evdev: Power Button: Found keys
    [ 3.478] (II) evdev: Power Button: Configuring as keyboard
    [ 3.478] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1/event0"
    [ 3.478] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 3.478] (**) Option "xkb_rules" "evdev"
    [ 3.478] (**) Option "xkb_model" "pc104"
    [ 3.478] (**) Option "xkb_layout" "us"
    [ 3.478] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 3.479] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event3)
    [ 3.479] (II) No input driver specified, ignoring this device.
    [ 3.479] (II) This device may have been added with another device file.
    [ 3.479] (II) config/udev: Adding input device HDA Intel Line Out CLFE (/dev/input/event6)
    [ 3.479] (II) No input driver specified, ignoring this device.
    [ 3.479] (II) This device may have been added with another device file.
    [ 3.479] (II) config/udev: Adding input device HDA Intel Line Out Side (/dev/input/event5)
    [ 3.479] (II) No input driver specified, ignoring this device.
    [ 3.479] (II) This device may have been added with another device file.
    [ 3.479] (II) config/udev: Adding input device HDA Intel Front Headphone (/dev/input/event4)
    [ 3.479] (II) No input driver specified, ignoring this device.
    [ 3.479] (II) This device may have been added with another device file.
    [ 3.479] (II) config/udev: Adding input device HDA Intel Front Mic (/dev/input/event11)
    [ 3.479] (II) No input driver specified, ignoring this device.
    [ 3.479] (II) This device may have been added with another device file.
    [ 3.479] (II) config/udev: Adding input device HDA Intel Rear Mic (/dev/input/event10)
    [ 3.480] (II) No input driver specified, ignoring this device.
    [ 3.480] (II) This device may have been added with another device file.
    [ 3.480] (II) config/udev: Adding input device HDA Intel Line (/dev/input/event9)
    [ 3.480] (II) No input driver specified, ignoring this device.
    [ 3.480] (II) This device may have been added with another device file.
    [ 3.480] (II) config/udev: Adding input device HDA Intel Line Out Front (/dev/input/event8)
    [ 3.480] (II) No input driver specified, ignoring this device.
    [ 3.480] (II) This device may have been added with another device file.
    [ 3.480] (II) config/udev: Adding input device HDA Intel Line Out Surround (/dev/input/event7)
    [ 3.480] (II) No input driver specified, ignoring this device.
    [ 3.480] (II) This device may have been added with another device file.
    [ 3.480] (II) config/udev: Adding input device Logitech Unifying Device. Wireless PID:101a (/dev/input/event14)
    [ 3.480] (**) Logitech Unifying Device. Wireless PID:101a: Applying InputClass "evdev pointer catchall"
    [ 3.480] (II) Using input driver 'evdev' for 'Logitech Unifying Device. Wireless PID:101a'
    [ 3.480] (**) Logitech Unifying Device. Wireless PID:101a: always reports core events
    [ 3.480] (**) evdev: Logitech Unifying Device. Wireless PID:101a: Device: "/dev/input/event14"
    [ 3.480] (--) evdev: Logitech Unifying Device. Wireless PID:101a: Vendor 0x46d Product 0xc52b
    [ 3.480] (--) evdev: Logitech Unifying Device. Wireless PID:101a: Found 20 mouse buttons
    [ 3.480] (--) evdev: Logitech Unifying Device. Wireless PID:101a: Found scroll wheel(s)
    [ 3.480] (--) evdev: Logitech Unifying Device. Wireless PID:101a: Found relative axes
    [ 3.480] (--) evdev: Logitech Unifying Device. Wireless PID:101a: Found x and y relative axes
    [ 3.480] (II) evdev: Logitech Unifying Device. Wireless PID:101a: Configuring as mouse
    [ 3.480] (II) evdev: Logitech Unifying Device. Wireless PID:101a: Adding scrollwheel support
    [ 3.480] (**) evdev: Logitech Unifying Device. Wireless PID:101a: YAxisMapping: buttons 4 and 5
    [ 3.480] (**) evdev: Logitech Unifying Device. Wireless PID:101a: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 3.480] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.2/usb8/8-1/8-1:1.2/0003:046D:C52B.0003/input/input15/event14"
    [ 3.481] (II) XINPUT: Adding extended input device "Logitech Unifying Device. Wireless PID:101a" (type: MOUSE, id 8)
    [ 3.481] (II) evdev: Logitech Unifying Device. Wireless PID:101a: initialized for relative axes.
    [ 3.481] (**) Logitech Unifying Device. Wireless PID:101a: (accel) keeping acceleration scheme 1
    [ 3.481] (**) Logitech Unifying Device. Wireless PID:101a: (accel) acceleration profile 0
    [ 3.481] (**) Logitech Unifying Device. Wireless PID:101a: (accel) acceleration factor: 2.000
    [ 3.481] (**) Logitech Unifying Device. Wireless PID:101a: (accel) acceleration threshold: 4
    [ 3.481] (II) config/udev: Adding input device Logitech Unifying Device. Wireless PID:101a (/dev/input/mouse0)
    [ 3.481] (II) No input driver specified, ignoring this device.
    [ 3.481] (II) This device may have been added with another device file.
    [ 3.481] (II) config/udev: Adding input device Microsoft Comfort Curve Keyboard 2000 (/dev/input/event12)
    [ 3.481] (**) Microsoft Comfort Curve Keyboard 2000: Applying InputClass "evdev keyboard catchall"
    [ 3.481] (II) Using input driver 'evdev' for 'Microsoft Comfort Curve Keyboard 2000'
    [ 3.481] (**) Microsoft Comfort Curve Keyboard 2000: always reports core events
    [ 3.481] (**) evdev: Microsoft Comfort Curve Keyboard 2000: Device: "/dev/input/event12"
    [ 3.481] (--) evdev: Microsoft Comfort Curve Keyboard 2000: Vendor 0x45e Product 0xdd
    [ 3.481] (--) evdev: Microsoft Comfort Curve Keyboard 2000: Found keys
    [ 3.481] (II) evdev: Microsoft Comfort Curve Keyboard 2000: Configuring as keyboard
    [ 3.481] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.2/usb8/8-2/8-2:1.0/input/input13/event12"
    [ 3.481] (II) XINPUT: Adding extended input device "Microsoft Comfort Curve Keyboard 2000" (type: KEYBOARD, id 9)
    [ 3.481] (**) Option "xkb_rules" "evdev"
    [ 3.481] (**) Option "xkb_model" "pc104"
    [ 3.481] (**) Option "xkb_layout" "us"
    [ 3.482] (II) config/udev: Adding input device Microsoft Comfort Curve Keyboard 2000 (/dev/input/event13)
    [ 3.482] (**) Microsoft Comfort Curve Keyboard 2000: Applying InputClass "evdev keyboard catchall"
    [ 3.482] (II) Using input driver 'evdev' for 'Microsoft Comfort Curve Keyboard 2000'
    [ 3.482] (**) Microsoft Comfort Curve Keyboard 2000: always reports core events
    [ 3.482] (**) evdev: Microsoft Comfort Curve Keyboard 2000: Device: "/dev/input/event13"
    [ 3.482] (--) evdev: Microsoft Comfort Curve Keyboard 2000: Vendor 0x45e Product 0xdd
    [ 3.482] (--) evdev: Microsoft Comfort Curve Keyboard 2000: Found 1 mouse buttons
    [ 3.482] (--) evdev: Microsoft Comfort Curve Keyboard 2000: Found scroll wheel(s)
    [ 3.482] (--) evdev: Microsoft Comfort Curve Keyboard 2000: Found relative axes
    [ 3.482] (II) evdev: Microsoft Comfort Curve Keyboard 2000: Forcing relative x/y axes to exist.
    [ 3.482] (--) evdev: Microsoft Comfort Curve Keyboard 2000: Found absolute axes
    [ 3.482] (II) evdev: Microsoft Comfort Curve Keyboard 2000: Forcing absolute x/y axes to exist.
    [ 3.482] (--) evdev: Microsoft Comfort Curve Keyboard 2000: Found keys
    [ 3.482] (II) evdev: Microsoft Comfort Curve Keyboard 2000: Configuring as mouse
    [ 3.482] (II) evdev: Microsoft Comfort Curve Keyboard 2000: Configuring as keyboard
    [ 3.482] (II) evdev: Microsoft Comfort Curve Keyboard 2000: Adding scrollwheel support
    [ 3.482] (**) evdev: Microsoft Comfort Curve Keyboard 2000: YAxisMapping: buttons 4 and 5
    [ 3.482] (**) evdev: Microsoft Comfort Curve Keyboard 2000: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 3.482] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.2/usb8/8-2/8-2:1.1/input/input14/event13"
    [ 3.482] (II) XINPUT: Adding extended input device "Microsoft Comfort Curve Keyboard 2000" (type: KEYBOARD, id 10)
    [ 3.482] (**) Option "xkb_rules" "evdev"
    [ 3.482] (**) Option "xkb_model" "pc104"
    [ 3.482] (**) Option "xkb_layout" "us"
    [ 3.482] (II) evdev: Microsoft Comfort Curve Keyboard 2000: initialized for relative axes.
    [ 3.482] (WW) evdev: Microsoft Comfort Curve Keyboard 2000: ignoring absolute axes.
    [ 3.482] (**) Microsoft Comfort Curve Keyboard 2000: (accel) keeping acceleration scheme 1
    [ 3.482] (**) Microsoft Comfort Curve Keyboard 2000: (accel) acceleration profile 0
    [ 3.482] (**) Microsoft Comfort Curve Keyboard 2000: (accel) acceleration factor: 2.000
    [ 3.482] (**) Microsoft Comfort Curve Keyboard 2000: (accel) acceleration threshold: 4
    [ 3.482] (II) config/udev: Adding input device UVC Camera (046d:081b) (/dev/input/event15)
    [ 3.482] (**) UVC Camera (046d:081b): Applying InputClass "evdev keyboard catchall"
    [ 3.483] (II) Using input driver 'evdev' for 'UVC Camera (046d:081b)'
    [ 3.483] (**) UVC Camera (046d:081b): always reports core events
    [ 3.483] (**) evdev: UVC Camera (046d:081b): Device: "/dev/input/event15"
    [ 3.483] (--) evdev: UVC Camera (046d:081b): Vendor 0x46d Product 0x81b
    [ 3.483] (--) evdev: UVC Camera (046d:081b): Found keys
    [ 3.483] (II) evdev: UVC Camera (046d:081b): Configuring as keyboard
    [ 3.483] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.7/usb10/10-3/10-3:1.0/input/input16/event15"
    [ 3.483] (II) XINPUT: Adding extended input device "UVC Camera (046d:081b)" (type: KEYBOARD, id 11)
    [ 3.483] (**) Option "xkb_rules" "evdev"
    [ 3.483] (**) Option "xkb_model" "pc104"
    [ 3.483] (**) Option "xkb_layout" "us"
    [ 3.483] (II) config/udev: Adding input device PC Speaker (/dev/input/event2)
    [ 3.483] (II) No input driver specified, ignoring this device.
    [ 3.483] (II) This device may have been added with another device file.
    [ 3.486] (II) config/udev: removing device UVC Camera (046d:081b)
    [ 3.523] (II) evdev: UVC Camera (046d:081b): Close
    [ 3.523] (II) UnloadModule: "evdev"
    [ 3.523] (II) config/udev: Adding input device UVC Camera (046d:081b) (/dev/input/event15)
    [ 3.523] (**) UVC Camera (046d:081b): Applying InputClass "evdev keyboard catchall"
    [ 3.523] (II) Using input driver 'evdev' for 'UVC Camera (046d:081b)'
    [ 3.523] (**) UVC Camera (046d:081b): always reports core events
    [ 3.523] (**) evdev: UVC Camera (046d:081b): Device: "/dev/input/event15"
    [ 3.523] (--) evdev: UVC Camera (046d:081b): Vendor 0x46d Product 0x81b
    [ 3.523] (--) evdev: UVC Camera (046d:081b): Found keys
    [ 3.523] (II) evdev: UVC Camera (046d:081b): Configuring as keyboard
    [ 3.523] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.7/usb10/10-3/10-3:1.0/input/input16/event15"
    [ 3.523] (II) XINPUT: Adding extended input device "UVC Camera (046d:081b)" (type: KEYBOARD, id 11)
    [ 3.523] (**) Option "xkb_rules" "evdev"
    [ 3.523] (**) Option "xkb_model" "pc104"
    [ 3.523] (**) Option "xkb_layout" "us"
    [ 4.601] (II) NOUVEAU(0): EDID vendor "ACR", prod id 44449
    [ 4.601] (II) NOUVEAU(0): Using EDID range info for horizontal sync
    [ 4.601] (II) NOUVEAU(0): Using EDID range info for vertical refresh
    [ 4.601] (II) NOUVEAU(0): Printing DDC gathered Modelines:
    [ 4.601] (II) NOUVEAU(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync -vsync (65.3 kHz eP)
    [ 4.601] (II) NOUVEAU(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 4.601] (II) NOUVEAU(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 4.601] (II) NOUVEAU(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 4.601] (II) NOUVEAU(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e)
    [ 4.601] (II) NOUVEAU(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 4.601] (II) NOUVEAU(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 4.601] (II) NOUVEAU(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 4.601] (II) NOUVEAU(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 4.601] (II) NOUVEAU(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 4.601] (II) NOUVEAU(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 4.601] (II) NOUVEAU(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 4.601] (II) NOUVEAU(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 4.601] (II) NOUVEAU(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 4.601] (II) NOUVEAU(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 4.601] (II) NOUVEAU(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 4.601] (II) NOUVEAU(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
    [ 4.601] (II) NOUVEAU(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 4.601] (II) NOUVEAU(0): Modeline "1366x768"x59.8 84.75 1366 1431 1567 1776 768 771 781 798 -hsync +vsync (47.7 kHz e)
    [ 4.601] (II) NOUVEAU(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz e)
    [ 4.601] (II) NOUVEAU(0): Modeline "1440x900"x0.0 136.75 1440 1536 1688 1936 900 903 909 942 -hsync +vsync (70.6 kHz e)
    [ 4.601] (II) NOUVEAU(0): Modeline "1400x1050"x0.0 121.75 1400 1488 1632 1864 1050 1053 1057 1089 -hsync +vsync (65.3 kHz e)
    [ 4.846] resize called 3600 1080
    [ 5.760] (II) NOUVEAU(0): EDID vendor "ACR", prod id 44449
    [ 5.760] (II) NOUVEAU(0): Using hsync ranges from config file
    [ 5.760] (II) NOUVEAU(0): Using vrefresh ranges from config file
    [ 5.760] (II) NOUVEAU(0): Printing DDC gathered Modelines:
    [ 5.760] (II) NOUVEAU(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync -vsync (65.3 kHz eP)
    [ 5.760] (II) NOUVEAU(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 5.760] (II) NOUVEAU(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 5.760] (II) NOUVEAU(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 5.760] (II) NOUVEAU(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e)
    [ 5.761] (II) NOUVEAU(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 5.761] (II) NOUVEAU(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 5.761] (II) NOUVEAU(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 5.761] (II) NOUVEAU(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 5.761] (II) NOUVEAU(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 5.761] (II) NOUVEAU(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 5.761] (II) NOUVEAU(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 5.761] (II) NOUVEAU(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 5.761] (II) NOUVEAU(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 5.761] (II) NOUVEAU(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 5.761] (II) NOUVEAU(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 5.761] (II) NOUVEAU(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
    [ 5.761] (II) NOUVEAU(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 5.761] (II) NOUVEAU(0): Modeline "1366x768"x59.8 84.75 1366 1431 1567 1776 768 771 781 798 -hsync +vsync (47.7 kHz e)
    [ 5.761] (II) NOUVEAU(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz e)
    [ 5.761] (II) NOUVEAU(0): Modeline "1440x900"x0.0 136.75 1440 1536 1688 1936 900 903 909 942 -hsync +vsync (70.6 kHz e)
    [ 5.761] (II) NOUVEAU(0): Modeline "1400x1050"x0.0 121.75 1400 1488 1632 1864 1050 1053 1057 1089 -hsync +vsync (65.3 kHz e)
    [ 13.425] (II) NOUVEAU(0): EDID vendor "ACR", prod id 44449
    [ 13.425] (II) NOUVEAU(0): Using hsync ranges from config file
    [ 13.425] (II) NOUVEAU(0): Using vrefresh ranges from config file
    [ 13.425] (II) NOUVEAU(0): Printing DDC gathered Modelines:
    [ 13.425] (II) NOUVEAU(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync -vsync (65.3 kHz eP)
    [ 13.425] (II) NOUVEAU(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 13.425] (II) NOUVEAU(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 13.425] (II) NOUVEAU(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 13.425] (II) NOUVEAU(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e)
    [ 13.425] (II) NOUVEAU(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 13.426] (II) NOUVEAU(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 13.426] (II) NOUVEAU(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 13.426] (II) NOUVEAU(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 13.426] (II) NOUVEAU(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 13.426] (II) NOUVEAU(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 13.426] (II) NOUVEAU(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 13.426] (II) NOUVEAU(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 13.426] (II) NOUVEAU(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 13.426] (II) NOUVEAU(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 13.426] (II) NOUVEAU(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 13.426] (II) NOUVEAU(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
    [ 13.426] (II) NOUVEAU(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 13.426] (II) NOUVEAU(0): Modeline "1366x768"x59.8 84.75 1366 1431 1567 1776 768 771 781 798 -hsync +vsync (47.7 kHz e)
    [ 13.426] (II) NOUVEAU(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz e)
    [ 13.426] (II) NOUVEAU(0): Modeline "1440x900"x0.0 136.75 1440 1536 1688 1936 900 903 909 942 -hsync +vsync (70.6 kHz e)
    [ 13.426] (II) NOUVEAU(0): Modeline "1400x1050"x0.0 121.75 1400 1488 1632 1864 1050 1053 1057 1089 -hsync +vsync (65.3 kHz e)
    [ 13.670] resize called 3360 1050
    [ 14.298] (II) NOUVEAU(0): EDID vendor "ACR", prod id 44449
    [ 14.298] (II) NOUVEAU(0): Using hsync ranges from config file
    [ 14.298] (II) NOUVEAU(0): Using vrefresh ranges from config file
    [ 14.298] (II) NOUVEAU(0): Printing DDC gathered Modelines:
    [ 14.298] (II) NOUVEAU(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync -vsync (65.3 kHz eP)
    [ 14.298] (II) NOUVEAU(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 14.299] (II) NOUVEAU(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 14.299] (II) NOUVEAU(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 14.299] (II) NOUVEAU(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e)
    [ 14.299] (II) NOUVEAU(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 14.299] (II) NOUVEAU(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 14.299] (II) NOUVEAU(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 14.299] (II) NOUVEAU(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 14.299] (II) NOUVEAU(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 14.299] (II) NOUVEAU(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 14.299] (II) NOUVEAU(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 14.299] (II) NOUVEAU(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 14.299] (II) NOUVEAU(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 14.299] (II) NOUVEAU(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 14.299] (II) NOUVEAU(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 14.299] (II) NOUVEAU(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
    [ 14.299] (II) NOUVEAU(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 14.299] (II) NOUVEAU(0): Modeline "1366x768"x59.8 84.75 1366 1431 1567 1776 768 771 781 798 -hsync +vsync (47.7 kHz e)
    [ 14.299] (II) NOUVEAU(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz e)
    [ 14.299] (II) NOUVEAU(0): Modeline "1440x900"x0.0 136.75 1440 1536 1688 1936 900 903 909 942 -hsync +vsync (70.6 kHz e)
    [ 14.299] (II) NOUVEAU(0): Modeline "1400x1050"x0.0 121.75 1400 1488 1632 1864 1050 1053 1057 1089 -hsync +vsync (65.3 kHz e)
    [ 190.714] (II) NOUVEAU(0): EDID vendor "ACR", prod id 44449
    [ 190.714] (II) NOUVEAU(0): Using hsync ranges from config file
    [ 190.714] (II) NOUVEAU(0): Using vrefresh ranges from config file
    [ 190.714] (II) NOUVEAU(0): Printing DDC gathered Modelines:
    [ 190.714] (II) NOUVEAU(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync -vsync (65.3 kHz eP)
    [ 190.714] (II) NOUVEAU(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 190.714] (II) NOUVEAU(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 190.714] (II) NOUVEAU(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 190.714] (II) NOUVEAU(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e)
    [ 190.714] (II) NOUVEAU(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 190.714] (II) NOUVEAU(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 190.714] (II) NOUVEAU(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 190.714] (II) NOUVEAU(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 190.714] (II) NOUVEAU(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 190.714] (II) NOUVEAU(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 190.714] (II) NOUVEAU(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 190.714] (II) NOUVEAU(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 190.714] (II) NOUVEAU(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 190.714] (II) NOUVEAU(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 190.714] (II) NOUVEAU(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 190.714] (II) NOUVEAU(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
    [ 190.714] (II) NOUVEAU(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 190.714] (II) NOUVEAU(0): Modeline "1366x768"x59.8 84.75 1366 1431 1567 1776 768 771 781 798 -hsync +vsync (47.7 kHz e)
    [ 190.714] (II) NOUVEAU(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz e)
    [ 190.714] (II) NOUVEAU(0): Modeline "1440x900"x0.0 136.75 1440 1536 1688 1936 900 903 909 942 -hsync +vsync (70.6 kHz e)
    [ 190.714] (II) NOUVEAU(0): Modeline "1400x1050"x0.0 121.75 1400 1488 1632 1864 1050 1053 1057 1089 -hsync +vsync (65.3 kHz e)
    [ 202.800] (II) NOUVEAU(0): EDID vendor "ACR", prod id 44449
    [ 202.800] (II) NOUVEAU(0): Using hsync ranges from config file
    [ 202.800] (II) NOUVEAU(0): Using vrefresh ranges from config file
    [ 202.800] (II) NOUVEAU(0): Printing DDC gathered Modelines:
    [ 202.800] (II) NOUVEAU(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync -vsync (65.3 kHz eP)
    [ 202.800] (II) NOUVEAU(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 202.800] (II) NOUVEAU(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 202.800] (II) NOUVEAU(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 202.800] (II) NOUVEAU(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e)
    [ 202.800] (II) NOUVEAU(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 202.800] (II) NOUVEAU(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 202.800] (II) NOUVEAU(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 202.800] (II) NOUVEAU(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 202.800] (II) NOUVEAU(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 202.800] (II) NOUVEAU(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 202.800] (II) NOUVEAU(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 202.800] (II) NOUVEAU(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 202.800] (II) NOUVEAU(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 202.800] (II) NOUVEAU(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 202.800] (II) NOUVEAU(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 202.800] (II) NOUVEAU(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
    [ 202.800] (II) NOUVEAU(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 202.800] (II) NOUVEAU(0): Modeline "1366x768"x59.8 84.75 1366 1431 1567 1776 768 771 781 798 -hsync +vsync (47.7 kHz e)
    [ 202.800] (II) NOUVEAU(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz e)
    [ 202.800] (II) NOUVEAU(0): Modeline "1440x900"x0.0 136.75 1440 1536 1688 1936 900 903 909 942 -hsync +vsync (70.6 kHz e)
    [ 202.800] (II) NOUVEAU(0): Modeline "1400x1050"x0.0 121.75 1400 1488 1632 1864 1050 1053 1057 1089 -hsync +vsync (65.3 kHz e)
    [ 202.890] (II) NOUVEAU(0): EDID vendor "ACR", prod id 44449
    [ 202.890] (II) NOUVEAU(0): Using hsync ranges from config file
    [ 202.890] (II) NOUVEAU(0): Using vrefresh ranges from config file
    [ 202.890] (II) NOUVEAU(0): Printing DDC gathered Modelines:
    [ 202.890] (II) NOUVEAU(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync -vsync (65.3 kHz eP)
    [ 202.890] (II) NOUVEAU(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 202.890] (II) NOUVEAU(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 202.890] (II) NOUVEAU(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 202.890] (II) NOUVEAU(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e)
    [ 202.890] (II) NOUVEAU(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 202.890] (II) NOUVEAU(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 202.890] (II) NOUVEAU(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 202.890] (II) NOUVEAU(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 202.890] (II) NOUVEAU(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 202.890] (II) NOUVEAU(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 202.891] (II) NOUVEAU(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 202.891] (II) NOUVEAU(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 202.891] (II) NOUVEAU(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 202.891] (II) NOUVEAU(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 202.891] (II) NOUVEAU(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 202.891] (II) NOUVEAU(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
    [ 202.891] (II) NOUVEAU(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 202.891] (II) NOUVEAU(0): Modeline "1366x768"x59.8 84.75 1366 1431 1567 1776 768 771 781 798 -hsync +vsync (47.7 kHz e)
    [ 202.891] (II) NOUVEAU(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz e)
    [ 202.891] (II) NOUVEAU(0): Modeline "1440x900"x0.0 136.75 1440 1536 1688 1936 900 903 909 942 -hsync +vsync (70.6 kHz e)
    [ 202.891] (II) NOUVEAU(0): Modeline "1400x1050"x0.0 121.75 1400 1488 1632 1864 1050 1053 1057 1089 -hsync +vsync (65.3 kHz e)
    cat /etc/mkinitcpio.conf
    # vim:set ft=sh
    # MODULES
    # The following modules are loaded before any boot hooks are
    # run. Advanced users may wish to specify all system modules
    # in this array. For instance:
    # MODULES="piix ide_disk reiserfs"
    MODULES=""
    # BINARIES
    # This setting includes any additional binaries a given user may
    # wish into the CPIO image. This is run last, so it may be used to
    # override the actual binaries included by a given hook
    # BINARIES are dependency parsed, so you may safely ignore libraries
    BINARIES=""
    # FILES
    # This setting is similar to BINARIES above, however, files are added
    # as-is and are not parsed in any way. This is useful for config files.
    FILES=""
    # HOOKS
    # This is the most important setting in this file. The HOOKS control the
    # modules and scripts added to the image, and what happens at boot time.
    # Order is important, and it is recommended that you do not change the
    # order in which HOOKS are added. Run 'mkinitcpio -H <hook name>' for
    # help on a given hook.
    # 'base' is _required_ unless you know precisely what you are doing.
    # 'udev' is _required_ in order to automatically load modules
    # 'filesystems' is _required_ unless you specify your fs modules in MODULES
    # Examples:
    ## This setup specifies all modules in the MODULES setting above.
    ##

  • [SOLVED] nVidia driver 195.36.08 causes KDE4.4 to crash after logging?

    Hi to all Archers
    I noticed the new nVidia driver (195.36.08) on pacman's yesterday updates, I didn't update it immediately and preferred to wait until I was available to fiddle with it in case things went wrong. Apparently, that was the case
    Here's what happens if I install the new driver:
    KDM starts as usual, I login in, I see KDE loading progress and before it finishes, boom it crashes and returns to KDM login once again.
    I tried reinstalling KDE, Xorg and read nVidia wiki to see if there is any hints. I tried once again with a new stock xorg.conf, and removed .nvidia-settings-rc and even disabled KDE compositing but all this couldn't help getting KDE up and running.
    However, when I reinstall the previous version (190.53) everything is back to normal.
    So what I want to know is am I the only one who gets this problem or there're others here having the same issue?
    Because the first time I installed the nVidia driver (almost 3 months now) I used their own installer then used Arch packages afterwards, I suspect that perhaps their installer messed things up !?
    For now the solution is to stick to the previous version.
    I'm using Arch Linux 32bit and my GC is an nVidia 7300GT.
    Regards,
    Med
    Last edited by stuntgp2000 (2010-03-08 00:17:10)

    zero-giulio wrote:
    I want to install the 190.53 version of nvidia driver, because it's the correct driver version for my video card, according to nvidia site (see http://www.nvidia.com/object/linux_disp … 0.53.html).
    Also, in my prevoius arch system I installed that version and everything worked well. I don't want to try the newerr version. It doesn't matter if 190.53 are not the latest driver available. I'm self confident with the 190.53 version.
    How can I install them? The problem is that pacman suggest me only the latest version :-(
    You'll find them here http://schlunix.org/archlinux/extra/os/ after choose your system architecture.
    if you want to know more about downgrading for more than a few packages read this guide http://wiki.archlinux.org/index.php/Dow … g_Packages
    Assuming you have a recent nvidia graphic card and using a i686 system you should download these:
    http://schlunix.org/archlinux/extra/os/ … pkg.tar.gz
    http://schlunix.org/archlinux/extra/os/ … pkg.tar.gz
    Good luck,

  • Windows 8 64-bit install on 970a-g46 Mainboard AHCI and NVIDIA DRIVER issues

    My Box:
    MSI 970A-G46
    BIOS 1.9  (AUG 2012) (Tried 1.11 but the nightmare started then)
    AMD FX-6100 (STOCK SPEED AND SETTINGS) WITH OEM HSF
    16GB PATRIOT VIPER 3 (1866) RUNNING @ (1600)
    USED an EVGA 9800GT 1ST AND UPGRADED TO NVIDIA REFERENCE CARD GTX 550 Ti (1GB) WITH SAME ISSUES
    90gb MonsterDigital Daytona SATA III SSD DRIVE (OS and minimal programs)
    Antec HE 550
    I am at a point of pulling my hair out. I decided to upgrade my system to enhance Diablo III game play. I got a combo deal on the mainboard and cpu, and thought the speed of the game caching on a SSD would also help. The first attempt which took a little struggle was Vista 64-bit. Eventually, I was able to get the OS to work with me, and it was smooth.  Since M$ decided to offer the Windows 8 Pro upgrade for only $39.99, I thought, what do I had to lose. Well….lots of time. Now, I am not a newbie, though SSD drives haven’t been more than an interesting thought. So yes, I read many guides on everything from Trim enabled Win 7 and 8, and many other do’s and don’ts. What is driving me to the Netherlands of hell, is the installation and how buggy it has been. It boils down to drivers for the IDE/SATA/AHCI CONTROLLER. First, even thought it “sees”  the SSD on installation drive selection, after pulling the USB installation drive, the system forgets it, and there is a “problem with the boot sector”. If you load the driver from the AMD site, it lets the install occur “fine”, but there is an issue with that driver which causes an irq conflict which leads to D3 audio issues and freeze ups. I did finally get things in order (not sure which driver I choose for that), and things were smooth, except I tried to install the GTX 550 ti and that led to a corrupt file error, which the system runs a check disk and cycles the “preparing to repair” and “diagnosing PC” a few times and never allows me to enter SAFE MODE (shift+f8), to disable the NVIDIA driver that is buggy, and doesn’t allow for the NVIDIA Control Panel to install without losing video, and starts the repair cycles again… Leading to ANOTHER RE-INSTALL...
    My question, for the Windows 8 Pro installation on the 970a-G46 mainboard and then after install is complete, which driver is the correct choice for the AHCI/SATA Controller?  All I find is Win7 64-bit AHCI inf’s, and SB7XX 64-bit inf’s (no SB950 INF). The Driver disk which came with the mainboard is very dated pre Win 8 stuff, ASMEDIA X106 which are not recognized by the OS as written for Win 8. AMD’s latest drivers are the ones causing the IRQ type lags and corruption.
    What version, build and type of Windows 8 installations have you used on this mainboard, and what drivers allowed you install it without the above conflicts? Your input may decrease my insanity… So, thank you in advance…

    Quote from: m0r9h3u5 on 28-January-13, 12:11:16
    I understand what you are telling me,  only the generic drivers deliver subpar results. What is the point of running those drivers instead of windows 8 certified drivers written for said devices. My last install is functioning better, but still windows update fails every attempt, the apps i install (ie. weather bug) on the start screen wont load... to me windows 8 is a big fail....but that is just my view...
    OK...I also own the 970a G46, and my upgrade experience from Win7 x64 AHCI to Win8 x64 AHCI was flawless the first time.  No problems at all.  You are running an AMD chipset board with a nVidia gpu, which means that your chipset drivers are not automatically updated with every gpu driver update you do--this would happen automatically if you owned an AMD gpu because AMD includes them in its gpu driver install packages.  But--all you have to do to get the proper drivers for your motherboard is go here and download them.  You only need the *chipset drivers* from this page--you do not need the RAID drivers, of course.  That's it.  It's no big deal, and back in the days when nVidia was making motherboard chipsets you had to separately download both the motherboard chipset drivers from nVidia and the AMD gpu drivers from AMD if you did not also own a nVidia gpu.
    From your description of your problems it sounds like your installation of Win8 is hosed and you need to format C:\ and clean install from scratch, anyway, so...
    A note about AHCI--the *ideal* way to install the AHCI drivers is prior to installing your OS for the first time, you enter the UEFI and set "AHCI" in the appropriate place, instead of IDE, and *then* you reboot from DVD and install your OS which will automatically install the correct AHCI driver from Windows.  After the driver installation is complete you should then install the updated 970a drivers from AMD as linked above.
    However, it is actually very easy to activate and install AHCI *after* you have installed Windows in normal IDE mode:
    To enable AHCI in existing Windows 8 IDE Installation's
    Caution: Do NOT enable AHCI in UEFI prior to making the following changes in your Registry! If you had AHCI enabled alreadyin UEFI, disable it first and restart your computer!
    Use WinKey + R and type Regedit in the command line and hit the Enter key, this will open the Registration Editor.
    Go to:
        HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/services/iaStorV
        right click on Start, select Modify and set Data Value to 0
    Close Registration Editor and restart computer.
    While booting,  open the UEFI Page and set the SATA Mode to AHCI from IDE
    Save UEFI settings and restart.
    Windows will now install the AHCI drivers automatically and they should work without issues.
    In order to avoid installation problems just like you have been experiencing, here is what I would do in your shoes:
    1) Set UEFI for normal IDE drive mode
    2) Reboot into IDE mode and install your OS
    3) After you have finished with the installation, you should be having no troubles in IDE mode.  Then go to the instructions above on how to properly enable AHCI *after* you have installed Windows 8 in normal IDE mode.
    4) After everything is coming up roses in AHCI mode and you are having no problems, then install the AMD chipset drivers as linked above and you are golden. 
    Those 4 steps worked perfectly for me the first time (the first time I got them right, that is...).
    There's nothing wrong with Win8--this is strictly operator error caused by insufficient research into what AHCI is and how to properly enable it.  The Internet has some bad info on Win8 registry settings for AHCI because of the developer preview and the consumer preview versions of Win8 that Microsoft released to the public prior to the final shipping build--many "instructions" for Win8 are therefore not valid for the shipping version of Win8.  At first I made some of the same goofs that you did, but now you get to benefit from my hard-won experience...  Good luck! Should work like a charm. And, registry AHCI is done differently in Win8 than it is done in Win7 or Vista.  Also, the registry settings relative to AHCI in Windows 8 for AMD are different from the registry values that must be changed for an Intel controller.
    Parenthetically, My FX-6300 (Vishera) will be here in a couple of days! Yeah!

  • [SOLVED] XOrg fails to load Nvidia driver on startup

    Hi,
    I'm having a fairly strange issue where XOrg is failing to load my driver when I start up my laptop. I'm using kdm, but this is causing it to fail. However, doing a simple
    $sudo systemctl restart kdm
    works, and everything starts up fine. When kdm is in the failed state, I see this:
    $sudo systemctl status kdm
    ● kdm.service - K Display Manager
    Loaded: loaded (/usr/lib/systemd/system/kdm.service; enabled; vendor preset: disabled)
    Active: active (running) since Fri 2014-12-19 18:47:26 EST; 41s ago
    Main PID: 247 (kdm)
    CGroup: /system.slice/kdm.service
    └─247 /usr/bin/kdm -nodaemon
    Dec 19 18:47:26 laptop systemd[1]: Started K Display Manager.
    Dec 19 18:47:27 laptop kdm[247]: X server died during startup
    Dec 19 18:47:27 laptop kdm[247]: X server for display :0 cannot be started, session disabled
    And in my XOrg log, I see:
    [ 3.639]
    This is a pre-release version of the X server from The X.Org Foundation.
    It is not supported in any way.
    Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
    Select the "xorg" product for bugs you find in this release.
    Before reporting bugs in pre-release versions please check the
    latest version in the X.Org Foundation git repository.
    See http://wiki.x.org/wiki/GitPage for git access instructions.
    [ 3.639]
    X.Org X Server 1.16.2.901 (1.16.3 RC 1)
    Release Date: 2014-12-09
    [ 3.639] X Protocol Version 11, Revision 0
    [ 3.639] Build Operating System: Linux 3.17.2-1-ARCH x86_64
    [ 3.639] Current Operating System: Linux laptop 3.17.6-1-ARCH #1 SMP PREEMPT Sun Dec 7 23:43:32 UTC 2014 x86_64
    [ 3.639] Kernel command line: BOOT_IMAGE=../vmlinuz-linux root=/dev/sda1 rw initrd=../initramfs-linux.img
    [ 3.639] Build Date: 10 December 2014 02:34:24PM
    [ 3.639]
    [ 3.639] Current version of pixman: 0.32.6
    [ 3.639] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 3.639] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 3.639] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Dec 19 18:47:26 2014
    [ 3.645] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 3.649] (==) No Layout section. Using the first Screen section.
    [ 3.649] (==) No screen section available. Using defaults.
    [ 3.649] (**) |-->Screen "Default Screen Section" (0)
    [ 3.649] (**) | |-->Monitor "<default monitor>"
    [ 3.650] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 3.650] (==) Automatically adding devices
    [ 3.650] (==) Automatically enabling devices
    [ 3.650] (==) Automatically adding GPU devices
    [ 3.658] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 3.658] Entry deleted from font path.
    [ 3.659] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 3.659] Entry deleted from font path.
    [ 3.659] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 3.660] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 3.660] Entry deleted from font path.
    [ 3.660] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 3.660] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 3.660] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 3.660] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 3.660] (II) Loader magic: 0x818d80
    [ 3.660] (II) Module ABI versions:
    [ 3.660] X.Org ANSI C Emulation: 0.4
    [ 3.660] X.Org Video Driver: 18.0
    [ 3.660] X.Org XInput driver : 21.0
    [ 3.660] X.Org Server Extension : 8.0
    [ 3.662] (EE) systemd-logind: failed to get session: PID 267 does not belong to any known session
    [ 3.663] (--) PCI:*(0:1:0:0) 10de:11a1:1558:0371 rev 161, Mem @ 0xf6000000/16777216, 0xe0000000/268435456, 0xf0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/524288
    [ 3.663] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 3.664] (II) LoadModule: "glx"
    [ 3.675] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 3.767] (II) Module glx: vendor="NVIDIA Corporation"
    [ 3.767] compiled for 4.0.2, module version = 1.0.0
    [ 3.767] Module class: X.Org Server Extension
    [ 3.768] (II) NVIDIA GLX Module 343.36 Mon Dec 1 15:50:02 PST 2014
    [ 3.769] (==) Matched nouveau as autoconfigured driver 0
    [ 3.769] (==) Matched nv as autoconfigured driver 1
    [ 3.769] (==) Matched modesetting as autoconfigured driver 2
    [ 3.769] (==) Matched fbdev as autoconfigured driver 3
    [ 3.769] (==) Matched vesa as autoconfigured driver 4
    [ 3.769] (==) Assigned the driver to the xf86ConfigLayout
    [ 3.769] (II) LoadModule: "nouveau"
    [ 3.769] (WW) Warning, couldn't open module nouveau
    [ 3.769] (II) UnloadModule: "nouveau"
    [ 3.769] (II) Unloading nouveau
    [ 3.769] (EE) Failed to load module "nouveau" (module does not exist, 0)
    [ 3.769] (II) LoadModule: "nv"
    [ 3.769] (WW) Warning, couldn't open module nv
    [ 3.769] (II) UnloadModule: "nv"
    [ 3.769] (II) Unloading nv
    [ 3.769] (EE) Failed to load module "nv" (module does not exist, 0)
    [ 3.769] (II) LoadModule: "modesetting"
    [ 3.769] (WW) Warning, couldn't open module modesetting
    [ 3.769] (II) UnloadModule: "modesetting"
    [ 3.769] (II) Unloading modesetting
    [ 3.769] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 3.769] (II) LoadModule: "fbdev"
    [ 3.769] (WW) Warning, couldn't open module fbdev
    [ 3.769] (II) UnloadModule: "fbdev"
    [ 3.769] (II) Unloading fbdev
    [ 3.769] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 3.769] (II) LoadModule: "vesa"
    [ 3.770] (WW) Warning, couldn't open module vesa
    [ 3.770] (II) UnloadModule: "vesa"
    [ 3.770] (II) Unloading vesa
    [ 3.770] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 3.770] (EE) No drivers available.
    [ 3.770] (EE)
    Fatal server error:
    [ 3.770] (EE) no screens found(EE)
    [ 3.770] (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 3.770] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 3.770] (EE)
    Which looks like it loads my nvidia driver, but then just decides not to use it for some reason... After I restart kdm, it seems to use the driver fine:
    [ 78.897]
    This is a pre-release version of the X server from The X.Org Foundation.
    It is not supported in any way.
    Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
    Select the "xorg" product for bugs you find in this release.
    Before reporting bugs in pre-release versions please check the
    latest version in the X.Org Foundation git repository.
    See http://wiki.x.org/wiki/GitPage for git access instructions.
    [ 78.897]
    X.Org X Server 1.16.2.901 (1.16.3 RC 1)
    Release Date: 2014-12-09
    [ 78.897] X Protocol Version 11, Revision 0
    [ 78.897] Build Operating System: Linux 3.17.2-1-ARCH x86_64
    [ 78.897] Current Operating System: Linux laptop 3.17.6-1-ARCH #1 SMP PREEMPT Sun Dec 7 23:43:32 UTC 2014 x86_64
    [ 78.897] Kernel command line: BOOT_IMAGE=../vmlinuz-linux root=/dev/sda1 rw initrd=../initramfs-linux.img
    [ 78.897] Build Date: 10 December 2014 02:34:24PM
    [ 78.897]
    [ 78.897] Current version of pixman: 0.32.6
    [ 78.897] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 78.897] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 78.897] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Dec 19 18:48:38 2014
    [ 78.897] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 78.897] (==) No Layout section. Using the first Screen section.
    [ 78.897] (==) No screen section available. Using defaults.
    [ 78.897] (**) |-->Screen "Default Screen Section" (0)
    [ 78.897] (**) | |-->Monitor "<default monitor>"
    [ 78.898] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 78.898] (==) Automatically adding devices
    [ 78.898] (==) Automatically enabling devices
    [ 78.898] (==) Automatically adding GPU devices
    [ 78.898] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 78.898] Entry deleted from font path.
    [ 78.898] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 78.898] Entry deleted from font path.
    [ 78.898] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 78.898] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 78.898] Entry deleted from font path.
    [ 78.898] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 78.898] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 78.898] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 78.898] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 78.898] (II) Loader magic: 0x818d80
    [ 78.898] (II) Module ABI versions:
    [ 78.898] X.Org ANSI C Emulation: 0.4
    [ 78.898] X.Org Video Driver: 18.0
    [ 78.898] X.Org XInput driver : 21.0
    [ 78.898] X.Org Server Extension : 8.0
    [ 78.900] (EE) systemd-logind: failed to get session: PID 542 does not belong to any known session
    [ 78.900] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 78.901] (--) PCI:*(0:1:0:0) 10de:11a1:1558:0371 rev 161, Mem @ 0xf6000000/16777216, 0xe0000000/268435456, 0xf0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/524288
    [ 78.901] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 78.901] (II) LoadModule: "glx"
    [ 78.902] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 78.913] (II) Module glx: vendor="NVIDIA Corporation"
    [ 78.913] compiled for 4.0.2, module version = 1.0.0
    [ 78.913] Module class: X.Org Server Extension
    [ 78.913] (II) NVIDIA GLX Module 343.36 Mon Dec 1 15:50:02 PST 2014
    [ 78.914] (II) Applying OutputClass "nvidia" to /dev/dri/card0
    [ 78.914] loading driver: nvidia
    [ 78.914] (==) Matched nvidia as autoconfigured driver 0
    [ 78.914] (==) Matched nouveau as autoconfigured driver 1
    [ 78.914] (==) Matched nv as autoconfigured driver 2
    [ 78.914] (==) Matched nouveau as autoconfigured driver 3
    [ 78.914] (==) Matched nv as autoconfigured driver 4
    [ 78.914] (==) Matched modesetting as autoconfigured driver 5
    [ 78.914] (==) Matched fbdev as autoconfigured driver 6
    [ 78.914] (==) Matched vesa as autoconfigured driver 7
    [ 78.914] (==) Assigned the driver to the xf86ConfigLayout
    [ 78.914] (II) LoadModule: "nvidia"
    [ 78.914] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 78.920] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 78.920] compiled for 4.0.2, module version = 1.0.0
    [ 78.920] Module class: X.Org Video Driver
    [ 78.920] (II) LoadModule: "nouveau"
    [ 78.921] (WW) Warning, couldn't open module nouveau
    [ 78.921] (II) UnloadModule: "nouveau"
    [ 78.921] (II) Unloading nouveau
    [ 78.921] (EE) Failed to load module "nouveau" (module does not exist, 0)
    [ 78.921] (II) LoadModule: "nv"
    [ 78.921] (WW) Warning, couldn't open module nv
    [ 78.921] (II) UnloadModule: "nv"
    [ 78.921] (II) Unloading nv
    [ 78.921] (EE) Failed to load module "nv" (module does not exist, 0)
    [ 78.921] (II) LoadModule: "modesetting"
    [ 78.921] (WW) Warning, couldn't open module modesetting
    [ 78.921] (II) UnloadModule: "modesetting"
    [ 78.921] (II) Unloading modesetting
    [ 78.921] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 78.921] (II) LoadModule: "fbdev"
    [ 78.922] (WW) Warning, couldn't open module fbdev
    [ 78.922] (II) UnloadModule: "fbdev"
    [ 78.922] (II) Unloading fbdev
    [ 78.922] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 78.922] (II) LoadModule: "vesa"
    [ 78.922] (WW) Warning, couldn't open module vesa
    [ 78.922] (II) UnloadModule: "vesa"
    [ 78.922] (II) Unloading vesa
    [ 78.922] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 78.922] (II) NVIDIA dlloader X Driver 343.36 Mon Dec 1 15:28:39 PST 2014
    [ 78.922] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 78.922] (++) using VT number 7
    [ 78.935] (II) Loading sub module "fb"
    [ 78.935] (II) LoadModule: "fb"
    [ 78.935] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 78.936] (II) Module fb: vendor="X.Org Foundation"
    [ 78.936] compiled for 1.16.2.901, module version = 1.0.0
    [ 78.936] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 78.936] (II) Loading sub module "wfb"
    [ 78.936] (II) LoadModule: "wfb"
    [ 78.936] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 78.937] (II) Module wfb: vendor="X.Org Foundation"
    [ 78.937] compiled for 1.16.2.901, module version = 1.0.0
    [ 78.937] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 78.937] (II) Loading sub module "ramdac"
    [ 78.937] (II) LoadModule: "ramdac"
    [ 78.937] (II) Module "ramdac" already built-in
    [ 78.939] (II) NVIDIA(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 78.939] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
    [ 78.939] (==) NVIDIA(0): RGB weight 888
    [ 78.939] (==) NVIDIA(0): Default visual is TrueColor
    [ 78.939] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 78.940] (**) NVIDIA(0): Enabling 2D acceleration
    [ 79.610] (II) NVIDIA(0): Display (Samsung SyncMaster (DFP-1)) does not support NVIDIA
    [ 79.610] (II) NVIDIA(0): 3D Vision stereo.
    [ 79.610] (II) NVIDIA(GPU-0): Found DRM driver nvidia-drm (20130102)
    [ 79.612] (II) NVIDIA(0): NVIDIA GPU GeForce GTX 670MX (GK104) at PCI:1:0:0 (GPU-0)
    [ 79.612] (--) NVIDIA(0): Memory: 3145728 kBytes
    [ 79.612] (--) NVIDIA(0): VideoBIOS: 80.04.67.00.06
    [ 79.612] (II) NVIDIA(0): Detected PCI Express Link width: 16X
    [ 79.616] (--) NVIDIA(0): Valid display device(s) on GeForce GTX 670MX at PCI:1:0:0
    [ 79.616] (--) NVIDIA(0): Chi Mei Optoelectronics corp. (DFP-0) (boot, connected)
    [ 79.616] (--) NVIDIA(0): Samsung SyncMaster (DFP-1) (connected)
    [ 79.616] (--) NVIDIA(0): DFP-2
    [ 79.616] (--) NVIDIA(0): DFP-3
    [ 79.616] (--) NVIDIA(0): DFP-4
    [ 79.616] (--) NVIDIA(0): Chi Mei Optoelectronics corp. (DFP-0): Internal LVDS
    [ 79.616] (--) NVIDIA(GPU-0): Chi Mei Optoelectronics corp. (DFP-0): 330.0 MHz maximum pixel clock
    [ 79.616] (--) NVIDIA(0): Samsung SyncMaster (DFP-1): Internal TMDS
    [ 79.616] (--) NVIDIA(GPU-0): Samsung SyncMaster (DFP-1): 165.0 MHz maximum pixel clock
    [ 79.616] (--) NVIDIA(0): DFP-2: Internal TMDS
    [ 79.616] (--) NVIDIA(GPU-0): DFP-2: 165.0 MHz maximum pixel clock
    [ 79.616] (--) NVIDIA(0): DFP-3: Internal DisplayPort
    [ 79.616] (--) NVIDIA(GPU-0): DFP-3: 960.0 MHz maximum pixel clock
    [ 79.616] (--) NVIDIA(0): DFP-4: Internal DisplayPort
    [ 79.616] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
    [ 79.616] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 79.616] (**) NVIDIA(0): device Chi Mei Optoelectronics corp. (DFP-0) (Using EDID
    [ 79.616] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 79.616] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 79.616] (**) NVIDIA(0): device Samsung SyncMaster (DFP-1) (Using EDID frequencies
    [ 79.616] (**) NVIDIA(0): has been enabled on all display devices.)
    [ 79.618] (==) NVIDIA(0):
    [ 79.618] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
    [ 79.618] (==) NVIDIA(0): will be used as the requested mode.
    [ 79.618] (==) NVIDIA(0):
    [ 79.619] (II) NVIDIA(0): Validated MetaModes:
    [ 79.619] (II) NVIDIA(0): "DFP-0:nvidia-auto-select,DFP-1:nvidia-auto-select"
    [ 79.619] (II) NVIDIA(0): Virtual screen size determined to be 3600 x 1080
    [ 80.144] (--) NVIDIA(0): DPI set to (128, 130); computed from "UseEdidDpi" X config
    [ 80.144] (--) NVIDIA(0): option
    [ 80.144] (--) Depth 24 pixmap format is 32 bpp
    [ 80.144] (II) NVIDIA: Using 3072.00 MB of virtual memory for indirect memory
    [ 80.144] (II) NVIDIA: access.
    [ 80.150] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
    [ 80.150] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
    [ 80.150] (II) NVIDIA(0): configuration option may not be set correctly. When the
    [ 80.150] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
    [ 80.150] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
    [ 80.150] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
    [ 80.150] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 80.150] (II) NVIDIA(0): Config Options in the README.
    [ 80.155] (II) NVIDIA(0): Setting mode "DFP-0:nvidia-auto-select,DFP-1:nvidia-auto-select"
    [ 80.532] (==) NVIDIA(0): Disabling shared memory pixmaps
    [ 80.532] (==) NVIDIA(0): Backing store enabled
    [ 80.532] (==) NVIDIA(0): Silken mouse enabled
    [ 80.533] (==) NVIDIA(0): DPMS enabled
    [ 80.533] (II) Loading sub module "dri2"
    [ 80.533] (II) LoadModule: "dri2"
    [ 80.533] (II) Module "dri2" already built-in
    [ 80.533] (II) NVIDIA(0): [DRI2] Setup complete
    [ 80.533] (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia
    [ 80.533] (--) RandR disabled
    [ 80.539] (II) Initializing extension GLX
    [ 80.605] (II) config/udev: Adding input device Power Button (/dev/input/event14)
    [ 80.605] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 80.605] (II) LoadModule: "evdev"
    [ 80.606] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 80.607] (II) Module evdev: vendor="X.Org Foundation"
    [ 80.607] compiled for 1.16.2, module version = 2.9.1
    [ 80.607] Module class: X.Org XInput Driver
    [ 80.607] ABI class: X.Org XInput driver, version 21.0
    [ 80.607] (II) Using input driver 'evdev' for 'Power Button'
    [ 80.607] (**) Power Button: always reports core events
    [ 80.607] (**) evdev: Power Button: Device: "/dev/input/event14"
    [ 80.608] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 80.608] (--) evdev: Power Button: Found keys
    [ 80.608] (II) evdev: Power Button: Configuring as keyboard
    [ 80.608] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input18/event14"
    [ 80.608] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 80.608] (**) Option "xkb_rules" "evdev"
    [ 80.608] (**) Option "xkb_model" "pc104"
    [ 80.608] (**) Option "xkb_layout" "us"
    [ 80.635] (II) config/udev: Adding input device Video Bus (/dev/input/event15)
    [ 80.635] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 80.635] (II) Using input driver 'evdev' for 'Video Bus'
    [ 80.635] (**) Video Bus: always reports core events
    [ 80.635] (**) evdev: Video Bus: Device: "/dev/input/event15"
    [ 80.635] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 80.635] (--) evdev: Video Bus: Found keys
    [ 80.635] (II) evdev: Video Bus: Configuring as keyboard
    [ 80.635] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:13/LNXVIDEO:00/input/input19/event15"
    [ 80.635] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 80.635] (**) Option "xkb_rules" "evdev"
    [ 80.635] (**) Option "xkb_model" "pc104"
    [ 80.635] (**) Option "xkb_layout" "us"
    [ 80.636] (II) config/udev: Adding input device Power Button (/dev/input/event13)
    [ 80.636] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 80.636] (II) Using input driver 'evdev' for 'Power Button'
    [ 80.636] (**) Power Button: always reports core events
    [ 80.636] (**) evdev: Power Button: Device: "/dev/input/event13"
    [ 80.636] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 80.636] (--) evdev: Power Button: Found keys
    [ 80.636] (II) evdev: Power Button: Configuring as keyboard
    [ 80.636] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input17/event13"
    [ 80.636] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
    [ 80.636] (**) Option "xkb_rules" "evdev"
    [ 80.636] (**) Option "xkb_model" "pc104"
    [ 80.636] (**) Option "xkb_layout" "us"
    [ 80.637] (II) config/udev: Adding input device Lid Switch (/dev/input/event11)
    [ 80.637] (II) No input driver specified, ignoring this device.
    [ 80.637] (II) This device may have been added with another device file.
    [ 80.637] (II) config/udev: Adding input device Sleep Button (/dev/input/event12)
    [ 80.637] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 80.637] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 80.637] (**) Sleep Button: always reports core events
    [ 80.637] (**) evdev: Sleep Button: Device: "/dev/input/event12"
    [ 80.637] (--) evdev: Sleep Button: Vendor 0 Product 0x3
    [ 80.637] (--) evdev: Sleep Button: Found keys
    [ 80.637] (II) evdev: Sleep Button: Configuring as keyboard
    [ 80.637] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input16/event12"
    [ 80.637] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
    [ 80.637] (**) Option "xkb_rules" "evdev"
    [ 80.637] (**) Option "xkb_model" "pc104"
    [ 80.637] (**) Option "xkb_layout" "us"
    [ 80.638] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event18)
    [ 80.638] (II) No input driver specified, ignoring this device.
    [ 80.638] (II) This device may have been added with another device file.
    [ 80.638] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event19)
    [ 80.638] (II) No input driver specified, ignoring this device.
    [ 80.638] (II) This device may have been added with another device file.
    [ 80.639] (II) config/udev: Adding input device LOGITECH G110 G-keys (/dev/input/event3)
    [ 80.639] (**) LOGITECH G110 G-keys: Applying InputClass "evdev keyboard catchall"
    [ 80.639] (II) Using input driver 'evdev' for 'LOGITECH G110 G-keys'
    [ 80.639] (**) LOGITECH G110 G-keys: always reports core events
    [ 80.639] (**) evdev: LOGITECH G110 G-keys: Device: "/dev/input/event3"
    [ 80.639] (--) evdev: LOGITECH G110 G-keys: Vendor 0x46d Product 0xc22b
    [ 80.639] (--) evdev: LOGITECH G110 G-keys: Found keys
    [ 80.639] (II) evdev: LOGITECH G110 G-keys: Configuring as keyboard
    [ 80.639] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-4/3-4.1/3-4.1.1/3-4.1.1:1.0/0003:046D:C22B.0003/input/input7/event3"
    [ 80.639] (II) XINPUT: Adding extended input device "LOGITECH G110 G-keys" (type: KEYBOARD, id 10)
    [ 80.639] (**) Option "xkb_rules" "evdev"
    [ 80.639] (**) Option "xkb_model" "pc104"
    [ 80.639] (**) Option "xkb_layout" "us"
    [ 80.639] (II) config/udev: Adding input device Gaming Keyboard G110 (/dev/input/event4)
    [ 80.639] (**) Gaming Keyboard G110: Applying InputClass "evdev keyboard catchall"
    [ 80.639] (II) Using input driver 'evdev' for 'Gaming Keyboard G110'
    [ 80.639] (**) Gaming Keyboard G110: always reports core events
    [ 80.639] (**) evdev: Gaming Keyboard G110: Device: "/dev/input/event4"
    [ 80.640] (--) evdev: Gaming Keyboard G110: Vendor 0x46d Product 0xc22a
    [ 80.640] (--) evdev: Gaming Keyboard G110: Found keys
    [ 80.640] (II) evdev: Gaming Keyboard G110: Configuring as keyboard
    [ 80.640] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-4/3-4.1/3-4.1.3/3-4.1.3:1.0/0003:046D:C22A.0004/input/input8/event4"
    [ 80.640] (II) XINPUT: Adding extended input device "Gaming Keyboard G110" (type: KEYBOARD, id 11)
    [ 80.640] (**) Option "xkb_rules" "evdev"
    [ 80.640] (**) Option "xkb_model" "pc104"
    [ 80.640] (**) Option "xkb_layout" "us"
    [ 80.640] (II) config/udev: Adding input device Gaming Keyboard G110 (/dev/input/event5)
    [ 80.640] (**) Gaming Keyboard G110: Applying InputClass "evdev keyboard catchall"
    [ 80.640] (II) Using input driver 'evdev' for 'Gaming Keyboard G110'
    [ 80.640] (**) Gaming Keyboard G110: always reports core events
    [ 80.640] (**) evdev: Gaming Keyboard G110: Device: "/dev/input/event5"
    [ 80.640] (--) evdev: Gaming Keyboard G110: Vendor 0x46d Product 0xc22a
    [ 80.640] (--) evdev: Gaming Keyboard G110: Found keys
    [ 80.640] (II) evdev: Gaming Keyboard G110: Configuring as keyboard
    [ 80.640] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-4/3-4.1/3-4.1.3/3-4.1.3:1.1/0003:046D:C22A.0005/input/input9/event5"
    [ 80.640] (II) XINPUT: Adding extended input device "Gaming Keyboard G110" (type: KEYBOARD, id 12)
    [ 80.640] (**) Option "xkb_rules" "evdev"
    [ 80.640] (**) Option "xkb_model" "pc104"
    [ 80.641] (**) Option "xkb_layout" "us"
    [ 80.641] (II) config/udev: Adding input device Razer Razer Lachesis (/dev/input/event1)
    [ 80.641] (**) Razer Razer Lachesis: Applying InputClass "evdev pointer catchall"
    [ 80.641] (II) Using input driver 'evdev' for 'Razer Razer Lachesis'
    [ 80.641] (**) Razer Razer Lachesis: always reports core events
    [ 80.641] (**) evdev: Razer Razer Lachesis: Device: "/dev/input/event1"
    [ 80.641] (--) evdev: Razer Razer Lachesis: Vendor 0x1532 Product 0xc
    [ 80.641] (--) evdev: Razer Razer Lachesis: Found 12 mouse buttons
    [ 80.641] (--) evdev: Razer Razer Lachesis: Found scroll wheel(s)
    [ 80.641] (--) evdev: Razer Razer Lachesis: Found relative axes
    [ 80.641] (--) evdev: Razer Razer Lachesis: Found x and y relative axes
    [ 80.641] (II) evdev: Razer Razer Lachesis: Configuring as mouse
    [ 80.641] (II) evdev: Razer Razer Lachesis: Adding scrollwheel support
    [ 80.641] (**) evdev: Razer Razer Lachesis: YAxisMapping: buttons 4 and 5
    [ 80.641] (**) evdev: Razer Razer Lachesis: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 80.641] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-4/3-4.2/3-4.2:1.0/0003:1532:000C.0001/input/input5/event1"
    [ 80.641] (II) XINPUT: Adding extended input device "Razer Razer Lachesis" (type: MOUSE, id 13)
    [ 80.642] (II) evdev: Razer Razer Lachesis: initialized for relative axes.
    [ 80.642] (**) Razer Razer Lachesis: (accel) keeping acceleration scheme 1
    [ 80.642] (**) Razer Razer Lachesis: (accel) acceleration profile 0
    [ 80.642] (**) Razer Razer Lachesis: (accel) acceleration factor: 2.000
    [ 80.642] (**) Razer Razer Lachesis: (accel) acceleration threshold: 4
    [ 80.642] (II) config/udev: Adding input device Razer Razer Lachesis (/dev/input/mouse0)
    [ 80.642] (II) No input driver specified, ignoring this device.
    [ 80.642] (II) This device may have been added with another device file.
    [ 80.643] (II) config/udev: Adding input device Razer Razer Lachesis (/dev/input/event2)
    [ 80.643] (**) Razer Razer Lachesis: Applying InputClass "evdev keyboard catchall"
    [ 80.643] (II) Using input driver 'evdev' for 'Razer Razer Lachesis'
    [ 80.643] (**) Razer Razer Lachesis: always reports core events
    [ 80.643] (**) evdev: Razer Razer Lachesis: Device: "/dev/input/event2"
    [ 80.643] (--) evdev: Razer Razer Lachesis: Vendor 0x1532 Product 0xc
    [ 80.643] (--) evdev: Razer Razer Lachesis: Found keys
    [ 80.643] (II) evdev: Razer Razer Lachesis: Configuring as keyboard
    [ 80.643] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-4/3-4.2/3-4.2:1.1/0003:1532:000C.0002/input/input6/event2"
    [ 80.643] (II) XINPUT: Adding extended input device "Razer Razer Lachesis" (type: KEYBOARD, id 14)
    [ 80.643] (**) Option "xkb_rules" "evdev"
    [ 80.643] (**) Option "xkb_model" "pc104"
    [ 80.643] (**) Option "xkb_layout" "us"
    [ 80.643] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event6)
    [ 80.643] (II) No input driver specified, ignoring this device.
    [ 80.643] (II) This device may have been added with another device file.
    [ 80.644] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event7)
    [ 80.644] (II) No input driver specified, ignoring this device.
    [ 80.644] (II) This device may have been added with another device file.
    [ 80.644] (II) config/udev: Adding input device HDA Intel PCH Line (/dev/input/event8)
    [ 80.644] (II) No input driver specified, ignoring this device.
    [ 80.644] (II) This device may have been added with another device file.
    [ 80.644] (II) config/udev: Adding input device HDA Intel PCH Line Out (/dev/input/event9)
    [ 80.644] (II) No input driver specified, ignoring this device.
    [ 80.644] (II) This device may have been added with another device file.
    [ 80.645] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event10)
    [ 80.645] (II) No input driver specified, ignoring this device.
    [ 80.645] (II) This device may have been added with another device file.
    [ 80.645] (II) config/udev: Adding input device BisonCam, NB Pro (/dev/input/event17)
    [ 80.645] (**) BisonCam, NB Pro: Applying InputClass "evdev keyboard catchall"
    [ 80.645] (II) Using input driver 'evdev' for 'BisonCam, NB Pro'
    [ 80.645] (**) BisonCam, NB Pro: always reports core events
    [ 80.645] (**) evdev: BisonCam, NB Pro: Device: "/dev/input/event17"
    [ 80.645] (--) evdev: BisonCam, NB Pro: Vendor 0x5986 Product 0x512
    [ 80.645] (--) evdev: BisonCam, NB Pro: Found keys
    [ 80.645] (II) evdev: BisonCam, NB Pro: Configuring as keyboard
    [ 80.645] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.6/2-1.6:1.0/input/input23/event17"
    [ 80.645] (II) XINPUT: Adding extended input device "BisonCam, NB Pro" (type: KEYBOARD, id 15)
    [ 80.645] (**) Option "xkb_rules" "evdev"
    [ 80.645] (**) Option "xkb_model" "pc104"
    [ 80.645] (**) Option "xkb_layout" "us"
    [ 80.646] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 80.646] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 80.646] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 80.646] (**) AT Translated Set 2 keyboard: always reports core events
    [ 80.646] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 80.646] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 80.646] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 80.646] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 80.646] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 80.646] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 16)
    [ 80.646] (**) Option "xkb_rules" "evdev"
    [ 80.646] (**) Option "xkb_model" "pc104"
    [ 80.646] (**) Option "xkb_layout" "us"
    [ 80.646] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event20)
    [ 80.646] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 80.647] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 80.647] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
    [ 80.647] (II) LoadModule: "synaptics"
    [ 80.647] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 80.647] (II) Module synaptics: vendor="X.Org Foundation"
    [ 80.647] compiled for 1.16.0, module version = 1.8.1
    [ 80.647] Module class: X.Org XInput Driver
    [ 80.647] ABI class: X.Org XInput driver, version 21.0
    [ 80.647] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    [ 80.647] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 80.647] (**) Option "Device" "/dev/input/event20"
    [ 80.756] (II) synaptics: SynPS/2 Synaptics TouchPad: found clickpad property
    [ 80.757] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5662 (res 42)
    [ 80.757] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4660 (res 47)
    [ 80.757] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 80.757] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    [ 80.757] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left double triple
    [ 80.757] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 80.757] (**) Option "TapButton1" "1"
    [ 80.757] (**) Option "TapButton2" "2"
    [ 80.757] (**) Option "TapButton3" "3"
    [ 80.757] (**) Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
    [ 80.757] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 80.757] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 80.810] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio2/input/input22/event20"
    [ 80.810] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 17)
    [ 80.810] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    [ 80.810] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
    [ 80.810] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.038
    [ 80.810] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 80.810] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    [ 80.810] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 80.810] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 80.810] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 80.811] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse1)
    [ 80.811] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
    [ 80.811] (II) config/udev: Adding input device PC Speaker (/dev/input/event16)
    [ 80.811] (II) No input driver specified, ignoring this device.
    [ 80.811] (II) This device may have been added with another device file.
    [ 88.265] (II) NVIDIA(GPU-0): Display (Samsung SyncMaster (DFP-1)) does not support NVIDIA
    [ 88.265] (II) NVIDIA(GPU-0): 3D Vision stereo.
    [ 88.282] (II) NVIDIA(GPU-0): Display (Samsung SyncMaster (DFP-1)) does not support NVIDIA
    [ 88.282] (II) NVIDIA(GPU-0): 3D Vision stereo.
    [ 88.291] (II) NVIDIA(0): Setting mode "LVDS-0: nvidia-auto-select @1920x1080 +0+0 {ViewPortIn=1920x1080, ViewPortOut=1920x1080+0+0}, HDMI-0: 1680x1050_60_0 @1680x1050 +1920+0 {ViewPortIn=1680x1050, ViewPortOut=1680x1050+0+0}"
    [ 89.221] (II) NVIDIA(GPU-0): Display (Samsung SyncMaster (DFP-1)) does not support NVIDIA
    [ 89.221] (II) NVIDIA(GPU-0): 3D Vision stereo.
    [ 90.639] (II) NVIDIA(GPU-0): Display (Samsung SyncMaster (DFP-1)) does not support NVIDIA
    [ 90.639] (II) NVIDIA(GPU-0): 3D Vision stereo.
    [ 93.745] (II) NVIDIA(GPU-0): Display (Samsung SyncMaster (DFP-1)) does not support NVIDIA
    [ 93.745] (II) NVIDIA(GPU-0): 3D Vision stereo.
    Notably, the following lines appear in the working case, but not the broken case:
    [ 78.914] (II) Applying OutputClass "nvidia" to /dev/dri/card0
    [ 78.914] loading driver: nvidia
    Does anyone know what might be going on here?
    Last edited by straemer (2014-12-20 13:03:58)

    Hmmmm, that doesn't seem to be the issue. I have a nvidia geforce gtx 670mx. The nvidia website does link me to the 340xx driver for that card, but downgrading to that version still has the same issue. I suspect the issue is in Xorg, since it seems to load the module, but then decides it doesn't have a driver to run for some reason.

  • Problems with Premiere Elements 8 after updating to Nvidia driver 195.81 or later?

    Hello PRE8 users,
    If you have an Nvidia-based graphics chipset, and you've updated to Nvidia driver version 195.81 or later and you're still experiencing frequent crashes and freezes in Premiere Elements 8, then we'd like to hear from you in this thread. As mentioned in the announcement at the top of this forum, we believe most of these issues are caused by a problem with an Nvidia driver that was released after PRE8 was developed, and that the issues should be resolved by updating to Nvidia driver version 195.81 or later. Notes from the announcement I mentioned above are copied below for your reference.
    Best regards,
    Chad
    For Nvidia users, there is a driver update that will fix both of the following issues:
    Premiere Elements 8 does not restart after closing on Windows
    Frequent and inexplicable crashes with Premiere Elements 8
    To resolve these issues, you should update your GPU (graphics card) driver to version 195.81 or higher, by following the steps below.
    1.      Identify which GPU driver you have by right clicking on the Desktop > Properties > Settings and in the Display field it will be displayed.
    2.      Go to http://www.nvidia.com/Download/index.aspx?lang=en-us and download driver for your GPU card. Its size varies from 80 to 120MB depending upon the GPU card model.
    3.      After the download is complete, run the driver install Installation. This should take less than 2 minutes.
    There are no known issues that the latest driver update will cause.
    This is an announcement. There is a separate discussion topic located here.
    ***If the update steps shown above do not upgrade your system to version 195.81 or higher, then you may need to download the driver directly. Use the link below only if the steps above do not update your driver to 195.81 or higher. The download page for Vista and Windows 7 is located here:
    http://www.nvidia.com/object/win7_winvista_32bit_195.81_beta.html
    http://www.nvidia.com/object/win7_winvista_64bit_195.81_beta.html

    Processor
    AMD Athlon(tm) II X4 620 Processor
    7.1
    4.9
      Determined by lowest subscore
    Memory (RAM)
    4.00 GB
    7.1
    Graphics
    NVIDIA GeForce 9500 GT
    4.9
    Gaming graphics
    2431 MB Total available graphics memory
    6.3
    Primary hard disk
    231GB Free (466GB Total)
    5.9
    Up here I copied and posted my PC's spec's.  Since upgrading to the new driver, my problems increased.  I seem to experience more crashes than before.  Happens randomly and I can not see a pattern.   (I have noticed dragging clips from one area to another on the time line is no-no)
    JPR

  • Both nouveau and nVidia driver problems with Stellarium

    Stellarium v0.12.4 with either xf86-video-nouveau 1.0.9-1 or nvidia (latest driver) and an nVidia MCP78S (GeForce 8200) chip usually results in either distorted graphics and sometimes complete system lock-up.
    The nVidia driver is worse, nouveau sometimes works but its a crap shoot. This has been going on for about 2 months now, and I have tested both drivers.
    With nouveau it dumps these boot errors, but works on other software just fine:
    Oct 21 17:17:48 eagle kernel: nouveau E[ PBUS][0000:02:00.0] MMIO read of 0x00000008 FAULT at 0x10022c
    Oct 21 17:17:48 eagle kernel: nouveau E[ PBUS][0000:02:00.0] MMIO read of 0x00000008 FAULT at 0x100230
    Oct 21 17:17:48 eagle kernel: nouveau E[ PBUS][0000:02:00.0] MMIO read of 0x00000008 FAULT at 0x1002e4
    I cannot use the nvidia driver in general because it sometimes causes graphics faults when using Chromium.
    I don't get any other graphics issues other than with Stellarium (and obviously I cannot run google-earth with nouveau either).
    Any ideas on where to start with this problem would be appreciated.

    Thanks for answering!
    Following your advice, I downloaded and installed the latest driver from Nvidia (http://www.nvidia.fr/object/notebook-win7-winvista-64bit-260.99-whql-driver-fr.html). I'm not sure this is the one I updated on the first place since I don't remember when I did it (it was a few months ago, and as I had internet without using wi-fi, I didn't see that much the BSOD, but now that I'm back to wi-fi, the problem occurs often). Until now, no BSOD, but the first problem "Display Driver Stopped Responding and Has Recovered" is still here, and a little bit more annoying since it can occurs while watching some video files (it didn't happen before).
    For the BIOS problem, it was the one described on the link you gave, but no the problem is over. I was just thinking it could be relevant to understand the others problems.
    I'll let you know if the BSOD is (or seems) definitively gone. In the meantime, if someone knows how to fix the problem of the display driver that stopped responding and was recovered, it would be greatly appreciated!

  • Quicktime in vista using with Nvidia driver version 169.25 crashes

    I've been searching the web for a long time to solve this problem, it appears that when quicktime 7.4.1 is used in vista when latest nvidia driver was install will cause the directdraw and direct 3D accelerationg to stop working, therefore the video will jitter and the program will crash when it is closed.
    At the same time the latest version of iTunes is working perfectly, the podcast (H.264 encoded) still play fine, also cover flow is smooth, which means directdraw and direct 3D is working in itunes.
    Many people in different forums have reported the same problem, but no one has a solutions yet, that's why I would like to post it here and hope that apple can solve this problem once and for all.
    Thanks.
    My graphic card is Nvidia Geforce 8400GS.
    The error message is listed below:
    问题签名:
    问题事件名称: BEX
    应用程序名: QuickTimePlayer.exe
    应用程序版本: 7.4.1.14
    应用程序时间戳: 47a28143
    故障模块名称: QuickTimePlayer.exe
    故障模块版本: 7.4.1.14
    故障模块时间戳: 47a28143
    异常偏移量: 0000130d
    异常代码: c0000409
    异常数据: 00000000
    OS 版本: 6.0.6000.2.0.0.256.1
    区域设置 ID: 2052
    其他信息 1: 4aa1
    其他信息 2: ec2d6aa67da3a13df0a04d40fd655031
    其他信息 3: 2330
    其他信息 4: de6f39a0b9c5e22c575472cc93ca2944

    no problem im happy to see another happy custumer

  • Updated to nvidia driver 344.11

    I recently updated my GPU driver to 344.11 and I noticed a sluggish performance with playing games like DOTA 2, CS: GO and The Witcher. The frame rate will dramatically drop and i was used to having smooth frame rates before the update.. This is kinda annoying and still trying to figure out if it is the driver causing the problem.
    Does anybody updated their driver as well?

    Follow these steps to do s fresh clean installation of any version of nvidia drivers:-
    Press "Windows Key" + "R" together and type %temp% then press "Ok".
    In that new window, press “Ctrl” + “A” together to select all the files and folders
    Then press “Shift” + “Delete” to remove them. (leave few files which you are not able to delete)
    Try "Display Driver Uninstaller (DDU) " to completely uninstall AMD/NVIDIA graphics card drivers and packages from your system, without leaving leftovers behind (including registry keys, folders and files, driver store) :
    http://www.wagnardmobile.com/DDU/
    1. Better to create a "system restore" point before using it.
    2. You do NOT need to uninstall "NVIDIA Graphics" drivers before using DDU
    3. Open the link and click on "Download" button. It will open another page, select the topmost "Download" button for the latest version.
    4. Then run : "DisplayDriverUninstaller.exe" file
    5. It will give you a notice to create "Restore Point", so better to create one ( if not created earlier ).
    6. Click "No" when it asks "Reboot in safe mode now ?"
    7. Select Nvidia from the dropdown menu on the top, Select all the 5 checkboxes there. Then click on "Clean and Restart" button.
    8. try "Perform Clean Installation" while installing the latest driver

  • Hires monitor with nvidia driver busted? [nevermind. used wrong cable]

    UPDATE: I'm an idiot. I screwed up connecting the cable and used a single channel DVI cable, despite being perfectly aware of the need to use dual. Swapped in the right cable and all's well.
    I got a Dell u2711 monitor and expected it to just work. When I try to run it at 2560x1440 everything looks wrong; it's not just fonts, even the mouse cursor is somehow screwed up. Text is unreadable. Yes, I'm using the dual channel DVI cable.
    The information xrandr reports appears correct:
        $ xrandr
        DVI-I-2 connected 2560x1440+0+0 (normal left inverted right x axis y axis) 597mm x 336mm
           2560x1440      60.0*+
    xdpyinfo says something else, though.
        $ xdpyinfo | grep -B2 resolution
        screen #0:
          dimensions:    4240x1440 pixels (997x342 millimeters)
          resolution:    108x107 dots per inch
    I thought maybe the disagremement on dimensions was the problem so I plopped
    this into /etc/X11/xorg.conf.d/90-monitor.conf
        Section "Monitor"
            Option    "UseEdidDpi"    "false"
            Identifier "Monitor0"
            DisplaySize 597 336
        EndSection
        Section "Screen"
            Identifier    "Screen0"
            Monitor       "Monitor0"
        EndSection
    It did indeed change what xdpyinfo reports, but everything looks the same (squished and pixely). So it didn't work.
        $ xdpyinfo | grep -B2 resolution
        screen #0:
          dimensions:    4240x1440 pixels (598x339 millimeters)
          resolution:    180x108 dots per inch
    I'm using the binary nvidia driver. I tried starting up with the Nouveau driver but that didn't improve things.
    I'm using a GeForce GTX 460 graphics card: http://www.newegg.com/Product/Product.a … 6814127510
    I do not know what's going on here or how to fix it. Is there a known issue using the Dell U2711 monitor with xorg and nvidia? Google doesn't seem to know about it.
    Last edited by kingkong (2012-08-19 02:24:33)

    Vista Ultimate 64-bit recognizes 8 cores. 32-bit recognizes one physical cpu.
    I've had very little trouble in two years. And now I do like Windows 7 but also eager for the RC.
    I've been using the latest Nvidia. There is a method to the madness of how to uninstall/delete and install graphics drivers, or madness in the method. The W7 drivers are easier.
    Nope. Something else. More sensitive to disk errors. You aren't running a program to boost fans. Something.
    And some AV software is more prone to causing trouble. But all you need is a good AV/malware program, and even Norton AV 2009 is acceptable, or Avast or one of the others.
    http://discussions.apple.com/thread.jspa?threadID=1866970&tstart=0

Maybe you are looking for

  • Logical symbols in pages for IPad? Asking for help

    I have a new IPad and I would like to define logical symbols on my keyboard (just like ą, ę and so on). Is there some way to do it and to use it in PAGES for IPad? I would prefer to have few math symbols defined directly under some bottoms and not to

  • Unable to install itunes 9.1 on Windows 7 64-bit system

    HEEELLLLP. Please! I have been trying to for two weeks to get itunes to install on my windows 7 os and it is unsuccessful every time. I have read through and done all the troubleshooting. It downloads fine but during the installation process i get th

  • WCS Maps - Heat Signatures on multiple floors

    I have a APs setup in my 11 story building on all the even floors starting with floor 2.  I have added the maps for all 11 floors into a building setup in our WCS.  However I am not seeing the heat signatures on the odd floors in which I would expect

  • Select from db table of 2 values to 2 variables

    Hi, is there a way, how to select 2 values from a table row to 2 variables? like: select single a b into ex_a       ex_b from x where... Thank you, Olian Edited by: Olian Saludew on Aug 7, 2008 3:00 PM

  • ADE doesn't work on my mac.

    I "successfully" download ADE on my mac, but it doesn't work- never prompts me to put in my Adobe id, and it just brings up a blank black screen- I've submitted an adobe case, and been advised to uninstall and reinstall Adobe air, flash and digital e