Pagina 1 di 1

buon driver Intel Integrated GMA 4500MHD

Inviato: mer 12 ago 2009, 23:43
da evilmight
Salve, volevo sapere se su slackware c'è un buon driver per la scheda video integrata (ultimo modello della intel: un Intel Integrated GMA 4500MHD), ditemi se è decente o meno e se ne siete sicuri, visto che i driver per ATI di linux fanno vivacemente schifo...

Re: buon driver Intel Integrated GMA 4500MHD

Inviato: gio 13 ago 2009, 2:18
da SIV
evilmight ha scritto:i driver per ATI di linux fanno vivacemente schifo...
Open o Closed?

Sul mio vecchio pc i closed, a parte il fatto che erano closed, non facevano affatto schifo, anzi!

Comunque qualunque driver compatibile con linux sarà compatibile con Slackware, non è che i driver sono compatibili con le distro in sè.

Aspetta qualcuno che abbia una scheda intel così può darti maggiori informazioni :thumbright:

Re: buon driver Intel Integrated GMA 4500MHD

Inviato: gio 13 ago 2009, 8:25
da luka64
per quella scheda il driver di default del kernel linux è 'intel' e funziona perfettamente (supporto 3d compiz ecc..)

Re: buon driver Intel Integrated GMA 4500MHD

Inviato: gio 13 ago 2009, 10:09
da DanBadJar
evilmight ha scritto:Salve, volevo sapere se su slackware c'è un buon driver per la scheda video integrata (ultimo modello della intel: un Intel Integrated GMA 4500MHD), ditemi se è decente o meno e se ne siete sicuri, visto che i driver per ATI di linux fanno vivacemente schifo...
Ma intendi sulla current o sulla 12.2 ?
Io con quella scheda, con slackware 12.2 non sono stato in grado di attivare il supporto 3d. Mentre con una intel x3100 è tutto perfettamente funzionante.
Eventualmente hai uno xorg.conf da passarmi, così ci do' un'occhiata?
Grazie

Re: buon driver Intel Integrated GMA 4500MHD

Inviato: gio 13 ago 2009, 11:57
da evilmight
Guarda il portatile (con slack) mi deve ancora arrivare, quindi chiedevo... comunque la versione di slac è la 12.2, e, per attivare il driver "intel" devo ricompilare il kernel ?

Re: buon driver Intel Integrated GMA 4500MHD

Inviato: gio 13 ago 2009, 12:05
da DanBadJar
No, puoi usarlo senza ricompilare.
La riga da modificare in xorg.conf è:

Codice: Seleziona tutto

Driver      "intel"
Qualcuno ha uno xorg.conf da passarmi per una GMA 4500MHD funzionante?

Re: buon driver Intel Integrated GMA 4500MHD

Inviato: gio 13 ago 2009, 12:15
da michele.p
...non so se può servire, si provi a dare un'occhiata qui;

http://www.mandrakeitalia.org/modules/n ... oryid=2105

Bye 8)

Re: buon driver Intel Integrated GMA 4500MHD

Inviato: gio 13 ago 2009, 15:23
da NetNightmare
DanBadJar ha scritto: Qualcuno ha uno xorg.conf da passarmi per una GMA 4500MHD funzionante?
4500MHD sul mio T500 ma dovrebbe andare ugualmente con le opportune modifiche del monitor ... ( su current )

Codice: Seleziona tutto

Section "Module"

    Load        "dbe"  	# Double buffer extension

    SubSection  "extmod"
      Option    "omit xfree86-dga"   # don't initialise the DGA extension
    EndSubSection

    Load        "type1"
    Load        "freetype"
    #Load        "speedo"

    Load       "glx"
    Load       "dri2"
EndSection

Section "Files"

    RgbPath	"/usr/share/X11/rgb"

    FontPath   "/usr/share/fonts/local/"
    FontPath   "/usr/share/fonts/misc/"
    FontPath   "/usr/share/fonts/OTF/"
    FontPath   "/usr/share/fonts/TTF/"
    FontPath   "/usr/share/fonts/Type1/"
    FontPath   "/usr/share/fonts/CID/"
    FontPath   "/usr/share/fonts/Speedo/"
    FontPath   "/usr/share/fonts/75dpi/:unscaled"
    FontPath   "/usr/share/fonts/100dpi/:unscaled"
    FontPath   "/usr/share/fonts/75dpi/"
    FontPath   "/usr/share/fonts/100dpi/"
    FontPath   "/usr/share/fonts/cyrillic/"
    

EndSection

Section "ServerFlags"

    Option     "DontZap"
    Option     "AllowEmptyInput" "0"
    Option     "AutoAddDevices" "0"
EndSection

Section "InputDevice"

    Identifier	"IBM_Key"
    Driver	"kbd"
    Option  "XkbLayout" "it"
EndSection

Section "InputDevice"



    Identifier	"Ultra_Nav"
    Driver	"mouse"
    Option "Device"      "/dev/mouse"


EndSection


Section "Monitor"

    Identifier  "LCD_16_9"
    UseModes 	"IBM_TFT"
    Option   "DPMS" "true"
EndSection

Section "Device"
    
    Identifier "Intel_G45"
    Driver  "Intel"
    Option "AccelMethod" "UXA"

EndSection

Section "Screen"
    Identifier  "Main_LCD"
    Device      "Intel_G45"
    Monitor     "LCD_16_9"
		
   DefaultDepth 24

    Subsection "Display"
        Depth       8
        Modes "1024x768" "800x600" "640x480"
    EndSubsection
    Subsection "Display"
        Depth       16
        Modes "1024x768" "800x600" "640x480"
    EndSubsection
    Subsection "Display"
        Depth       24
        Modes "1680x1050" "1024x768" "800x600" "640x480"
    EndSubsection
    Subsection "Display"
        Depth       32
        Modes "1024x768" "800x600" "640x480"
    EndSubsection

EndSection

Section "Modes"
    Identifier "IBM_TFT"
    ModeLine "1680x1050" 122.000 1680 1712 1776 1904 1050 1051 1054 1066 -hsync -vsync
EndSection

Section "ServerLayout"


    Identifier  "Simple Layout"

    Screen "Main_LCD"

    InputDevice "Ultra_Nav" "CorePointer"
    InputDevice "IBM_Key" "CoreKeyboard"

EndSection

Section "dri"
     mode 0666
EndSection

Re: buon driver Intel Integrated GMA 4500MHD

Inviato: gio 13 ago 2009, 16:11
da DanBadJar
Grazie, appena ho un attimo lo provo!