Pagina 1 di 1

[Risolto][Video] Problema risoluzione monitor Olidata Tehom 7600

Inviato: lunedì 14 giugno 2010, 15:27
da Elix93
Ho da poco installato Ubuntu 10.4 ed ho un problema... :'(
Ho una scheda video integrata SIS Mirage 3 e un monitor che supporta una risoluzione massima di 1280 x 800 ma , a parte i problemi di disturbo video quando carica l Os, andando su Preferenze --> Monitor ,  la finestra   dice Monitor Unknown e la risoluzione massima , che posso mettere ,è 800 x 600.
Inoltre se collego un secondo monitor all uscita vga , è possibile settare la risoluzione del monitor del portatile a 1024 x 768 , ma se scollego l altro monitor la risoluzione torna ad 800 x 600.
Quindi come devo fare per avere una risoluzione decente ??
Grazie in anticipo.

Re: [Video] Problema risoluzione monitor Olidata Tehom 7600

Inviato: lunedì 14 giugno 2010, 19:37
da Elix93
Ho risolto da me usando questi driver :http://www.megaupload.com/?d=BWDFFI47
E NEL FILE xorg.conf :

Codice: Seleziona tutto

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

Section "Files"
	ModulePath   "/usr/lib/xorg/modules"
	FontPath     "/usr/share/fonts/X11/misc"
	FontPath     "/usr/share/fonts/X11/cyrillic"
	FontPath     "/usr/share/fonts/X11/100dpi/:unscaled"
	FontPath     "/usr/share/fonts/X11/75dpi/:unscaled"
	FontPath     "/usr/share/fonts/X11/Type1"
	FontPath     "/usr/share/fonts/X11/100dpi"
	FontPath     "/usr/share/fonts/X11/75dpi"
	FontPath     "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
	FontPath     "built-ins"
EndSection

Section "Module"
	Load  "dbe"
	Load  "record"
	Load  "dri"
	Load  "glx"
	Load  "extmod"
	Load  "dri2"
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   "LCD/Plasma Panel"
	ModelName    "LCD/Plasma Panel"
      HorizSync    28.0 - 85.0
        VertRefresh  48.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     "ShadowFB"           	# [<bool>]
        #Option     "Rotate"             	# <str>
        #Option     "fbdev"              	# <str>
        #Option     "debug"              	# [<bool>]
	Identifier  "Card0"
	Driver      "sis671"
	VendorName  "Silicon Integrated Systems [SiS]"
	BoardName   "771/671 PCIE VGA Display Adapter"
	BusID       "PCI:1:0:0"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "Monitor0"
    DefaultDepth    24
    DefaultFbBpp    32
      
SubSection "Display"
          Depth      1
          Modes      "1280x800" "1024x768" "800x600" "640x480"
       EndSubSection
       SubSection "Display"
          Depth      4
          Modes     "1280x800" "1024x768" "800x600" "640x480"
       EndSubSection
       SubSection "Display"
          Depth      8
          Modes      "1280x800" "1024x768" "800x600" "640x480"
       EndSubSection
       SubSection "Display"
          Depth      15
          Modes      "1280x800" "1024x768" "800x600" "640x480"
       EndSubSection
       SubSection "Display"
          Depth      16
          Modes      "1280x800" "1024x768" "800x600" "640x480"
       EndSubSection
       SubSection "Display"
          Depth      24
          Modes      "1280x800" "1024x768" "800x600" "640x480"
       EndSubSection
    EndSection