[Debian] Risoluzione schermo bassa

Pubblicità

Sergei

Utente Attivo
Messaggi
115
Reazioni
1
Punteggio
38
Salve gente :)

Con questo caldo m'è venuta voglia di montare un hdd e metterci su debian 6.0.5, così che ho sia windows sia linux. Bene, ieri mi sono messo con molta calma e ho installato tutto. Ho avuto qualche problema con la scheda wireless ma poi ho installato i driver e funziona tutto alla meraviglia. L'unico problema è la risoluzione video. Il mio schermo arriva a 1440x900, purtroppo questa risoluzione proprio non appare. Allora ho pensato fosse un problema di driver. Io ho una scheda ati radeon x550 anche se debian dice che è x300. Ho seguito questa guida: Driver ATI Radeon Open - Guide@Debianizzati.Org ma non è cambiato niente. il file xorg.conf l'ho generato e messo in etc/X11/
il file completo lo potete vedere qui: xorg config testing - Pastebin.com o anche qui sotto :)
Codice:
Section "Module"
    Load  "dri"
    Load  "dri2"
    Load  "glx"
    Load  "record"
    Load  "dbe"
    Load  "extmod"
EndSection

Section "InputDevice"
    Identifier  "Keyboard0"
    Driver      "kbd"
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"
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     "Dac6Bit"                # [<bool>]
        #Option     "Dac8Bit"                # [<bool>]
        #Option     "BusType"                # [<str>]
        #Option     "CPPIOMode"              # [<bool>]
        #Option     "CPusecTimeout"          # <i>
        #Option     "AGPMode"                # <i>
        #Option     "AGPFastWrite"           # [<bool>]
        #Option     "AGPSize"                # <i>
        #Option     "GARTSize"               # <i>
        #Option     "RingSize"               # <i>
        #Option     "BufferSize"             # <i>
        #Option     "EnableDepthMoves"       # [<bool>]
        #Option     "EnablePageFlip"         # [<bool>]
        #Option     "NoBackBuffer"           # [<bool>]
        #Option     "DMAForXv"               # [<bool>]
        #Option     "FBTexPercent"           # <i>
        #Option     "DepthBits"              # <i>
        #Option     "PCIAPERSize"            # <i>
        #Option     "AccelDFS"               # [<bool>]
        #Option     "IgnoreEDID"             # [<bool>]
        #Option     "CustomEDID"             # [<str>]
        #Option     "DisplayPriority"        # [<str>]
        #Option     "PanelSize"              # [<str>]
        #Option     "ForceMinDotClock"       # <freq>
        #Option     "ColorTiling"            # [<bool>]
        #Option     "VideoKey"               # <i>
        #Option     "RageTheatreCrystal"     # <i>
        #Option     "RageTheatreTunerPort"     # <i>
        #Option     "RageTheatreCompositePort"     # <i>
        #Option     "RageTheatreSVideoPort"     # <i>
        #Option     "TunerType"              # <i>
        #Option     "RageTheatreMicrocPath"     # <str>
        #Option     "RageTheatreMicrocType"     # <str>
        #Option     "ScalerWidth"            # <i>
        #Option     "RenderAccel"            # [<bool>]
        #Option     "SubPixelOrder"          # [<str>]
        #Option     "ClockGating"            # [<bool>]
        #Option     "VGAAccess"              # [<bool>]
        #Option     "ReverseDDC"             # [<bool>]
        #Option     "LVDSProbePLL"           # [<bool>]
        #Option     "AccelMethod"            # <str>
        #Option     "DRI"                    # [<bool>]
        #Option     "ConnectorTable"         # <str>
        #Option     "DefaultConnectorTable"     # [<bool>]
        #Option     "DefaultTMDSPLL"         # [<bool>]
        #Option     "TVDACLoadDetect"        # [<bool>]
        #Option     "ForceTVOut"             # [<bool>]
        #Option     "TVStandard"             # <str>
        #Option     "IgnoreLidStatus"        # [<bool>]
        #Option     "DefaultTVDACAdj"        # [<bool>]
        #Option     "Int10"                  # [<bool>]
        #Option     "EXAVSync"               # [<bool>]
        #Option     "ATOMTVOut"              # [<bool>]
        #Option     "R4xxATOM"               # [<bool>]
        #Option     "ForceLowPowerMode"      # [<bool>]
        #Option     "DynamicPM"              # [<bool>]
        #Option     "NewPLL"                 # [<bool>]
        #Option     "ZaphodHeads"            # <str>
    Identifier  "ati x300"
    Driver      "radeon"
    VendorName  "ATI Technologies Inc"
    BoardName   "RV370 5B60 [Radeon X300 (PCIE)]"
    BusID       "PCI:2:0:0"
EndSection

Section "Screen"
    Identifier "Screen0"
    Device     "ati x300"
    Monitor    "Monitor0"
    SubSection "Display"
        Viewport   0 0
        Depth     1
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     4
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     8
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     15
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     16
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     24
    EndSubSection
EndSection

Se do il comando: lspcia | grep VGA questo è l'output:
Codice:
02:00.0 VGA compatible controller: ATI Technologies Inc RV370 5B60 [Radeon X300 (PCIE)]

Ora essendo profondamente ignornate è probabile che abbia sbagliato a inserire i dati nell'xorg.conf come indicata dalla guida. Almeno lo spero :(

Grazie mille anticipatamente!!!

EDIT:
ho trovato questa guida:
http://ubuntu-inside.blogspot.it/2010/01/come-cambiare-la-risoluzione-dello.html
e funziona! ora sono a 1440x900, il problema è che appena riavvio perde le impostazioni nonostante abbia modificato il file /etc/gdm3/Init/Default come da guida
 
Ultima modifica:
se digiti "xrandr" qual'è l'output?

EDIT:non avevo visto l'edit :nunu:

credo non funzioni perchè quel file di configurazione funziona per Ubuntu e non per Debian..
 
Ultima modifica:
dopo aver spento il computer e riacceso lo schermo è già impostato a 1440x900 :shock:
finalmente vedo grande :vv:
è rimasto solo questo piccolo problema ma vado OT rispetto alla discussione, ossia il fatto che quando riavvio in realtà chiude la sessione e ne riapre una nuova, praticamente non esco mai da debian :shocked:
 
Pubblicità
Pubblicità
Indietro
Top