LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu
User Name
Password
Ubuntu This forum is for the discussion of Ubuntu Linux.

Notices


Reply
  Search this Thread
Old 04-30-2008, 09:34 AM   #1
KrGAce
Member
 
Registered: Dec 2004
Location: Vermont
Distribution: Ubuntu
Posts: 58

Rep: Reputation: 15
My Xorg may be broken?


Hello,

I have a Latitude (Dell) d830 and I am running Hardy, and everytime I enable the Nvidia driver (Quadra NVS 140) the machine reboots and I have a grey screen with a black bar down the middle. Having looked at my Xorg.conf file (not knowing much about it) it looks like it's missing some information. I wondered if someone could look and see any problems. It is below..

# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg

Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection

Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Emulate3Buttons" "true"
EndSection

Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "HorizEdgeScroll" "0"
EndSection

Section "Device"
Identifier "Configured Video Device"
EndSection

Section "Monitor"
Identifier "Configured Monitor"
EndSection

Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
EndSection

Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Synaptics Touchpad"
EndSection



Many thanks in advance. Also, obviously because of this, I cannot get Desktop Effects to work without the NVidia driver.

AceMan

AceMan
 
Old 04-30-2008, 10:39 AM   #2
Chromezero
Member
 
Registered: Nov 2004
Location: Arizona
Distribution: Slackware, RHEL, others
Posts: 470

Rep: Reputation: 40
Have you tried...
Code:
nvidia-xconfig
Running this has fixed a lot of xconfig problems I've encountered when dealing with Nvidia drivers.
 
Old 04-30-2008, 10:51 AM   #3
KrGAce
Member
 
Registered: Dec 2004
Location: Vermont
Distribution: Ubuntu
Posts: 58

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by Chromezero View Post
Have you tried...
Code:
nvidia-xconfig
Running this has fixed a lot of xconfig problems I've encountered when dealing with Nvidia drivers.

If I can't load the nvidia driver, then this doesn't do me much good, right? I load the driver, reboot and I have a gray screen with a black bar down the middle. I have also tried EnvyNG with the same result.


AceMan
 
Old 04-30-2008, 11:00 PM   #4
budword
Member
 
Registered: Apr 2003
Location: Wisconsin
Distribution: Switched to regualr Ubuntu, because I don't like KDE4, at all. Looks like vista on crack.....
Posts: 675

Rep: Reputation: 31
Hi, I'm assuming you are using the nv driver. Assuming, because it DOESN'T say in xorg.conf like it should. I have the same problem, I can't load the nvidia driver, so I checked out xorg.conf to change it, like I have for every other version of Kubuntu I've used. That entire section just isn't there, but the nv driver seems to working just fine, and I can boot and use the OS, so something is getting the job done anyway. So I figured that they changed the video config file to something else with the new version of Ubuntu. Except I can't find any mention of it on google, so far.

Anyone know what is up ? Here is my xorg.conf, if anyone thinks it'll help.....

# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg

Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection

Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
EndSection

Section "Device"
Identifier "Configured Video Device"
EndSection

Section "Monitor"
Identifier "Configured Monitor"
EndSection

Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
EndSection

Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
EndSection
 
Old 05-01-2008, 03:25 PM   #5
Chromezero
Member
 
Registered: Nov 2004
Location: Arizona
Distribution: Slackware, RHEL, others
Posts: 470

Rep: Reputation: 40
I appologize, I'm used to booting into a console and not an X server. In /etc/inittab you should see a line similiar to...
Code:
id:5:initdefault:
This can be changed to runlevel 3 or whatever your distro needs to boot into a non-graphical mode. From that point you can make changes to your xorg.conf file and use "startx" to start the X server. Also you can test your Nvidia driver without having to reboot every time and allows you to run the "nvidia-xconfig" without being in graphical mode. There may be something new with Ubuntu that I'm not familiar with, but there should be a section in xorg.conf defining the driver to be used. If you're using the official Nvidia driver, you'll need to change "nv" to "nvidia". This is done when the "nvidia-xconfig" command is run.

Code:
Section "Device"
        Identifier  "Videocard0"
        Driver      "nvidia"
EndSection

Last edited by Chromezero; 05-01-2008 at 08:12 PM.
 
Old 05-01-2008, 05:29 PM   #6
budword
Member
 
Registered: Apr 2003
Location: Wisconsin
Distribution: Switched to regualr Ubuntu, because I don't like KDE4, at all. Looks like vista on crack.....
Posts: 675

Rep: Reputation: 31
This did the trick for me....

http://www.funnestra.org/ubuntu/hardy/#nvidia-driver

Let us know how it went......

David
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
no display: Xorg, Nvidia driver broken after Etch update; Failed to load module "glx" forgox Debian 19 07-12-2010 12:26 PM
Medion MIM 2310 powersoff without Xorg...when Xorg installed does not power off. gluesniffmonkey Linux - Laptop and Netbook 6 12-04-2007 07:28 PM
Sid Users - Beware of Xorg 7.3 (xserver-xorg-input-evdev) bug rickh Debian 4 10-24-2007 03:30 AM
How to repair a broken xorg.conf. incomingfire Linux - Hardware 2 12-06-2006 02:58 PM
xorg broken in dapper drake. greythorne Ubuntu 3 02-14-2006 11:42 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu

All times are GMT -5. The time now is 07:40 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration