PDA

View Full Version : Problema xubuntu risoluzione video


Coyote74
31-12-2008, 14:09
Lo so che se ne è già parlato e straparlato di questo problema, ma non riesco proprio a risolverlo. Ho un vecchio Travelmate 212tx tirato fuori dalla naftalina a cui ho installato xubuntu 8.10. Tutto sembra funzionare alla perfezione tranne la risoluzione a video. In pratica il note supporta risoluzioni fino a 1024x768, ma xubuntu mi permette di settare al massimo la 800x600.
Ho già provato a lavorare col comando:
"sudo dpkg-reconfigure xserver-xorg"
ma non mi chiede alcuna risoluzione video e quindi non posso operare.

Ho tentato anche di intervenire direttamente sull'xorg.conf ma all'interno non figura nessuna sottosezione display con le risoluzioni video e quindi non so come modificarlo.

Tra l'altro sono un principiante di linux quindi vi pregherei di darmi una mano, grazie:cry:

Coyote74
31-12-2008, 14:54
Dimenticavo, ho provato anche col comando "gtf 1024 768 60 -x" che dovrebbe creare una modeline da inserire nel xorg.conf. In effetti me la crea, ma non so esattamente in quale punto esatto dell'xorg andarla ad inserire.

kernele
31-12-2008, 15:08
Le righe in xorg che ti permettono una risoluzione maggiore e variabile del monitor, sono queste:
Section "Monitor"
Identifier "Monitor0"
HorizSync 28.0 - 96.0
VertRefresh 50.0 - 75.0
EndSection
Devi conoscere i valori del tuo monitor.
Queste impongono la profondità di colore:
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
DefaultColorDepth 24
SubSection "Display"
Depth 24
Modes "1024x768" "800x600" "640x480"
EndSubSection
EndSection

Coyote74
31-12-2008, 15:15
Le righe in xorg che ti permettono una risoluzione maggiore e variabile del monitor, sono queste:
Section "Monitor"
Identifier "Monitor0"
HorizSync 28.0 - 96.0
VertRefresh 50.0 - 75.0
EndSection
Devi conoscere i valori del tuo monitor.
Queste impongono la profondità di colore:
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
DefaultColorDepth 24
SubSection "Display"
Depth 24
Modes "1024x768" "800x600" "640x480"
EndSubSection
EndSection

Grazie dell'aiuto, solo che il problema è che nell'xorg tutte quelle righe non ci sono, anzi, non c'è praticamente quasi nulla e quindi dovrei ricompilarlo completamente. Solo che non so come strutturarlo in modo esatto. Potresti gentilmente postarmi l'esatta struttura dell'xorg?
Oltretutto essendo niubbo ora sono pure incasinato con il salvataggio del file xorg.conf, infatti xubuntu mi dice che non posso salvare le modifiche, probabilmente perchè non ho i permessi giusti (root)... come faccio a passare ad utente root?

kernele
31-12-2008, 15:24
Il mio xorg.conf ti servirebbe a ben poco.
Magari, prova a ricostruirne uno nuovo con:
X -configure
o:
xorgconfig
A uno di questi, sei costretto a metterci mano, soprattutto nella sezione della scheda video:
Section "Device"
Identifier "Card0"
Driver "mach64"
VendorName "All"
BoardName "All"
EndSection
Qui, è facile che marca il driver come VGA e non vesa, ati o nv.

Section "ServerLayout"
Identifier "Xorg Configured"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
# PS/2 Mouse not detected
# Serial Mouse not detected
InputDevice "USB Mouse" "CorePointer"
EndSection

Section "ServerFlags"
Option "AllowMouseOpenFail" "true"
Option "AutoAddDevices" "False"

EndSection

Section "Files"
ModulePath "/usr/lib/xorg/modules"
FontPath "/usr/share/fonts/misc:unscaled"
FontPath "/usr/share/fonts/misc"
FontPath "/usr/share/fonts/75dpi:unscaled"
FontPath "/usr/share/fonts/75dpi"
FontPath "/usr/share/fonts/100dpi:unscaled"
FontPath "/usr/share/fonts/100dpi"
FontPath "/usr/share/fonts/PEX"
# Additional fonts: Locale, Gimp, TTF...
FontPath "/usr/share/fonts/cyrillic"
# FontPath "/usr/share/lib/X11/fonts/latin2/75dpi"
# FontPath "/usr/share/lib/X11/fonts/latin2/100dpi"
# True type and type1 fonts are also handled via xftlib, see /etc/X11/XftConfig!
FontPath "/usr/share/fonts/Type1"
FontPath "/usr/share/fonts/ttf/western"
FontPath "/usr/share/fonts/ttf/decoratives"
FontPath "/usr/share/fonts/truetype"
FontPath "/usr/share/fonts/truetype/openoffice"
FontPath "/usr/share/fonts/truetype/ttf-bitstream-vera"
FontPath "/usr/share/fonts/latex-ttf-fonts"
FontPath "/usr/share/fonts/defoma/CID"
FontPath "/usr/share/fonts/defoma/TrueType"
EndSection

Section "Module"
Load "ddc" # ddc probing of monitor
Load "dbe"
Load "dri"
Load "extmod"
Load "glx"
Load "bitmap" # bitmap-fonts
Load "type1"
Load "freetype"
Load "record"
# Load "synaptics"
EndSection

Section "InputDevice"
Identifier "Keyboard0"
Driver "keyboard"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "it"
Option "XkbVariant" ""
EndSection

Section "InputDevice"
Identifier "Serial Mouse"
Driver "mouse"
Option "Protocol" "Microsoft"
Option "Device" "/dev/ttyS0"
Option "Emulate3Buttons" "true"
Option "Emulate3Timeout" "70"
Option "SendCoreEvents" "true"
EndSection

Section "InputDevice"
Identifier "PS/2 Mouse"
Driver "mouse"
Option "Protocol" "auto"
Option "ZAxisMapping" "4 5"
Option "Device" "/dev/psaux"
Option "Emulate3Buttons" "true"
Option "Emulate3Timeout" "70"
Option "SendCoreEvents" "true"
EndSection

Section "InputDevice"
Identifier "USB Mouse"
Driver "mouse"
Option "Device" "/dev/input/mice"
Option "SendCoreEvents" "true"
Option "Protocol" "IMPS/2"
Option "ZAxisMapping" "4 5"
Option "Buttons" "5"
EndSection

# Auto-generated by Archie mkxcfg

Section "Monitor"
Identifier "Monitor0"
Option "DPMS" "true"
HorizSync 28.0 - 96.0 # Warning: This may fry old Monitors
VertRefresh 50.0 - 75.0 # Very conservative. May flicker.
EndSection

# Auto-generated by Archie mkxcfg


Section "Device"
Identifier "Card0"
Driver "mach64"
VendorName "All"
BoardName "All"
EndSection


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

