#!/usr/bin/perl sub output { my $f = shift; local *F; open F, ">$f" or die "output in file $f failed: $!\n"; print F foreach @_; } output('/tmp/rescue-doc-contents', q( Information regarding problems not directly addressed by this rescue. Are you certain "rescue mode" is the best tool for your specific problem? The rescue system on this CD is a very basic text-based environment for rescuing systems that no longer boot. You will not find an easy-to-use graphical environment in this rescue system, nor the detection/configuration libraries. The vast majority of problems that can affect a Linux system are much easier to repair on a running system than by booting into "rescue mode". In fact, there are very few problems which aren't easier to resolve in the comfortable environment of a fully installed system than in this spartan "rescue system" shell. Some of the most common problems include: - bad or missing X (video display) configuration - adding/removing/reconfiguring hardware - repairing problems caused by installing third-party software with the "--force" and "--nodeps" options The general rule of thumb is: "If you can boot into the Linux system without using rescue mode or this CD, there is no real reason to use the rescue CD". However, if you can no longer boot into the system, the rescue system is the right tool. Some common examples include: - If you previously changed some parameters in the /etc/fstab and the system will no longer boot, fix the offending line while in rescue mode, then try to boot normally into your system. - If the problem cannot be completely resolved in rescue mode (for example, if you need to reconfigure the video display), just modify what's necessary to boot into a running system, then complete the fix from there. For more information on troubleshooting your system, please consult the official manuals, the documentation on wiki.mageia.org or support forum at forum.mageia.org. )); exec 'less /tmp/rescue-doc-contents'; ption value='topic/MDK-10-update'>topic/MDK-10-update Mageia Installer and base platform for many utilitiesThierry Vignaud [tv]
summaryrefslogtreecommitdiffstats
path: root/perl-install/Xconfig/xfreeX.pm
blob: 9b8744a4c0271fb83bf4105b307478117ffdae18 (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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
package Xconfig::xfreeX; # $Id$

use diagnostics;
use strict;

use Xconfig::parse;
use common;
use log;


sub empty_config {
    my ($class) = @_;
    my $raw_X = Xconfig::parse::read_XF86Config_from_string(our $default_header);
    bless $raw_X, $class;
}

sub read {