[Ubuntu] Drivers willen maar niet

Pagina: 1
Acties:
  • 128 views sinds 30-01-2008
  • Reageer

Onderwerpen


Acties:
  • 0 Henk 'm!

  • 3V3RT
  • Registratie: Januari 2004
  • Laatst online: 16-08 22:30
Hallo daar,

Ik zit hier met een ubuntu installatie, die helaas niet standaard m'n ATI RADEON 9600XT ondersteund. Resoluties hoger dan 800x600 lukken mij niet om werkend te krijgen. Ik heb geprobeerd om onofficiele drivers te installeren met een howto van deze website : http://wiki.cchtml.com/in...u_Edgy_Installation_Guide .

Dit heeft niet mogen baten, dus nu zou ik graag willen weten hoe ik te werk moet gaan?

Acties:
  • 0 Henk 'm!

  • Jungian
  • Registratie: Juni 2006
  • Niet online

Jungian

>_<

Post je /etc/X11/xorg.conf eens. :)

0.0


Acties:
  • 0 Henk 'm!

  • 3V3RT
  • Registratie: Januari 2004
  • Laatst online: 16-08 22:30
let op, ik heb de lines die toegevoegd zijn weer verwijderd. Dit zou dus de originele xorg.conf moeten zijn.

M'n installatie werkte namelijk niet meer, dus heb ik van de live cd de xorg.conf gekopieerd.

Ik weet niet wat nu allemaal van belang is , dus ik post de hele config maar :

code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
Section "Files"
    FontPath    "/usr/share/X11/fonts/misc"
    FontPath    "/usr/share/X11/fonts/cyrillic"
    FontPath    "/usr/share/X11/fonts/100dpi/:unscaled"
    FontPath    "/usr/share/X11/fonts/75dpi/:unscaled"
    FontPath    "/usr/share/X11/fonts/Type1"
    FontPath    "/usr/share/X11/fonts/100dpi"
    FontPath    "/usr/share/X11/fonts/75dpi"
    FontPath    "/usr/share/fonts/X11/misc"
    # 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    "type1"
    Load    "vbe"
EndSection

Section "InputDevice"
    Identifier  "Generic Keyboard"
    Driver      "kbd"
    Option      "CoreKeyboard"
    Option      "XkbRules"  "xorg"
    Option      "XkbModel"  "pc105"
    Option      "XkbLayout" "us"
    Option      "XkbOptions"    "lv3:ralt_switch"
EndSection

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

Section "InputDevice"
  Driver        "wacom"
  Identifier    "stylus"
  Option        "Device"        "/dev/wacom"          # Change to 
                                                      # /dev/input/event
                                                      # for USB
  Option        "Type"          "stylus"
  Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "eraser"
  Option        "Device"        "/dev/wacom"          # Change to 
                                                      # /dev/input/event
                                                      # for USB
  Option        "Type"          "eraser"
  Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "cursor"
  Option        "Device"        "/dev/wacom"          # Change to 
                                                      # /dev/input/event
                                                      # for USB
  Option        "Type"          "cursor"
  Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY
EndSection

Section "Device"
    Identifier  "ATI Technologies, Inc. RV350 AR [Radeon 9600 XT]"
    Driver      "ati"
    BusID       "PCI:1:0:0"
EndSection

Section "Monitor"
    Identifier  "L1811S"
    Option      "DPMS"
EndSection

Section "Screen"
    Identifier  "Default Screen"
    Device      "ATI Technologies, Inc. RV350 AR [Radeon 9600 XT]"
    Monitor     "L1811S"
    DefaultDepth    24
    SubSection "Display"
        Depth       1
        Modes       "1280x1024" "1024x768" "800x600" "720x400" "640x480"
    EndSubSection
    SubSection "Display"
        Depth       4
        Modes       "1280x1024" "1024x768" "800x600" "720x400" "640x480"
    EndSubSection
    SubSection "Display"
        Depth       8
        Modes       "1280x1024" "1024x768" "800x600" "720x400" "640x480"
    EndSubSection
    SubSection "Display"
        Depth       15
        Modes       "1280x1024" "1024x768" "800x600" "720x400" "640x480"
    EndSubSection
    SubSection "Display"
        Depth       16
        Modes       "1280x1024" "1024x768" "800x600" "720x400" "640x480"
    EndSubSection
    SubSection "Display"
        Depth       24
        Modes       "1280x1024" "1024x768" "800x600" "720x400" "640x480"
    EndSubSection
EndSection

Section "ServerLayout"
    Identifier  "Default Layout"
    Screen      "Default Screen"
    InputDevice "Generic Keyboard"
    InputDevice "Configured Mouse"
    InputDevice     "stylus" "SendCoreEvents"
    InputDevice     "cursor" "SendCoreEvents"
    InputDevice     "eraser" "SendCoreEvents"
EndSection

Section "DRI"
    Mode    0666
EndSection

Acties:
  • 0 Henk 'm!

Verwijderd

bij ati.com kun je linux drivers downloaden (bij mij werken deze perfect :) is de fglrx driver) dan als je ze hebt geinstalleers aticonfig in console typen krijg je veel info(zal ff examples posten :)):

Examples:
1. Setting up fglrx for the first time.
Single head : aticonfig --initial --input=/etc/X11/xorg.conf
Dual head : aticonfig --initial=dual-head --screen-layout=above
This command will generate a dual head configuration
file with the second screen located above the first
screen.
2. Setting up big desktop to horizontal and set overlay on secondary display.
aticonfig --dtop=horizontal --overlay-on=1
3. Setting up modes for primary display.
aticonfig --resolution=0,1600x1200,1280x1024,1024x768
4. Force primary CRT on and TV-out off.
aticonfig --force-monitor=crt1,notv


daarmee kun je dan resoluties ed instellen

[ Voor 70% gewijzigd door Verwijderd op 19-02-2007 17:08 ]


Acties:
  • 0 Henk 'm!

  • frankivo
  • Registratie: Januari 2002
  • Laatst online: 02-06 13:53
Verwijderd schreef op maandag 19 februari 2007 @ 17:05:
bij ati.com kun je linux drivers downloaden (bij mij werken deze perfect :) is de fglrx driver) dan als je ze hebt geinstalleers aticonfig in console typen krijg je veel info(zal ff examples posten :)):

...
Ubuntu biedt deze drivers ook zelf aan :)
http://packages.ubuntu.com/edgy/misc/xorg-driver-fglrx

iRacing Profiel


Acties:
  • 0 Henk 'm!

  • smokalot
  • Registratie: Juni 2001
  • Laatst online: 09-09 23:05

smokalot

titel onder

Verwijderd schreef op maandag 19 februari 2007 @ 17:05:
bij ati.com kun je linux drivers downloaden (bij mij werken deze perfect :) ) dan als je ze hebt geinstalleers aticonfig in console typen
daar kun je dan resoluties ed instellen
niet op die manier doen.

Je packagemanager kent jouw systeem het beste, installeer dus alles indien mogelijk via je package manager.

maar, bij TS werken de ati-drivers blijkbaar niet goed.

Het zou gewoon moeten werken, maar wel met de radeon driver. het r300 project heeft open source drivers gemaakt voor de 9600XT, die wel stabieler en featurerijker zijn dan de fglrx driver, maar wel langzamer.

It sounds like it could be either bad hardware or software


Acties:
  • 0 Henk 'm!

  • 3V3RT
  • Registratie: Januari 2004
  • Laatst online: 16-08 22:30
Verwijderd schreef op maandag 19 februari 2007 @ 17:05:
bij ati.com kun je linux drivers downloaden (bij mij werken deze perfect :) is de fglrx driver) dan als je ze hebt geinstalleers aticonfig in console typen krijg je veel info(zal ff examples posten :)):

Examples:
1. Setting up fglrx for the first time.
Single head : aticonfig --initial --input=/etc/X11/xorg.conf
Dual head : aticonfig --initial=dual-head --screen-layout=above
This command will generate a dual head configuration
file with the second screen located above the first
screen.
2. Setting up big desktop to horizontal and set overlay on secondary display.
aticonfig --dtop=horizontal --overlay-on=1
3. Setting up modes for primary display.
aticonfig --resolution=0,1600x1200,1280x1024,1024x768
4. Force primary CRT on and TV-out off.
aticonfig --force-monitor=crt1,notv


daarmee kun je dan resoluties ed instellen
.run file deed bij niks. En de standaard .rpm packages werden niet ondersteund door de ubuntu package manager

Acties:
  • 0 Henk 'm!

  • 3V3RT
  • Registratie: Januari 2004
  • Laatst online: 16-08 22:30
Goed, de installatie via de .run file van de ati site is toch gelukt. Alleen de resolutie blijft op 1024x786 hangen.
fglrxinfo geeft:
code:
1
2
3
4
5
Xlib:  extension "XFree86-DRI" missing on display ":0.0".
display: :0.0  screen: 0
OpenGL vendor string: Mesa project: www.mesa3d.org
OpenGL renderer string: Mesa GLX Indirect
OpenGL version string: 1.2 (1.5 Mesa 6.5.1)


Het MESA gedeelte houd in dat er iets is fout gegaan?.

Heb verder geen extra dingen gedaan (zoals kernel-source installaties) om dit te bewerkstelligen. alleen .run gedraait en "aticonfig --initial" uitgevoerd.

Acties:
  • 0 Henk 'm!

  • smokalot
  • Registratie: Juni 2001
  • Laatst online: 09-09 23:05

smokalot

titel onder

3V3RT schreef op maandag 19 februari 2007 @ 17:53:
Goed, de installatie via de .run file van de ati site is toch gelukt. Alleen de resolutie blijft op 1024x786 hangen.
fglrxinfo geeft:
code:
1
2
3
4
5
Xlib:  extension "XFree86-DRI" missing on display ":0.0".
display: :0.0  screen: 0
OpenGL vendor string: Mesa project: www.mesa3d.org
OpenGL renderer string: Mesa GLX Indirect
OpenGL version string: 1.2 (1.5 Mesa 6.5.1)


Het MESA gedeelte houd in dat er iets is fout gegaan?.

Heb verder geen extra dingen gedaan (zoals kernel-source installaties) om dit te bewerkstelligen. alleen .run gedraait en "aticonfig --initial" uitgevoerd.
de melding geeft aan dat alles goed is.

It sounds like it could be either bad hardware or software


Acties:
  • 0 Henk 'm!

  • Jungian
  • Registratie: Juni 2006
  • Niet online

Jungian

>_<

smokalot schreef op maandag 19 februari 2007 @ 18:43:
de melding geeft aan dat alles goed is.
Mesa indirect != goed. Niet dat dat iets met die 1024x768 te maken heeft, maar geen direct rendering is niet oké :)

@3VRT

Voeg dit eens toe aan je xorg.conf en restart dan eens X (control-alt-backspace) :
Section "Extensions"
Option "Composite" "Disable"
EndSection
Dan zou je in ieder geval direct rendering moeten hebben (als driver-installatie ed goed zijn gegaan).
OpenGL vendor string: ATI Technologies Inc.
OpenGL renderer string: MOBILITY RADEON X600 Generic
OpenGL version string: 2.0.6286 (8.33.6)
krijg ik met mijn Mobility Radeon X600 + flgrx-driver.

[ Voor 67% gewijzigd door Jungian op 19-02-2007 19:19 ]

0.0


Acties:
  • 0 Henk 'm!

  • smokalot
  • Registratie: Juni 2001
  • Laatst online: 09-09 23:05

smokalot

titel onder

Jungian schreef op maandag 19 februari 2007 @ 19:14:
[...]

Mesa indirect != goed. Niet dat dat iets met die 1024x768 te maken heeft, maar geen direct rendering is niet oké :)
excuus, ik dacht aan de open drivers.

It sounds like it could be either bad hardware or software


Acties:
  • 0 Henk 'm!

  • 3V3RT
  • Registratie: Januari 2004
  • Laatst online: 16-08 22:30
Jungian schreef op maandag 19 februari 2007 @ 19:14:


@3VRT

Voeg dit eens toe aan je xorg.conf en restart dan eens X (control-alt-backspace) :

[...]

Dan zou je in ieder geval direct rendering moeten hebben (als driver-installatie ed goed zijn gegaan).
het extra stukje configuratie gaf een zwart beeld.

fglrxinfo geeft nu wel andere info :

code:
1
2
3
4
display: :0.0  screen: 0
OpenGL vendor string: Tungsten Graphics, Inc.
OpenGL renderer string: Mesa DRI R300 20060815 AGP 1x TCL
OpenGL version string: 1.2 (1.3 Mesa 6.5.1)


het probleem is nog steeds dat hij op 1024x786 blijft draaien.

EDIT: het ATI control panel wil ook niet starten. fireglcontrolpanel kan niet worden gevonden 8)7

[ Voor 6% gewijzigd door 3V3RT op 20-02-2007 01:06 ]


Acties:
  • 0 Henk 'm!

  • 3V3RT
  • Registratie: Januari 2004
  • Laatst online: 16-08 22:30
resolutie is gefixt!, yay!. Ik heb zitten spelen met mode2 in de aticonfig (blijkbaar hangt me scherm aan de 2e uitgang van m'n 9600XT).

alleen de direct rendering wil niet lukken met het toegevoegde stukje config. Weet iemand misschien daarvoor een oplossing?

Acties:
  • 0 Henk 'm!

  • Jouke74
  • Registratie: Juni 2006
  • Laatst online: 03-04 19:54
Ik heb uiteindelijk deze Wiki Methode 2 gevolg voor het installeren van ATI drivers onder Ubuntu AMD64 voor een X1600 kaart. Wat een gedoe zeg, en dat alleen maar om een videokaart werkend te krijgen. Mijn kaart bleef onder de standaard Ubuntu install hangen op "Vesa" = erg traag. Het gaat nu stukken beter gelukkig. Misschien dat het nog wat aanvullende info biedt, zoals het opruimen van de oude drivers.

http://wiki.cchtml.com/in...Dapper_Installation_Guide

"That was left handed..." - JJH


Acties:
  • 0 Henk 'm!

  • 3V3RT
  • Registratie: Januari 2004
  • Laatst online: 16-08 22:30
code:
1
2
3
4
display: :0.0  screen: 0
OpenGL vendor string: ATI Technologies Inc.
OpenGL renderer string: RADEON 9600 XT Generic
OpenGL version string: 2.0.6011 (8.28.8)

:*) , resolutie is goed, en direct rendering is ook aan.

Nu XGL proberen om Beryl aan de praat krijgen :)
Bedankt voor alle hulp
Pagina: 1