Forum     

Go Back   Digit Technology Discussion Forum > Software > Open Source
Register FAQ Calendar Mark Forums Read

Open Source A place where you can talk to like-minded people about the fastest growing software movement today! Discuss anything and everything about Open Source software and Operating Systems.


Closed Thread
 
LinkBack Thread Tools Display Modes
Old 15-01-2009, 10:07 PM   #1 (permalink)
Wise Old Owl
 
Dark Star's Avatar
 
Join Date: Feb 2006
Location: /dev/hd0
Posts: 1,487
Default Help me Getting Right Resolution in Sabayon


I am having 19": TFT LCD which is suppose to have 1440X900 reso. but I am getting 1024X768 despite the fact ATI drivers are installed


Code:
Section "Module"
    SubSection  "extmod"
       Option    "omit xfree86-dga"
    EndSubSection
    Load   "i2c"
    Load   "ddc"
    Load   "vbe"
   Load        "dri"
EndSection


Section "ServerFlags"
     Option    "AllowMouseOpenFail" "true"
EndSection

# **********************************************************************
# Monitor section
# **********************************************************************

# Any number of monitor sections may be present

Section "Monitor"
    Identifier   "Generic Monitor"
    VertRefresh 56-75
    HorizSync 30-81
EndSection

# **********************************************************************
# Graphics device section
# **********************************************************************

# Any number of graphics device sections may be present

Section "Device"
    Identifier  "VESA"
    Driver    "fglrx"
    #Option "RenderAccel" "on"
    Option "XAANoOffscreenPixmaps"
    #Option "BusType" "PCI"
    #Option "ColorTiling" "on"
    #Option "EnablePageFlip" "on"
    Option "UseEvents" "True"
EndSection


# **********************************************************************
# Screen sections.
# **********************************************************************

Section "Screen"

# The Identifier, Device and Monitor lines must be present

    Identifier   "Screen 1"
    Device   "VESA"
    Monitor   "Generic Monitor"
    Option "AddARGBGLXVisuals" "true"

# The favoured Depth and/or Bpp may be specified here

    DefaultDepth 24

    SubSection "Display"
        Depth      8
        ViewPort   0 0
        Modes "1440X900" "1024x768" "800x600" "640x480"
    EndSubsection

    SubSection "Display"
        Depth           16
        ViewPort        0 0
        Modes "1440X900" "1024x768" "800x600" "640x480"
    EndSubsection

    SubSection "Display"
        Depth           24
        ViewPort        0 0
        Modes "1440X900" "1024x768" "800x600" "640x480"
    EndSubsection


EndSection


Section "ServerLayout"
# The Identifier line must be present

    Identifier   "Main Layout"
    Screen 0    "Screen 1"

EndSection

Section "DRI"
    Mode 0666
EndSection

Section "Extensions"
   Option "Composite" "Enable"
EndSection
The above is the output of Xorg.conf , I even Added 1440X900 but still there is no option !




Rest ok.. Please let me know how to configure resolution...

Regards
__________________
Me Myself and My Tux Blog :- http://tuxenclave.wordpress.com/
Dark Star is offline  
Advertisements. Register and be a member of the community to get rid of them.
Advertisement

Old 15-01-2009, 10:13 PM   #2 (permalink)
Sami Hyypiä, LFC legend
 
Liverpool_fan's Avatar
 
Join Date: Jun 2007
Location: Нью-Дели
Posts: 2,138
Default Re: Help me Getting Right Resolution in Sabayon

Code:
aticonfig --initial --input=/etc/X11/xorg.conf --resolution=0,1440x900
(I think you need root permission, but not 100% sure)

Restart X.

Does it work?
__________________
Experience true education in Computer Science - http://www.udacity.com | http://www.coursera.org

Spoiler:
Read before asking / messaging any moderator for any query: FAQ + answers for new members

Read all the sticky threads before asking any type of query. Most basic questions are answered in those.
Don't use forum for chatting. Visit http://webchat.freenode.net/?channels=krow, enter nick and connect.
Liverpool_fan is offline  
Old 16-01-2009, 04:43 PM   #3 (permalink)
Wise Old Owl
 
Dark Star's Avatar
 
Join Date: Feb 2006
Location: /dev/hd0
Posts: 1,487
Default Re: Help me Getting Right Resolution in Sabayon

Code:
shashwat@localhost ~ $ sudo su root
localhost shashwat # aticonfig --initial --input=/etc/X11/xorg.conf --resolution=0,1440x900
bash: aticonfig: command not found
__________________
Me Myself and My Tux Blog :- http://tuxenclave.wordpress.com/
Dark Star is offline  
Old 16-01-2009, 05:12 PM   #4 (permalink)
Bond, Desi Bond!
 
desiibond's Avatar
 
Join Date: Oct 2007
Location: Bangalore
Posts: 10,062
Default Re: Help me Getting Right Resolution in Sabayon

open display properties and select your monitor as a 19" monitor or even bigger.

