# This file contains all the bugs/glitches/inconsistencies shipped in # 9.0 (Dolphin) Mandrake Linux Release. # Feel free to add your entry and if possible the fixes and status of # the errata. o Drakxtools: ========== widget libraries: In both XFdrake and printerdrake pop up small, empty, gray windows when clicking in the main menu. STATUS: Not fixed. Scroll bars and widget sizes often not correct (visible primarily in the printer options step of the "Add printer" wizard of printerdrake. STATUS: Not fixed. harddrake: logdrake: IS: Send the alert mail when service is stopped but the mail is empty. SHOULD BE: incorporate a text on which service is stopped. Status: not fixed. o Drakconf: ========= IS: locale nl_NL, sl and zh_CN prevent drakconf from starting with a "cannot call set_active on undefined values" error. SHOULD BE: work well in all locales. a workaround has been comitted o Drakfont: ========= drakfont get stopped in stat64("/mnt/nt/winnt/fonts/8514oem.fon", ...) on ntfs partitions. there's a bug in ntfs.o fs module of the kernel o Install: ======== o urpmi: ====== "urpmi mplayer" shows a list of libraries it needs and asks whether to install all this, after saying "y", it says that all these packages are missing and fails (I have shown it to François and he says that is a bug with the "contribs". He had to regenerate the hdlists somehow. STATUS: Not fixed. o XFree 4.2.x: ============ Touchpad mouse on my Asus S8600 notebook. Worked out-of-the-box with Mandrake 8.2, but in 9.0 I cannot do any dragging operation with the PS/2-"Standard" mouse setting. I switched to "Glidepoint" with mousedrake and then dragging works, but the emulation of the third button by pressing both buttons not. Adding the lines Option "Emulate3Buttons" Option "Emulate3Timeout" "50" to the mouse section of /etc/X11/XF86Config-4 manually fixes the middle-button problem. STATUS: Not fixed. Sometimes, XFree86 can cause sound glitches because of intensive pci bus usage. Adding the line Option "PciRetry" "true" to the "Device" section /etc/X11/XF86Config-4 fixes these boxes. I810 driver is bogus: when Xrender extension is in use (antialiased fonts), X11 may crash upon vt switch. is fixed in devel branch of cvs o Printer drivers: ================ "Best Grayscale" mode of HP DeskJet 6xx and Apollo printers does not work. STATUS: Fixed on linuxprinting.org, needs to be packaged in "printer-drivers". o kernel: ======= Sometimes reboot stops on "illegal seek" message (having /usr on / fs fix it) Sometimes process get blocked in D-state on ntfs partitions (see drakfont) i810_audio mistakely say to modules.pm through modules.*map it handles nforces whereas it lacks some workaround nvidia and alsa uses. workaround: perl-install/patch/patch-nforce.pl snd-via686 is said to produce background noise since alsa-0.9.0rc3 workaround: switch to via82cxxx_audio (oss driver) through draksound Mageia Installer and base platform for many utilitiesThierry Vignaud [tv]
summaryrefslogtreecommitdiffstats
path: root/perl-install/scanner.pm
blob: 0e67eb02e6c78c694ef537d94bd247f1d7d1f518 (plain)
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227