Visualizzazione dei risultati da 1 a 6 su 6
  1. #1
    Utente di HTML.it L'avatar di eraclito
    Registrato dal
    May 2002
    Messaggi
    1,273

    ubuntu 10.04, scheda radeon 7500 e mouse

    Salve a tutti,

    su un travelmate 3200,
    (pentium m725, ati radeon 7500) ho installato ubuntu 10.04

    In fase di installazione ho dovuto attivare l'opzione acpi=off (nessuna sorpresa, capita sempre sui pc datati)

    Una volta terminata l'installazione avviene una cosa curiosa,
    il pc funziona perfettamente se ha un mouse usb inserito, in caso contrario crascia (apparentemente un errore della scheda grafica)
    Se parto con l'acpi disabilitato va anche senza mouse.

    Ho provato a seguire le varie guide che parlano della radeon 7500 senza risultati.
    La cosa che veramente mi sorprende è che a mouse inserito funzioni tutto perfettamente (effetti 3d compresi)

    Qualche idea?
    provo a postare nel prossimo post l'xorg.conf originale, e quello che ho provato a modificare. In entrambi i casi il funzionamento è identico (sì con il mouse, crascia senza)



    PS il touchpad a mouse inserito (o senza mouse prima del crash funziona correttamente)
    L'apprendere molte cose non insegna l'intelligenza
    Voglio avere dubbi più chiari

  2. #2
    Utente di HTML.it L'avatar di eraclito
    Registrato dal
    May 2002
    Messaggi
    1,273
    xorg originale:

    codice:
    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  "dri2"
    	Load  "record"
    	Load  "extmod"
    	Load  "glx"
    	Load  "dri"
    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"
    	#DisplaySize	  280   210	# mm
    	Identifier   "Monitor0"
    	VendorName   "CMO"
    	ModelName    "Color LCD"
    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
           	Identifier  "Card0"
    	Driver      "radeon"
    	VendorName  "ATI Technologies Inc"
    	BoardName   "RV350 [Mobility Radeon 9600 M10]"
    	BusID       "PCI:1:0:0"
    EndSection
    
    Section "Screen"
    	Identifier "Screen0"
    	Device     "Card0"
    	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
    L'apprendere molte cose non insegna l'intelligenza
    Voglio avere dubbi più chiari

  3. #3
    Utente di HTML.it L'avatar di eraclito
    Registrato dal
    May 2002
    Messaggi
    1,273
    xorg modificato

    codice:
    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"
    	...
    EndSection
    
    Section "Module"
    	Load  "dri"
    	Load  "record"
    	Load  "dri2"
    	Load  "glx"
    	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"
    	#DisplaySize	  280   210	# mm
    	Identifier   "Monitor0"
    	VendorName   "CMO"
    	ModelName    "Color LCD"
    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     "AccelMethod"        	"XAA"
            Option     "RenderAccel"                "off"
    	Identifier  "Card0"
    	Driver      "radeon"
    	VendorName  "ATI Technologies Inc"
    	BoardName   "RV350 [Mobility Radeon 9600 M10]"
    	BusID       "PCI:1:0:0"
    EndSection
    
    Section "Screen"
    ...
    	EndSubSection
    EndSection
    
    Section "ServerFlags"
            Option          "AIGLX"         "True"
    EndSection
    L'apprendere molte cose non insegna l'intelligenza
    Voglio avere dubbi più chiari

  4. #4
    Utente di HTML.it L'avatar di eraclito
    Registrato dal
    May 2002
    Messaggi
    1,273
    qualche idea?

    per prova ho istallato anche suse 11.3, stesso problema

    con il mouse va, senza si blocca...
    L'apprendere molte cose non insegna l'intelligenza
    Voglio avere dubbi più chiari

  5. #5
    e senza xorg.conf ?

  6. #6
    Utente di HTML.it
    Registrato dal
    Jun 2002
    Messaggi
    371
    Vedo che il tuo xorg.conf non ha niente riguardante il Touchpad, il mio è così

    # /etc/X11/xorg.conf (xorg X Window System server configuration file)
    #
    # This file was generated by dexconf, the Debian X Configuration tool, using
    # values from the debconf database.
    #
    # Edit this file with caution, and see the /etc/X11/xorg.conf manual page.
    # (Type "man /etc/X11/xorg.conf" at the shell prompt.)
    #
    # This file is automatically updated on xserver-xorg package upgrades *only*
    # if it has not been modified since the last upgrade of the xserver-xorg
    # package.
    #
    # If you have edited this file but would like it to be automatically updated
    # again, run the following command:
    # sudo dpkg-reconfigure -phigh xserver-xorg

    Section "Files"
    FontPath "/usr/share/fonts/X11/misc"
    FontPath "/usr/X11R6/lib/X11/fonts/misc"
    FontPath "/usr/share/fonts/X11/cyrillic"
    FontPath "/usr/X11R6/lib/X11/fonts/cyrillic"
    FontPath "/usr/share/fonts/X11/100dpi/:unscaled"
    FontPath "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"
    FontPath "/usr/share/fonts/X11/75dpi/:unscaled"
    FontPath "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"
    FontPath "/usr/share/fonts/X11/Type1"
    FontPath "/usr/X11R6/lib/X11/fonts/Type1"
    FontPath "/usr/share/fonts/X11/100dpi"
    FontPath "/usr/X11R6/lib/X11/fonts/100dpi"
    FontPath "/usr/share/fonts/X11/75dpi"
    FontPath "/usr/X11R6/lib/X11/fonts/75dpi"
    # path to defoma fonts
    FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
    EndSection


    Section "Module"
    Load "i2c"
    Load "bitmap"
    Load "ddc"
    # Load "dri"
    Load "extmod"
    Load "freetype"
    Load "glx"
    Load "int10"
    Load "vbe"
    EndSection

    Section "InputDevice"
    Identifier "Generic Keyboard"
    Driver "kbd"
    Option "CoreKeyboard"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "it"
    EndSection

    Section "InputDevice"
    Identifier "Configured Mouse"
    Driver "mouse"
    Option "CorePointer"
    Option "Device" "/dev/input/mice"
    Option "Protocol" "ImPS/2"
    Option "ZAxisMapping" "4 5"
    # Option "Emulate3Buttons" "true"
    EndSection

    Section "InputDevice"
    Identifier "Synaptics Touchpad"
    Driver "synaptics"
    Option "SendCoreEvents" "true"
    Option "Device" "/dev/psaux"
    Option "Protocol" "auto-dev"
    Option "HorizScrollDelta" "0"
    EndSection

    Section "Device"
    Identifier "nVidia Corporation NVIDIA Default Card"
    Option "NoLogo" "True"
    Driver "nvidia"
    BusID "PCI:1:0:0"
    EndSection

    Section "Monitor"
    Identifier "Monitor Generico"
    Option "DPMS"
    HorizSync 28-64
    VertRefresh 43-60
    DisplaySize 331.8 207.4
    EndSection

    Section "Screen"
    Identifier "Default Screen"
    Device "nVidia Corporation NVIDIA Default Card"
    Monitor "Monitor Generico"
    DefaultDepth 24
    SubSection "Display"
    Depth 1
    Modes "1200x800" "1152x864" "1152x768" "1024x768"
    EndSubSection
    SubSection "Display"
    Depth 4
    Modes "1200x800" "1152x864" "1152x768" "1024x768"
    EndSubSection
    SubSection "Display"
    Depth 8
    Modes "1200x800" "1152x864" "1152x768" "1024x768"
    EndSubSection
    SubSection "Display"
    Depth 15
    Modes "1200x800" "1152x864" "1152x768" "1024x768"
    EndSubSection
    SubSection "Display"
    Depth 16
    Modes "1680x1050" "1600x1024" "1440x900" "1400x1050"
    EndSubSection
    SubSection "Display"
    Depth 24
    Modes "1680x1050" "1600x1024" "1440x900" "1400x1050"
    EndSubSection
    EndSection

    Section "ServerLayout"
    Identifier "Default Layout"
    Screen "Default Screen"
    InputDevice "Generic Keyboard"
    InputDevice "Configured Mouse"
    InputDevice "Synaptics Touchpad"
    EndSection

    Section "ServerFlags"
    Option "AutoAddDevices" "False"
    Option "AllowEmptyInput" "False"
    EndSection

    Section "DRI"
    Mode 0666
    EndSection

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved.