Welcome to Linux Forums!

With a comprehensive Linux Forum, information on various types of Linux software and many Linux Reviews articles, we have all the knowledge you need a click away, or accessible via our knowledgeable members.

Linux Forum ArticlesLinux ForumsLinux Forum DownloadsLinux HostsFree MagazinesJobs
Home|Register|FAQ|Member List|Calendar|Unanswered Posts|Forum Rules|Today's Posts|Advanced Search|
SEARCH FOR IN
Go Back   Linux Forums > Your Distro > Other Distributions > Arch Linux Help
Reload this Page Screen resolution issues (again)
Linux Forums
Linux Forums
Welcome To The Linux Forums!
Welcome to Linux Forums. We pride ourselves in being one of the largest Linux communities on the web, we encourage you to REGISTER on our forums and participate in the community. There are over 150,000 members ready to answer your questions. JOINING US today will allow you to make new posts, get support, send messages to other members and submit downloads to our downloads directory and many other great features!

Arch Linux Help Help an discussion related to Arch

Reply
 
Thread Tools Display Modes
Old 12-19-2007   #1 (permalink)
Linux User
 
ImNeat's Avatar
 
Join Date: Feb 2006
Location: N. America
Posts: 388
Screen resolution issues (again)

I reformatted for kicks and I'm running into a screen resolution issue I had the first time I installed - but for some reason what fixed it last time isn't working this time...

Startx sticks me into a 800x600 fluxbox with thick black lines around the edges.

/var/log/Xorg.0.log:

Code:
(II) VESA(0): Monitor0: Using hsync range of 30.00-54.00 kHz
(II) VESA(0): Monitor0: Using default vrefresh range of 50.00-70.00 Hz
(II) VESA(0): Not using mode "1024x768" (no mode of this name)
(--) VESA(0): Virtual size is 800x600 (pitch 800)
(**) VESA(0): *Built-in mode "800x600"
(**) VESA(0): *Built-in mode "640x480"
(==) VESA(0): DPI set to (96, 96)
(II) VESA(0): Attempting to use 60Hz refresh for mode "800x600" (114)
(II) VESA(0): Attempting to use 60Hz refresh for mode "640x480" (111)
Trying manually:
Code:
[root]# xrandr -s 1024x768
Size 1024x768 not found in available modes
[root]#
/etc/X11/xorg.conf:
Code:
Section "Monitor"
        Identifier   "Monitor0"
        VendorName   "Monitor Vendor"
        ModelName    "Monitor Model"
        HorizSync    30.0-54.0
EndSection

Section "Device"
        Identifier  "Card0"
        Driver      "vesa"
        VendorName  "Intel Corporation"
        BoardName   "82815 Chipset Graphics Controller (CGC)"
        BusID       "PCI:0:2:0"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"
        SubSection "Display"
                Viewport   0 0
                Depth     8
                Modes           "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
        Viewport   0 0
                Depth     15
                Modes           "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     16
                Modes           "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     24
                Modes           "1024x768" "800x600" "640x480   
        EndSubSection
EndSection
Help/suggestions will be greatly appreciated!
__________________
10" Sony Vaio SRX99P 850MHz P3-M 256MB RAM 20GB HD : ArchLinux
14.1" Dell Inspiron 1420 2GHz Core2Duo 2GB RAM 160GB HD : ArchLinux
ImNeat is offline   Reply With Quote
Old 12-19-2007   #2 (permalink)
Super Moderator
 
devils casper's Avatar
 
Join Date: Jun 2006
Location: Chandigarh, INDIA
Posts: 18,411
Hi !!

Resolution depends on Refresh rates too and VertRefresh rate is missing in your xorg.conf file.
Check Monitor's Manual for supported HorizSync and VertRefresh rates. Set supported values in xorg.conf file.
Code:
Section "Monitor"
        Identifier   "Monitor0"
        VendorName   "Monitor Vendor"
        ModelName    "Monitor Model"
        HorizSync    30.0-54.0
        VertRefresh  xxx - xxx
EndSection
__________________
New Users: Read This First


devils casper is offline   Reply With Quote
Old 12-19-2007   #3 (permalink)
Linux User
 
ImNeat's Avatar
 
Join Date: Feb 2006
Location: N. America
Posts: 388
Unfortunately this is a very old hand-me-down laptop and I don't have the manual. Know of any other ways to look this value up? I had no luck with google...

Even if it were a VertRefresh problem, don't you think I'd be able to change the resolution manually? It seems that there is no 1024x768 "mode" - I wonder how I add one/make one available?
__________________
10" Sony Vaio SRX99P 850MHz P3-M 256MB RAM 20GB HD : ArchLinux
14.1" Dell Inspiron 1420 2GHz Core2Duo 2GB RAM 160GB HD : ArchLinux
ImNeat is offline   Reply With Quote
Old 12-19-2007   #4 (permalink)
Just Joined!
 
Join Date: Dec 2007
Posts: 4
Are you using the right video driver?

My guess is you need to download the driver for the Intel 82815 Chipset Graphics via:

Code:
pacman -S xf86-video-intel
and change the driver to...

Code:
Section "Device"
        Identifier  "Card0"
        Driver      "intel"
        VendorName  "Intel Corporation"
        BoardName   "82815 Chipset Graphics Controller (CGC)"
        BusID       "PCI:0:2:0"
