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.
Find the answer to your Linux question:
New to Linux Forums? Register here for free!
    Linux Forums > Your Distro > Other Distributions > Arch Linux Help > Screen resolution issues (again)

Forgot Password?
 Arch Linux Help   Help an discussion related to Arch

Site Navigation
Linux Articles
Linux Forums
Linux Downloads
Linux Hosting
Free Magazines
Job Board
IRC Chat
RSS Feeds


Linux Forum Topics
Linux Forums
Your Distro
Linux Resources
GNU Linux Zone
The Community
Reply
 
Thread Tools Display Modes
Old 12-19-2007   #1 (permalink)
Linux User
 
ImNeat's Avatar
 
Join Date: Feb 2006
Location: N. America
Posts: 392
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" Dell Inspiron 1420N 2GHz Core2Duo 2GB RAM 160GB HD : Xubuntu
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: 21,081
Send a message via Yahoo to devils casper
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
__________________
It takes a lot of time to be a genius, you have to sit around so much doing nothing, really doing nothing. - Gertrude Stein
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: 392
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" Dell Inspiron 1420N 2GHz Core2Duo 2GB RAM 160GB HD : Xubuntu
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: 21,081
Send a message via Yahoo to devils casper
"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
__________________
It takes a lot of time to be a genius, you have to sit around so much doing nothing, really doing nothing. - Gertrude Stein
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: 392
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" Dell Inspiron 1420N 2GHz Core2Duo 2GB RAM 160GB HD : Xubuntu
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: 21,081
Send a message via Yahoo to devils casper
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
__________________
It takes a lot of time to be a genius, you have to sit around so much doing nothing, really doing nothing. - Gertrude Stein
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: 392
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" Dell Inspiron 1420N 2GHz Core2Duo 2GB RAM 160GB HD : Xubuntu
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: 392
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" Dell Inspiron 1420N 2GHz Core2Duo 2GB RAM 160GB HD : Xubuntu
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
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

Free Magazines
Run Your Own Web Server Using Linux & Apache - Free 191 Page Preview
Learn about everything you'll need to build and maintain your Linux servers, and to deploy Web applications to them.
subscribe
Open Source Security Myths Dispelled
Dispel the five major myths surrounding Open Source Security and gain the tools necessary to make a truly informed decision for your IT organization
subscribe
InformationWeek
InformationWeek is the only newsweekly you'll need to stay on top of the latest developments in information technology.
subscribe



All times are GMT. The time now is 02:03 PM.






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

Content Relevant URLs by vBSEO 3.3.0 RC2