LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian
User Name
Password
Debian This forum is for the discussion of Debian Linux.

Notices


Reply
  Search this Thread
Old 08-22-2006, 05:55 PM   #1
revenge80200
Member
 
Registered: Mar 2004
Location: Chicago
Distribution: Lenny & Xp
Posts: 238

Rep: Reputation: 30
Etch install: Avoid Xorg problems


Top of the morning everyone,

I had been happily running Etch for about a year, when a apt-get dist-upgrade left my system in pieces. In particular, Xfree86 to Xorg was all messed up; the system was working, but not the GUI.
So I gave a couple of other distros a try, they are nice, but I'll stick with Debian.

The question: I am running a basic dell demension 2400 P4 with a 64mb Nvidia PCI Graphic card, GeForce MX 420. All of which worked nicely previously with Etch, that is before the update of Xfree86 to Xorg. I am thinking of giving the Etch beta 3 a try. I looked at the known issuses and I think it looks safe. Any ideas?

Thanks
EEK.
 
Old 08-22-2006, 08:17 PM   #2
rickh
Senior Member
 
Registered: May 2004
Location: Albuquerque, NM USA
Distribution: Debian-Lenny/Sid 32/64 Desktop: Generic AMD64-EVGA 680i Laptop: Generic Intel SIS-AC97
Posts: 4,250

Rep: Reputation: 62
The only way you get Xfree86/Xorg issues is if you upgrade from Sarge to Etch. A fresh install of Etch should give you no problems.
 
Old 08-23-2006, 11:54 AM   #3
hitest
Guru
 
Registered: Mar 2004
Location: Canada
Distribution: Void, Debian, Slackware
Posts: 7,342

Rep: Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746
I've been very happy with Etch beta 3. I did a clean install of beta 3 and have not had any issues with it. Etch beta 3 is a winner:-)
 
Old 08-23-2006, 12:14 PM   #4
utanja
Member
 
Registered: Apr 2004
Location: Europe:Salzburg Austria USA:Orlando,Florida;
Distribution: Debian
Posts: 643

Rep: Reputation: 32
Quote:
Originally Posted by rickh
The only way you get Xfree86/Xorg issues is if you upgrade from Sarge to Etch. A fresh install of Etch should give you no problems.
agreed.....i had much problems upgrading from Sarge to Etch...but fresh install works perfect...
 
Old 08-23-2006, 04:01 PM   #5
revenge80200
Member
 
Registered: Mar 2004
Location: Chicago
Distribution: Lenny & Xp
Posts: 238

Original Poster
Rep: Reputation: 30
Okay, etch beta 3 it is. I'll give it a try right now.
 
Old 08-24-2006, 03:14 PM   #6
revenge80200
Member
 
Registered: Mar 2004
Location: Chicago
Distribution: Lenny & Xp
Posts: 238

Original Poster
Rep: Reputation: 30
Alright, I did the install under expert only so I could choose the specifications for my monitor, a Dell E151FPb, nothing really intersting, and the result is: X is still not working. I did the dpkg -reconfigure -a xserver-xorg and everything that I can think of is setup up correctly, or at least as safe as could be. But X is still really messed up. For example, when I did the reconfigure, the end result shot out something to the effect of: Xorg has been customizied, changes will not be written.

I've been hung up on this on for a while, I am thinking of just installing sarge, but I am worried of what is going to happen when etch is released as the stable version; am I going to loose my system again?

Any ideas are welcome.

Thanks for the help,
EEK
 
Old 08-24-2006, 03:35 PM   #7
rickh
Senior Member
 
Registered: May 2004
Location: Albuquerque, NM USA
Distribution: Debian-Lenny/Sid 32/64 Desktop: Generic AMD64-EVGA 680i Laptop: Generic Intel SIS-AC97
Posts: 4,250

Rep: Reputation: 62
Post about this much of your /etc/X11/xorg.conf file
Code:
Section "Device"
        Identifier      "ATI Technologies, Inc. Radeon Xpress 200 (RS480)"
        Driver          "ati"
        Option "AccelMethod" "exa"
EndSection

Section "Extensions"
    Option "Composite" "enable"
EndSection

Section "Monitor"
        Identifier      "WDE LCM-19v1"
        Option          "DPMS"
EndSection

Section "Screen"
        Identifier      "Default Screen"
        Device          "ATI Technologies, Inc. Radeon Xpress 200 (RS480)"
        Monitor         "WDE LCM-19v1"
        DefaultDepth    24
        SubSection "Display"
                Depth           1
                Modes           "1280x1024" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
        EndSubSection
 
Old 08-24-2006, 04:09 PM   #8
revenge80200
Member
 
Registered: Mar 2004
Location: Chicago
Distribution: Lenny & Xp
Posts: 238

Original Poster
Rep: Reputation: 30
Section "Device"
Identifier "intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device"

Driver "i810"
BusID "PCI:1:6:0"
End Section

Sectin Monitor
ID Dell E151PFB

options dpms
End Section

Section Screen
ID Default Screen
Device intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device"
Monitor Dell E151FPb
Defualt Depth 24
Subsection Display
Depth 4
Modes 1024x768 blah blah....

I know that the driver is incorrect, it shold be nv
As well, the device is wrong for the screen, but I am not able to change it.

EEK
 
Old 08-24-2006, 04:36 PM   #9
rickh
Senior Member
 
Registered: May 2004
Location: Albuquerque, NM USA
Distribution: Debian-Lenny/Sid 32/64 Desktop: Generic AMD64-EVGA 680i Laptop: Generic Intel SIS-AC97
Posts: 4,250

Rep: Reputation: 62
Quote:
I know that the driver is incorrect, it shold be nv
As well, the device is wrong for the screen, but I am not able to change it.
Sure you can. If you're not comfortable with vi use nano.

As root ... nano /etc/X11/xorg.conf

For the time being, change only the driver ... to "vesa"

Save xorg.conf and reboot ... if that works better we're off to a good start, but as near as I can tell xorg is not recognizing your Nvidia card ... that's an issue for after you get some kind of X working.

Last edited by rickh; 08-24-2006 at 04:39 PM.
 
Old 08-24-2006, 06:31 PM   #10
revenge80200
Member
 
Registered: Mar 2004
Location: Chicago
Distribution: Lenny & Xp
Posts: 238

Original Poster
Rep: Reputation: 30
Well, I'll be damned: veas did not work, though nv did. I am not sure as to why it did not work through dpkg -reconfigure, but that doesn't really matter too much now.

That helps, thanks everone
Thanks richk
EEK
 
  


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 nVidia 3D acceleration using Xorg 7, Etch tvynr Debian 9 09-06-2006 06:47 PM
Etch Xorg 7 and fonts cougyr Debian 13 08-19-2006 09:38 PM
dependency/configuration problems trying to install xen on etch kpachopoulos Debian 2 08-19-2006 12:02 PM
xorg replacing xfree86 on Sarge/Etch causing upgrade problems farpoint Debian 5 06-29-2006 09:45 PM
multi screen etch and xorg.conf knobby67 Debian 2 06-23-2006 12:54 PM

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

All times are GMT -5. The time now is 05:57 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