EndSection
I hope this helps.
Shurix is offline   Reply With Quote
Old 12-20-2007   #5 (permalink)
Super Moderator
 
devils casper's Avatar
 
Join Date: Jun 2006
Location: Chandigarh, INDIA
Posts: 18,411
"vesa" driver works pretty fine with most of Graphics Cards. Try using Generic Refresh rates.
Code:
HorizSync     30.0 - 60-0
VertRefresh   50.0 - 70.0
__________________
New Users: Read This First


devils casper is offline   Reply With Quote
Old 12-20-2007   #6 (permalink)
Linux User
 
ImNeat's Avatar
 
Join Date: Feb 2006
Location: N. America
Posts: 388
Quote:
Originally Posted by devils_casper View Post
Try using Generic Refresh rates.
Code:
HorizSync     30.0 - 60-0
VertRefresh   50.0 - 70.0
No dice =(
Still defaults to 800X600 and I still get
Code:
[root]$ xrandr -s 1024x768
Size 1024x768 not found in available modes
[root]$
__________________
10" Sony Vaio SRX99P 850MHz P3-M 256MB RAM 20GB HD : ArchLinux
14.1" Dell Inspiron 1420 2GHz Core2Duo 2GB RAM 160GB HD : ArchLinux
ImNeat is offline   Reply With Quote
Old 12-20-2007   #7 (permalink)
Super Moderator
 
devils casper's Avatar
 
Join Date: Jun 2006
Location: Chandigarh, INDIA
Posts: 18,411
You havn't set DefaultDepth.
Code:
Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"
        DefaultDepth    24
        SubSection "Display"
                Viewport   0 0
                Depth     8
                Modes           "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
        Viewport   0 0
                Depth     15
                Modes           "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     16
                Modes           "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     24
                Modes           "1024x768" "800x600" "640x480   
        EndSubSection
EndSection
__________________
New Users: Read This First


devils casper is offline   Reply With Quote
Old 12-20-2007   #8 (permalink)
Linux User
 
ImNeat's Avatar
 
Join Date: Feb 2006
Location: N. America
Posts: 388
Setting default depth has strange impact. Setting to 24 makes the viewable window even smaller, with a thicker black frame. 16 has no change, while 8 fills the whole screen but with poor quality.
__________________
10" Sony Vaio SRX99P 850MHz P3-M 256MB RAM 20GB HD : ArchLinux
14.1" Dell Inspiron 1420 2GHz Core2Duo 2GB RAM 160GB HD : ArchLinux
ImNeat is offline   Reply With Quote
Old 12-20-2007   #9 (permalink)
Linux User
 
ImNeat's Avatar
 
Join Date: Feb 2006
Location: N. America
Posts: 388
Quote:
Originally Posted by Shurix View Post
My guess is you need to download the driver for the Intel 82815 Chipset Graphics via:
Code:
pacman -S xf86-video-intel
Code:
        Driver      "intel"
Surprisingly, switching from vesa to intel did it! Thanks for the suggestions Shurix =)
__________________
10" Sony Vaio SRX99P 850MHz P3-M 256MB RAM 20GB HD : ArchLinux
14.1" Dell Inspiron 1420 2GHz Core2Duo 2GB RAM 160GB HD : ArchLinux
ImNeat is offline   Reply With Quote
Old 12-24-2007   #10 (permalink)
Just Joined!
 
Join Date: Apr 2005
Location: CA
Posts: 15
driver should be fixed first

Quote:
"vesa" driver works pretty fine with most of Graphics Cards
The vesa driver is not supposed to be used unless nessesary, it can not properly queary all graphic cards. (It's also completely unaccelerated and has not even the most basic 2d optimizations)

that would be the absolute first thing to change display issue or not.
try not to give that advise again. no offence
__________________
* SPAM removed by Moderator -
please refer to Forum Rules!
techzilla is offline   Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

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 On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off
 

Similar Threads
Thread Thread Starter Forum Replies Last Post
Another screen resolution settings help post Hollow06 SuSE Linux Help 4 03-11-2007 03:13 AM
screen resolution or default window resize? Darrell3457 Linux On Laptops 6 02-04-2007 03:21 PM
Screen Resolution stuck at 640x480 geo Gentoo Linux Help 17 11-24-2006 09:51 PM
how I stumbled into fixing screen resolution (sort of) daviddlewis SuSE Linux Help 0 05-08-2006 08:26 PM
Screen resolution help DarthLascivious Redhat / Fedora Linux Help 2 12-06-2004 08:37 AM

Free Magazines
Cisco News
Receive a free quarterly e-newsletter with exclusive articles on how Cisco IT uses its own products and solutions to enable the business.
subscribe
Systems Management News, the newspaper for IT systems administration and data center managers!
Each issue of Systems Management News is chock-full of news and analysis to help you understand what's happening in your field.
subscribe
The Enterprise Newsweekly
eWeek is the essential technology information source for builders of e-business.
subscribe
Oracle Magazine
Oracle Magazine contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more. Oracle (NASDAQ: ORCL) is the world's largest enterprise software company.
subscribe
Total Telecom
Total Telecom is "The Economist of the communications industry".
subscribe
More free magazines »



All times are GMT. The time now is 11:22 PM.




© 2000 - 2008 - All Rights Reserved - Property of  MAS Media

Content Relevant URLs by vBSEO 3.2.0