Section "DRI"
Mode 0666
EndSection

Coyote74
31-12-2008, 15:35
Grazie Kernele
Comunque tanto per rendervi partecipi, il mio xorg è così:

Section "Device"
Identifier "Configured Video Device"
EndSection

Section "Monitor"
Identifier "Configured Monitor"
EndSection

Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
EndSection

Non c'è nessun'altra riga di codice, nulla di nulla. Tra l'altro quando cerco di salvare le modifiche al file me lo nega, come posso applicarle?
Per il resto i valori del monitor non li conosco, probabilmente comunque ci sono sul manuale del notebook, comunque col comando "gtf" il terminale mi riporta la stringa con i valori giusti da riportare nell'xorg (o almeno spero siano esatti), l'unica cosa che non segnala è la profondità di colore, e non so se impostare 16 o 24.

kernele
31-12-2008, 15:59
http://forum.ubuntu-it.org/index.php?topic=188530.0

Per avere i permessi in scrittura, devi usare sudo:
es. sudo nano /etc/X11/xorg.conf

Coyote74
31-12-2008, 17:00
http://forum.ubuntu-it.org/index.php?topic=188530.0

Per avere i permessi in scrittura, devi usare sudo:
es. sudo nano /etc/X11/xorg.conf

Grazie, sei gentilissimo, appena posso provo a fare come mi hai detto;)

newuser
01-01-2009, 07:24
Nella sezione device prova ad aggiungere la riga del driver come la mia:Section "Device"
Identifier "Configured Video Device"
Driver "trident"
EndSectionIl pc fisso che uso ha proprio una trident e sto ancora litigando per farla funzionare correttamente. Spesso facendo lo scrolling con i browser
(qualsiasi) il sistema si pianta e non è possibile ripristinarlo in senza resettare, mentre le modelines che ho aggiunto all'xorg.conf vengono ignorate.

Dopo aver aggiunto la riga riavvia il server X (ctrl-alt-backspace) e lancia xvidtune, con i pulsanti next e previous potrai navigare tra le risoluzioni disponibili.

Se hai ancora problemi dovresti postare il file /var/log/Xorg.0.log.

Coyote74
01-01-2009, 18:09
http://forum.ubuntu-it.org/index.php?topic=188530.0

Per avere i permessi in scrittura, devi usare sudo:
es. sudo nano /etc/X11/xorg.conf

Nella sezione device prova ad aggiungere la riga del driver come la mia:Section "Device"
Identifier "Configured Video Device"
Driver "trident"
EndSectionIl pc fisso che uso ha proprio una trident e sto ancora litigando per farla funzionare correttamente. Spesso facendo lo scrolling con i browser
(qualsiasi) il sistema si pianta e non è possibile ripristinarlo in senza resettare, mentre le modelines che ho aggiunto all'xorg.conf vengono ignorate.

Dopo aver aggiunto la riga riavvia il server X (ctrl-alt-backspace) e lancia xvidtune, con i pulsanti next e previous potrai navigare tra le risoluzioni disponibili.

Se hai ancora problemi dovresti postare il file /var/log/Xorg.0.log.

Ragazzi, non so come ringraziarvi per l'aiuto che mi state dando, ma c'è un problema da risolvere a monte di tutto.
Quando do in pasto al terminal il comando "sudo nano /etc/X11/xorg.conf" mi apre il file ma risulta completamente vuoto, non c'è neppure una sola stringa. Se lo apro con un editor di testo invece le righe di codice ci sono. Se non riesco a editarlo non posso fare un bel niente.:(

newuser
02-01-2009, 07:32
Se nano presenta una schermata vuota vuol dire che non ha trovato il file e che ne sta creando uno nuovo.

Controlla che il nome sia giusto digitandosudo nano /etc/X11/xoe premi il tasto tab per far partire l'autocompletamento. Non occorre comunque usare nano, puoi usare un qualsiasi editor facendolo partire da console anteponendo il comando sudo.

Ricorda di postare il file var/log/Xorg.0.log

Coyote74
02-01-2009, 12:11
Non riesco proprio a risolvere. Ho provato in vari modi come da voi postati, ma nulla da fare. Vado per ordine:

Ho seguito questa guida http://forum.ubuntu-it.org/index.php?topic=188530.0 come indicatomi da Kernele, ma al riavvio non mi compare nessuna utility grafica che mi faccia configurare manualmente scheda video e monitor, sembra che l'abbiano rimossa da questa versione (mossa furba:rolleyes: )

Ho provato poi la via indicatami da Newuser, quindi ho inserito driver "trident" nell'xorg.conf, ho riavviato il server X e lanciato xvidtune, che dovrebbe generare le stringhe da inserire poi a mano nell'xorg, ma l'utiliti non mi fa selezionare risoluzioni superiori a 800x600 e quindi risulta inutile.

A questo punto non mi resta che postarvi anche il Xorg.0.log come da voi richiesto sperando in un vostro ulteriore aiuto:
X.Org X Server 1.5.2

Release Date: 10 October 2008

X Protocol Version 11, Revision 0

Build Operating System: Linux 2.6.24-19-server i686 Ubuntu

Current Operating System: Linux xubuntu 2.6.27-7-generic #1 SMP Fri Oct 24 06:42:44 UTC 2008 i686

Build Date: 24 October 2008 08:00:16AM

xorg-server 2:1.5.2-2ubuntu3 (buildd@rothera.buildd)

Before reporting problems, check http://wiki.x.org

to make sure that you have the latest version.

Module Loader present

Markers: (--) probed, (**) from config file, (==) default setting,

(++) from command line, (!!) notice, (II) informational,

(WW) warning, (EE) error, (NI) not implemented, (??) unknown.

(==) Log file: "/var/log/Xorg.0.log", Time: Fri Jan 2 13:26:56 2009

(==) Using config file: "/etc/X11/xorg.conf"

(==) No Layout section. Using the first Screen section.

(**) |-->Screen "Default Screen" (0)

(**) | |-->Monitor "Configured Monitor"

(**) | |-->Device "Configured Video Device"

(==) Automatically adding devices

(==) Automatically enabling devices

(==) No FontPath specified. Using compiled-in default.

(WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.

Entry deleted from font path.

(==) FontPath set to:

/usr/share/fonts/X11/misc,

/usr/share/fonts/X11/100dpi/:unscaled,

/usr/share/fonts/X11/75dpi/:unscaled,

/usr/share/fonts/X11/Type1,

/usr/share/fonts/X11/100dpi,

/usr/share/fonts/X11/75dpi,

/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType

(==) ModulePath set to "/usr/lib/xorg/modules"

(II) Cannot locate a core pointer device.

(II) Cannot locate a core keyboard device.

(II) The server relies on HAL to provide the list of input devices.

If no devices become available, reconfigure HAL or disable AllowEmptyInput.

(II) Open ACPI successful (/var/run/acpid.socket)

(II) Loader magic: 0x81d9a40

(II) Module ABI versions:

X.Org ANSI C Emulation: 0.4

X.Org Video Driver: 4.1

X.Org XInput driver : 2.1

X.Org Server Extension : 1.1

X.Org Font Renderer : 0.6

(II) Loader running on linux

(++) using VT number 9





(--) PCI:*(0@1:0:0) Trident Microsystems CyberBlade/i1 rev 93, Mem @ 0x80800000/0, 0x80100000/0, 0x81000000/0, BIOS @ 0x????????/65536

(II) System resource ranges:

[0] -1 0 0xffffffff - 0xffffffff (0x1) MX[B]

[1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]

[2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]

[3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]

[4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]

[5] -1 0 0x00000000 - 0x00000000 (0x1) IX[B]

(II) LoadModule: "extmod"





(II) Loading /usr/lib/xorg/modules/extensions//libextmod.so

(II) Module extmod: vendor="X.Org Foundation"

compiled for 1.5.2, module version = 1.0.0

Module class: X.Org Server Extension

ABI class: X.Org Server Extension, version 1.1

(II) Loading extension SHAPE

(II) Loading extension MIT-SUNDRY-NONSTANDARD

(II) Loading extension BIG-REQUESTS

(II) Loading extension SYNC

(II) Loading extension MIT-SCREEN-SAVER

(II) Loading extension XC-MISC

(II) Loading extension XFree86-VidModeExtension

(II) Loading extension XFree86-Misc

(II) Loading extension XFree86-DGA

(II) Loading extension DPMS

(II) Loading extension TOG-CUP

(II) Loading extension Extended-Visual-Information

(II) Loading extension XVideo

(II) Loading extension XVideo-MotionCompensation

(II) Loading extension X-Resource

(II) LoadModule: "dbe"





(II) Loading /usr/lib/xorg/modules/extensions//libdbe.so

(II) Module dbe: vendor="X.Org Foundation"

compiled for 1.5.2, module version = 1.0.0

Module class: X.Org Server Extension

ABI class: X.Org Server Extension, version 1.1

(II) Loading extension DOUBLE-BUFFER

(II) LoadModule: "glx"





(II) Loading /usr/lib/xorg/modules/extensions//libglx.so

(II) Module glx: vendor="X.Org Foundation"

compiled for 1.5.2, module version = 1.0.0

ABI class: X.Org Server Extension, version 1.1

(==) AIGLX enabled

(==) Exporting typical set of GLX visuals

(II) Loading extension GLX

(II) LoadModule: "freetype"





(II) Loading /usr/lib/xorg/modules//fonts/libfreetype.so

(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"

compiled for 1.5.2, module version = 2.1.0

Module class: X.Org Font Renderer

ABI class: X.Org Font Renderer, version 0.6

(II) Loading font FreeType

(II) LoadModule: "record"





(II) Loading /usr/lib/xorg/modules/extensions//librecord.so

(II) Module record: vendor="X.Org Foundation"

compiled for 1.5.2, module version = 1.13.0

Module class: X.Org Server Extension

ABI class: X.Org Server Extension, version 1.1

(II) Loading extension RECORD

(II) LoadModule: "dri"





(II) Loading /usr/lib/xorg/modules/extensions//libdri.so

(II) Module dri: vendor="X.Org Foundation"

compiled for 1.5.2, module version = 1.0.0

ABI class: X.Org Server Extension, version 1.1

(II) Loading extension XFree86-DRI

(II) LoadModule: "trident"





(II) Loading /usr/lib/xorg/modules/drivers//trident_drv.so

(II) Module trident: vendor="X.Org Foundation"

compiled for 1.5.0, module version = 1.3.0

Module class: X.Org Video Driver

ABI class: X.Org Video Driver, version 4.1

(II) TRIDENT: driver for Trident chipsets: tvga9000, tvga9000i, tvga8900c,

tvga8900d, tvga9200cxr, tgui9400cxi, cyber9320, cyber9388, cyber9397,

cyber9397dvd, cyber9520, cyber9525dvd, cyberblade/e4, tgui9420dgi,

tgui9440agi, tgui9660, tgui9680, providia9682, providia9685,

cyber9382, cyber9385, 3dimage975, 3dimage985, blade3d, cyberbladei7,

cyberbladei7d, cyberbladei1, cyberbladei1d, cyberbladeAi1,

cyberbladeAi1d, bladeXP, cyberbladeXPAi1, cyberbladeXP4, XP5

(II) Primary Device is: PCI 01@00:00:0

(WW) Falling back to old probe method for trident

(--) Assigning device section with no busID to primary device

(--) Chipset cyberbladeAi1d found

(II) resource ranges after xf86ClaimFixedResources() call:

[0] -1 0 0xffffffff - 0xffffffff (0x1) MX[B]

[1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]

[2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]

[3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]

[4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]

[5] -1 0 0x00000000 - 0x00000000 (0x1) IX[B]

(II) resource ranges after probing:

[0] -1 0 0xffffffff - 0xffffffff (0x1) MX[B]

[1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]

[2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]

[3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]

[4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B]

[5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B]

[6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B]

[7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]

[8] -1 0 0x00000000 - 0x00000000 (0x1) IX[B]

[9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B]

[10] 0 0 0x000003c0 - 0x000003df (0x20) IS[B]

(II) Setting vga for screen 0.

(II) TRIDENT(0): Creating default Display subsection in Screen section

"Default Screen" for depth/fbbpp 24/32

(==) TRIDENT(0): Depth 24, (==) framebuffer bpp 32

(II) Loading sub module "vgahw"

(II) LoadModule: "vgahw"





(II) Loading /usr/lib/xorg/modules//libvgahw.so

(II) Module vgahw: vendor="X.Org Foundation"

compiled for 1.5.2, module version = 0.1.0

ABI class: X.Org Video Driver, version 4.1

(II) TRIDENT(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000

(II) Loading sub module "ramdac"

(II) LoadModule: "ramdac"

(II) Module "ramdac" already built-in

(==) TRIDENT(0): RGB weight 888

(==) TRIDENT(0): Default visual is TrueColor

(==) TRIDENT(0): Using gamma correction (1.0, 1.0, 1.0)

(==) TRIDENT(0): Using XAA for acceleration

(==) TRIDENT(0): Linear framebuffer at 0x80800000

(--) TRIDENT(0): IO registers at 0x80100000

(II) Loading sub module "vbe"

(II) LoadModule: "vbe"





(II) Loading /usr/lib/xorg/modules//libvbe.so

(II) Module vbe: vendor="X.Org Foundation"

compiled for 1.5.2, module version = 1.1.0

ABI class: X.Org Video Driver, version 4.1

(II) Loading sub module "int10"

(II) LoadModule: "int10"





(II) Loading /usr/lib/xorg/modules//libint10.so

(II) Module int10: vendor="X.Org Foundation"

compiled for 1.5.2, module version = 1.0.0

ABI class: X.Org Video Driver, version 4.1

(II) TRIDENT(0): initializing int10

(II) TRIDENT(0): Primary V_BIOS segment is: 0xc000

(II) TRIDENT(0): VESA BIOS detected

(II) TRIDENT(0): VESA VBE Version 2.0

(II) TRIDENT(0): VESA VBE Total Mem: 8192 kB

(II) TRIDENT(0): VESA VBE OEM: Trident CYBER 8620

(II) TRIDENT(0): VESA VBE OEM Software Rev: 2.0

(II) TRIDENT(0): VESA VBE OEM Vendor: TRIDENT MICROSYSTEMS INC.

(II) TRIDENT(0): VESA VBE OEM Product: CYBER 8620

(II) TRIDENT(0): VESA VBE OEM Product Rev: BTA 7.0 (04.15)

(II) Loading sub module "ddc"

(II) LoadModule: "ddc"

(II) Module "ddc" already built-in

(II) TRIDENT(0): VESA VBE DDC read failed

(--) TRIDENT(0): Revision is 122

(--) TRIDENT(0): Found CyberBlade/DSTN/Ai1 chip

(--) TRIDENT(0): RAM type is SDRAM

(--) TRIDENT(0): Using SW cursor

(--) TRIDENT(0): VideoRAM: 8192 kByte

(--) TRIDENT(0): TFT Panel 1024x768 found

(--) TRIDENT(0): Memory Clock is 100.23 MHz

(==) TRIDENT(0): Min pixel clock is 12 MHz

(--) TRIDENT(0): Max pixel clock is 115 MHz

(II) TRIDENT(0): Configured Monitor: Using default hsync range of 31.50-37.90 kHz

(II) TRIDENT(0): Configured Monitor: Using default vrefresh range of 50.00-70.00 Hz

(WW) TRIDENT(0): Unable to estimate virtual size

(II) TRIDENT(0): Clock range: 12.00 to 115.00 MHz

(II) TRIDENT(0): Not using default mode "640x350" (vrefresh out of range)

(II) TRIDENT(0): Not using default mode "320x175" (vrefresh out of range)

(II) TRIDENT(0): Not using default mode "640x400" (vrefresh out of range)

(II) TRIDENT(0): Not using default mode "320x200" (vrefresh out of range)

(II) TRIDENT(0): Not using default mode "720x400" (vrefresh out of range)

(II) TRIDENT(0): Not using default mode "360x200" (vrefresh out of range)

(II) TRIDENT(0): Not using default mode "640x480" (vrefresh out of range)

(II) TRIDENT(0): Not using default mode "320x240" (vrefresh out of range)

(II) TRIDENT(0): Not using default mode "640x480" (vrefresh out of range)

(II) TRIDENT(0): Not using default mode "320x240" (vrefresh out of range)

(II) TRIDENT(0): Not using default mode "640x480" (hsync out of range)

(II) TRIDENT(0): Not using default mode "320x240" (hsync out of range)

(II) TRIDENT(0): Not using default mode "800x600" (hsync out of range)

(II) TRIDENT(0): Not using default mode "400x300" (hsync out of range)

(II) TRIDENT(0): Not using default mode "800x600" (hsync out of range)

(II) TRIDENT(0): Not using default mode "400x300" (hsync out of range)

(II) TRIDENT(0): Not using default mode "800x600" (hsync out of range)

(II) TRIDENT(0): Not using default mode "400x300" (hsync out of range)

(II) TRIDENT(0): Not using default mode "1024x768" (vrefresh out of range)

(II) TRIDENT(0): Not using default mode "512x384" (vrefresh out of range)

(II) TRIDENT(0): Not using default mode "1024x768" (hsync out of range)

(II) TRIDENT(0): Not using default mode "512x384" (hsync out of range)

(II) TRIDENT(0): Not using default mode "1024x768" (hsync out of range)

(II) TRIDENT(0): Not using default mode "512x384" (hsync out of range)

(II) TRIDENT(0): Not using default mode "1024x768" (hsync out of range)

(II) TRIDENT(0): Not using default mode "512x384" (hsync out of range)

(II) TRIDENT(0): Not using default mode "1024x768" (hsync out of range)

(II) TRIDENT(0): Not using default mode "512x384" (hsync out of range)

(II) TRIDENT(0): Removing mode (1152x864) larger than the LCD panel (1024x768)

(II) TRIDENT(0): Not using default mode "1152x864" (unknown reason)

(II) TRIDENT(0): Not using default mode "576x432" (hsync out of range)

(II) TRIDENT(0): Removing mode (1280x960) larger than the LCD panel (1024x768)

(II) TRIDENT(0): Not using default mode "1280x960" (unknown reason)

(II) TRIDENT(0): Not using default mode "640x480" (hsync out of range)

(II) TRIDENT(0): Not using default mode "1280x960" (bad mode clock/interlace/doublescan)

(II) TRIDENT(0): Not using default mode "640x480" (hsync out of range)

(II) TRIDENT(0): Removing mode (1280x1024) larger than the LCD panel (1024x768)

(II) TRIDENT(0): Not using default mode "1280x1024" (unknown reason)

(II) TRIDENT(0): Not using default mode "640x512" (hsync out of range)

(II) TRIDENT(0): Not using default mode "1280x1024" (bad mode clock/interlace/doublescan)

(II) TRIDENT(0): Not using default mode "640x512" (hsync out of range)

(II) TRIDENT(0): Not using default mode "1280x1024" (bad mode clock/interlace/doublescan)

(II) TRIDENT(0): Not using default mode "640x512" (hsync out of range)

(II) TRIDENT(0): Not using default mode "1600x1200" (bad mode clock/interlace/doublescan)

(II) TRIDENT(0): Not using default mode "800x600" (hsync out of range)

(II) TRIDENT(0): Not using default mode "1600x1200" (bad mode clock/interlace/doublescan)

(II) TRIDENT(0): Not using default mode "800x600" (hsync out of range)

(II) TRIDENT(0): Not using default mode "1600x1200" (bad mode clock/interlace/doublescan)

(II) TRIDENT(0): Not using default mode "800x600" (hsync out of range)

(II) TRIDENT(0): Not using default mode "1600x1200" (bad mode clock/interlace/doublescan)

(II) TRIDENT(0): Not using default mode "800x600" (hsync out of range)

(II) TRIDENT(0): Not using default mode "1600x1200" (bad mode clock/interlace/doublescan)

(II) TRIDENT(0): Not using default mode "800x600" (hsync out of range)

(II) TRIDENT(0): Not using default mode "1792x1344" (insufficient memory for mode)

(II) TRIDENT(0): Not using default mode "896x672" (hsync out of range)

(II) TRIDENT(0): Not using default mode "1792x1344" (insufficient memory for mode)

(II) TRIDENT(0): Not using default mode "896x672" (bad mode clock/interlace/doublescan)

(II) TRIDENT(0): Not using default mode "1856x1392" (insufficient memory for mode)

(II) TRIDENT(0): Not using default mode "928x696" (hsync out of range)

(II) TRIDENT(0): Not using default mode "1856x1392" (insufficient memory for mode)

(II) TRIDENT(0): Not using default mode "928x696" (bad mode clock/interlace/doublescan)

(II) TRIDENT(0): Not using default mode "1920x1440" (insufficient memory for mode)

(II) TRIDENT(0): Not using default mode "960x720" (bad mode clock/interlace/doublescan)

(II) TRIDENT(0): Not using default mode "1920x1440" (insufficient memory for mode)

(II) TRIDENT(0): Not using default mode "960x720" (bad mode clock/interlace/doublescan)

(II) TRIDENT(0): Not using default mode "832x624" (hsync out of range)

(II) TRIDENT(0): Not using default mode "416x312" (hsync out of range)

(II) TRIDENT(0): Removing mode (1152x864) larger than the LCD panel (1024x768)

(II) TRIDENT(0): Not using default mode "1152x864" (unknown reason)

(II) TRIDENT(0): Not using default mode "576x432" (hsync out of range)

(II) TRIDENT(0): Removing mode (1152x864) larger than the LCD panel (1024x768)

(II) TRIDENT(0): Not using default mode "1152x864" (unknown reason)

(II) TRIDENT(0): Not using default mode "576x432" (hsync out of range)

(II) TRIDENT(0): Removing mode (1152x864) larger than the LCD panel (1024x768)

(II) TRIDENT(0): Not using default mode "1152x864" (unknown reason)

(II) TRIDENT(0): Not using default mode "576x432" (hsync out of range)

(II) TRIDENT(0): Not using default mode "1152x864" (bad mode clock/interlace/doublescan)

(II) TRIDENT(0): Not using default mode "576x432" (hsync out of range)

(II) TRIDENT(0): Not using default mode "1152x864" (bad mode clock/interlace/doublescan)

(II) TRIDENT(0): Not using default mode "576x432" (hsync out of range)

(II) TRIDENT(0): Not using default mode "1152x864" (bad mode clock/interlace/doublescan)

(II) TRIDENT(0): Not using default mode "576x432" (hsync out of range)

(II) TRIDENT(0): Removing mode (1360x768) larger than the LCD panel (1024x768)

(II) TRIDENT(0): Not using default mode "1360x768" (unknown reason)

(II) TRIDENT(0): Not using default mode "680x384" (hsync out of range)

(II) TRIDENT(0): Removing mode (1360x768) larger than the LCD panel (1024x768)

(II) TRIDENT(0): Not using default mode "1360x768" (unknown reason)

(II) TRIDENT(0): Not using default mode "680x384" (hsync out of range)

(II) TRIDENT(0): Not using default mode "1400x1050" (bad mode clock/interlace/doublescan)

(II) TRIDENT(0): Not using default mode "700x525" (hsync out of range)

(II) TRIDENT(0): Not using default mode "1400x1050" (bad mode clock/interlace/doublescan)

(II) TRIDENT(0): Not using default mode "700x525" (hsync out of range)

(II) TRIDENT(0): Not using default mode "1400x1050" (bad mode clock/interlace/doublescan)

(II) TRIDENT(0): Not using default mode "700x525" (hsync out of range)

(II) TRIDENT(0): Not using default mode "1400x1050" (bad mode clock/interlace/doublescan)

(II) TRIDENT(0): Not using default mode "700x525" (hsync out of range)

(II) TRIDENT(0): Removing mode (1440x900) larger than the LCD panel (1024x768)

(II) TRIDENT(0): Not using default mode "1440x900" (unknown reason)

(II) TRIDENT(0): Not using default mode "720x450" (hsync out of range)

(II) TRIDENT(0): Removing mode (1600x1024) larger than the LCD panel (1024x768)

(II) TRIDENT(0): Not using default mode "1600x1024" (unknown reason)

(II) TRIDENT(0): Not using default mode "800x512" (hsync out of range)

(II) TRIDENT(0): Not using default mode "1680x1050" (bad mode clock/interlace/doublescan)

(II) TRIDENT(0): Not using default mode "840x525" (hsync out of range)

(II) TRIDENT(0): Not using default mode "1680x1050" (bad mode clock/interlace/doublescan)

(II) TRIDENT(0): Not using default mode "840x525" (hsync out of range)

(II) TRIDENT(0): Not using default mode "1680x1050" (bad mode clock/interlace/doublescan)

(II) TRIDENT(0): Not using default mode "840x525" (hsync out of range)

(II) TRIDENT(0): Not using default mode "1680x1050" (bad mode clock/interlace/doublescan)

(II) TRIDENT(0): Not using default mode "840x525" (hsync out of range)

(II) TRIDENT(0): Not using default mode "1680x1050" (bad mode clock/interlace/doublescan)

(II) TRIDENT(0): Not using default mode "840x525" (hsync out of range)

(II) TRIDENT(0): Not using default mode "1920x1080" (bad mode clock/interlace/doublescan)

(II) TRIDENT(0): Not using default mode "960x540" (hsync out of range)

(II) TRIDENT(0): Not using default mode "1920x1200" (insufficient memory for mode)

(II) TRIDENT(0): Not using default mode "960x600" (hsync out of range)

(II) TRIDENT(0): Not using default mode "1920x1440" (insufficient memory for mode)

(II) TRIDENT(0): Not using default mode "960x720" (bad mode clock/interlace/doublescan)

(II) TRIDENT(0): Not using default mode "2048x1536" (insufficient memory for mode)

(II) TRIDENT(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)

(II) TRIDENT(0): Not using default mode "2048x1536" (insufficient memory for mode)

(II) TRIDENT(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)

(II) TRIDENT(0): Not using default mode "2048x1536" (insufficient memory for mode)

(II) TRIDENT(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)

(--) TRIDENT(0): Virtual size is 800x600 (pitch 800)

(**) TRIDENT(0): *Default mode "800x600": 40.0 MHz, 37.9 kHz, 60.3 Hz

(II) TRIDENT(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)

(**) TRIDENT(0): *Default mode "800x600": 36.0 MHz, 35.2 kHz, 56.2 Hz

(II) TRIDENT(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)

(**) TRIDENT(0): *Default mode "640x480": 25.2 MHz, 31.5 kHz, 59.9 Hz

(II) TRIDENT(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)

(**) TRIDENT(0): *Default mode "400x300": 20.0 MHz, 37.9 kHz, 60.3 Hz (D)

(II) TRIDENT(0): Modeline "400x300"x60.3 20.00 400 420 484 528 300 300 302 314 doublescan +hsync +vsync (37.9 kHz)

(**) TRIDENT(0): *Default mode "400x300": 18.0 MHz, 35.2 kHz, 56.3 Hz (D)

(II) TRIDENT(0): Modeline "400x300"x56.3 18.00 400 412 448 512 300 300 301 312 doublescan +hsync +vsync (35.2 kHz)

(**) TRIDENT(0): *Default mode "320x240": 12.6 MHz, 31.5 kHz, 60.1 Hz (D)

(II) TRIDENT(0): Modeline "320x240"x60.1 12.59 320 328 376 400 240 245 246 262 doublescan -hsync -vsync (31.5 kHz)

(==) TRIDENT(0): DPI set to (96, 96)

(II) Loading sub module "fb"

(II) LoadModule: "fb"





(II) Loading /usr/lib/xorg/modules//libfb.so

(II) Module fb: vendor="X.Org Foundation"

compiled for 1.5.2, module version = 1.0.0

ABI class: X.Org ANSI C Emulation, version 0.4

(II) Loading sub module "i2c"

(II) LoadModule: "i2c"

(II) Module "i2c" already built-in

(II) Loading sub module "xaa"

(II) LoadModule: "xaa"





(II) Loading /usr/lib/xorg/modules//libxaa.so

(II) Module xaa: vendor="X.Org Foundation"

compiled for 1.5.2, module version = 1.2.0

ABI class: X.Org Video Driver, version 4.1

(II) Loading sub module "ddc"

(II) LoadModule: "ddc"

(II) Module "ddc" already built-in

(--) Depth 24 pixmap format is 32 bpp

(II) do I need RAC? No, I don't.

(II) resource ranges after preInit:

[0] -1 0 0xffffffff - 0xffffffff (0x1) MX[B]

[1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]

[2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]

[3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]

[4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprU)

[5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprU)

[6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprU)

[7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]

[8] -1 0 0x00000000 - 0x00000000 (0x1) IX[B]

[9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B](OprU)

[10] 0 0 0x000003c0 - 0x000003df (0x20) IS[B](OprU)

(II) Loading sub module "int10"

(II) LoadModule: "int10"





(II) Reloading /usr/lib/xorg/modules//libint10.so

(II) TRIDENT(0): Initializing int10

(II) TRIDENT(0): Primary V_BIOS segment is: 0xc000

(II) TRIDENT(0): Overriding Horizontal timings.

(II) TRIDENT(0): Shadow on

(II) TRIDENT(0): H-timing shadow registers: 0xa3 0x00 0x84 0x94

(II) TRIDENT(0): H-timing registers: 0x7f 0x63 0x63 0x82 0x69 0x19

(II) TRIDENT(0): V-timing shadow registers: 0x24 0xf5 0x03 0x09 0x24 (0x08)

(II) TRIDENT(0): V-timing registers: 0x72 0xf0 0x59 0x2d 0x57 0x00 0x00

(II) TRIDENT(0): Setting BIOS Mode: 6d for: 800x600

(II) TRIDENT(0): Found Clock 130.00 n=219 m=23 k=0

(II) TRIDENT(0): Using 1447 scanlines of offscreen memory for area's

(II) TRIDENT(0): Using 1838208 bytes of offscreen memory for linear (offset=0x63f380)

(II) TRIDENT(0): Using XFree86 Acceleration Architecture (XAA)

Screen to screen bit blits

Solid filled rectangles

8x8 mono pattern filled rectangles

CPU to Screen color expansion

Solid Horizontal and Vertical Lines

Image Writes

Setting up tile and stipple cache:

32 128x128 slots

8 256x256 slots

(==) TRIDENT(0): Backing store disabled

(II) TRIDENT(0): DPMS enabled

(II) TRIDENT(0): Trident Video Flags: VID_ZOOM_INV

(==) RandR enabled

(II) Initializing built-in extension MIT-SHM

(II) Initializing built-in extension XInputExtension

(II) Initializing built-in extension XTEST

(II) Initializing built-in extension XKEYBOARD

(II) Initializing built-in extension XC-APPGROUP

(II) Initializing built-in extension SECURITY

(II) Initializing built-in extension XINERAMA

(II) Initializing built-in extension XFIXES

(II) Initializing built-in extension RENDER

(II) Initializing built-in extension RANDR

(II) Initializing built-in extension COMPOSITE

(II) Initializing built-in extension DAMAGE

(II) Initializing built-in extension XEVIE

(II) AIGLX: Screen 0 is not DRI capable

(II) AIGLX: Loaded and initialized /usr/lib/dri/swrast_dri.so

(II) GLX: Initialized DRISWRAST GL provider for screen 0

(II) config/hal: Adding input device Macintosh mouse button emulation

(II) LoadModule: "evdev"





(II) Loading /usr/lib/xorg/modules/input//evdev_drv.so

(II) Module evdev: vendor="X.Org Foundation"

compiled for 1.5.2, module version = 2.0.99

Module class: X.Org XInput Driver

ABI class: X.Org XInput driver, version 2.1

(**) Macintosh mouse button emulation: always reports core events

(**) Macintosh mouse button emulation: Device: "/dev/input/event0"

(II) Macintosh mouse button emulation: Found x and y relative axes

(II) Macintosh mouse button emulation: Found 3 mouse buttons

(II) Macintosh mouse button emulation: Configuring as mouse

(II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)

(**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5

(**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200

(II) config/hal: Adding input device SynPS/2 Synaptics TouchPad

(II) LoadModule: "synaptics"





(II) Loading /usr/lib/xorg/modules/input//synaptics_drv.so

(II) Module synaptics: vendor="X.Org Foundation"

compiled for 1.5.2, module version = 0.15.2

Module class: X.Org XInput Driver

ABI class: X.Org XInput driver, version 2.1

(II) Synaptics touchpad driver version 0.15.2

(II) SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5472

(II) SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4448

(**) Option "Device" "/dev/input/event6"

(--) SynPS/2 Synaptics TouchPad touchpad found

(**) SynPS/2 Synaptics TouchPad: always reports core events

(II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD)

(II) SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5472

(II) SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4448

(--) SynPS/2 Synaptics TouchPad touchpad found

(II) config/hal: Adding input device AT Translated Set 2 keyboard

(**) AT Translated Set 2 keyboard: always reports core events

(**) AT Translated Set 2 keyboard: Device: "/dev/input/event1"

(II) AT Translated Set 2 keyboard: Found keys

(II) AT Translated Set 2 keyboard: Configuring as keyboard

(II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)

(**) Option "xkb_rules" "evdev"

(**) AT Translated Set 2 keyboard: xkb_rules: "evdev"

(**) Option "xkb_model" "pc105"

(**) AT Translated Set 2 keyboard: xkb_model: "pc105"

(**) Option "xkb_layout" "it"

(**) AT Translated Set 2 keyboard: xkb_layout: "it"

(**) Option "xkb_options" "lv3:ralt_switch"

(**) AT Translated Set 2 keyboard: xkb_options: "lv3:ralt_switch"

AUDIT: Fri Jan 2 13:27:33 2009: 5247 X: client 4 rejected from local host ( uid=1000 gid=1000 pid=5290 )

AUDIT: Fri Jan 2 13:27:33 2009: 5247 X: client 4 rejected from local host ( uid=1000 gid=1000 pid=5291 )

AUDIT: Fri Jan 2 13:27:33 2009: 5247 X: client 4 rejected from local host ( uid=1000 gid=1000 pid=5292 )

(II) TRIDENT(0): Overriding Horizontal timings.

(II) TRIDENT(0): Shadow on

(II) TRIDENT(0): H-timing shadow registers: 0xa3 0x00 0x84 0x94

(II) TRIDENT(0): H-timing registers: 0x7b 0x63 0x63 0x80 0x67 0x10

(II) TRIDENT(0): V-timing shadow registers: 0x24 0xf5 0x03 0x09 0x24 (0x08)

(II) TRIDENT(0): V-timing registers: 0x6f 0xf0 0x59 0x2b 0x57 0x00 0x00

(II) TRIDENT(0): Setting BIOS Mode: 6d for: 800x600

(II) TRIDENT(0): Found Clock 130.00 n=219 m=23 k=0

(II) TRIDENT(0): Overriding Horizontal timings.

(II) TRIDENT(0): Shadow on

(II) TRIDENT(0): H-timing shadow registers: 0xa3 0x00 0x84 0x94

(II) TRIDENT(0): H-timing registers: 0x7b 0x63 0x63 0x80 0x67 0x10

(II) TRIDENT(0): V-timing shadow registers: 0x24 0xf5 0x03 0x09 0x24 (0x08)

(II) TRIDENT(0): V-timing registers: 0x6f 0xf0 0x59 0x2b 0x57 0x00 0x00

(II) TRIDENT(0): Setting BIOS Mode: 6d for: 800x600

(II) TRIDENT(0): Found Clock 130.00 n=219 m=23 k=0

(II) TRIDENT(0): Overriding Horizontal timings.

(II) TRIDENT(0): Shadow on

(II) TRIDENT(0): H-timing shadow registers: 0xa3 0x00 0x84 0x94

(II) TRIDENT(0): H-timing registers: 0x7b 0x63 0x63 0x80 0x67 0x10

(II) TRIDENT(0): V-timing shadow registers: 0x24 0xf5 0x03 0x09 0x24 (0x08)

(II) TRIDENT(0): V-timing registers: 0x6f 0xf0 0x59 0x2b 0x57 0x00 0x00

(II) TRIDENT(0): Setting BIOS Mode: 6d for: 800x600

(II) TRIDENT(0): Found Clock 130.00 n=219 m=23 k=0

(II) TRIDENT(0): Overriding Horizontal timings.

(II) TRIDENT(0): Shadow on

(II) TRIDENT(0): H-timing shadow registers: 0xa3 0x00 0x84 0x94

(II) TRIDENT(0): H-timing registers: 0x5f 0x4f 0x4f 0x80 0x52 0x1e

(II) TRIDENT(0): V-timing shadow registers: 0x24 0xbf 0x03 0x09 0x24 (0x08)

(II) TRIDENT(0): V-timing registers: 0x0b 0x3e 0xea 0x2c 0xdf 0x00 0x0b

(II) TRIDENT(0): Setting BIOS Mode: 6c for: 640x480

(II) TRIDENT(0): Found Clock 130.00 n=219 m=23 k=0

(II) TRIDENT(0): Overriding Horizontal timings.

(II) TRIDENT(0): Shadow on

(II) TRIDENT(0): H-timing shadow registers: 0xa3 0x00 0x84 0x94

(II) TRIDENT(0): H-timing registers: 0x7b 0x63 0x63 0x80 0x67 0x10

(II) TRIDENT(0): V-timing shadow registers: 0x24 0xf5 0x03 0x09 0x24 (0x08)

(II) TRIDENT(0): V-timing registers: 0x6f 0xf0 0x59 0x2b 0x57 0x00 0x00

(II) TRIDENT(0): Setting BIOS Mode: 6d for: 800x600

(II) TRIDENT(0): Found Clock 130.00 n=219 m=23 k=0

(II) TRIDENT(0): Overriding Horizontal timings.

(II) TRIDENT(0): Shadow on

(II) TRIDENT(0): H-timing shadow registers: 0xa3 0x00 0x84 0x94

(II) TRIDENT(0): H-timing registers: 0x7f 0x63 0x63 0x82 0x69 0x19

(II) TRIDENT(0): V-timing shadow registers: 0x24 0xf5 0x03 0x09 0x24 (0x08)

(II) TRIDENT(0): V-timing registers: 0x72 0xf0 0x59 0x2d 0x57 0x00 0x00

(II) TRIDENT(0): Setting BIOS Mode: 6d for: 800x600

(II) TRIDENT(0): Found Clock 130.00 n=219 m=23 k=0

(II) TRIDENT(0): Overriding Horizontal timings.

(II) TRIDENT(0): Shadow on

(II) TRIDENT(0): H-timing shadow registers: 0xa3 0x00 0x84 0x94

(II) TRIDENT(0): H-timing registers: 0x2d 0x27 0x27 0x80 0x29 0x0f

(II) TRIDENT(0): V-timing shadow registers: 0x24 0xbf 0x03 0x09 0x24 (0x08)

(II) TRIDENT(0): V-timing registers: 0x0a 0x3e 0xea 0x2c 0xdf 0x00 0x0a

(II) TRIDENT(0): Setting BIOS Mode: 6b for: 320x240

(II) TRIDENT(0): Found Clock 130.00 n=219 m=23 k=0

(II) TRIDENT(0): Overriding Horizontal timings.

(II) TRIDENT(0): Shadow on

(II) TRIDENT(0): H-timing shadow registers: 0xa3 0x00 0x84 0x94

(II) TRIDENT(0): H-timing registers: 0x7f 0x63 0x63 0x82 0x69 0x19

(II) TRIDENT(0): V-timing shadow registers: 0x24 0xf5 0x03 0x09 0x24 (0x08)

(II) TRIDENT(0): V-timing registers: 0x72 0xf0 0x59 0x2d 0x57 0x00 0x00

(II) TRIDENT(0): Setting BIOS Mode: 6d for: 800x600

(II) TRIDENT(0): Found Clock 130.00 n=219 m=23 k=0

(II) TRIDENT(0): Overriding Horizontal timings.

(II) TRIDENT(0): Shadow on

(II) TRIDENT(0): H-timing shadow registers: 0xa3 0x00 0x84 0x94

(II) TRIDENT(0): H-timing registers: 0x7b 0x63 0x63 0x80 0x67 0x10

(II) TRIDENT(0): V-timing shadow registers: 0x24 0xf5 0x03 0x09 0x24 (0x08)

(II) TRIDENT(0): V-timing registers: 0x6f 0xf0 0x59 0x2b 0x57 0x00 0x00

(II) TRIDENT(0): Setting BIOS Mode: 6d for: 800x600

(II) TRIDENT(0): Found Clock 130.00 n=219 m=23 k=0

(II) TRIDENT(0): Overriding Horizontal timings.

(II) TRIDENT(0): Shadow on

(II) TRIDENT(0): H-timing shadow registers: 0xa3 0x00 0x84 0x94

(II) TRIDENT(0): H-timing registers: 0x5f 0x4f 0x4f 0x80 0x52 0x1e

(II) TRIDENT(0): V-timing shadow registers: 0x24 0xbf 0x03 0x09 0x24 (0x08)

(II) TRIDENT(0): V-timing registers: 0x0b 0x3e 0xea 0x2c 0xdf 0x00 0x0b

(II) TRIDENT(0): Setting BIOS Mode: 6c for: 640x480

(II) TRIDENT(0): Found Clock 130.00 n=219 m=23 k=0

(II) TRIDENT(0): Overriding Horizontal timings.

(II) TRIDENT(0): Shadow on

(II) TRIDENT(0): H-timing shadow registers: 0xa3 0x00 0x84 0x94

(II) TRIDENT(0): H-timing registers: 0x3d 0x31 0x31 0x80 0x34 0x1c

(II) TRIDENT(0): V-timing shadow registers: 0x24 0xf5 0x03 0x09 0x24 (0x08)

(II) TRIDENT(0): V-timing registers: 0x72 0xf0 0x58 0x2c 0x57 0x00 0x72

(II) TRIDENT(0): Setting BIOS Mode: 6b for: 400x300

(II) TRIDENT(0): Found Clock 130.00 n=219 m=23 k=0

(II) TRIDENT(0): Overriding Horizontal timings.

(II) TRIDENT(0): Shadow on

(II) TRIDENT(0): H-timing shadow registers: 0xa3 0x00 0x84 0x94

(II) TRIDENT(0): H-timing registers: 0x3b 0x31 0x31 0x80 0x33 0x18

(II) TRIDENT(0): V-timing shadow registers: 0x24 0xf5 0x03 0x09 0x24 (0x08)

(II) TRIDENT(0): V-timing registers: 0x6e 0xf0 0x58 0x2a 0x57 0x00 0x6e

(II) TRIDENT(0): Setting BIOS Mode: 6b for: 400x300

(II) TRIDENT(0): Found Clock 130.00 n=219 m=23 k=0

(II) TRIDENT(0): Overriding Horizontal timings.

(II) TRIDENT(0): Shadow on

(II) TRIDENT(0): H-timing shadow registers: 0xa3 0x00 0x84 0x94

(II) TRIDENT(0): H-timing registers: 0x2d 0x27 0x27 0x80 0x29 0x0f

(II) TRIDENT(0): V-timing shadow registers: 0x24 0xbf 0x03 0x09 0x24 (0x08)

(II) TRIDENT(0): V-timing registers: 0x0a 0x3e 0xea 0x2c 0xdf 0x00 0x0a

(II) TRIDENT(0): Setting BIOS Mode: 6b for: 320x240

(II) TRIDENT(0): Found Clock 130.00 n=219 m=23 k=0

(II) TRIDENT(0): Overriding Horizontal timings.

(II) TRIDENT(0): Shadow on

(II) TRIDENT(0): H-timing shadow registers: 0xa3 0x00 0x84 0x94

(II) TRIDENT(0): H-timing registers: 0x7f 0x63 0x63 0x82 0x69 0x19

(II) TRIDENT(0): V-timing shadow registers: 0x24 0xf5 0x03 0x09 0x24 (0x08)

(II) TRIDENT(0): V-timing registers: 0x72 0xf0 0x59 0x2d 0x57 0x00 0x00

(II) TRIDENT(0): Setting BIOS Mode: 6d for: 800x600

(II) TRIDENT(0): Found Clock 130.00 n=219 m=23 k=0

(II) TRIDENT(0): Overriding Horizontal timings.

(II) TRIDENT(0): Shadow on

(II) TRIDENT(0): H-timing shadow registers: 0xa3 0x00 0x84 0x94

(II) TRIDENT(0): H-timing registers: 0x7b 0x63 0x63 0x80 0x67 0x10

(II) TRIDENT(0): V-timing shadow registers: 0x24 0xf5 0x03 0x09 0x24 (0x08)

(II) TRIDENT(0): V-timing registers: 0x6f 0xf0 0x59 0x2b 0x57 0x00 0x00

(II) TRIDENT(0): Setting BIOS Mode: 6d for: 800x600

(II) TRIDENT(0): Found Clock 130.00 n=219 m=23 k=0

newuser
02-01-2009, 16:30
Il problema dovrebbe essere qui(II) Module "ddc" already built-in

(II) TRIDENT(0): VESA VBE DDC read failed

(--) TRIDENT(0): Revision is 122

(--) TRIDENT(0): Found CyberBlade/DSTN/Ai1 chip

(--) TRIDENT(0): RAM type is SDRAM

(--) TRIDENT(0): Using SW cursor

(--) TRIDENT(0): VideoRAM: 8192 kByte

(--) TRIDENT(0): TFT Panel 1024x768 found

(--) TRIDENT(0): Memory Clock is 100.23 MHz

(==) TRIDENT(0): Min pixel clock is 12 MHz

(--) TRIDENT(0): Max pixel clock is 115 MHz

(II) TRIDENT(0): Configured Monitor: Using default hsync range of 31.50-37.90 kHz

(II) TRIDENT(0): Configured Monitor: Using default vrefresh range of 50.00-70.00 HzLa lettura dei dati ddc fallisce e xorg non riesce a recuperare la frequenza di funzionamento corretta.

Prova prima ad aggiungere questa rigaSection "Device"
Identifier "Configured Video Device"
Driver "Trident"
Option "Display" "LCD"
EndSection

Section "Monitor"
Identifier "Configured Monitor"
EndSection

Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
EndSectionSe non funziona prova questa versione:Section "Device"
Identifier "Configured Video Device"
Driver "Trident"
Option "Display" "LCD"
EndSection

Section "Monitor"
Identifier "AcerMonitor"
HorizSync 31.5 - 60
VertRefresh 60
Option "DPMS"
EndSection

EndSection

Section "Screen"
Identifier "Default Screen"
Monitor "AcerMonitor"
Device "Configured Video Device"
EndSection