Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
X 4.2.99
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Desktop Environments
View previous topic :: View next topic  
Author Message
Q
Tux's lil' helper
Tux's lil' helper


Joined: 17 Apr 2002
Posts: 149
Location: Oxford, UK

PostPosted: Thu Feb 13, 2003 1:33 am    Post subject: X 4.2.99 Reply with quote

Hi,

I have a shuttle which has an intel 845 chipset and 810 graphics chipset. I have updated to X 4.2.99. Everything went fine, I have installed xfree-drm.

However, I can no longer get a full range of resolutions (that I could previously). I am currently running at 1024x768 but would like to run at 1280x1024.

I have used xf86cfg but I cannot seem to set it through this tool.

Any fixes or suggestion would be greatly appreciated
Back to top
View user's profile Send private message
David_Escott
l33t
l33t


Joined: 12 Jan 2003
Posts: 952
Location: Boston, MA

PostPosted: Thu Feb 13, 2003 2:15 am    Post subject: Reply with quote

what about editing the X configuration file /etc/X11/XF86Config
Back to top
View user's profile Send private message
Q
Tux's lil' helper
Tux's lil' helper


Joined: 17 Apr 2002
Posts: 149
Location: Oxford, UK

PostPosted: Thu Feb 13, 2003 2:30 am    Post subject: Reply with quote

I have looked at the file but there is nothing wrong. I think there is an issue with the modeline setting, but I am not sure what it should be or how to test it
Back to top
View user's profile Send private message
David_Escott
l33t
l33t


Joined: 12 Jan 2003
Posts: 952
Location: Boston, MA

PostPosted: Thu Feb 13, 2003 2:33 am    Post subject: Reply with quote

what options does xrandr present?
Back to top
View user's profile Send private message
Q
Tux's lil' helper
Tux's lil' helper


Joined: 17 Apr 2002
Posts: 149
Location: Oxford, UK

PostPosted: Thu Feb 13, 2003 8:32 am    Post subject: Reply with quote

SZ: Pixels Physical Refresh
*0 1024 x 768 ( 321mm x 241mm ) *85
1 800 x 600 ( 321mm x 241mm ) 85
2 640 x 480 ( 321mm x 241mm ) 85
Current rotation - normal
Current reflection - none
Rotations possible - normal
Reflections possible - none
Back to top
View user's profile Send private message
ebrostig
Bodhisattva
Bodhisattva


Joined: 20 Jul 2002
Posts: 3152
Location: Orlando, Fl

PostPosted: Thu Feb 13, 2003 6:50 pm    Post subject: Reply with quote

I have a Dell Gx260 with the same chipsets and I run the same version of Xfree in 1600x1200.
Here is my complete XF86Config file, try it and see if it works:
Code:

Section "ServerLayout"
        Identifier     "XFree86 Configured"
        Screen      0  "Screen0" 0 0
        InputDevice    "Mouse0" "CorePointer"
        InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
        RgbPath      "/usr/X11R6/lib/X11/rgb"
        ModulePath   "/usr/X11R6/lib/modules"
        FontPath     "/usr/X11R6/lib/X11/fonts/truetype/"
        FontPath     "/usr/X11R6/lib/X11/fonts/TTF/"
        FontPath     "/usr/X11R6/lib/X11/fonts/freefont/"
        FontPath     "/usr/X11R6/lib/X11/fonts/sharefont/"
        FontPath     "/usr/X11R6/lib/X11/fonts/100dpi/"
        FontPath     "/usr/X11R6/lib/X11/fonts/misc/"
        FontPath     "/usr/X11R6/lib/X11/fonts/Speedo/"
        FontPath     "/usr/X11R6/lib/X11/fonts/Type1/"
        FontPath     "/usr/X11R6/lib/X11/fonts/CID/"
        FontPath     "/usr/X11R6/lib/X11/fonts/75dpi/"
EndSection

Section "Module"
        Load  "extmod"
        Load  "dri"
        Load  "dbe"
        Load  "record"
        Load  "xtrap"
        Load  "glx"
        Load  "speedo"
        Load  "freetype"
        Load  "type1"
        Load  "randr"
EndSection

Section "DRI"
    Mode 0666
EndSection

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "keyboard"
EndSection

Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option      "Protocol" "IMPS/2"
        Option          "ZAxisMapping" "4 5"
        Option      "Device" "/dev/mouse"
EndSection

Section "Monitor"
        #DisplaySize      380   290     # mm
        Identifier   "Monitor0"
        VendorName   "DEL"
        ModelName    "DELL D1626HT"
        Option      "DPMS"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
        ### [arg]: arg optional
        #Option     "NoAccel"                   # [<bool>]
        #Option     "SWcursor"                  # [<bool>]
        #Option     "ColorKey"                  # <i>
        #Option     "CacheLines"                # <i>
        #Option     "Dac6Bit"                   # [<bool>]
        #Option     "DRI"                       # [<bool>]
        #Option     "NoDDC"                     # [<bool>]
        #Option     "ShowCache"                 # [<bool>]
        #Option     "XvMCSurfaces"              # <i>
        Option      "AGPMode" "1"
        VideoRam    65535
        Identifier  "Card0"
        Driver      "i810"
        VendorName  "Intel Corp."
        BoardName   "82845G/GL [Brookdale-G] Chipset Integrated Graphics Device"
        BusID       "PCI:0:2:0"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        DefaultDepth    16
        Monitor    "Monitor0"
        SubSection "Display"
                Depth     1
        EndSubSection
        SubSection "Display"
                Depth     4
        EndSubSection
        SubSection "Display"
                Depth     8
        EndSubSection
        SubSection "Display"
                Depth     15
        EndSubSection
        SubSection "Display"
                Depth     16
                Modes "1600x1200" "1280x1024" "1024x768"
                ViewPort 0 0
        EndSubSection
        SubSection "Display"
                Depth     24
        EndSubSection
EndSection


Erik
_________________
'Yes, Firefox is indeed greater than women. Can women block pops up for you? No. Can Firefox show you naked women? Yes.'
Back to top
View user's profile Send private message
Q
Tux's lil' helper
Tux's lil' helper


Joined: 17 Apr 2002
Posts: 149
Location: Oxford, UK

PostPosted: Thu Feb 13, 2003 8:09 pm    Post subject: Reply with quote

That worked, thanks

Nice resolution, think I might take it for a spin for a few days.

Q
Back to top
View user's profile Send private message
meekjt
n00b
n00b


Joined: 22 Sep 2002
Posts: 27

PostPosted: Thu Feb 13, 2003 9:34 pm    Post subject: this might help Reply with quote

Try this if you need more help:

http://xtiming.sourceforge.net/cgi-bin/xtiming.pl
Back to top
View user's profile Send private message
Q
Tux's lil' helper
Tux's lil' helper


Joined: 17 Apr 2002
Posts: 149
Location: Oxford, UK

PostPosted: Thu Feb 13, 2003 9:48 pm    Post subject: Reply with quote

Maybe you could explain. The config file (one above) I am using has no modeline's stipulated.

What is their function? What use would the site be?
Back to top
View user's profile Send private message
ebrostig
Bodhisattva
Bodhisattva


Joined: 20 Jul 2002
Posts: 3152
Location: Orlando, Fl

PostPosted: Thu Feb 13, 2003 9:57 pm    Post subject: Reply with quote

Modlines is a way to tell the Xserver what frequencies you card and monitor can handle. Normally this is detected if you use XFree86 --configure. Most cards and monitors do not need modelines.
Besides this, they are hard to figure out for a normal user, and I think they will disappear completly in the future.

Erik
_________________
'Yes, Firefox is indeed greater than women. Can women block pops up for you? No. Can Firefox show you naked women? Yes.'
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Desktop Environments All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum