LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 04-28-2008, 02:56 PM   #16
phantom_cyph
Senior Member
 
Registered: Feb 2007
Location: The Tropics
Distribution: Slackware & Derivatives
Posts: 2,472

Original Poster
Blog Entries: 1

Rep: Reputation: 128Reputation: 128

OK, heres the xorg.conf. I just tried to plug my DVI cord into my monitor and it said it was "out of range". I have a Hanns-G HW191D, I'm gonna look for the max DVI resolution so I know what I can set it for..

..I just looked at Newegg, and they sell it (see here), but it says recommended resolution is 1440x900, which is what I have it on for VGA. I didn't see a different res for DVI. Is this due to the AGP problem possibly?

Last edited by phantom_cyph; 04-28-2008 at 03:00 PM.
 
Old 04-28-2008, 04:09 PM   #17
phantom_cyph
Senior Member
 
Registered: Feb 2007
Location: The Tropics
Distribution: Slackware & Derivatives
Posts: 2,472

Original Poster
Blog Entries: 1

Rep: Reputation: 128Reputation: 128
Hmm...since I don't know where to start as far as this agp section, I could use a little help.
 
Old 04-28-2008, 05:00 PM   #18
H_TeXMeX_H
LQ Guru
 
Registered: Oct 2005
Location: $RANDOM
Distribution: slackware64
Posts: 12,928
Blog Entries: 2

Rep: Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301
Have you tried running 'xorgsetup' or 'xorgcfg' ? Maybe they will automatically configure it properly. It says in 'man mga' that the driver support hardware acceleration, which is good.

Usually if it says "out of range" it means you haven't defined the HorizSync and VertRefresh rates properly. Usually 'xorgsetup' will detect these, or you can look in the manual to your monitor and set them yourself. I notice you have commented these out in your xorg.conf.
 
Old 04-28-2008, 07:13 PM   #19
phantom_cyph
Senior Member
 
Registered: Feb 2007
Location: The Tropics
Distribution: Slackware & Derivatives
Posts: 2,472

Original Poster
Blog Entries: 1

Rep: Reputation: 128Reputation: 128
I ran both of them, but to no avail. I found another guy with the same monitor that had a Horiz of 56.1 and a Vert of 60. Tried those, nothing doing. I saw on another site the resolution for the DVI is 1280x1024. Also, according to C|Net, its AGP 4x (see here).
 
Old 04-28-2008, 09:27 PM   #20
phantom_cyph
Senior Member
 
Registered: Feb 2007
Location: The Tropics
Distribution: Slackware & Derivatives
Posts: 2,472

Original Poster
Blog Entries: 1

Rep: Reputation: 128Reputation: 128
OK, its working now, but I'm having an...awkward problem. I changed my xorg.conf file so it included 1024x768, and it actually started, however, I'm when I take my mouse up to the top of the screen, or either side, it kind of "scrolls" the screen. Like, I'm still using 1440x900 except only looking at a portion of it at one time. It very good graphics though :-D. Know how to solve this one?

Its clear, but I still get the lag. Evidently I am missing something.

Last edited by phantom_cyph; 04-28-2008 at 09:30 PM.
 
Old 04-29-2008, 06:46 AM   #21
H_TeXMeX_H
LQ Guru
 
Registered: Oct 2005
Location: $RANDOM
Distribution: slackware64
Posts: 12,928
Blog Entries: 2

Rep: Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301
So, did you run 'xorgsetup' ? You should at least try it once.

Also, what is the output of
Code:
glxinfo | grep direct
it should say
Code:
direct rendering: Yes
.
 
Old 04-29-2008, 11:40 AM   #22
phantom_cyph
Senior Member
 
Registered: Feb 2007
Location: The Tropics
Distribution: Slackware & Derivatives
Posts: 2,472

Original Poster
Blog Entries: 1

Rep: Reputation: 128Reputation: 128
I did try xorgsetup but I didn't configure anything really. It just said it'd try to detect my card, then it when on about keyboard and mouse config. I'll run it again when home and try to remember the exact output to put on here.

Does the direct rendering have anything to do with the AGP configuration?

I did a search of my uploaded xorg.conf and didnt find any AGP anything.

Last edited by phantom_cyph; 04-29-2008 at 12:11 PM.
 
Old 04-29-2008, 01:40 PM   #23
farslayer
LQ Guru
 
Registered: Oct 2005
Location: Northeast Ohio
Distribution: linuxdebian
Posts: 7,249
Blog Entries: 5

Rep: Reputation: 191Reputation: 191
if your xorg.conf looks like this..

Code:
    Subsection "Display"
        Depth       24
        Modes "1440x900" "1280x1024"
    EndSubsection
Reverse the resolutions and restart X

Code:
    Subsection "Display"
        Depth       24
        Modes "1280x1024" "1440x900" 
    EndSubsection
the scrolling effect (1280x1024 visible on 1440x900 Desktop) should disappear.

In your xorg.conf "Module" section you may want to try adding Load "dri" to enable direct rendering.
Code:
Section "Module"

       Load     "dri"

dri troubleshooting
 
Old 04-29-2008, 02:31 PM   #24
phantom_cyph
Senior Member
 
Registered: Feb 2007
Location: The Tropics
Distribution: Slackware & Derivatives
Posts: 2,472

Original Poster
Blog Entries: 1

Rep: Reputation: 128Reputation: 128
My output is:
Quote:
direct rendering: No
OpenGL renderer string: Mesa GLX Indirect
I just tried to change it to:

Code:
Subsection "Display"
        Depth       24
        Modes "1280x1024" "1024x768" 
EndSubsection
But once again, it said "Input Signal Out of Range". I also tried to use the specific driver "mgag550", but it said there wasn't one. I am beginning to wonder if it is actually reading the card right.

Last edited by phantom_cyph; 04-29-2008 at 02:46 PM.
 
Old 04-29-2008, 04:49 PM   #25
phantom_cyph
Senior Member
 
Registered: Feb 2007
Location: The Tropics
Distribution: Slackware & Derivatives
Posts: 2,472

Original Poster
Blog Entries: 1

Rep: Reputation: 128Reputation: 128
Hello? This may seem trivial to everyone, but I have some work I have to do and I can't do it till I have this fixed.
 
Old 04-29-2008, 05:15 PM   #26
H_TeXMeX_H
LQ Guru
 
Registered: Oct 2005
Location: $RANDOM
Distribution: slackware64
Posts: 12,928
Blog Entries: 2

Rep: Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301
Can you post the new 'xorg.conf' ?

Try changing the hsync and vrefresh to wider ranges and lower the resolution some, do you really need it that high ?

It looks like it's not using direct rendering, unfortunately I don't know how to enable it, it should already be enabled. Try searching for a way to enable it. (I must go to sleep now)
 
Old 04-29-2008, 05:51 PM   #27
IsaacKuo
Senior Member
 
Registered: Apr 2004
Location: Baton Rouge, Louisiana, USA
Distribution: Debian Stable
Posts: 2,546
Blog Entries: 8

Rep: Reputation: 465Reputation: 465Reputation: 465Reputation: 465Reputation: 465
Quote:
Originally Posted by H_TeXMeX_H View Post
Also, what is the output of
Code:
glxinfo | grep direct
it should say
Code:
direct rendering: Yes
.
Why should it say "Yes"? His current card is a Matrox, which I don't think has any 3d acceleration support.
 
Old 04-29-2008, 07:41 PM   #28
phantom_cyph
Senior Member
 
Registered: Feb 2007
Location: The Tropics
Distribution: Slackware & Derivatives
Posts: 2,472

Original Poster
Blog Entries: 1

Rep: Reputation: 128Reputation: 128
Quote:
Originally Posted by H_TeXMeX_H View Post
Can you post the new 'xorg.conf' ?

Try changing the hsync and vrefresh to wider ranges and lower the resolution some, do you really need it that high ?

It looks like it's not using direct rendering, unfortunately I don't know how to enable it, it should already be enabled. Try searching for a way to enable it. (I must go to [URL="http://www.geocities.com/fluxnuk3r/xorg.txt"]sleep now)
I have a 19" widescreen. The lowest I want to go is 1280x1024.

Heres the new xorg.conf...


BTW-Thanks for responding. I have a lot of stuff I have to get done soon. The sooner this is done, the better.
 
Old 04-29-2008, 08:11 PM   #29
IsaacKuo
Senior Member
 
Registered: Apr 2004
Location: Baton Rouge, Louisiana, USA
Distribution: Debian Stable
Posts: 2,546
Blog Entries: 8

Rep: Reputation: 465Reputation: 465Reputation: 465Reputation: 465Reputation: 465
I see that you don't have any horizsync or vertrefresh rates specified. Many LCD monitors don't like a vertrefresh rate above 60. I'd recommend adding in something like:

HorizSync 30-80
VertRefresh 59-60

Make sure you use the mga driver. Don't worry about direct rendering. It's a Matrox card, and I don't think they have 3d accelerated graphics capability. Even if they do, I doubt mga supports any. AFAIK, only Ati and Intel onboard graphics have 3d capability with the open source drivers.

Also, try reducing the default color depth to 16. The Matrox card you have MIGHT not be able to handle 1440x900 resolution in 24 bit. Maybe. I have some Matrox cards which can't go higher than 1024x768 in 24 bit, but they're really old.
 
Old 04-29-2008, 08:29 PM   #30
phantom_cyph
Senior Member
 
Registered: Feb 2007
Location: The Tropics
Distribution: Slackware & Derivatives
Posts: 2,472

Original Poster
Blog Entries: 1

Rep: Reputation: 128Reputation: 128
Well, I made most/all of those changes to look in the end like this. Which...didn't work. I made 16 bit the default depth, then added the resolution of 1280x1024. (side note: even the 1024x768 on 16-bit didn't work.)

What now?
 
  


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
Digital TV card conflicts with graphics card and hard disk ptay1685 Linux - Hardware 0 11-11-2006 05:39 PM
getting graphics card to be used instead of integrated graphics Shaun32 Fedora - Installation 5 02-18-2005 03:33 PM
agp graphics card detected as pci card Matthewrowland Linux - Hardware 1 08-22-2003 03:28 PM
a good tv tuner card and graphics card match mpo Linux - Hardware 2 03-01-2003 01:45 PM
redhat 7.3 and the ati pro card graphics card rjmagyar Linux - General 0 10-14-2002 12:26 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

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