Then you will get option for 1440x900 resolution. select the reso, restart X.
__________________
My first blogspace: http://desiibond.blogspot.com
desiibond is offline  
Old 16-01-2009, 06:16 PM   #5 (permalink)
Wise Old Owl
 
Dark Star's Avatar
 
Join Date: Feb 2006
Location: /dev/hd0
Posts: 1,487
Default Re: Help me Getting Right Resolution in Sabayon

^^Display Properties ? Where it is ! ? Can't find in ATI CC and Gnome Menu's ?
__________________
Me Myself and My Tux Blog :- http://tuxenclave.wordpress.com/
Dark Star is offline  
Old 16-01-2009, 06:22 PM   #6 (permalink)
Juke Box Hero
 
Join Date: Aug 2007
Posts: 1,204
Default Re: Help me Getting Right Resolution in Sabayon

Search for aticonfig in the repo?
Hitboxx is offline  
Old 16-01-2009, 06:24 PM   #7 (permalink)
Wise Old Owl
 
Dark Star's Avatar
 
Join Date: Feb 2006
Location: /dev/hd0
Posts: 1,487
Default Re: Help me Getting Right Resolution in Sabayon

Not there But ATI Drivers and Control Center is instaled then why they haven't installed aticonfig ? :s
__________________
Me Myself and My Tux Blog :- http://tuxenclave.wordpress.com/
Dark Star is offline  
Old 16-01-2009, 06:31 PM   #8 (permalink)
Juke Box Hero
 
Join Date: Aug 2007
Posts: 1,204
Default Re: Help me Getting Right Resolution in Sabayon

what about adding in more refresh rates? 75 hz max? It should definitely do more than that. Then probably you can get more res.

Also try with another Depth 32 section.
Hitboxx is offline  
Old 16-01-2009, 06:36 PM   #9 (permalink)
Wise Old Owl
 
Dark Star's Avatar
 
Join Date: Feb 2006
Location: /dev/hd0
Posts: 1,487
Default Re: Help me Getting Right Resolution in Sabayon

Its @ 75 htz atm .. So should I add 32depth section too / ? ok will try that and come back

Nope nothing happened ! It seems I have to re-install ATI drivers

Downloaded and installed ATI Driver,,, no new options for resolution, but I noticed a Xinerria plugin ..

What to do now !

__________________
Me Myself and My Tux Blog :- http://tuxenclave.wordpress.com/

Last edited by Dark Star; 16-01-2009 at 07:46 PM. Reason: Automerged Doublepost
Dark Star is offline  
Old 16-01-2009, 08:26 PM   #10 (permalink)
Sami Hyypiä, LFC legend
 
Liverpool_fan's Avatar
 
Join Date: Jun 2007
Location: Нью-Дели
Posts: 2,138
Default Re: Help me Getting Right Resolution in Sabayon

It's very strange that there is catalyst but no aticonfig.
Did you follow the instructions here to install:
http://wiki.cchtml.com/index.php/Gen...allation_Guide

(I guess Gentoo's method should work since Sabayon is based on Gentoo IIRC, no?)
__________________
Experience true education in Computer Science - http://www.udacity.com | http://www.coursera.org

Spoiler:
Read before asking / messaging any moderator for any query: FAQ + answers for new members

Read all the sticky threads before asking any type of query. Most basic questions are answered in those.
Don't use forum for chatting. Visit http://webchat.freenode.net/?channels=krow, enter nick and connect.
Liverpool_fan is offline  
Old 16-01-2009, 09:33 PM   #11 (permalink)
Pee into the Wind...
 
shady_inc's Avatar
 
Join Date: May 2007
Location: Mumbai
Posts: 782
Default Re: Help me Getting Right Resolution in Sabayon

Are you sure the ati drivers are actualy in use.?Shouldn't Graphics device section in xorg.conf read as:
-----------------------------------
Identifier "<your card name>"
Driver "ati"
-----------------------------------
__________________
Life is as complicated as you say it is.
shady_inc is offline  
Old 16-01-2009, 10:23 PM   #12 (permalink)
Wise Old Owl
 
Dark Star's Avatar
 
Join Date: Feb 2006
Location: /dev/hd0
Posts: 1,487
Default Re: Help me Getting Right Resolution in Sabayon

^^What /
__________________
Me Myself and My Tux Blog :- http://tuxenclave.wordpress.com/
Dark Star is offline  
Closed Thread

Bookmarks

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 On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Sabayon 3.5 Final Released Dark Star Open Source 14 03-07-2008 08:23 AM
Sabayon Linux, which version? din Open Source 6 21-11-2007 08:50 PM
I Need Sabayon Linux Josan Open Source 9 21-06-2007 08:48 AM
Sabayon installation sudhix Open Source 10 27-03-2007 09:03 PM

 
Latest Threads
- by soumya
- by clmlbx
- by Charan
- by Sujeet
- by reddick

Advertisement




All times are GMT +5.5. The time now is 12:17 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.

Search Engine Optimization by vBSEO 3.3.2