[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.

Similar Messages

  • [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,

  • [SOLVED] X11 + Nvidia = LCD Standby - Blank Screen

    Hello everyone, I am in a bit of a pickle, and could really use some help.
    My hardware:
    Intel Core i7 920 (Overclocked to 3.9ghz)
    6gb DDR3
    2x Nvidia 285 GTX
    X-Fi Soundcard
    Acer H233H 23" LCD 1080P
    * I did a fresh install Arch x86_64
    * I followed the Beginner's Install Guide
    * I use Xmonad + Xmobar
    The system is in a fresh state with the latest packages and boots perfectly.
    My Problem:
    When I use startx, I get a series of beeps, and then the monitor goes into standby. I can still enter commands in the command line, like sudo halt, or sudo reboot, and even startx again, but the monitor never turns back on. If I change the exec command to xterm (in .xinitrc), x11 starts, and I see xterm, but when I exit, it beeps again and the monitor goes into standby and I cannot see anything, only enter commands blindly.
    My xorg.conf:
    Section "ServerLayout"
    Identifier "Xorg Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Mouse0" "CorePointer"
    Option "BlankTime" "5"
    Option "StandbyTime" "10"
    Option "OffTime" "15"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc:unscaled"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/100dpi"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    Load "ddc" # ddc probing of monitor
    Load "dbe"
    Load "extmod"
    Load "glx"
    Load "freetype"
    EndSection
    Section "ServerFlags"
    Option "AllowMouseOpenFail" "true"
    Option "AutoAddDevices" "False"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "keyboard"
    Option "CoreKeyboard"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "dvorak"
    Option "XkbOptions" "ctrl:swapcaps"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "IMPS/2"
    Option "Device" "/dev/psaux"
    Option "ZAxisMapping" "4 5"
    Option "SendCoreEvents" "true"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    HorizSync 54.2 - 83.8
    VertRefresh 49 - 75
    Option "DPMS" "true"
    EndSection
    Section "Device"
    Identifier "Card0"
    Driver "nvidia"
    VendorName "All"
    BoardName "All"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    # Depth 24
    Modes "1920x1080" "1680x1050" "1440x900"
    EndSubSection
    EndSection
    My Question:
    I have a suspicion it may be the nvidia driver. So my question is, what are my options? I would very much like to have 3d support for steam, but I also need to be able to use x11... should I file a bug report upstream? with nvidia? is that pointless?
    Help me understand, and I will love you like my brother.
    Last edited by demizer (2010-05-05 05:45:08)

    Fixed it. Seems my xmonad setup was using configs built for i686 and my install was x86_64, recompiling the configs fixed the problem of logging in. I am still getting the beeps and lost signal (to the LCD) when switching tty's or logging out. I'll solve that problem next time though. Thanks!

  • [SOLVED] Login Prompt Vs Blank Screen On Startup

    Hello there,
    Problem:
      - When booting into Arch I am either presented with the Login Prompt (Yay!) or a blank back lit screen (Boo!). The pattern is completely random. I can boot up 2-3 times in a row successfully then go on a streak of blank back lit screens and am forced to constantly reboot until I get it to work (see below):
    Boot Attempt => Result after selecting Arch from Grub
    1) Blank screen
    2) Blank
    3) Blank
    4) Login prompt
    5) Login
    6) Login
    7) Login
    8) Blank
    9) Blank
    10) Login
    11) Login
    12) Blank
    13) Login
    14) Blank
    Its a fresh install up until this point in the procedure, Arch Wiki Beginners Guide, so no graphical elements have been installed yet only thing I have installed is firmware for the wireless Broadcom (which is working fine).
    Display: Intel Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller (rev 03)
    Network: Broadcom BCM4311 802.11b/g WLAN (rev 01)
    CPU: Core Duo ~2Ghz x86
    RAM: 1.5GB
    Memory Test: Success
    sda
    |------sda1 (Windows XP)
    |------sda2 (NTFS partition [No OS])
    |------sda3 (Arch i686)
    |------sda4 (Swap)
    Search regarding blank screen turned up this thread, https://bbs.archlinux.org/viewtopic.php?id=151240 , which seemed relevant. It led to KMS though not sure exactly what that does even after reading the Wiki so I decided to post here rather than tinker with it and risk making things 100x worse than they already are.
    Any idea as to what could be causing my irregular boot behavior?
    Last edited by notyourbuddy (2013-01-01 04:07:28)

    cfr wrote:Although that thread seems similar, I'm not sure how this could be the same issue as I thought KMS required a suitable video driver. Still, you could try passing nomodeset on the kernel command line as described in that thread. The worst that will happen is that it won't work. (You can edit the line from the grub menu so if it doesn't work you can just reboot and be back to the same settings you had before.) I guess you'd have to boot a few times to know if it helped.
    Hmm, that seems to have fixed my problem. 9 successful reboots in a row. Figured with my erratic boot behavior as opposed to 100% blank screening that my problem was far worse when in fact the solution seems to have turned out to be quite simple.  Oopsie. My bad guys.
    Followed these steps to make the changes persistent, https://wiki.archlinux.org/index.php/Kernel_parameters , and seems to be holding up well. Will go ahead and marked as Solved and hope no more monitor boot problems arise.
    cfr wrote:So just to clarify: you have not installed any video drivers at this point, correct? And you haven't installed X? You definitely only have one graphics card?
    Nope. Nope. Yep.
    cfr wrote:You can try examining the log files to see what is happening on successful versus unsuccessful boots. journalctl will let you do this and you can filter it with various options.
    Cool, first time I've heard of this and just tested that out. Looks to be a wealth of information. Will have to remember this next time I have boot woes.
    Last edited by notyourbuddy (2013-01-01 04:12:26)

  • How to downgrade kernel 3.10 - blank screen problem after upgrade

    After a recent upgrade, which included kernel 3.10, my ASUS zenbook ux21a boots into a blank screen as reported in these topics:
    https://bbs.archlinux.org/viewtopic.php?id=167411
    https://bbs.archlinux.org/viewtopic.php?id=167463
    https://bbs.archlinux.org/viewtopic.php?id=167518
    How do I downgrade to kernel 3.9, please?
    On this laptop I only have dual boot Arch and Win8 (but also a vacant partition). My grub timeout is set to 0 seconds because I almost never use windows, hence my problem is to get any control of the PC. I have attempted a fresh install from USB, but it takes me into exactly the same blank screen. I also attempted install of the older arch version, which went ok until post-installation reboot, following which I ended up with the same blank screen - probably because during the installation the new kernel 3.10 was downloaded.
    I read in the above topics that people solved the problem by downgrading the kernel - somehow via chrooting from live arch usb. I lack knowledge on how to perform the kernel downgrade - perhaps someone can give instructions or at least tips how to get started.
    Interestingly, the same kernel 3.10 upgrade did not cause problems on a very similar predecessor model ASUS us21e - this info may help the advanced guys to diagnose the source of the problem.
    Last edited by latgarf (2013-08-04 21:18:04)

    Thanks, andrekp, but it didn't work on my UX21A.
    Here's what I did (screen stays black all throughout):
    1. Boot the computer. I believe this takes me to login promt at tty1.
    2. I login by blindly entering userid, <enter>, password, <enter>
    3. speaker-test <enter> - I hear noise. Ctl+c to get out (noise stops).
    4. Switch to tty2 by pressing ctl+alt+f2.
    5. In tty2, I login by blindly entering userid, <enter>, password, <enter>; then speaker-test successful on tty2.
    6. Switch back to tty1 by pressing ctl+alt+f1; speaker-test successful again on tty1.
    7. Type startx. I assume that X and openbox are started successfully: I start lxterminal by pressing my custom short-cut keys combo that I specified in openbox's rc.xml; and speaker-test gives me audible noise from within lxterminal.
    Again, screen stayed dark as night all the time, so the problem remains.
    As my time allows, I try to come up to speed and follow/replicate the attempts to identify/resolve this problem made by more advanced guys in other topics:
    https://bbs.archlinux.org/viewtopic.php?id=167411
    https://bbs.archlinux.org/viewtopic.php?id=167463
    https://bbs.archlinux.org/viewtopic.php?id=167518
    https://bbs.archlinux.org/viewtopic.php?id=167314
    The problem originally arose at # pacman -Syu, which included kernel upgrade from 3.9.9 to 10.3.3. After a later upgrade to 10.3.5, the problem remains. I've enabled 'testing' repositories on my other laptop, UX21E (which doesn't have this problem despite being the closest model!) - and I wait for the new 'testing' kernel to be released in arch, hoping to do a blind upgrade on UX21A and that it solves the problem. I also monitor https://www.kernel.org for when kernel 3.11 becomes available. If I manage to install kernel 3.11 even before it's released in arch-testing, maybe the problem will be gone...
    In the mean time, I keep using the UX21A computer having installed Lubuntu on another partition (it has kernel 3.8).
    Thanks again!

  • IMac blank screen shortly after login - can't reinstall/restore either

    Since yesterday my iMac crashes with a blank screen (different colors, mostly blue) shortly after login. Booting in safe mode is fine though. Hardware test did not find any problems, also Windows Vista 32bit runs fine. I would restore a recent backup, but when I boot from the installation disk the screen turns white and freezes. I tried a PRAM reset and I took the power chord and everything off for several minutes. Still the same issues.
    Console showed kernel panics. Please check the dump below.
    Any suggestions on how to restore my iMac?
    Thanks,
    qgi
    Thu Sep 10 23:07:15 2009
    panic(cpu 0 caller 0x00C866A4): NVRM[0]: Read Error 0x00020400: BAR0 0xe2000000 0x6a08c000 0x092480a2 D0 P2/4
    Backtrace (CPU 0), Frame : Return Address (4 potential args on stack)
    0x5b41f868 : 0x12b4c6 (0x45f91c 0x5b41f89c 0x13355c 0x0)
    0x5b41f8b8 : 0xc866a4 (0xeb6e80 0xeb6e80 0xe7b6d4 0x0)
    0x5b41f918 : 0xf3fdf0 (0x7868004 0x7ddd804 0x20400 0xcc2d06)
    0x5b41f958 : 0xf6386f (0x7ddd804 0x20400 0x5b41f988 0x898)
    0x5b41f978 : 0xd596da (0x7ddd804 0x46ebc098 0x0 0x5b41f99c)
    0x5b41f9a8 : 0xd47c99 (0x7ddd804 0x46ebc004 0x1 0x5b41f9ec)
    0x5b41fa08 : 0xde91f3 (0x7ddd804 0x7a1c604 0xa9af880 0x0)
    0x5b41fab8 : 0xde881b (0x7ddd804 0x7e29004 0x0 0x0)
    0x5b41fb38 : 0xf28bc1 (0x7ddd804 0x7e29004 0x1a 0x2)
    0x5b41fbb8 : 0xf29254 (0x7ddd804 0x7e29c04 0x400000 0x5b41fcdc)
    0x5b41fd38 : 0xf5a3ed (0x7ddd804 0x7e29c04 0x0 0x0)
    0x5b41fe88 : 0xddc495 (0x7ddd804 0x7a1c604 0x0 0x0)
    0x5b41fed8 : 0xc86b60 (0x7ddd804 0x7a1c604 0x0 0x0)
    0x5b41ff18 : 0x426bfb (0x0 0x7ec4c80 0x1 0x19fed4)
    0x5b41ff68 : 0x425d58 (0x7ec4c80 0x71066b0 0x5b41ff98 0x136efd)
    0x5b41ff98 : 0x425a3a (0x7545840 0x7124ec0 0x72f04a8 0x0)
    Backtrace continues...
    Kernel loadable modules in backtrace (with dependencies):
    com.apple.nvidia.nv50hal(5.4.8)@0xecc000->0x111ffff
    dependency: com.apple.NVDAResman(5.4.8)@0xc6d000
    com.apple.NVDAResman(5.4.8)@0xc6d000->0xecbfff
    dependency: com.apple.iokit.IONDRVSupport(1.7.3)@0xc5f000
    dependency: com.apple.iokit.IOPCIFamily(2.6)@0x629000
    dependency: com.apple.iokit.IOGraphicsFamily(1.7.3)@0xc25000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    9L31a
    Kernel version:
    Darwin Kernel Version 9.8.0: Wed Jul 15 16:55:01 PDT 2009; root:xnu-1228.15.4~1/RELEASE_I386
    System model name: iMac8,1 (Mac-F227BEC8)
    System uptime in nanoseconds: 166442601961
    unloaded kexts:
    com.apple.driver.InternalModemSupport 2.4.0 - last unloaded 118040925185
    loaded kexts:
    com.vmware.kext.vmnet 2.0.5
    com.vmware.kext.vmioplug 2.0.5
    com.vmware.kext.vmci 2.0.5
    com.vmware.kext.vmx86 2.0.5
    com.apple.filesystems.msdosfs 1.5.5 - last loaded 149337141464
    com.apple.driver.iTunesPhoneDriver 1.0
    com.apple.driver.AppleHWSensor 1.9d0
    com.apple.driver.IOBluetoothSCOAudioDriver 2.1.8f2
    com.apple.filesystems.autofs 2.0.2
    com.apple.filesystems.ntfs 2.1
    com.apple.driver.AppleUpstreamUserClient 2.7.5
    com.apple.iokit.IOBluetoothSerialManager 2.1.8f2
    com.apple.driver.AppleHDA 1.7.1a2
    com.apple.DontSteal_Mac_OSX 6.0.3
    com.apple.iokit.CHUDUtils 201
    com.apple.iokit.CHUDProf 211
    com.apple.driver.AppleIRController 113
    com.apple.GeForce 5.4.8
    com.apple.driver.ACPISMCPlatformPlugin 3.4.0a17
    com.apple.driver.AppleHDAController 1.7.1a2
    com.apple.iokit.IOFireWireIP 1.7.7
    com.apple.driver.AudioIPCDriver 1.0.6
    com.apple.driver.AppleUSBAudio 2.6.4b17
    com.apple.driver.AppleLPC 1.3.1
    com.apple.driver.AppleBacklight 1.6.0
    com.apple.nvidia.nv50hal 5.4.8
    com.apple.driver.BroadcomUSBBluetoothHCIController 2.1.8f2
    com.apple.driver.AppleHIDKeyboard 1.0.9b4
    com.apple.iokit.IOUSBMassStorageClass 2.0.8
    com.apple.driver.AppleUSBMergeNub 3.4.6
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 2.1.1
    com.apple.iokit.SCSITaskUserClient 2.1.1
    com.apple.driver.XsanFilter 2.7.91
    com.apple.iokit.IOATAPIProtocolTransport 1.5.3
    com.apple.driver.AppleUSBHub 3.4.9
    com.apple.iokit.IOUSBUserClient 3.4.9
    com.apple.iokit.IOAHCIBlockStorage 1.2.2
    com.apple.iokit.AppleYukon2 3.1.13b2
    com.apple.driver.AirPortBrcm43xx 366.91.21
    com.apple.driver.AppleFWOHCI 3.9.7
    com.apple.driver.AppleAHCIPort 1.7.0
    com.apple.driver.AppleIntelPIIXATA 2.0.1
    com.apple.driver.AppleUSBEHCI 3.4.6
    com.apple.driver.AppleUSBUHCI 3.3.5
    com.apple.driver.AppleEFINVRAM 1.2.0
    com.apple.driver.AppleRTC 1.2.3
    com.apple.driver.AppleHPET 1.4
    com.apple.driver.AppleACPIPCI 1.2.5
    com.apple.driver.AppleACPIButtons 1.2.5
    com.apple.driver.AppleSMBIOS 1.4
    com.apple.driver.AppleACPIEC 1.2.5
    com.apple.driver.AppleAPIC 1.4
    com.apple.security.seatbelt 107.12
    com.apple.nke.applicationfirewall 1.6.77
    com.apple.security.TMSafetyNet 3
    com.apple.driver.AppleIntelCPUPowerManagement 76.2.0
    com.apple.driver.DiskImages 199
    com.apple.BootCache 30.4
    com.apple.iokit.IOSerialFamily 9.4
    com.apple.driver.DspFuncLib 1.7.1a2
    com.apple.iokit.CHUDKernLib 201
    com.apple.driver.IOPlatformPluginFamily 3.4.0a17
    com.apple.driver.AppleSMC 2.3.1d1
    com.apple.iokit.IOHDAFamily 1.7.1a2
    com.apple.iokit.IOAudioFamily 1.6.9fc5
    com.apple.kext.OSvKernDSPLib 1.1
    com.apple.NVDAResman 5.4.8
    com.apple.iokit.IONDRVSupport 1.7.3
    com.apple.iokit.IOGraphicsFamily 1.7.3
    com.apple.driver.AppleUSBBluetoothHCIController 2.1.8f2
    com.apple.iokit.IOBluetoothFamily 2.1.8f2
    com.apple.iokit.IOUSBHIDDriver 3.4.6
    com.apple.driver.AppleUSBComposite 3.2.0
    com.apple.iokit.IOSCSIBlockCommandsDevice 2.1.1
    com.apple.iokit.IOBDStorageFamily 1.5
    com.apple.iokit.IODVDStorageFamily 1.5
    com.apple.iokit.IOCDStorageFamily 1.5
    com.apple.iokit.IOSCSIArchitectureModelFamily 2.1.1
    com.apple.iokit.IO80211Family 216.1
    com.apple.iokit.IONetworkingFamily 1.6.1
    com.apple.iokit.IOFireWireFamily 3.4.9
    com.apple.iokit.IOAHCIFamily 1.5.0
    com.apple.iokit.IOATAFamily 2.0.1
    com.apple.iokit.IOUSBFamily 3.4.9
    com.apple.driver.AppleEFIRuntime 1.2.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.iokit.IOStorageFamily 1.5.6
    com.apple.iokit.IOHIDFamily 1.5.5
    com.apple.driver.AppleACPIPlatform 1.2.5
    com.apple.iokit.IOACPIFamily 1.2.0
    com.apple.iokit.IOPCIFamily 2.6
    Message was edited by: qgi
    Message was edited by: qgi

    HI,
    Go here for help to Resolve Kernel Panics
    Carolyn

  • 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)

  • NVidia driver 185 black screens and 177 doesn't accelerate

    Hi,
    I just installed Arch for the first time. All was goodish untill nVidia let me down. 
    This is all with
    Xorg 1.6.2, and the graphics chipset is:
    GeForce 9500 GT
    There is trouble in two parts:
    part I:  driver 185  sucks hard
    I had to downgrade to nvidia-177 because of a bug I think is mentioned in the thread:
    http://bbs.archlinux.org/viewtopic.php?id=63281
    Except now it is with kernel 2.6.30 and driver 185.
    I quote:
    This morning, after some more attempts, I decided to re-install Arch.
    Finished installing, Installed Xorg, Installed Nvidia-180.22, tried to "startx", and nothing - black screen,
    nonresponsive mouse an keyboards, and the CPU sounds like it's going up the roof...
    (The thing about the CPU means a fan starts spinning hard.)
    This happens for just about any xorg.conf that actually uses the nvidia driver.  For example, I can run nvidia-xconfig, and optionally  comment out the "InputDevice" lines and this will still happen.
    There is no logfile at all.  Nor can I save anything on standard error.
    part II:  GoogleEarth (and others?)
    GoogleEarth performs really badly with the nVidia driver.  It's actually much faster with the open source drivers (but still not smooth). I haven't tried any other 3D applications in a fair test.
    This *might* be because the lib32-nvidia-utils (and hence libGL) does not come in a version for driver 177.
    Last edited by adrian.ratnapala (2009-07-27 21:32:24)

    Hmm, I am glad there are some new threads about blackscreening nVidias, because I am not sure it is really the same problem.  My particular sickness has three symptoms:
    1)   17x drivers work while 18x don't (180,185, whatever).
    2)    It not only black screens, but sets a fan (presumably the CPU fan) spinning hard.
    3)   There is no logging available after reboot, either on standard error, or to the system logs.
    Since the 17x drivers work, I'm just going to sit this one out.  One day I will upgrade to whatever is latest and see what happens.  I'm still disappointed that there are
    so many problems with the nVidia drivers.  I thought they were solid.
    Cheers.
    Last edited by adrian.ratnapala (2009-08-02 17:19:08)

  • 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 T-Shoot - New Install

    ...Hello.
    Just installed Arch on an office box and everything went great until I tried to access the Nvidia driver controls under XFCE4 after loading the nvidia-utils package.  The UI tells me that I "do not appear to be using the Nvidia Driver..."   I guess I'm still on Nouveau, despite following the path described in the Beginer's Guide.  Here are some system details:
    uname -a
    Linux 3.0-ARCH #1 SMP PREEMPT Wed Aug 17 21:55:57 CEST 2011 x86_64 Intel(R) Xeon(TM) CPU 3.00GHz GenuineIntel GNU/Linux
    lspci |grep VGA
    07:00.0 VGA compatible controller: nVidia Corporation NV43GL [Quadro FX 550] (rev a2)
    less /var/log/Xorg.0.log | grep -i nvidia
    [ 686.487] (II) Module glx: vendor="NVIDIA Corporation"
    [ 686.487] (II) NVIDIA GLX Module 280.13 Wed Jul 27 17:12:07 PDT 2011
    [ 686.488] (==) Matched nvidia as autoconfigured driver 2
    [ 686.490] (II) LoadModule: "nvidia"
    [ 686.490] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 686.491] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 686.495] (EE) NVIDIA: Failed to load the NVIDIA kernel module. Please check your
    [ 686.495] (EE) NVIDIA: system's kernel log for additional error messages.
    [ 686.496] (II) UnloadModule: "nvidia"
    [ 686.496] (II) Unloading nvidia
    [ 686.496] (EE) Failed to load module "nvidia" (module-specific error, 0)
    [ 686.498] (II) NOUVEAU driver for NVIDIA chipset families :
    [ 686.504] (--) NOUVEAU(0): Chipset: "NVIDIA NV43"
    [ 686.860] (EE) Failed to initialize GLX extension (Compatible NVIDIA X driver not found)
    ...tried generating an xorg.conf via nvidia-xconfig, and this is what it produced:
    =================
    # nvidia-xconfig: X configuration file generated by nvidia-xconfig
    # nvidia-xconfig: version 280.13 ([email protected]) Wed Jul 27 17:15:58 PDT 2011
    Section "ServerLayout"
    Identifier "Layout0"
    Screen 0 "Screen0"
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Mouse0" "CorePointer"
    EndSection
    Section "Files"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/psaux"
    Option "Emulate3Buttons" "no"
    Option "ZAxisMapping" "4 5"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Unknown"
    ModelName "Unknown"
    HorizSync 28.0 - 33.0
    VertRefresh 43.0 - 72.0
    Option "DPMS"
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    ==============
    ...for giggles,  tried to modprobe nvidia into the kernel, and got:
    FATAL: Module nvidia not found.
    ...any help would be greatly appreciated.  I don't expect to have this much driver difficulty when I install at home next week, and this office machine is really just a practice run.  I suspect that the driver issue might be at least partially down to the fact that this is maybe not one of Nvidia's more standard SOHO-market cards.  It came in this huge Dell workstation that weighs a ton...owell. 
    --Thanks
    Last edited by purple12 (2011-08-21 06:34:20)

    purple12,
    Sorry, I don't have access to a system with Nvidia.  As a moderator, may I request that you use bbcode code tags around program output.  It uses a monospaced font so that columns line up, and includes scroll bars for long passages.  Your readers will appreciate you.
    This text is in code tags. To see how I did this, you can use the "Quote" link after this post to see the source.
    Thanks.

  • [SOLVED] NVidia driver for Dell XPS1340 (GeForce 9400M G)

    Hi.
    I don't know which nvidia driver install for my laptop, Dell XPS 1340. Before i had installed nvidia-173xx but now this driver doesn't work with new xorg-server (http://mailman.archlinux.org/pipermail/ … 20001.html).
    I've kernel26-pae and i've install nvidia-pae driver, after installation i config with nvidia-xconfig but when i run startx i get this error:
    [ 1210.888] (--) Depth 24 pixmap format is 32 bpp
    [ 1217.522] (EE) NVIDIA(GPU-1): Failed to initialize the NVIDIA GPU at PCI:2:0:0. Please
    [ 1217.522] (EE) NVIDIA(GPU-1): check your system's kernel log for additional error
    [ 1217.522] (EE) NVIDIA(GPU-1): messages and refer to Chapter 8: Common Problems in the
    [ 1217.522] (EE) NVIDIA(GPU-1): README for additional information.
    [ 1217.522] (EE) NVIDIA(GPU-1): Failed to initialize the NVIDIA graphics device!
    [ 1217.523]
    Backtrace:
    [ 1217.523] 0: /usr/bin/X (xorg_backtrace+0x37) [0x80a38e7]
    [ 1217.523] 1: /usr/bin/X (0x8048000+0x5faea) [0x80a7aea]
    [ 1217.523] 2: (vdso) (__kernel_rt_sigreturn+0x0) [0xb779540c]
    [ 1217.523] 3: /usr/lib/xorg/modules/drivers/nvidia_drv.so (0xb52c3000+0x471698) [0xb5734698]
    [ 1217.523] Segmentation fault at address (nil)
    [ 1217.523]
    Fatal server error:
    [ 1217.523] Caught signal 11 (Segmentation fault). Server aborting
    [ 1217.523]
    [ 1217.523]
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 1217.523] Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 1217.523]
    lspci | grep VGA output is:
    02:00.0 VGA compatible controller: nVidia Corporation GT218 [GeForce G210M] (rev a2)
    03:00.0 VGA compatible controller: nVidia Corporation C79 [GeForce 9400M G] (rev b1)
    xorg.conf:
    # nvidia-xconfig: X configuration file generated by nvidia-xconfig
    # nvidia-xconfig: version 270.41.03 ([email protected]) Sat Apr 9 00:26:11 PDT 2011
    Section "ServerLayout"
    Identifier "Layout0"
    Screen 0 "Screen0"
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Mouse0" "CorePointer"
    EndSection
    Section "Files"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/psaux"
    Option "Emulate3Buttons" "no"
    Option "ZAxisMapping" "4 5"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Unknown"
    ModelName "Unknown"
    HorizSync 28.0 - 33.0
    VertRefresh 43.0 - 72.0
    Option "DPMS"
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    Can anybody help me?
    Thanks and best regards.
    Last edited by Pilli (2011-04-14 11:48:58)

    Hi.
    To fix this problem i've to edit the /boot/grub/menu.lst file and add to kernel line  vmalloc=192M option.
    More information here: http://us.download.nvidia.com/XFree86/L … ssues.html at Kernel virtual address space exhaustion on the X86 platform section.
    I hope this can help someone
    Thanks.

  • GeForce FX 5600 - LAST NVIDIA driver Resolution of screen

    Hi all,
    I have recently bought BattleField Vietnam and this game requiers the last NVIDIA Driver. I have downloaded them here : http://www.nvidia.com
    The game is OK but i have problems with my Resolution of screen... I can't  choose a resolution between 1024*768 and 1280*1024... It is either one or the other but not between  
    MSI doesn't proposes the last nvidia driver  
    PLEASE HELP ME.

    How can that be I just checked my game And I have 1152x864 in the list. Are you sure that your monitor supports that resilution?
    One thing you may try is Go and find a file called VideoDefault.con in your /mods/BfVietnam/settings Directory under Battlefield Vietnam open it with notepad and change this line renderer.allowAllRefreshRates 0 from 0 to 1 and save and close. This will now allow all refresh rates in the game.
    The game came with the 56.56 drivers not the 56.64 drivers

  • Tecra A4 - Blank Screen Sometimes After Resume

    Sometimes after a resume the laptop restarts with a blank screen. Nothing there but it's working if you know what I mean. For instance I can press FN+F1 (the screen switch off button) and the laptop will play the little tune indicating that the action has happened even though I can't see it. And no, the brighten/darken screen buttons have no effect. The screen is just off.
    If I hold down the start button to switch off and then press to reboot everything starts as normal.
    Anyone know why this sometimes happens?

    I was wondering if you could lend me a hand. I created a recovery DVD using the Recovery Tool that comes with the Tecra A4 and then asked to re-install the system. Stupid me, I didn't check to see if the DVD was ok before formatting my HD. Unfortunately, my DVD starts the installation and then hangs. I've called Toshiba, sent e-mails, done everything to see if they could send me a replacement recovery DVD but haven't had a response. Would you mind creating the DVD for me? I know it's a pain, but I cannot think of any thing else to do. I'm willing to buy the DVD from Toshiba but they won't respond to my e-mails. ANyway, I would be greatly in your debt if you could. If not, thanks for your time.

  • 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)

  • Blank screen appears after deploying and run?

    Hi,
    I have implemented a WD application i.e. a quiz application,
    1)i have a  t-layout
    2)Top segment has welcome iview
    3)left segment has question
    4)right has question mark image
    i have defined plugs and actions as well
    But when i deploy and run this application, only blank screen appears.Any ideas what i am missing?how to make it run??
    Thanks $ Regards,
    Ameya

    Hi Ameya.
    At the time of Comonent creation it will automatically creates a view and window.
    so you need to add[embed] your view to the window
    open window right click and select "embed view" and then select existing view
    select your view from the list
    rebulild the project and run
    Regards
    Chaitanya.A

Maybe you are looking for

  • Sending cfg via SNMP not working

    Hi, I am trying to send some configs using SNMP to a 7200 (using 12.4(21a)) and it fails me on the last command when trying to start the procedure, as follows: persio.pucci@tacacs:/tftpboot$snmpset -v2c -c COMUNITY 10.20.30.1 .1.3.6.1.4.1.9.9.96.1.1.

  • Why can't i log into icloud on my iphone

    I DROPPED MY PHONE AND THE SCREEN IS CRACKED AND HALF THE SCREEN IS BLACK AND RAINBOW. SO I'M TRYING TO BACKUP MY WHATSAPP CHATS ON ICLOUD BUT I CAN'T EVEN DO THAT BECAUSE STUPID ICLOUD IS TELLING ME THAT I NEED AN APPLE ID WHEN I TRY TO SIGN IN ON M

  • Authentication error occurred code 8007ffff

    When attempting to access Windows 2012 R2 server using Remote Desktop on another Windows 2012 R2, I receive this message: authentication error occurred code 8007ffff. Windows 7 doesn't have this problem. Bob Lin, MCSE & CNE Networking, Internet, Rout

  • /dev/null issues

    Hello All, I have an issue since the last couple Leopard updates that I can't seem to get a handle on and think I am out of my element here so any advice appreciated. I run 2 scripts every 10 minutes for the past 3 years and always had good results w

  • RoboHelp 7 with RoboSource 3.1 upgrading to RoboHelp 10

    Hello,      I am looking into upgrading RoboHelp 7 to RoboHelp 10 and it looks like the same RoboSource 3.1 is used. Can someone confirm this? I would also like to know if I make a copy of the RoboSource database can I connect RoboHelp 10 to the copy