LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 06-03-2008, 06:01 PM   #31
steve5673
LQ Newbie
 
Registered: May 2008
Posts: 20

Original Poster
Rep: Reputation: 0

Hard drive just cashed - trying to recover - if not a new one on is in order. As it's a SCSI it will take a week or so to replace, and would therefore appreciate your help when I get back up and running again. thks.
 
Old 06-03-2008, 07:02 PM   #32
steve5673
LQ Newbie
 
Registered: May 2008
Posts: 20

Original Poster
Rep: Reputation: 0
Section "Device"
Identifier "ATI Technologies Inc ATI Default Card"
# added radeon driver, # out vesa
Driver "radeon"
# Driver "vesa"
BusID "PCI:1:0:0"
EndSection

Section "Monitor"
Identifier "DELL E198WFP"
Option "DPMS"
#added horizsync and vertrefresh
HorizSync 24-92
VertRefresh 50-70
EndSection

Section "Screen"
Identifier "Default Screen"
Device "ATI Technologies Inc ATI Default Card"
Monitor "DELL E198WFP"
DefaultDepth 24
SubSection "Display"
Depth 24
# added 1440x900 and deleted all depths except for 24
Modes "1440x900" "1440x1440" "1280x1024" "1152x864" "$ EndSubSection
EndSection

Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection


Here's a copy of xorg.conf, before I try and run it, as usually this cashes Xserver and I'll only be able to use the terminal.
I'll run this and let you know.
 
Old 06-03-2008, 07:07 PM   #33
steve5673
LQ Newbie
 
Registered: May 2008
Posts: 20

Original Poster
Rep: Reputation: 0
Xserver cashed with an Error message (EE) No devices detected
 
Old 06-03-2008, 11:20 PM   #34
pixellany
LQ Veteran
 
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809

Rep: Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743
All I can see is that the Display SubSection has an extra "$ before the end. It needs to look like this:

Code:
Section "Screen"
Identifier "Default Screen"
Device "ATI Technologies Inc ATI Default Card"
Monitor "DELL E198WFP"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1440x900" 
EndSubSection
EndSection
I removed a few other things too--for simplicity. I would also modify the "Device section like so:

Code:
Section "Device"
Identifier "ATI Technologies Inc ATI Default Card"
Driver "radeon"
EndSection
I don't know if this will make a difference--I'm just trying to eliminate variables.

Finally, after doing all this and trying again, please post the full error messages. You can find these at the end of the file /var/log/Xorg.0.log


PS: You can also try xorgconfig. (In a terminal, as root)

Last edited by pixellany; 06-03-2008 at 11:21 PM.
 
Old 06-04-2008, 09:07 AM   #35
Emerson
LQ Sage
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,661

Rep: Reputation: Disabled
Two more cents. Try commenting out sync lines, this will force Xorg to use DDC.

Section "Monitor"
Identifier "DELL E198WFP"
Option "DPMS"
#added horizsync and vertrefresh
# HorizSync 24-92
# VertRefresh 50-70
EndSection
 
Old 06-05-2008, 04:37 AM   #36
steve5673
LQ Newbie
 
Registered: May 2008
Posts: 20

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by Emerson View Post
Two more cents. Try commenting out sync lines, this will force Xorg to use DDC.

Section "Monitor"
Identifier "DELL E198WFP"
Option "DPMS"
#added horizsync and vertrefresh
# HorizSync 24-92
# VertRefresh 50-70
EndSection
I tried adding and deleting these two lines HorizSync and VertRefresh and has no effect at all on the performance. The only item that has an effect is the driver selection. If I try anything else, "ati, radeon, fglrx" other than "vesa" the Xserver crashes on start up and I have to use the terminal.
 
Old 06-05-2008, 04:49 AM   #37
steve5673
LQ Newbie
 
Registered: May 2008
Posts: 20

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by pixellany View Post
All I can see is that the Display SubSection has an extra "$ before the end. It needs to look like this:

Code:
Section "Screen"
Identifier "Default Screen"
Device "ATI Technologies Inc ATI Default Card"
Monitor "DELL E198WFP"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1440x900" 
EndSubSection
EndSection
I removed a few other things too--for simplicity. I would also modify the "Device section like so:

Code:
Section "Device"
Identifier "ATI Technologies Inc ATI Default Card"
Driver "radeon"
EndSection
I don't know if this will make a difference--I'm just trying to eliminate variables.

Finally, after doing all this and trying again, please post the full error messages. You can find these at the end of the file /var/log/Xorg.0.log


PS: You can also try xorgconfig. (In a terminal, as root)
Using anything other than "vesa" as the driver crashes Xserver on start up and I have to use the terminal.

Back to basics again.
In terminal mode, how do read the '/var/log/Xorg.0.log' file as if I enter 'ls /var/log/Xorg.0.log' I just return back the command prompt?

Additionally, basics again, how do I in terminal mode, capture the contents of these file and post their contents?
 
Old 06-05-2008, 05:45 AM   #38
pixellany
LQ Veteran
 
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809

Rep: Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743
steve;

Since you obviously are motivated to conquer this new beast, take the time to learn the basic terminal commands. I gave you a few teasers in an earlier post but now it's time for a book. I recommend "Linux in Nutshell" from O'Reilly, and "BASH Guide for Beginners" by Machtelt Garrels. (free at http://tldp.org)

To read the contents of a file, there is the "more" command---and of course the "nano" editor (Which you already used to change a file---n'est-ce pas?)

In your particular situation, you might benefit from one of the distros that sets things up more automatically than does Debian. consider trying Ubuntu, Fedora, or OpenSUSE.

Whatever you do, stay with it. In the long run, you will be the winner.
 
Old 06-05-2008, 06:17 AM   #39
steve5673
LQ Newbie
 
Registered: May 2008
Posts: 20

Original Poster
Rep: Reputation: 0
Thanks - I have to learn, and have got numerous books and stuff off the web already and will get the ones recommended.

I did get the fglrx driver loaded after doing searches on the debian site and setting up a new ftp server in the sources file to load updates, so I'm getting there.

I going to do some more web searches for similar problems to mine to see if there's anything else we should be doing, when I did look yesterday, there seems to be something in adding the "modeline" line in 'xorg.conf' that we tried earlier.

Also I noticed that running 'lspci -nn|grep VGA' it comes back with 'VGA compatible controller [0300]: ATI Technologies Inc Unknown device [1002:94c4]' so not sure if this has a bearing on my problem or not.
 
Old 06-05-2008, 06:21 AM   #40
steve5673
LQ Newbie
 
Registered: May 2008
Posts: 20

Original Poster
Rep: Reputation: 0
I also may try Ubuntu on this PC as i have it on several others. I try it just to see what the differences are.

As I've got several PC's to play with and learn, I can easily change distro's without upsetting anything.
 
Old 06-05-2008, 06:34 AM   #41
pixellany
LQ Veteran
 
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809

Rep: Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743
Good Luck!!!
 
Old 06-05-2008, 06:37 AM   #42
Emerson
LQ Sage
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,661

Rep: Reputation: Disabled
Quote:
Also I noticed that running 'lspci -nn|grep VGA' it comes back with 'VGA compatible controller [0300]: ATI Technologies Inc Unknown device [1002:94c4]' so not sure if this has a bearing on my problem or not.
This does not pose any problem, lspci uses it's own database and yours is out of date. Try to run update-pciids.

Hey Steve, you are doing good!
 
  


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
1440 x 900 in Framebuffer swampdog2002 Slackware 2 06-07-2007 09:55 AM
Need to get 1440 x 900 dpsource Linux - Hardware 12 11-24-2006 01:43 AM
debian 1440*900 (16:9 screen) elwoodblues Linux - Laptop and Netbook 6 10-11-2005 03:33 PM
brother 1440 geekdug Linux - Hardware 2 03-10-2003 08:51 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

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