You are not logged in.

#1 2008-06-22 19:24:21

halcor
Member
Registered: 2008-05-15
Posts: 71

Resolution trouble

I was installing samba, (I don't get that works ok) and when I restart my computer, the resolution es changed, I want the 1024*768 and now It would be 680*400. How can I put the well resolution.

Uses Arch linux, with xfce, with xorg and savage drivers. My screen is a laptop screen of 1024*768. And the resolution was ok until today.


PD: When I turn on the computer, the letters like ms-dos are in a well resolution (1024*768) xfce has the problem.

Offline

#2 2008-06-22 20:15:36

Acecero
Member
Registered: 2008-06-21
Posts: 1,373

Re: Resolution trouble

Did you change the Driver to "savage" in the xorg.conf and in whatever Default Depth, did you set the mode resolution to 1024x768?

Offline

#3 2008-06-23 09:15:19

halcor
Member
Registered: 2008-05-15
Posts: 71

Re: Resolution trouble

Yes, in xorg.conf I've got 1024*768, when the computer starts is in 1024*768, but when xfce starts then the resolution changes. I try to change from xfce but 1027*768 res doesn't appear. I'm sure that I've got to write in a .conf from xfce the resolution but I don't what is.

Before, I used savage driver and I've got no problem.

In adittion, I copy the line  of resolution in all modes en xorg.conf

Offline

#4 2008-06-26 03:25:51

dabski
Member
Registered: 2008-02-07
Posts: 101
Website

Re: Resolution trouble

Can you please post your xorg.conf

Offline

#5 2008-06-26 10:31:47

halcor
Member
Registered: 2008-05-15
Posts: 71

Re: Resolution trouble

Section "ServerLayout"
    Identifier     "X.org Configured"
    Screen      0  "Screen0" 0 0
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
    RgbPath      "/usr/share/X11/rgb"
    ModulePath   "/usr/lib/xorg/modules"
    FontPath     "/usr/share/fonts/misc"
    FontPath     "/usr/share/fonts/100dpi:unscaled"
    FontPath     "/usr/share/fonts/75dpi:unscaled"
    FontPath     "/usr/share/fonts/TTF"
    FontPath     "/usr/share/fonts/Type1"
EndSection

Section "Module"
    Load  "glx"
    Load  "extmod"
    Load  "xtrap"
    Load  "record"
    Load  "GLcore"
    Load  "dbe"
    Load  "dri"
    Load  "freetype"
EndSection

Section "InputDevice"
    Identifier  "Keyboard0"
    Driver      "kbd"
    Option    "XkbLayout"    "es"
    Option "XkbVariant"    ""
EndSection

Section "InputDevice"
    Identifier  "Mouse0"
    Driver      "mouse"
    Option        "Protocol" "auto"
    Option        "Device" "/dev/input/mice"
    Option        "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
    Identifier   "Monitor0"
    VendorName   "Monitor Vendor"
    ModelName    "Monitor Model"
    HorizSync    60.0 - 75.0
    VertRefresh    60.0 - 75.0
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     "AccelMethod"            # <str>
        #Option     "HWCursor"               # [<bool>]
        #Option     "SWCursor"               # [<bool>]
        #Option     "ShadowFB"               # [<bool>]
        #Option     "Rotate"                 # [<str>]
        #Option     "UseBIOS"                # [<bool>]
        #Option     "LCDClock"               # <freq>
        #Option     "ShadowStatus"           # [<bool>]
        #Option     "CrtOnly"                # [<bool>]
        #Option     "TvOn"                   # [<bool>]
        #Option     "PAL"                    # [<bool>]
        #Option     "ForceInit"              # [<bool>]
        #Option     "Overlay"                # [<str>]
        #Option     "TransparencyKey"        # [<str>]
        #Option     "ForceInit"              # [<bool>]
        #Option     "DisableXVMC"            # [<bool>]
        #Option     "DisableTile"            # [<bool>]
        #Option     "DisableCOB"             # [<bool>]
        #Option     "BCIforXv"               # [<bool>]
        #Option     "DVI"                    # [<bool>]
        #Option     "BusType"                # [<str>]
        #Option     "DmaType"                # [<str>]
        #Option     "DmaMode"                # [<str>]
        #Option     "AGPMode"                # <i>
        #Option     "AGPSize"                # <i>
        #Option     "DRI"                    # [<bool>]
    Identifier  "Card0"
    Driver      "savage"
    VendorName  "S3 Inc."
    BoardName   "86C270-294 Savage/IX-MV"
    BusID       "PCI:1:1:0"
EndSection

Section "Screen"
    Identifier "Screen0"
    Device     "Card0"
    Monitor    "Monitor0"
    DefaultDepth 24
    SubSection "Display"
        Viewport   0 0
        Depth     1
        Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     4
        Modes "1024x768" "800x600" "640x480"
    EndSubSection
    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"
    EndSubSection
EndSection

Section "Extensions"
    Option "Composite" "Enable"
EndSection

Offline

#6 2008-06-26 17:57:15

halcor
Member
Registered: 2008-05-15
Posts: 71

Re: Resolution trouble

It's ok? I think that it's ok, I don't know where is the trouble...

Also I try with gnome but it has the same trouble...

Last edited by halcor (2008-06-26 17:58:12)

Offline

#7 2008-06-29 01:41:22

dabski
Member
Registered: 2008-02-07
Posts: 101
Website

Re: Resolution trouble

Your HorizSync is wrong for sure, no way is it the same as the VertRefresh. Apart from that it all looks ok, to the best of my knowledge. Try removing the HorizSync line and restarting to see if that helps.

Last edited by dabski (2008-06-30 12:12:30)

Offline

#8 2008-06-30 00:05:12

halcor
Member
Registered: 2008-05-15
Posts: 71

Re: Resolution trouble

I love you, It's ok, all works fine!!

Thanks man!

Offline

Board footer

Powered by FluxBB