LinuxQuestions.org
Help answer threads with 0 replies.
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 07-18-2012, 07:53 PM   #1
mamenewb100
LQ Newbie
 
Registered: Jul 2012
Posts: 6

Rep: Reputation: Disabled
Help with xorg.conf editing for arcade monitor friendly resolutions


Would anyone happen to how to put the specs of a Makvision 2929D Arcade Monitor with Arcade VGA Video card into xorg.conf in Linux so I can change boot video resolution? The xorg.conf file is blank, so I'm not sure what to enter.

Problem is I'm trying to run GroovyArcadeLinux and my monitor goes out of range because Linux doesn't detect my display properly. Anyone know some generic code I can use to edit the xorg config file that would work for booting with a low res setting like 800x600 at startup? I know how to the program VIM.

If it helps my monitor specs are 800x600 max resolution, 30-40 Khz horizontal, 47-90 Hz vertical refresh rate. I'd like to have 16-bit video mode with 640x480 @ 60 Hz.

Even just a generic setting that will boot at low res is fine. Arcade VGA is an ATI card with modified drivers. Thanks.
 
Old 07-18-2012, 10:31 PM   #2
linuxStudent11
Member
 
Registered: Jun 2007
Posts: 164

Rep: Reputation: 18
You might try http://curubuntu.binghamton.edu/XORG...rg_config.html

Another thing is just to google for say "generic xorg.conf". There are many examples on the web. But the first link above may generate exactly what you want.

Is this a really small system that it has no xorg.conf provided?
 
Old 07-18-2012, 10:35 PM   #3
linuxStudent11
Member
 
Registered: Jun 2007
Posts: 164

Rep: Reputation: 18
http://curubuntu.binghamton.edu/XORG...rg_config.html

Previous url got eaten by android
Try again
 
Old 07-19-2012, 10:56 AM   #4
mamenewb100
LQ Newbie
 
Registered: Jul 2012
Posts: 6

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by linuxStudent11 View Post
You might try http://curubuntu.binghamton.edu/XORG...rg_config.html

Another thing is just to google for say "generic xorg.conf". There are many examples on the web. But the first link above may generate exactly what you want.

Is this a really small system that it has no xorg.conf provided?
This is a special linux distribution that came with a program named "GroovyArcadeLinux". It probably comes with bare bones setup options.

I noticed there is a XORG.CONF.NEW file in root that actually has a ton of setup options in it. The system seems to ignore the regular xorg.conf. Could be setup to look for different file or something. It's all so confusing.

I'm just wanting Linux to boot with a real basic setting of 640x480 @ 60Hz . It shouldn't be difficult but I know it depends on specific hardware setting.

If there is some easier generic boot setting that works, I'd go with that. Otherwise any edits I've tried so far haven't seemed to have any effect. It just picks a default resolutiin that is way too high for my monitor.
 
Old 07-19-2012, 11:15 AM   #5
cynwulf
Senior Member
 
Registered: Apr 2005
Posts: 2,727

Rep: Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367
Try this one I knocked together

/etc/X11/xorg.conf
Code:
Section "Monitor"
	Identifier	"Monitor0"
	HorizSync       30-40
	VertRefresh     47-90
EndSection

Section "Device"
	Identifier	"Card0"
	Driver	"vesa"
EndSection

Section "Screen"
	Identifier	"Screen0"
	Monitor		"Monitor0"
	Device		"Card0"
	DefaultDepth	16
	SubSection      "Display"
		Depth           16
		Modes           "640x480_60"
	EndSubSection
EndSection
Do you know what the graphics adapter is? There may be something more suitable than the vesa driver, but it's a starting point anyway.

//edit: I see you say it's some kind of ATI graphics, you could try the "ati" driver which is wrapper which should select the best driver automatically, but see if it works and gives the correct resolution and refresh rate with the vesa driver first.

Last edited by cynwulf; 07-19-2012 at 11:18 AM.
 
Old 07-19-2012, 01:45 PM   #6
mamenewb100
LQ Newbie
 
Registered: Jul 2012
Posts: 6

Original Poster
Rep: Reputation: Disabled
Thank You for trying to help Caravel. Your setting actually did do something. With the "vesa" command, when I rebooted it booted into Linux but there was no desktop display. But if I replaced vesa with "radeon" than it would display but it was still the default resolution that I don't want.

I think my video card drivers take override the vesa ones.
 
Old 07-19-2012, 03:24 PM   #7
linuxStudent11
Member
 
Registered: Jun 2007
Posts: 164

Rep: Reputation: 18
Sounds like the X system died trying to determine a driver for "vesa".
How 'bout trying "svga" or even "vga" or "none" or "" or even comment out that line (with a #)?
 
Old 07-19-2012, 04:34 PM   #8
mamenewb100
LQ Newbie
 
Registered: Jul 2012
Posts: 6

Original Poster
Rep: Reputation: Disabled
my xorg.conf settings

Thanks for the reply. I was able to create an xorg.conf file that shows my setup that may make things easier. Notice that "vesa" is assigned to "card2" in my settings. As Card0 is assigned 2 radeon.
Attached Files
File Type: txt xorg.txt (7.1 KB, 34 views)
 
Old 07-20-2012, 08:58 AM   #9
mamenewb100
LQ Newbie
 
Registered: Jul 2012
Posts: 6

Original Poster
Rep: Reputation: Disabled
Well I was able to figure out that the problem is not XORG but the fact that XORG is not running in the Arch Linux shell opening menu. For example if I do the command "sudo xrandr" it displays the message "can't open display". Xorg only runs when I execute a program and I can't use the command line when a program is running.

I've heard from others that Xorg should always be running?

Last edited by mamenewb100; 07-20-2012 at 09:01 AM.
 
Old 07-21-2012, 05:19 PM   #10
linuxStudent11
Member
 
Registered: Jun 2007
Posts: 164

Rep: Reputation: 18
In that case, just issue the "startx" command or call xinit directly like the way startx does it.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
Help with xorg.conf editing for arcade monitor friendly resolutions mamenewb100 Linux - Newbie 1 07-19-2012 01:24 AM
Where are my default resolutions stored? They aren't in xorg.conf David_g17 Fedora 5 08-19-2010 06:56 PM
Editing Xorg.conf with no monitor addux Linux - Software 4 01-04-2010 05:05 AM
Xorg.conf problem, resolutions not listed? mudmansm Linux - Newbie 3 09-13-2009 09:22 PM
Need help with Xorg.conf and resolutions paperless Ubuntu 2 09-13-2005 02:50 PM

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

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