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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
|
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: debian-boot@lists.debian.org\n"
"POT-Creation-Date: 2008-07-04 00:09+0000\n"
"PO-Revision-Date: 2008-03-25 14:31+0900\n"
"Last-Translator: KURASAWA Nozomu <nabetaro@caldron.jp>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Tag: title
#: preparing.xml:5
#, no-c-format
msgid "Before Installing &debian;"
msgstr "&debian; ã®ã€ã³ã¹ããŒã«åã«"
#. Tag: para
#: preparing.xml:6
#, no-c-format
msgid ""
"This chapter deals with the preparation for installing Debian before you "
"even boot the installer. This includes backing up your data, gathering "
"information about your hardware, and locating any necessary information."
msgstr ""
"æ¬ç« ã¯ãã€ã³ã¹ããŒã©ãèµ·åããåã®ãDebian ãã€ã³ã¹ããŒã«ããæºåã«ã€ããŠæ±ã"
"ãŸããããã§ã¯ãããŒã¿ã®ããã¯ã¢ãããããŒããŠã§ã¢ã«é¢ããæ
å ±åéãå¿
èŠãªæ
"
"å ±ã®ç¹å®ãšãã£ãããšãå«ã¿ãŸãã"
#. Tag: title
#: preparing.xml:19
#, no-c-format
msgid "Overview of the Installation Process"
msgstr "ã€ã³ã¹ããŒã«ããã»ã¹ã®æŠèŠ"
#. Tag: para
#: preparing.xml:20
#, no-c-format
msgid ""
"First, just a note about re-installations. With Debian, a circumstance that "
"will require a complete re-installation of your system is very rare; perhaps "
"mechanical failure of the hard disk would be the most common case."
msgstr ""
"ã¯ããã«ãåã€ã³ã¹ããŒã«ã«ã€ããŠè¿°ã¹ãŠãããŸããDebianã§ãã·ã¹ãã ã®å®å
šãªå"
"ã€ã³ã¹ããŒã«ãå¿
èŠã«ãªãç¶æ³ã¯ãéåžžã«ãŸãã§ããããããããã£ãšããããããª"
"ã±ãŒã¹ã¯ããŒããã£ã¹ã¯ã®æ©æ¢°çãªæ
éã§ãããã"
#. Tag: para
#: preparing.xml:27
#, no-c-format
msgid ""
"Many common operating systems may require a complete installation to be "
"performed when critical failures take place or for upgrades to new OS "
"versions. Even if a completely new installation isn't required, often the "
"programs you use must be re-installed to operate properly in the new OS."
msgstr ""
"å€ãã®æ®éã®ãªãã¬ãŒãã£ã³ã°ã·ã¹ãã ããé倧ãªæ
éãèµ·ããããOS ã®æ°ããŒãžã§"
"ã³ãžã®ã¢ããã°ã¬ãŒãã®éã«ãå®å
šã€ã³ã¹ããŒã«ãèŠæ±ãããããããŸãããå®å
šãª"
"æ°ã€ã³ã¹ããŒã«ãèŠæ±ããªããŠãã䜿çšããããã°ã©ã ãæ° OS ã§é©åã«åãããã"
"ã«åã€ã³ã¹ããŒã«ããªããã°ãªããŸããã"
#. Tag: para
#: preparing.xml:35
#, no-c-format
msgid ""
"Under &debian;, it is much more likely that your OS can be repaired rather "
"than replaced if things go wrong. Upgrades never require a wholesale "
"installation; you can always upgrade in-place. And the programs are almost "
"always compatible with successive OS releases. If a new program version "
"requires newer supporting software, the Debian packaging system ensures that "
"all the necessary software is automatically identified and installed. The "
"point is, much effort has been put into avoiding the need for re-"
"installation, so think of it as your very last option. The installer is "
"<emphasis>not</emphasis> designed to re-install over an existing system."
msgstr ""
"&debian; ã§ã¯ãããŸãè¡ããªãå ŽåãOS ãåãæ¿ããã®ã§ã¯ãªãä¿®çã§ããã±ãŒã¹"
"ã®æ¹ãã¯ããã«å€ãã§ããããã¢ããã°ã¬ãŒãã§ã¯å€§éã®ã€ã³ã¹ããŒã«ã¯å¿
èŠãããŸ"
"ããããåžžã«ãã®å Žã§ã¢ããã°ã¬ãŒãã§ããŸãããŸã OS ã®ãªãªãŒã¹ãç¶ããŠããã"
"ãã°ã©ã ã«ã¯ã»ãšãã©åžžã«äºææ§ããããŸããããã°ã©ã ã®æ°ããŒãžã§ã³ããããæ°"
"ããäŸåãããœãããŠã§ã¢ãèŠæ±ããå ŽåãDebian ããã±ãŒãžã³ã°ã·ã¹ãã ã¯ãå¿
èŠ"
"ãªãœãããŠã§ã¢ããã¹ãŠèªåçã«èå¥ãã確å®ã«ã€ã³ã¹ããŒã«ããŸããåã€ã³ã¹ããŒ"
"ã«ãå¿
èŠãªãããã«åãå°œãããŠããŠãããåã€ã³ã¹ããŒã«ãããªããŠã¯ãªããªããš"
"ããã®ã¯ãæåŸã®æ段ã§ãããšããã®ããã€ã³ãã§ããã€ã³ã¹ããŒã©ã¯ãæ¢ã«ååšã"
"ãã·ã¹ãã ã«å¯ŸããŠãåã€ã³ã¹ããŒã«ããããã«èšèšãããŠããŸããã"
#. Tag: para
#: preparing.xml:48
#, no-c-format
msgid ""
"Here's a road map for the steps you will take during the installation "
"process."
msgstr ""
"ããã§ã¯ãã€ã³ã¹ããŒã«ããã»ã¹ã®äžã§è¡ãåŠçãäžæ®µéãã€ãŸãšããŠãããŸãã"
"ãã"
#. Tag: para
#: preparing.xml:56
#, no-c-format
msgid ""
"Back up any existing data or documents on the hard disk where you plan to "
"install."
msgstr ""
"ã€ã³ã¹ããŒã«ããããŒããã£ã¹ã¯ã«ãããæ¢åã®ããŒã¿ãææžã®ããã¯ã¢ããã"
#. Tag: para
#: preparing.xml:62
#, no-c-format
msgid ""
"Gather information about your computer and any needed documentation, before "
"starting the installation."
msgstr "ã€ã³ã¹ããŒã«ãå§ããåã«ãã³ã³ãã¥ãŒã¿ã®æ
å ±ãšå¿
èŠãªææžãéããã"
#. Tag: para
#: preparing.xml:68
#, no-c-format
msgid "Create partition-able space for Debian on your hard disk."
msgstr "ããŒããã£ã¹ã¯ã« Debian ã®ããŒãã£ã·ã§ã³ã«äœ¿ããé åã確ä¿ããã"
#. Tag: para
#: preparing.xml:73
#, no-c-format
msgid ""
"Locate and/or download the installer software and any specialized driver "
"files your machine requires (except Debian CD users)."
msgstr ""
"ã€ã³ã¹ããŒã©ãšããã®ãã·ã³ã§å¿
èŠãªç¹æ®ãªãã©ã€ããã¡ã€ã«ã®å Žæã確èªãªããã"
"ãŠã³ããŒãããã(Debian CD ãŠãŒã¶ã¯äžèŠ)"
#. Tag: para
#: preparing.xml:79
#, no-c-format
msgid ""
"Set up boot tapes/floppies/USB sticks, or place boot files (most Debian CD "
"users can boot from one of the CDs)."
msgstr ""
"èµ·åããŒãã»ãããããŒã»USB ã¡ã¢ãªãäœãããŸãã¯èµ·åãã¡ã€ã«ãé
眮ããã(ã»ãš"
"ãã©ã® Debian CD ãŠãŒã¶ã¯ CD ã®ã©ããããèµ·åã§ããŸã)"
#. Tag: para
#: preparing.xml:85
#, no-c-format
msgid "Boot the installation system."
msgstr "ã€ã³ã¹ããŒã«ã·ã¹ãã ãèµ·åããã"
#. Tag: para
#: preparing.xml:90
#, no-c-format
msgid "Select the installation language."
msgstr "ã€ã³ã¹ããŒã«ããèšèªãéžæããã"
#. Tag: para
#: preparing.xml:95
#, no-c-format
msgid "Activate the ethernet network connection, if available."
msgstr "å¯èœãªããã€ãŒãµããããããã¯ãŒã¯æ¥ç¶ãæå¹ã«ããã"
#. Tag: para
#: preparing.xml:101
#, no-c-format
msgid "Configure one network interface."
msgstr "ãããã¯ãŒã¯ã€ã³ã¿ãŒãã§ãŒã¹ãã©ããã²ãšã€èšå®ããã"
#. Tag: para
#: preparing.xml:106
#, no-c-format
msgid "Open an ssh connection to the new system."
msgstr "æ°ããã·ã¹ãã ã« ssh æ¥ç¶ããã"
#. Tag: para
#: preparing.xml:111
#, no-c-format
msgid "Attach one or more DASDs (Direct Access Storage Device)."
msgstr "ã²ãšã€ä»¥äžã® DASD (Direct Access Storage Device) ã«ã¢ã¿ããããã"
#. Tag: para
#: preparing.xml:117
#, no-c-format
msgid "Create and mount the partitions on which Debian will be installed."
msgstr "Debian ãã€ã³ã¹ããŒã«ããããŒãã£ã·ã§ã³ãäœæããããŠã³ãããã"
#. Tag: para
#: preparing.xml:122
#, no-c-format
msgid ""
"Watch the automatic download/install/setup of the <firstterm>base system</"
"firstterm>."
msgstr ""
"èªåã§è¡ããã <firstterm>åºæ¬ã·ã¹ãã </firstterm> ã®ããŠã³ããŒãã»ã€ã³ã¹ããŒ"
"ã«ã»ã»ããã¢ãããç£èŠããã"
#. Tag: para
#: preparing.xml:128
#, no-c-format
msgid ""
"Install a <firstterm>boot loader</firstterm> which can start up &debian; and/"
"or your existing system."
msgstr ""
"&debian; ãšæ¢åã·ã¹ãã ãèµ·åãã<firstterm>ããŒãããŒã</firstterm>ãã€ã³ã¹"
"ããŒã«ããã"
#. Tag: para
#: preparing.xml:134
#, no-c-format
msgid "Load the newly installed system for the first time."
msgstr "æ°ããã·ã¹ãã ãåããŠèµ·åããã"
#. Tag: para
#: preparing.xml:141
#, no-c-format
msgid ""
"For &arch-title; you have the option of using <phrase arch=\"x86\">a</"
"phrase> <phrase arch=\"powerpc\">an experimental</phrase> graphical version "
"of the installation system. For more information about this graphical "
"installer, see <xref linkend=\"graphical\"/>."
msgstr ""
"&arch-title; ã§ã¯ã<phrase arch=\"powerpc\">å®éšçãª</phrase>ã°ã©ãã£ã«ã«ç "
"ã€ã³ã¹ããŒã«ã·ã¹ãã ã䜿çšãããšããéžæè¢ããããŸããã°ã©ãã£ã«ã«ã€ã³ã¹ããŒ"
"ã©ã«ã€ããŠã¯ã<xref linkend=\"graphical\"/> ãã芧ãã ããã"
#. Tag: para
#: preparing.xml:149
#, no-c-format
msgid ""
"If you have problems during the installation, it helps to know which "
"packages are involved in which steps. Introducing the leading software "
"actors in this installation drama:"
msgstr ""
"ã€ã³ã¹ããŒã«äžã«åé¡ããã£ãããã©ã®ã¹ãããã®ã©ã®ããã±ãŒãžã§ã€ãŸããããã"
"ç¥ããæäŒããããŸãããã®ã€ã³ã¹ããŒã«åã®ããããªäž»æŒãœãããŠã§ã¢ä¿³åªãã玹"
"ä»ããŸãã"
#. Tag: para
#: preparing.xml:155
#, no-c-format
msgid ""
"The installer software, <classname>debian-installer</classname>, is the "
"primary concern of this manual. It detects hardware and loads appropriate "
"drivers, uses <classname>dhcp-client</classname> to set up the network "
"connection, runs <classname>debootstrap</classname> to install the base "
"system packages, and runs <classname>tasksel</classname> to allow you to "
"install certain additional software. Many more actors play smaller parts in "
"this process, but <classname>debian-installer</classname> has completed its "
"task when you load the new system for the first time."
msgstr ""
"ã€ã³ã¹ããŒã©ã® <classname>debian-installer</classname> ã¯ããã®ããã¥ã¢ã«ã®äž»"
"圹ã§ããããŒããŠã§ã¢ãæ€åºããŠé©åãªãã©ã€ããããŒããã<classname>dhcp-"
"client</classname> ã䜿çšããŠãããã¯ãŒã¯æ¥ç¶ãèšå®ããåºæ¬ã·ã¹ãã ããã±ãŒãž"
"ãã€ã³ã¹ããŒã«ããã®ã« <classname>debootstrap</classname> ãå®è¡ããããã«è¿œ"
"å ãœãããŠã§ã¢ãã€ã³ã¹ããŒã«ãã <classname>tasksel</classname> ãå®è¡ããŸ"
"ãããã®ããã»ã¹ã§å€ãã®ä¿³åªããããå°ããªåœ¹ãæŒããŸãããåããŠæ°ããã·ã¹ã"
"ã ãèµ·åããæã«ã<classname>debian-installer</classname> ã¯ãã®ã¿ã¹ã¯ãçµã"
"ãããšã«ãªããŸãã"
#. Tag: para
#: preparing.xml:167
#, no-c-format
msgid ""
"To tune the system to your needs, <classname>tasksel</classname> allows you "
"to choose to install various predefined bundles of software like a Web "
"server or a Desktop environment."
msgstr ""
"ã·ã¹ãã ãã奜ã¿ã«èª¿æŽããã«ã¯ã<classname>tasksel</classname> ã䜿çšã㊠"
"Web ãµãŒãããã¹ã¯ãããç°å¢ãšãã£ããæ§ã
ãªãœãããŠã§ã¢ã®å®çŸ©æžã¿ã»ãããéž"
"æã»ã€ã³ã¹ããŒã«ã§ããŸãã"
#. Tag: para
#: preparing.xml:173
#, no-c-format
msgid ""
"One important option during the installation is whether or not to install a "
"graphical desktop environment, consisting of the X Window System and one of "
"the available graphical desktop environments. If you choose not to select "
"the <quote>Desktop environment</quote> task, you will only have a relatively "
"basic, command line driven system. Installing the Desktop environment task "
"is optional because it requires a fairly large amount of disk space, and "
"because many &debian; systems are servers which don't really have any need "
"for a graphical user interface to do their job."
msgstr ""
"ã€ã³ã¹ããŒã«æã®éèŠãªéžæè¢ã«ãX Window System ãšã°ã©ãã£ã«ã«ãã¹ã¯ãããç°"
"å¢ã® 1 ã€ãããªããã°ã©ãã£ã«ã«ãã¹ã¯ãããç°å¢ãã€ã³ã¹ããŒã«ãããã©ãããã"
"ããŸãã<quote>ãã¹ã¯ãããç°å¢</quote> ã¿ã¹ã¯ãéžæããªãå Žåãæ¯èŒçåºæ¬ç"
"ãªãã³ãã³ãã©ã€ã³é§åã·ã¹ãã ã«ãªããŸããããªã倧ããªãã£ã¹ã¯é åãå¿
èŠãš"
"ãããŸããå€ãã® &debian; ã·ã¹ãã ã¯ãã°ã©ãã£ã«ã«ãŠãŒã¶ã€ã³ã¿ãŒãã§ãŒã¹ãç¹"
"ã«å¿
èŠãšããªããµãŒãã§ããããããã¹ã¯ãããç°å¢ã¿ã¹ã¯ã¯ãªãã·ã§ã³ãšãªã£ãŠã"
"ãŸãã"
#. Tag: para
#: preparing.xml:185
#, no-c-format
msgid ""
"Just be aware that the X Window System is completely separate from "
"<classname>debian-installer</classname>, and in fact is much more "
"complicated. Installation and troubleshooting of the X Window System is not "
"within the scope of this manual."
msgstr ""
"X Window System ã¯ã<classname>debian-installer</classname> ãšã¯å®å
šã«åãã"
"ãŠããŠãå®éã«ã¯éåžžã«è€éãªããšã«æ³šæããŠãã ãããX Window System ã®ã€ã³ã¹"
"ããŒã«ãšãã©ãã«ã·ã¥ãŒãã¯ããã®ããã¥ã¢ã«ã§ã¯æ±ããŸããã"
#. Tag: title
#: preparing.xml:200
#, no-c-format
msgid "Back Up Your Existing Data!"
msgstr "æ¢åããŒã¿ãããã¯ã¢ããããŠãã ãã!"
#. Tag: para
#: preparing.xml:201
#, no-c-format
msgid ""
"Before you start, make sure to back up every file that is now on your "
"system. If this is the first time a non-native operating system has been "
"installed on your computer, it's quite likely you will need to re-partition "
"your disk to make room for &debian;. Anytime you partition your disk, you "
"run a risk of losing everything on the disk, no matter what program you use "
"to do it. The programs used in installation are quite reliable and most have "
"seen years of use; but they are also quite powerful and a false move can "
"cost you. Even after backing up, be careful and think about your answers and "
"actions. Two minutes of thinking can save hours of unnecessary work."
msgstr ""
"ã€ã³ã¹ããŒã«ãå§ããåã«ãçŸåšäœ¿çšããŠããã·ã¹ãã ã®ãã¹ãŠã®ãã¡ã€ã«ãããã¯"
"ã¢ããããŠãã ãããä»åããæåããå
¥ã£ãŠãããã®ä»¥å€ã® OS ãã€ã³ã¹ããŒã«ã"
"ãæåã®è©Šã¿ã§ãããããããããã£ã¹ã¯ã®ããŒãã£ã·ã§ã³åå²ãããçŽã㊠"
"&debian; çšã®é åãäœãå¿
èŠãããã§ãããããã£ã¹ã¯ã®ããŒãã£ã·ã§ã³åå²äœæ¥ã§"
"ã¯ãã©ããªããã°ã©ã ã䜿ã£ããšããŠãããã£ã¹ã¯äžã®ãã¹ãŠã®ããŒã¿ãæ¶ããŠããŸ"
"ãå±éºãåãããšã«ãªããŸããã€ã³ã¹ããŒã«ã«çšããããããã°ã©ã 矀ã¯ã極ããŠä¿¡"
"é Œæ§ãé«ããäœå¹Žã䜿çšãããŠãããã®ã§ãããããããããã¯åŒ·åãªæ©èœãæã€ã"
"ãšã«ãªãã®ã§ã誀åäœãèµ·ãã£ããšãã®è¢«å®³ã倧ãããªããŸããããã¯ã¢ãããåã£"
"ãåŸã§ãã質åã«çããåã«å
å泚æããããèããŠè¡åã«ç§»ããŠãã ãããã»ãã®"
"æ°åéçšäœèšã«é
æ
®ããããšã§ãäœæéãã®äžèŠãªäœæ¥ãé¿ããããšãã§ããããã"
"ããŸããã"
#. Tag: para
#: preparing.xml:214
#, no-c-format
msgid ""
"If you are creating a multi-boot system, make sure that you have the "
"distribution media of any other present operating systems on hand. "
"Especially if you repartition your boot drive, you might find that you have "
"to reinstall your operating system's boot loader, or in many cases the whole "
"operating system itself and all files on the affected partitions."
msgstr ""
"ãŸããã·ã¹ãã ããã«ãããŒãã·ã¹ãã ã«ãã (è€æ°ã®ãªãã¬ãŒãã£ã³ã°ã·ã¹ãã ã"
"å
±åããã) å Žåã«ã¯ãæ¢ã«ã€ã³ã¹ããŒã«ãããŠãã OS ã®é
ä»ã¡ãã£ã¢ãæå
ã«ã"
"ãããšã確ãããŠãã ãããç¹ã«ããŒããã©ã€ãã®ããŒãã£ã·ã§ã³ãåãçŽãå Žå"
"ã¯ããªãã¬ãŒãã£ã³ã°ã·ã¹ãã ã®ããŒãããŒãããå Žåã«ãã£ãŠã¯ (Macintosh ãªã©"
"ã§ã¯) ãªãã¬ãŒãã£ã³ã°ã·ã¹ãã ãã®ãã®ãåã€ã³ã¹ããŒã«ããªããã°ãªããªããã"
"ãããŸããã"
#. Tag: para
#: preparing.xml:225
#, no-c-format
msgid ""
"With the exception of the BVM and Motorola VMEbus computers, the only "
"supported installation method for m68k systems is booting from a local disk "
"or floppy using an AmigaOS/TOS/MacOS-based bootstrap, for these machines you "
"will need the original operating system in order to boot Linux. In order to "
"boot Linux on the BVM and Motorola VMEbus machines you will need the "
"<quote>BVMBug</quote> or <quote>16xBug</quote> boot ROMs."
msgstr ""
"BVM ããã³ Motorola VMEbus ã³ã³ãã¥ãŒã¿ãé€ããm68k ã·ã¹ãã ã§ãµããŒããããŠ"
"ããå¯äžã®ã€ã³ã¹ããŒã«æ¹æ³ã¯ãAmigaOS/TOS/MacOS ããŒã¹ã®ããŒãã¹ãã©ãããçš"
"ããŠãããŒã«ã«ãã£ã¹ã¯ããããããŒããã®èµ·åããããæ¹ã ãã§ãããã®ãããã"
"ããã®ãã·ã³ã§ Linux ãããŒãããããã«ã¯ããªãªãžãã«ã®ãªãã¬ãŒãã£ã³ã°ã·ã¹ã"
"ã ãå¿
èŠã«ãªããŸãããŸããBVM ããã³ Motorola VMEbus ãã·ã³ã§ Linux ãããŒã"
"ããã«ã¯ã<quote>BVMBug</quote> ããã㯠<quote>16xBug</quote> ããŒã ROM ã"
"å¿
èŠã«ãªããŸãã"
#. Tag: title
#: preparing.xml:243
#, no-c-format
msgid "Information You Will Need"
msgstr "å¿
èŠãªæ
å ±"
#. Tag: title
#: preparing.xml:246
#, no-c-format
msgid "Documentation"
msgstr "ææž"
#. Tag: title
#: preparing.xml:249
#, no-c-format
msgid "Installation Manual"
msgstr "ã€ã³ã¹ããŒã«ããã¥ã¢ã«"
#. Tag: para
#: preparing.xml:251
#, no-c-format
msgid "This document you are now reading, in plain ASCII, HTML or PDF format."
msgstr ""
"çŸåšã芧ã«ãªã£ãŠããææžã§ãããããããã¬ãŒã³ããã¹ããHTMLãPDF 圢åŒã§ãã"
#. Tag: itemizedlist
#: preparing.xml:257
#, no-c-format
msgid "&list-install-manual-files;"
msgstr "&list-install-manual-files;"
#. Tag: para
#: preparing.xml:263
#, no-c-format
msgid ""
"The document you are now reading, which is the official version of the "
"Installation Guide for the &releasename; release of Debian; available in "
"<ulink url=\"&url-release-area;/installmanual\">various formats and "
"translations</ulink>."
msgstr ""
"çŸåšã芧ã«ãªã£ãŠããææžã¯ãDebian ã® &releasename; ãªãªãŒã¹çšã€ã³ã¹ããŒã«ã¬"
"ã€ãã®æ£åŒçã§ãããã㯠<ulink url=\"&url-release-area;/installmanual\">æ§ã
"
"ãªåœ¢åŒãšæ§ã
ãªèšèª</ulink> ã§å©çšã§ããŸãã"
#. Tag: para
#: preparing.xml:272
#, no-c-format
msgid ""
"The document you are now reading, which is a development version of the "
"Installation Guide for the next release of Debian; available in <ulink url="
"\"&url-d-i-alioth-manual;\">various formats and translations</ulink>."
msgstr ""
"çŸåšã芧ã«ãªã£ãŠããææžã¯ãDebian ã®æ¬¡æãªãªãŒã¹çšã€ã³ã¹ããŒã«ã¬ã€ãã®éçºç"
"ã§ãããã㯠<ulink url=\"&url-d-i-alioth-manual;\">æ§ã
ãªåœ¢åŒãšæ§ã
ãªèšèª</"
"ulink> ã§å©çšã§ããŸãã"
#. Tag: title
#: preparing.xml:284
#, no-c-format
msgid "Hardware documentation"
msgstr "ããŒããŠã§ã¢ã®ææž"
#. Tag: para
#: preparing.xml:285
#, no-c-format
msgid ""
"Often contains useful information on configuring or using your hardware."
msgstr "ãã°ãã°ãããŒããŠã§ã¢ã®èšå®ã䜿çšã«ã€ããŠã®æçšãªæ
å ±ãå«ãã§ããŸãã"
#. Tag: ulink
#: preparing.xml:296
#, no-c-format
msgid "Linux Hardware Compatibility HOWTO"
msgstr "Linux ããŒããŠã§ã¢äºææ§ HOWTO"
#. Tag: ulink
#: preparing.xml:302
#, no-c-format
msgid "Linux/m68k FAQ"
msgstr "Linux/m68k FAQ"
#. Tag: ulink
#: preparing.xml:308
#, no-c-format
msgid "Linux/Alpha FAQ"
msgstr "Linux/Alpha FAQ"
#. Tag: ulink
#: preparing.xml:314
#, no-c-format
msgid "Linux for SPARC Processors FAQ"
msgstr "SPARC ããã»ããµçš Linux FAQ"
#. Tag: ulink
#: preparing.xml:320
#, no-c-format
msgid "Linux/Mips website"
msgstr "Linux/Mips ãŠã§ããµã€ã"
#. Tag: title
#: preparing.xml:329
#, no-c-format
msgid "&arch-title; Hardware References"
msgstr "&arch-title; ããŒããŠã§ã¢ãªãã¡ã¬ã³ã¹"
#. Tag: para
#: preparing.xml:330
#, no-c-format
msgid ""
"Installation instructions and device drivers (DASD, XPRAM, Console, tape, "
"z90 crypto, chandev, network) for Linux on &arch-title; using kernel 2.4"
msgstr ""
"&arch-title; ã« 2.4 ã«ãŒãã«ã® Linux ãã€ã³ã¹ããŒã«ããããã®èª¬æãšãããã€ã¹"
"ãã©ã€ã (DASD, XPRAM, ã³ã³ãœãŒã«, ããŒã, z90 crypto, chandev, ãããã¯ãŒ"
"ã¯) ã«é¢ããæ
å ±ã§ãã"
#. Tag: ulink
#: preparing.xml:342
#, no-c-format
msgid "Device Drivers and Installation Commands"
msgstr "Device Drivers and Installation Commands"
#. Tag: para
#: preparing.xml:347
#, no-c-format
msgid ""
"IBM Redbook describing how Linux can be combined with z/VM on zSeries and "
"&arch-title; hardware."
msgstr ""
"zSeries ãš &arch-title; ããŒããŠã§ã¢ã® z/VM ãžã® Linux ã®çµã¿èŸŒã¿æ¹ã説æã"
"ã IBM ã®ä»æ§æžã§ãã"
#. Tag: ulink
#: preparing.xml:357
#, no-c-format
msgid "Linux for &arch-title;"
msgstr "Linux for &arch-title;"
#. Tag: para
#: preparing.xml:363
#, no-c-format
msgid ""
"IBM Redbook describing the Linux distributions available for the mainframe. "
"It has no chapter about Debian but the basic installation concepts are the "
"same across all &arch-title; distributions."
msgstr ""
"ã¡ã€ã³ãã¬ãŒã ã§äœ¿ãã Linux ãã£ã¹ããªãã¥ãŒã·ã§ã³ã«ã€ããŠèª¬æãã IBM ã®ä»"
"æ§æžã§ããDebian ã«é¢ããç« ã¯ãããŸããããåºæ¬çãªã€ã³ã¹ããŒã«ã®èãæ¹ã¯ãã¹"
"ãŠã® &arch-title; ãã£ã¹ããªãã¥ãŒã·ã§ã³ã§åãã§ãã"
#. Tag: ulink
#: preparing.xml:374
#, no-c-format
msgid "Linux for IBM eServer zSeries and &arch-title;: Distributions"
msgstr "Linux for IBM eServer zSeries and &arch-title;: Distributions"
#. Tag: title
#: preparing.xml:384
#, no-c-format
msgid "Finding Sources of Hardware Information"
msgstr "ããŒããŠã§ã¢æ
å ±ã®ååŸå
"
#. Tag: para
#: preparing.xml:385
#, no-c-format
msgid ""
"In many cases, the installer will be able to automatically detect your "
"hardware. But to be prepared, we do recommend familiarizing yourself with "
"your hardware before the install."
msgstr ""
"å€ãã®å Žåãã€ã³ã¹ããŒã©ã¯ããŒããŠã§ã¢ãèªåçã«æ€åºããããšãã§ããŸãããã"
"ããæºåãšããŠã€ã³ã¹ããŒã«åã«ããŒããŠã§ã¢ã«ç¿çããããšãã奚ãããŸãã"
#. Tag: para
#: preparing.xml:391
#, no-c-format
msgid "Hardware information can be gathered from:"
msgstr "ããŒããŠã§ã¢ã®æ
å ±ã¯æ¬¡ã®ãããªãšããããéããããŸãã"
#. Tag: para
#: preparing.xml:398
#, no-c-format
msgid "The manuals that come with each piece of hardware."
msgstr "åããŒããŠã§ã¢ã«ä»å±ããŠããããã¥ã¢ã«ã"
#. Tag: para
#: preparing.xml:403
#, no-c-format
msgid ""
"The BIOS setup screens of your computer. You can view these screens when you "
"start your computer by pressing a combination of keys. Check your manual for "
"the combination. Often, it is the <keycap>Delete</keycap> key."
msgstr ""
"ã³ã³ãã¥ãŒã¿ã® BIOS èšå®ç»é¢ããã®ç»é¢ã衚瀺ãããã«ã¯ãã³ã³ãã¥ãŒã¿ã®èµ·åæ"
"ã«äœããã®ããŒã®çµåããå
¥åããŸãããã®çµåãã«ã€ããŠã¯ããã¥ã¢ã«ãèŠãŠãã "
"ããã<keycap>Delete</keycap> ããŒã®å Žåãå€ãããã§ãã"
#. Tag: para
#: preparing.xml:410
#, no-c-format
msgid "The cases and boxes for each piece of hardware."
msgstr "åããŒããŠã§ã¢ã®ã±ãŒã¹ãç®±ã"
#. Tag: para
#: preparing.xml:416
#, no-c-format
msgid "The System window in the Windows Control Panel."
msgstr "Windows ã®ã³ã³ãããŒã«ããã«ã®ãã·ã¹ãã ããŠã£ã³ããŠã"
#. Tag: para
#: preparing.xml:422
#, no-c-format
msgid ""
"System commands or tools in another operating system, including file manager "
"displays. This source is especially useful for information about RAM and "
"hard drive memory."
msgstr ""
"ä»ã® OS ã®ã·ã¹ãã ã³ãã³ããã·ã¹ãã ããŒã«ããã¡ã€ã«ãããŒãžã£ã®è¡šç€ºãªã©ãã"
"ã¡ãããã¯ãRAM ãããŒããã©ã€ãã®ã¡ã¢ãªã«é¢ããæ
å ±ãåŸãããããšãå€ãã§"
"ãã"
#. Tag: para
#: preparing.xml:429
#, no-c-format
msgid ""
"Your system administrator or Internet Service Provider. These sources can "
"tell you the settings you need to set up your networking and e-mail."
msgstr ""
"ããªãã®éšéã®ã·ã¹ãã 管çè
ããã€ã³ã¿ãŒããããµãŒãã¹ãããã€ãããã¡ããã"
"ã¯ããããã¯ãŒã¯ãé»åã¡ãŒã«ã«é¢ããèšå®æ
å ±ãåŸãããŸãã"
#. Tag: title
#: preparing.xml:441
#, no-c-format
msgid "Hardware Information Needed for an Install"
msgstr "ã€ã³ã¹ããŒã«ã«å¿
èŠãªããŒããŠã§ã¢æ
å ±"
#. Tag: entry
#: preparing.xml:445
#, no-c-format
msgid "Hardware"
msgstr "ããŒããŠã§ã¢"
#. Tag: entry
#: preparing.xml:445
#, no-c-format
msgid "Information You Might Need"
msgstr "å¿
èŠãªæ
å ±"
#. Tag: entry
#: preparing.xml:451
#, no-c-format
msgid "Hard Drives"
msgstr "ããŒããã£ã¹ã¯"
#. Tag: entry
#: preparing.xml:452
#, no-c-format
msgid "How many you have."
msgstr "ãã©ã€ãã®å°æ°"
#. Tag: entry
#: preparing.xml:454
#, no-c-format
msgid "Their order on the system."
msgstr "ã·ã¹ãã ã§ã®æ¥ç¶é åº"
#. Tag: entry
#: preparing.xml:457
#, no-c-format
msgid "Whether IDE or SCSI (most computers are IDE)."
msgstr "IDE ã SCSI ã (倧æµã®ã³ã³ãã¥ãŒã¿ã¯ IDE)"
#. Tag: entry
#: preparing.xml:460
#, no-c-format
msgid "Whether IDE or SCSI (most m68k computers are SCSI)."
msgstr "IDE ã SCSI ã (倧æµã® m68k ã³ã³ãã¥ãŒã¿ã¯ SCSI)"
#. Tag: entry
#: preparing.xml:462 preparing.xml:514
#, no-c-format
msgid "Available free space."
msgstr "å©çšã§ãã空ãé å"
#. Tag: entry
#: preparing.xml:463
#, no-c-format
msgid "Partitions."
msgstr "ããŒãã£ã·ã§ã³"
#. Tag: entry
#: preparing.xml:465
#, no-c-format
msgid "Partitions where other operating systems are installed."
msgstr "ä»ã® OS ãã€ã³ã¹ããŒã«ãããŠããããŒãã£ã·ã§ã³"
#. Tag: entry
#: preparing.xml:469
#, no-c-format
msgid "Monitor"
msgstr "ã¢ãã¿"
#. Tag: entry
#: preparing.xml:470 preparing.xml:490 preparing.xml:496 preparing.xml:502
#, no-c-format
msgid "Model and manufacturer."
msgstr "ã¡ãŒã«ãŒãšåçª"
#. Tag: entry
#: preparing.xml:472
#, no-c-format
msgid "Resolutions supported."
msgstr "ãµããŒããã解å床"
#. Tag: entry
#: preparing.xml:473
#, no-c-format
msgid "Horizontal refresh rate."
msgstr "æ°Žå¹³åæåšæ³¢æ°"
#. Tag: entry
#: preparing.xml:474
#, no-c-format
msgid "Vertical refresh rate."
msgstr "åçŽåæåšæ³¢æ°"
#. Tag: entry
#: preparing.xml:476
#, no-c-format
msgid "Color depth (number of colors) supported."
msgstr "ãµããŒãããè²æ·±åºŠ (è²æ°)"
#. Tag: entry
#: preparing.xml:478
#, no-c-format
msgid "Screen size."
msgstr "ã¹ã¯ãªãŒã³ãµã€ãº"
#. Tag: entry
#: preparing.xml:481
#, no-c-format
msgid "Mouse"
msgstr "ããŠã¹"
#. Tag: entry
#: preparing.xml:482
#, no-c-format
msgid "Type: serial, PS/2, or USB."
msgstr "圢åŒ: ã·ãªã¢ã«, PS/2, USB ã®ãããã"
#. Tag: entry
#: preparing.xml:484
#, no-c-format
msgid "Port."
msgstr "ããŒã"
#. Tag: entry
#: preparing.xml:485
#, no-c-format
msgid "Manufacturer."
msgstr "ã¡ãŒã«ãŒ"
#. Tag: entry
#: preparing.xml:486
#, no-c-format
msgid "Number of buttons."
msgstr "ãã¿ã³ã®æ°"
#. Tag: entry
#: preparing.xml:489 preparing.xml:517
#, no-c-format
msgid "Network"
msgstr "ãããã¯ãŒã¯"
#. Tag: entry
#: preparing.xml:492 preparing.xml:518
#, no-c-format
msgid "Type of adapter."
msgstr "ã¢ããã¿ã®åœ¢åŒ"
#. Tag: entry
#: preparing.xml:495
#, no-c-format
msgid "Printer"
msgstr "ããªã³ã¿"
#. Tag: entry
#: preparing.xml:498
#, no-c-format
msgid "Printing resolutions supported."
msgstr "ãµããŒãããå°å·è§£å床"
#. Tag: entry
#: preparing.xml:501
#, no-c-format
msgid "Video Card"
msgstr "ãããªã«ãŒã"
#. Tag: entry
#: preparing.xml:504
#, no-c-format
msgid "Video RAM available."
msgstr "å©çšã§ãããã㪠RAM"
#. Tag: entry
#: preparing.xml:506
#, no-c-format
msgid ""
"Resolutions and color depths supported (these should be checked against your "
"monitor's capabilities)."
msgstr "ãµããŒããã解å床ãšè²æ·±åºŠ (ã¢ãã¿ã®æ©èœããã§ãã¯ããããš)"
#. Tag: entry
#: preparing.xml:511
#, no-c-format
msgid "DASD"
msgstr "DASD"
#. Tag: entry
#: preparing.xml:512
#, no-c-format
msgid "Device number(s)."
msgstr "ããã€ã¹çªå·"
#. Tag: entry
#: preparing.xml:520
#, no-c-format
msgid "Device numbers."
msgstr "ããã€ã¹çªå·"
#. Tag: entry
#: preparing.xml:521
#, no-c-format
msgid "Relative adapter number for OSA cards."
msgstr "OSA ã«ãŒãã®çžå¯Ÿã¢ããã¿çªå·"
#. Tag: title
#: preparing.xml:529
#, no-c-format
msgid "Hardware Compatibility"
msgstr "ããŒããŠã§ã¢äºææ§"
#. Tag: para
#: preparing.xml:531
#, no-c-format
msgid ""
"Many brand name products work without trouble on Linux. Moreover, hardware "
"support in Linux is improving daily. However, Linux still does not run as "
"many different types of hardware as some operating systems."
msgstr ""
"ãã©ã³ãã¡ãŒã«ãŒã®è£œåã®å€ãã¯ãåé¡ãªã Linux ã§åäœããŸãããŸã Linux ã§ãµ"
"ããŒãããããŒããŠã§ã¢ãæ¥ã
é²æ©ããŠããŸããããããããã§ããŸã Linux ã¯ãã"
"ã皮㮠OS ã»ã©ã«ã¯å€çš®å€æ§ãªããŒããŠã§ã¢ã«å¯Ÿå¿ããŠããŸããã"
#. Tag: para
#: preparing.xml:537
#, no-c-format
msgid ""
"In particular, Linux usually cannot run hardware that requires a running "
"version of Windows to work."
msgstr ""
"ç¹ã«ãLinux ã¯éåžžãç¹å®ã®ããŒãžã§ã³ã® Windows ãå¿
èŠãšããããŒããŠã§ã¢ãåã"
"ãããšã¯ã§ããŸããã"
#. Tag: para
#: preparing.xml:542
#, no-c-format
msgid ""
"Although some Windows-specific hardware can be made to run on Linux, doing "
"so usually requires extra effort. In addition, Linux drivers for Windows-"
"specific hardware are usually specific to one Linux kernel. Therefore, they "
"can quickly become obsolete."
msgstr ""
"Windows ã«ç¹åããããŒããŠã§ã¢ã®ãã¡ã«ããLinux ã§åäœã§ãããã®ã¯ãããŸã"
"ããéåžžäœåãªåŽåãå¿
èŠãšãªããŸããããã«ãWindows ã«ç¹åããããŒããŠã§ã¢å"
"ãã® Linux ãã©ã€ãã¯ãæ®éç¹å®ã® Linux ã«ãŒãã«ã«äŸåãããã®ã«ãªããŸãã"
"åŸã£ãŠãããã«å€ããã®ã«ãªã£ãŠããŸããŸãã"
#. Tag: para
#: preparing.xml:549
#, no-c-format
msgid ""
"So called win-modems are the most common type of this hardware. However, "
"printers and other equipment may also be Windows-specific."
msgstr ""
"ãããã Win ã¢ãã ã¯ããã®ãããªããŒããŠã§ã¢ã®äžã§ãæãç¥ããããã®ã§ããã"
"ããä»ã«ããããªã³ã¿ãªã©ã« Windows ã«ç¹åãããã®ããããŸãã"
#. Tag: para
#: preparing.xml:554
#, no-c-format
msgid "You can check hardware compatibility by:"
msgstr "以äžã®ããã«ããŒããŠã§ã¢ã®äºææ§ããã§ãã¯ã§ããŸãã"
#. Tag: para
#: preparing.xml:559
#, no-c-format
msgid "Checking manufacturers' web sites for new drivers."
msgstr "æ°ãããã©ã€ããåºãŠããªãããã¡ãŒã«ãŒã® web ãµã€ãã調ã¹ãŸãã"
#. Tag: para
#: preparing.xml:564
#, no-c-format
msgid ""
"Looking at web sites or manuals for information about emulation. Lesser "
"known brands can sometimes use the drivers or settings for better-known ones."
msgstr ""
"ãšãã¥ã¬ãŒã·ã§ã³æ
å ±ã web ãµã€ããããã¥ã¢ã«ã§èª¿ã¹ãŸããããŸãæåã§ãªããã©"
"ã³ãã®å Žåããã£ãšæåãªãã©ã³ãã®ãã©ã€ããèšå®ã䜿ããããšããããŸãã"
#. Tag: para
#: preparing.xml:571
#, no-c-format
msgid ""
"Checking hardware compatibility lists for Linux on web sites dedicated to "
"your architecture."
msgstr ""
"Linux ã®ããŒããŠã§ã¢äºææ§æ
å ±ããèªåã®ã¢ãŒããã¯ãã£åãã® web ãµã€ãã§èª¿ã¹"
"ãŸãã"
#. Tag: para
#: preparing.xml:577
#, no-c-format
msgid "Searching the Internet for other users' experiences."
msgstr "ä»ã«äœ¿ã£ãããšã®ãããŠãŒã¶ãããªãããã€ã³ã¿ãŒãããã§èª¿ã¹ãŸãã"
#. Tag: title
#: preparing.xml:588
#, no-c-format
msgid "Network Settings"
msgstr "ãããã¯ãŒã¯ã®èšå®"
#. Tag: para
#: preparing.xml:590
#, no-c-format
msgid ""
"If your computer is connected to a network 24 hours a day (i.e., an Ethernet "
"or equivalent connection — not a PPP connection), you should ask your "
"network's system administrator for this information."
msgstr ""
"ã€ã³ã¹ããŒã«å¯Ÿè±¡ã®ã³ã³ãã¥ãŒã¿ããããã¯ãŒã¯ã« 24 æéãã«ã«æ¥ç¶ãããŠãããª"
"ãã° (ã€ãŸããPPP æ¥ç¶ã§ã¯ãªã Ethernet ããããšåçãªæ¥ç¶ã®å Žå)ããããã¯ãŒ"
"ã¯ç®¡çè
ã«ä»¥äžã®æ
å ±ãå°ããŠãããªããã°ãªããŸããã"
#. Tag: para
#: preparing.xml:597
#, no-c-format
msgid "Your host name (you may be able to decide this on your own)."
msgstr "ãã¹ãå (èªåã§æ±ºãããããããããŸãã)"
#. Tag: para
#: preparing.xml:602
#, no-c-format
msgid "Your domain name."
msgstr "ãã¡ã€ã³å"
#. Tag: para
#: preparing.xml:607
#, no-c-format
msgid "Your computer's IP address."
msgstr "ã³ã³ãã¥ãŒã¿ã® IP ã¢ãã¬ã¹"
#. Tag: para
#: preparing.xml:612
#, no-c-format
msgid "The netmask to use with your network."
msgstr "ãããã¯ãŒã¯ã®ããããã¹ã¯"
#. Tag: para
#: preparing.xml:617
#, no-c-format
msgid ""
"The IP address of the default gateway system you should route to, if your "
"network <emphasis>has</emphasis> a gateway."
msgstr ""
"ãããã¯ãŒã¯ã«ã²ãŒããŠã§ã€ã<emphasis>ãã</emphasis>å Žåã¯ãçµè·¯ãåããã"
"ãã©ã«ãã²ãŒããŠã§ã€ã·ã¹ãã ã® IP ã¢ãã¬ã¹"
#. Tag: para
#: preparing.xml:623
#, no-c-format
msgid ""
"The system on your network that you should use as a DNS (Domain Name "
"Service) server."
msgstr "DNS (Domain Name Service) ãµãŒããšããŠäœ¿çšãããããã¯ãŒã¯äžã®ãã¹ã"
#. Tag: para
#: preparing.xml:631
#, no-c-format
msgid ""
"On the other hand, if your administrator tells you that a DHCP server is "
"available and is recommended, then you don't need this information because "
"the DHCP server will provide it directly to your computer during the "
"installation process."
msgstr ""
"äžæ¹ã管çè
ã« DHCP ãµãŒããå©çšã§ãæšå¥šãããšèšããããªããDHCP ãµãŒããã€ã³"
"ã¹ããŒã«ããã»ã¹ã®éãã³ã³ãã¥ãŒã¿ã«çŽæ¥æäŸããã®ã§ããã®æ
å ±ã¯å¿
èŠãããŸã"
"ãã"
#. Tag: para
#: preparing.xml:638
#, no-c-format
msgid "If you use a wireless network, you should also find out:"
msgstr "ã¯ã€ã€ã¬ã¹ãããã¯ãŒã¯ã䜿çšã§ãããªã以äžã®æ
å ±ãæ¢ããã°ãªããŸããã"
#. Tag: para
#: preparing.xml:643
#, no-c-format
msgid "ESSID of your wireless network."
msgstr "ã¯ã€ã€ã¬ã¹ãããã¯ãŒã¯ã® ESSID"
#. Tag: para
#: preparing.xml:648
#, no-c-format
msgid "WEP security key (if applicable)."
msgstr "(é©çšã§ãããªã) WEP ã»ãã¥ãªãã£ããŒ"
#. Tag: title
#: preparing.xml:665
#, no-c-format
msgid "Meeting Minimum Hardware Requirements"
msgstr "å¿
èŠãªæäœéã®ããŒããŠã§ã¢"
#. Tag: para
#: preparing.xml:666
#, no-c-format
msgid ""
"Once you have gathered information about your computer's hardware, check "
"that your hardware will let you do the type of installation that you want to "
"do."
msgstr ""
"ã³ã³ãã¥ãŒã¿ã®ããŒããŠã§ã¢ã«é¢ããæ
å ±ãéãŸã£ããããã®ããŒããŠã§ã¢ãä»ãã"
"è¡ãããšããŠããã€ã³ã¹ããŒã«ã®æ¡ä»¶ã«è¶³ããã®ã§ãããã©ããããã§ãã¯ããŸãã"
"ãã"
#. Tag: para
#: preparing.xml:672
#, no-c-format
msgid ""
"Depending on your needs, you might manage with less than some of the "
"recommended hardware listed in the table below. However, most users risk "
"being frustrated if they ignore these suggestions."
msgstr ""
"ãããåŸãªãå Žåã¯ã以äžã«èŒã£ãŠãããªã¹ãããã¯æ§èœã®å£ãããŒããŠã§ã¢ã§ãªã"
"ãšãããªããã°ãªããªãããšãããã§ãããããããããããã®ã奚ããç¡èŠããå Ž"
"åã¯ãçµå±äžæºãæããå¯èœæ§ãé«ããªã£ãŠããŸããšæããŸãã"
#. Tag: para
#: preparing.xml:678
#, no-c-format
msgid ""
"A Pentium 4, 1GHz system is the minimum recommended for a desktop system."
msgstr "ãã¹ã¯ãããã·ã¹ãã ã«ã¯æäœ Pentium 4, 1GHz ãã奚ãããŸãã"
#. Tag: para
#: preparing.xml:683
#, no-c-format
msgid ""
"A 68030 or better processor is recommended for m68k installs. You may get by "
"with a little less drive space than shown."
msgstr ""
"m68k ã®ã€ã³ã¹ããŒã«ã«ã¯ 68030 以äžã®ããã»ããµããå§ãããŸãã以äžã«ç€ºããŠã"
"ããã©ã€ã容éããã¯ãå€å°ãå°ãªããŠããªããšããªããããããŸããã"
#. Tag: para
#: preparing.xml:688
#, no-c-format
msgid "Any OldWorld or NewWorld PowerPC can serve well as a desktop system."
msgstr ""
"ãã¹ã¯ãããã·ã¹ãã ã«ã¯ OldWorld PowerPC, NewWorld PowerPC ã®ãããã®ã¢ãã«"
"ã§ãå
åã§ãããã"
#. Tag: title
#: preparing.xml:695
#, no-c-format
msgid "Recommended Minimum System Requirements"
msgstr "æäœéå¿
èŠãªã·ã¹ãã (æšå¥šå€)"
#. Tag: entry
#: preparing.xml:699
#, no-c-format
msgid "Install Type"
msgstr "ã€ã³ã¹ããŒã«ã¿ã€ã"
#. Tag: entry
#: preparing.xml:700
#, no-c-format
msgid "RAM (minimal)"
msgstr "RAM (æå°)"
#. Tag: entry
#: preparing.xml:701
#, no-c-format
msgid "RAM (recommended)"
msgstr "RAM (æšå¥š)"
#. Tag: entry
#: preparing.xml:702
#, no-c-format
msgid "Hard Drive"
msgstr "ããŒããã£ã¹ã¯"
#. Tag: entry
#: preparing.xml:708
#, no-c-format
msgid "No desktop"
msgstr "ãã¹ã¯ããããªã"
#. Tag: entry
#: preparing.xml:709 preparing.xml:714
#, no-c-format
msgid "64 megabytes"
msgstr "64 ã¡ã¬ãã€ã"
#. Tag: entry
#: preparing.xml:710
#, no-c-format
msgid "256 megabytes"
msgstr "256 ã¡ã¬ãã€ã"
#. Tag: entry
#: preparing.xml:711
#, no-c-format
msgid "1 gigabyte"
msgstr "1 ã®ã¬ãã€ã"
#. Tag: entry
#: preparing.xml:713
#, no-c-format
msgid "With Desktop"
msgstr "ãã¹ã¯ããããã"
#. Tag: entry
#: preparing.xml:715
#, no-c-format
msgid "512 megabytes"
msgstr "512 ã¡ã¬ãã€ã"
#. Tag: entry
#: preparing.xml:716
#, no-c-format
msgid "5 gigabytes"
msgstr "5 ã®ã¬ãã€ã"
#. Tag: para
#: preparing.xml:721
#, no-c-format
msgid ""
"The actual minimum memory requirements are a lot less then the numbers "
"listed in this table. Depending on the architecture, it is possible to "
"install Debian with as little as 20MB (for s390) to 48MB (for i386 and "
"amd64). The same goes for the disk space requirements, especially if you "
"pick and choose which applications to install; see <xref linkend=\"tasksel-"
"size-list\"/> for additional information on disk space requirements."
msgstr ""
"å®éã«å¿
èŠãªæå°ã¡ã¢ãªã¯ãã®è¡šã«æããç©ãããå°ãªããªããŸããã¢ãŒããã¯ãã£"
"ã«äŸåããŸãããæå° 20MB (s390) ãã 48MB (i386, amd64) 㧠Debian ãã€ã³ã¹"
"ããŒã«ã§ããŸããå¿
èŠãªãã£ã¹ã¯ã¹ããŒã¹ã«ãåãããšãèšããç¹ã«ã€ã³ã¹ããŒã«ã"
"ãã¢ããªã±ãŒã·ã§ã³ãéžæããå Žåãå¿
èŠãªãã£ã¹ã¯ã¹ããŒã¹ã«ã€ããŠã®è¿œå æ
å ±"
"ã¯ã<xref linkend=\"tasksel-size-list\"/> ãã芧ãã ããã"
#. Tag: para
#: preparing.xml:731
#, no-c-format
msgid ""
"It is possible to run a graphical desktop environment on older or low-end "
"systems, but in that case it is recommended to install a window manager that "
"is less resource-hungry than those of the GNOME or KDE desktop environments; "
"alternatives include <classname>xfce4</classname>, <classname>icewm</"
"classname> and <classname>wmaker</classname>, but there are others to choose "
"from."
msgstr ""
"æ§åŒãªããããŒãšã³ãã·ã¹ãã ã§ããã°ã©ãã£ã«ã«ãã¹ã¯ãããç°å¢ãå®è¡ã§ããŸã"
"ããGNOME ã KDE ãšãã£ããã¹ã¯ãããç°å¢ãããããªãœãŒã¹ãæ¶è²»ããªããŠã£ã³ã"
"ãŠãããŒãžã£ãã€ã³ã¹ããŒã«ããã®ãã奚ãããŸãã代æ¿åã«ã¯ã"
"<classname>xfce4</classname>, <classname>icewm</classname>, "
"<classname>wmaker</classname> ãå«ãŸããŸãããä»ã«ãéžæã§ããŸãã"
#. Tag: para
#: preparing.xml:740
#, no-c-format
msgid ""
"It is practically impossible to give general memory or disk space "
"requirements for server installations as those very much depend on what the "
"server is to be used for."
msgstr ""
"ãµãŒããäœã«äœ¿çšããããã«ãã£ãŠããµãŒãã®ã€ã³ã¹ããŒã«æã«å¿
èŠãªã倧éã®äžè¬"
"çãªã¡ã¢ãªããã£ã¹ã¯é åãäžããã®ã¯å®éã«ã¯äžå¯èœã§ãã"
#. Tag: para
#: preparing.xml:746
#, no-c-format
msgid ""
"Remember that these sizes don't include all the other materials which are "
"usually to be found, such as user files, mail, and data. It is always best "
"to be generous when considering the space for your own files and data."
msgstr ""
"ãããã®ãµã€ãºã«ã¯ãéåžžååšãããŠãŒã¶ãã¡ã€ã«ãã¡ãŒã«ãããŒã¿ãªã©ã¯å«ãŸããŠ"
"ããªãããšã«ã泚æãã ãããèªåã®ãã¡ã€ã«ãããŒã¿ã«å¿
èŠãªå®¹éã¯ãæ°åè¯ã確"
"ä¿ããŠããã«è¶ããããšã¯ãããŸããã"
#. Tag: para
#: preparing.xml:753
#, no-c-format
msgid ""
"Disk space required for the smooth operation of the &debian; system itself "
"is taken into account in these recommended system requirements. Notably, the "
"<filename>/var</filename> partition contains a lot of state information "
"specific to Debian in addition to its regular contents, like logfiles. The "
"<command>dpkg</command> files (with information on all installed packages) "
"can easily consume 40MB. Also, <command>apt-get</command> puts downloaded "
"packages here before they are installed. You should usually allocate at "
"least 200MB for <filename>/var</filename>, and a lot more if you install a "
"graphical desktop environment."
msgstr ""
"&debian; ã·ã¹ãã ãåæ»ã«æäœããã®ã«å¿
èŠãªãã£ã¹ã¯ã¹ããŒã¹ã«ã€ããŠã¯ãã奚ã"
"ããã·ã¹ãã èŠä»¶ã§èæ
®ãããŠããŸããç¹ã«ã<filename>/var</filename> ããŒãã£"
"ã·ã§ã³ã«ã¯ããã°ãã¡ã€ã«ã®ãããªäžè¬çãªå
容ã«å ããDebian ç¹æã®ç¶æ
æ
å ±ãå€"
"ã眮ãããŸãã<command>dpkg</command> ã®ãã¡ã€ã« (ã€ã³ã¹ããŒã«ãããããã±ãŒ"
"ãžãã¹ãŠã«é¢ããæ
å ±) ã¯ãç°¡åã« 40MB ãæ¶è²»ããŸãããŸã <command>apt-get</"
"command> ã¯ãã€ã³ã¹ããŒã«ããåã«ããŠã³ããŒãããããã±ãŒãžãããã«çœ®ããŸãã"
"<filename>/var</filename> ã«ã¯æäœ 200MB ã¯å²ãåœãŠãŠããã¹ãã§ãããã°ã©ãã£"
"ã«ã«ãã¹ã¯ãããç°å¢ãã€ã³ã¹ããŒã«ããå Žåã«ã¯ããã£ãšå²ãåœãŠãã¹ãã§ãã"
"ãã"
#. Tag: title
#: preparing.xml:777
#, no-c-format
msgid "Pre-Partitioning for Multi-Boot Systems"
msgstr "ãã«ãããŒãã·ã¹ãã ã§ã®äºåããŒãã£ã·ã§ã³åå²"
#. Tag: para
#: preparing.xml:778
#, no-c-format
msgid ""
"Partitioning your disk simply refers to the act of breaking up your disk "
"into sections. Each section is then independent of the others. It's roughly "
"equivalent to putting up walls inside a house; if you add furniture to one "
"room it doesn't affect any other room."
msgstr ""
"ããã£ã¹ã¯ã®ããŒãã£ã·ã§ã³åå²ããšã¯ããã£ã¹ã¯ãã»ã¯ã·ã§ã³ã«åããããšã§ãã"
"åã»ã¯ã·ã§ã³ã¯ä»ã®ã»ã¯ã·ã§ã³ããç¬ç«ããŠããŸãããã®äœæ¥ã¯èŠããã«ã家ã®äžã«"
"å£ãäœããããªãã®ã§ããããéšå±ã«å®¶å
·ãå
¥ããŠããããã¯ä»ã®éšå±ã«ã¯åœ±é¿ããª"
"ããšããããã§ãã"
#. Tag: para
#: preparing.xml:785
#, no-c-format
msgid ""
"Whenever this section talks about <quote>disks</quote> you should translate "
"this into a DASD or VM minidisk in the &arch-title; world. Also a machine "
"means an LPAR or VM guest in this case."
msgstr ""
"ãã®ã»ã¯ã·ã§ã³ã§ <quote>ãã£ã¹ã¯</quote> ãšããèšèãåºãŠããå Žåã&arch-"
"title; ã®äžçã§ã¯ããã DASD ã VM ãããã£ã¹ã¯ãšçœ®ãæããŠãã ããããŸããã®"
"å Žå <quote>ãã·ã³</quote> 㯠LPAR ã VM ã²ã¹ããšçœ®ãæããŠãã ããã"
#. Tag: para
#: preparing.xml:791
#, no-c-format
msgid ""
"If you already have an operating system on your system <phrase arch=\"x86\"> "
"(Windows 9x, Windows NT/2000/XP, OS/2, MacOS, Solaris, FreeBSD, …) </"
"phrase> <phrase arch=\"alpha\"> (Tru64 (Digital UNIX), OpenVMS, Windows NT, "
"FreeBSD, …) </phrase> <phrase arch=\"s390\"> (VM, z/OS, OS/390, "
"…) </phrase> <phrase arch=\"m68k\"> (Amiga OS, Atari TOS, Mac OS, "
"…) </phrase> and want to stick Linux on the same disk, you will need "
"to repartition the disk. Debian requires its own hard disk partitions. It "
"cannot be installed on Windows or MacOS partitions. It may be able to share "
"some partitions with other Linux systems, but that's not covered here. At "
"the very least you will need a dedicated partition for the Debian root."
msgstr ""
"ã·ã¹ãã äžã«æ¢ã«ãªãã¬ãŒãã£ã³ã°ã·ã¹ãã <phrase arch=\"x86\"> (Windows 9x, "
"Windows NT/2000/XP, OS/2, MacOS, Solaris, FreeBSD, …) </phrase> "
"<phrase arch=\"alpha\"> (Tru64 (Digital UNIX), OpenVMS, Windows NT, FreeBSD, "
"…) </phrase> <phrase arch=\"s390\"> (VM, z/OS, OS/390, …) </"
"phrase> <phrase arch=\"m68k\"> (Amiga OS, Atari TOS, Mac OS, …) </"
"phrase> ãå
¥ã£ãŠããŠãåããã£ã¹ã¯ã« Linux ãå
¥ãããå Žåã«ã¯ããã£ã¹ã¯ã®ããŒ"
"ãã£ã·ã§ã³åå²ãããçŽãå¿
èŠããããŸããLinux 㯠Windows ã MacOS ã®ããŒãã£"
"ã·ã§ã³ã«ã¯ã€ã³ã¹ããŒã«ã§ããŸãããä»ã® Linux ã·ã¹ãã ãšã¯ããŒãã£ã·ã§ã³ãå
±æ"
"ããããšãå¯èœãããããŸããããããã§ã¯ããã¯åãæ±ããŸãããå°ãªããšãã"
"Debian ã® root ã«ã¯å°çšã®ããŒãã£ã·ã§ã³ãå¿
èŠãšãªããŸãã"
#. Tag: para
#: preparing.xml:818
#, no-c-format
msgid ""
"You can find information about your current partition setup by using a "
"partitioning tool for your current operating system<phrase arch=\"x86\">, "
"such as fdisk or PartitionMagic</phrase><phrase arch=\"powerpc\">, such as "
"Drive Setup, HD Toolkit, or MacTools</phrase><phrase arch=\"m68k\">, such as "
"HD SC Setup, HDToolBox, or SCSITool</phrase><phrase arch=\"s390\">, such as "
"the VM diskmap</phrase>. Partitioning tools always provide a way to show "
"existing partitions without making changes."
msgstr ""
"çŸåšã®ããŒãã£ã·ã§ã³ã®èšå®ã¯ã<phrase arch=\"x86\">fdisk ã PartitionMagic</"
"phrase><phrase arch=\"powerpc\">Drive Setup, HD Toolkit, MacTools</"
"phrase><phrase arch=\"m68k\">HD SC Setup, HDToolBox, SCSITool</"
"phrase><phrase arch=\"s390\">VM diskmap</phrase>ã®ãããªãçŸåšã® OS ã«å¯Ÿå¿ã"
"ãããŒãã£ã·ã§ã³åå²ããŒã«ã䜿ãã°ããããŸããããŒãã£ã·ã§ã³åå²ããŒã«ã«ã¯ã"
"å¿
ãæ¢åã®ããŒãã£ã·ã§ã³ã (å€æŽããã«) 衚瀺ããæ©èœãä»ããŠããŸãã"
#. Tag: para
#: preparing.xml:828
#, no-c-format
msgid ""
"In general, changing a partition with a file system already on it will "
"destroy any information there. Thus you should always make backups before "
"doing any repartitioning. Using the analogy of the house, you would probably "
"want to move all the furniture out of the way before moving a wall or you "
"risk destroying it."
msgstr ""
"äžè¬ã«ã¯ãæ¢ã«ãã¡ã€ã«ã·ã¹ãã ã®å
¥ã£ãŠããããŒãã£ã·ã§ã³ãå€æŽãããšãããã®"
"æ
å ±ã¯ãã¹ãŠç Žå£ãããŠããŸããŸããåŸã£ãŠãããŒãã£ã·ã§ã³åå²ãããçŽãåã«"
"ã¯ãå¿
ãããã¯ã¢ãããåã£ãŠããã¹ãã§ãããŸã家ã®æ¯å©ãçšããŠã¿ãŸããããå£"
"ãåããåã«ã¯ã家å
·ãå£ããªãããããããã¯åãã£ãŠã©ããŠããã§ããã?"
#. Tag: emphasis
#: preparing.xml:838
#, no-c-format
msgid "FIXME: write about HP-UX disks?"
msgstr "FIXME: HP-UX ã®ãã£ã¹ã¯ã«ã€ããŠã¯?"
#. Tag: para
#: preparing.xml:840
#, no-c-format
msgid ""
"If your computer has more than one hard disk, you may want to dedicate one "
"of the hard disks completely to Debian. If so, you don't need to partition "
"that disk before booting the installation system; the installer's included "
"partitioning program can handle the job nicely."
msgstr ""
"ã³ã³ãã¥ãŒã¿ã« 2 å°ä»¥äžã®ããŒããã£ã¹ã¯ãããå Žåã¯ããã®å
ã® 1 å°ã Debian "
"å°çšã«ãããšãããããããŸãããããããã°ãã€ã³ã¹ããŒã«ã·ã¹ãã ã®èµ·ååã« "
"ããŒãã£ã·ã§ã³åå²ãè¡ãå¿
èŠã¯ãããŸãããã€ã³ã¹ããŒã©ã«å«ãŸããŠããããŒãã£"
"ã·ã§ã³åå²ããã°ã©ã ãããã®ä»äºãç確ã«ããªããŠãããŸãã"
#. Tag: para
#: preparing.xml:847
#, no-c-format
msgid ""
"If your machine has only one hard disk, and you would like to completely "
"replace the current operating system with &debian;, you also can wait to "
"partition as part of the installation process (<xref linkend=\"di-partition"
"\"/>), after you have booted the installation system. However this only "
"works if you plan to boot the installer system from tapes, CD-ROM or files "
"on a connected machine. Consider: if you boot from files placed on the hard "
"disk, and then partition that same hard disk within the installation system, "
"thus erasing the boot files, you'd better hope the installation is "
"successful the first time around. At the least in this case, you should have "
"some alternate means of reviving your machine like the original system's "
"installation tapes or CDs."
msgstr ""
"ãã·ã³ã« 1 å°ãããã£ã¹ã¯ããªããŠããçŸåšã® OS ã &debian; ã§å®å
šã«çœ®ãæããŠ"
"ããŸãã€ãããªããããŒãã£ã·ã§ã³åå²ã¯ã€ã³ã¹ããŒã©ãèµ·åããåŸã§ãã€ã³ã¹ããŒ"
"ã«äœæ¥ã®äžéšãšããŠè¡ã£ãŠæ§ããŸãã (<xref linkend=\"di-partition\"/>)ãããã"
"ãããå¯èœãªã®ã¯ãã€ã³ã¹ããŒã©ã·ã¹ãã ãããŒããCD-ROMãæ¥ç¶ããããã·ã³ã®"
"ãã¡ã€ã«ã®ããããããèµ·åããå Žåã ãã§ããã¡ãã£ãšèããŠã¿ãŠãã ãããããŒ"
"ããã£ã¹ã¯ã«ãããã¡ã€ã«ããèµ·åããŠãèµ·åããã€ã³ã¹ããŒã«ã·ã¹ãã ãããã®"
"ãã¡ã€ã«ã®ãããã£ã¹ã¯ãããŒãã£ã·ã§ã³åå²ããã€ãŸãèµ·åãã¡ã€ã«ãæ¶ããŠã"
"ãŸã£ããšãããããã®ã€ã³ã¹ããŒã«ãäžçºã§ããŸãããšè¡ãããã«ç¥ããããªãã§ã"
"ãããŸããã®å Žåã«ææªã®ç¶æ³ãšãªã£ããšããŠããããšããšå
¥ã£ãŠããã·ã¹ãã ã®ã€"
"ã³ã¹ããŒã«ããŒãã CD ãªã©ã§ãã³ã³ãã¥ãŒã¿ãå
ã®ç¶æ
ã«æ»ãæ¹æ³ã¯ãã£ãšããã§"
"ããããã"
#. Tag: para
#: preparing.xml:862
#, no-c-format
msgid ""
"If your machine already has multiple partitions, and enough space can be "
"provided by deleting and replacing one or more of them, then you too can "
"wait and use the Debian installer's partitioning program. You should still "
"read through the material below, because there may be special circumstances "
"like the order of the existing partitions within the partition map, that "
"force you to partition before installing anyway."
msgstr ""
"æ¢ã«ã³ã³ãã¥ãŒã¿ã«è€æ°ã®ããŒãã£ã·ã§ã³ãããããããã®äžéšãæ¶ããã眮ãæã"
"ããããããšã«ãã£ãŠå
åãªç©ºãé åã確ä¿ã§ããå Žåã«ããDebian ã€ã³ã¹ããŒã©ã®"
"ããŒãã£ã·ã§ã³åå²ããã°ã©ã ã§äœæ¥ãè¡ã£ãŠæ§ããŸãããããããã®å Žåã§ãã以"
"éã®å
容ã¯ç®ãéããŠãããŸããããããŒãã£ã·ã§ã³ãããäžã®çŸåšã®ããŒãã£ã·ã§"
"ã³ã®äžŠã³é ãªã©ã«ãã£ãŠããããã«ããŠãã€ã³ã¹ããŒã«åã«ããŒãã£ã·ã§ã³åå²äœæ¥"
"ãããªããã°ãªããªããããªå ŽåãããåŸãããã§ãã"
#. Tag: para
#: preparing.xml:872
#, no-c-format
msgid ""
"If your machine has a FAT or NTFS filesystem, as used by DOS and Windows, "
"you can wait and use Debian installer's partitioning program to resize the "
"filesystem."
msgstr ""
"DOS ã Windows ã§äœ¿çšããŠããŠããã·ã³ã« FATã»NTFS ãã¡ã€ã«ã·ã¹ãã ãããå Ž"
"åãDebian ã€ã³ã¹ããŒã©ã®ããŒãã£ã·ã§ã³åå²ããã°ã©ã ã§ãã¡ã€ã«ã·ã¹ãã ããªãµ"
"ã€ãºã§ããŸã (æéãããããŸãã)ã"
#. Tag: para
#: preparing.xml:878
#, no-c-format
msgid ""
"If none of the above apply, you'll need to partition your hard disk before "
"starting the installation to create partition-able space for Debian. If some "
"of the partitions will be owned by other operating systems, you should "
"create those partitions using native operating system partitioning programs. "
"We recommend that you do <emphasis>not</emphasis> attempt to create "
"partitions for &debian; using another operating system's tools. Instead, you "
"should just create the native operating system's partitions you will want to "
"retain."
msgstr ""
"äžèšã®ã©ãã«ãåœãŠã¯ãŸããªãå Žåãã€ã³ã¹ããŒã«ãã¯ãããåã«ããŒãã£ã·ã§ã³å"
"å²ãè¡ããDebian ã«å²ãåœãŠå¯èœãªé åãäœã£ãŠãããªããã°ãªããŸãããäžéšã®"
"ããŒãã£ã·ã§ã³ãä»ã® OS ã«äœ¿ãå Žåã¯ããã®ããŒãã£ã·ã§ã³ã¯ãã® OS ã®ããŒãã£"
"ã·ã§ã³åå²ããŒã«ã§äœæããã»ããè¯ãã§ããããããã &debian; çšã®ããŒãã£"
"ã·ã§ã³ã¯ãä»ã® OS ã®ããŒã«ã§ã¯<emphasis>äœããªã</emphasis>ãããå§ãããŸãã"
"ãã®ããŒã«ã§äœãã®ã¯ãæ®ããŠãããã OS ã®ããŒãã£ã·ã§ã³ã ãã«ããŠãã ããã"
#. Tag: para
#: preparing.xml:890
#, no-c-format
msgid ""
"If you are going to install more than one operating system on the same "
"machine, you should install all other system(s) before proceeding with Linux "
"installation. Windows and other OS installations may destroy your ability to "
"start Linux, or encourage you to reformat non-native partitions."
msgstr ""
"åããã·ã³ã«è€æ°ã® OS ãã€ã³ã¹ããŒã«ããã€ããã§ããããLinux ãã€ã³ã¹ããŒã«"
"ããåã«ãä»ã® OS ãå
šéšå
ã«ã€ã³ã¹ããŒã«ããŠãããŸããããWindows ãªã©ã®ä»ã® "
"OS ãã€ã³ã¹ããŒã«ãããšãLinux ãèµ·åããæ©èœãç Žå£ãããŠããŸã£ããããããã¯"
"ãã® OS ã®ãã®ã§ãªãããŒãã£ã·ã§ã³ããã©ãŒããããçŽãããä¿ãããããããã"
"ã§ãã"
#. Tag: para
#: preparing.xml:898
#, no-c-format
msgid ""
"You can recover from these actions or avoid them, but installing the native "
"system first saves you trouble."
msgstr ""
"ãã®ãããªåäœãã埩æ§ãããããã®ãããªææ¡ãæã£ããããããšã¯ã§ããŸããã"
"å
ã«ãã¡ãã®ã·ã¹ãã ãã€ã³ã¹ããŒã«ããŠããã°ãæåãããã©ãã«ãé¿ããããšã"
"ã§ããŸãã"
#. Tag: para
#: preparing.xml:903
#, no-c-format
msgid ""
"In order for OpenFirmware to automatically boot &debian; the Linux "
"partitions should appear before all other partitions on the disk, especially "
"MacOS boot partitions. This should be kept in mind when pre-partitioning; "
"you should create a Linux placeholder partition to come <emphasis>before</"
"emphasis> the other bootable partitions on the disk. (The small partitions "
"dedicated to Apple disk drivers are not bootable.) You can delete the "
"placeholder with the Linux partition tools later during the actual install, "
"and replace it with Linux partitions."
msgstr ""
"OpenFirmware ã« &debian; ãèªåçã«èµ·åãããã«ã¯ãLinux ããŒãã£ã·ã§ã³ãä»"
"ã® OS ã®ããŒãã£ã·ã§ã³ (ç¹ã« MacOS ã®ããŒãããŒãã£ã·ã§ã³) ãããã£ã¹ã¯ã®å
é "
"è¿ãã«çœ®ããªããã°ãªããŸãããäºåããŒãã£ã·ã§ã³åå²ãè¡ããšãã«ã¯ãã®ããšã"
"å¿ã«çããŠãããŸããããLinux çšã«äœ¿ãå ŽæãåããŠããããŒãã£ã·ã§ã³ããä»ã®"
"èµ·åå¯èœãªããŒãã£ã·ã§ã³ããããã£ã¹ã¯ã® <emphasis>åã®æ¹</emphasis> ã«äœããª"
"ããã°ãªããŸãã (Apple ãã£ã¹ã¯ãã©ã€ãçšã®å°ããªããŒãã£ã·ã§ã³ã¯èµ·åå¯èœã§"
"ã¯ãããŸãã)ããã®å Žæåãã®ããŒãã£ã·ã§ã³ã¯ãåŸã§ Linux ãã€ã³ã¹ããŒã«ãã"
"ãšãã«åé€ããå®éã® Linux ããŒãã£ã·ã§ã³ãšçœ®ãæããããšãã§ããŸãã"
#. Tag: para
#: preparing.xml:915
#, no-c-format
msgid ""
"If you currently have one hard disk with one partition (a common setup for "
"desktop computers), and you want to multi-boot the native operating system "
"and Debian, you will need to:"
msgstr ""
"çŸåšãã£ã¹ã¯ãã²ãšã€ãããŒãã£ã·ã§ã³ãã²ãšã€ (ãã¹ã¯ãããã³ã³ãã¥ãŒã¿ã ãšæ®"
"éã®èšå®) ã«ãªã£ãŠããŠãå
ã® OS ãš Debian ãšã®ãã¥ã¢ã«ããŒãã«ãããå Žåã¯ã"
"以äžã®æé ãèžãå¿
èŠããããŸãã"
#. Tag: para
#: preparing.xml:922
#, no-c-format
msgid "Back up everything on the computer."
msgstr "ã³ã³ãã¥ãŒã¿ã®ãã¹ãŠãããã¯ã¢ããããã"
#. Tag: para
#: preparing.xml:927
#, no-c-format
msgid ""
"Boot from the native operating system installer media such as CD-ROM or "
"tapes. <phrase arch=\"powerpc\">When booting from a MacOS CD, hold the "
"<keycap>c</keycap> key while booting to force the CD to become the active "
"MacOS system.</phrase>"
msgstr ""
"å
ã® OS ã®ã€ã³ã¹ããŒã«ã¡ãã£ã¢ (CD-ROM ãããŒã) ããèµ·åããã<phrase arch="
"\"powerpc\">MacOS CD ããèµ·åããå Žåã¯ãèµ·åäžã« <keycap>c</keycap> ããŒãæŒ"
"ãã£ã±ãªãã«ããŠã匷å¶çã« CD ãã¢ã¯ãã£ã㪠MacOS ã«ããã</phrase>"
#. Tag: para
#: preparing.xml:937
#, no-c-format
msgid ""
"Use the native partitioning tools to create native system partition(s). "
"Leave either a place holder partition or free space for &debian;."
msgstr ""
"æ¢åã® OS ã®ããŒãã£ã·ã§ã³åå²ããŒã«ã䜿ã£ãŠããã®ã·ã¹ãã ã®ããŒãã£ã·ã§ã³ã"
"äœãã&debian; çšã«ãå Žæåãã®ããŒãã£ã·ã§ã³ãã空ãé åãäœãã"
#. Tag: para
#: preparing.xml:944
#, no-c-format
msgid "Install the native operating system on its new partition."
msgstr "ãã® OS ããæ°ããã€ãã£ãããŒãã£ã·ã§ã³ã«ã€ã³ã¹ããŒã«ããã"
#. Tag: para
#: preparing.xml:949
#, no-c-format
msgid ""
"Boot back into the native system to verify everything's OK, and to download "
"the Debian installer boot files."
msgstr ""
"æ°ããå
¥ãããã® OS ã§èµ·åããªãããŠããã¹ãŠåé¡ãªãã確ããããåé¡ãªããã° "
"Debian ã€ã³ã¹ããŒã©ã®èµ·åãã¡ã€ã«ãããŠã³ããŒãããã"
#. Tag: para
#: preparing.xml:955
#, no-c-format
msgid "Boot the Debian installer to continue installing Debian."
msgstr "Debian ã€ã³ã¹ããŒã©ãèµ·åããŠãDebian ã®ã€ã³ã¹ããŒã«ãç¶ããã"
#. Tag: title
#: preparing.xml:969
#, no-c-format
msgid "Partitioning in Tru64 UNIX"
msgstr "Tru64 UNIX ã§ã®ããŒãã£ã·ã§ã³åå²"
#. Tag: para
#: preparing.xml:970
#, no-c-format
msgid ""
"Tru64 UNIX, formerly known as Digital UNIX, which is in turn formerly known "
"as OSF/1, uses the partitioning scheme similar to the BSD <quote>disk label</"
"quote>, which allows for up to eight partitions per disk drive. The "
"partitions are numbered <quote>1</quote> through to <quote>8</quote> in "
"Linux and <quote>lettered</quote> <quote>a</quote> through to <quote>h</"
"quote> in UNIX. Linux kernels 2.2 and higher always correspond <quote>1</"
"quote> to <quote>a</quote>, <quote>2</quote> to <quote>b</quote> and so on. "
"For example, <filename>rz0e</filename> in Tru64 UNIX would most likely be "
"called <filename>sda5</filename> in Linux."
msgstr ""
"Tru64 UNIX (以å㯠Digital UNIXããããŠãã®å㯠OSF/1 ãšããååã§ãã) ã¯ã"
"BSD ã® <quote>ãã£ã¹ã¯ã©ãã«</quote> ãšåæ§ãªããŒãã£ã·ã§ã³åœ¢åŒã䜿ããŸããã"
"ãã¯ã²ãšã€ã®ãã£ã¹ã¯ãã©ã€ãã«å¯Ÿã㊠8 åãŸã§ã®ããŒãã£ã·ã§ã³ãæã€ããšãã§ã"
"ãŸããåããŒãã£ã·ã§ã³ã¯ Linux ã§ã¯ <quote>1</quote> ãã <quote>8</quote> ãŸ"
"ã§ã®çªå·ã§èå¥ãããUNIX ã§ã¯ <quote>a</quote> ãã <quote>h</quote> ãŸã§ã® "
"<quote>æå</quote> ã§èå¥ãããŸããããŒãžã§ã³ 2.2 以éã® Linux ã«ãŒãã«ã§"
"ã¯ãå¿
ãããŒãã£ã·ã§ã³ <quote>1</quote> ã¯ããŒãã£ã·ã§ã³ <quote>a</quote> "
"ã«ã<quote>2</quote> ã <quote>b</quote> ã«ããšå¯Ÿå¿ããŠããŸã (以äžåæ§)ãäŸ"
"ãã° Tru64 UNIX ã§ã® <filename>rz0e</filename> ã¯ãLinux ããã¯ãŸãééããª"
"ã <filename>sda5</filename> ãšããååã«ãªããŸãã"
#. Tag: para
#: preparing.xml:982
#, no-c-format
msgid ""
"Partitions in a Tru64 disk label may overlap. Moreover, if this disk will be "
"used from Tru64, the <quote>c</quote> partition is required to span the "
"entire disk (thus overlapping all other non-empty partitions). Under Linux "
"this makes <filename>sda3</filename> identical to <filename>sda</filename> "
"(<filename>sdb3</filename> to <filename>sdb</filename>, if present, and so "
"on). However, the partman partitioning tool used by &d-i; cannot handle "
"overlapping partitions at present. As a result, it is currently not "
"recommended to share disks between Tru64 and Debian. Partitions on Tru64 "
"disks can be mounted under Debian after installation has been completed."
msgstr ""
"Tru64 ãã£ã¹ã¯ã©ãã«ã«ãããããŒãã£ã·ã§ã³ã¯äºãã«éãªã£ãŠããå ŽåããããŸ"
"ããããã«ããã®ãã£ã¹ã¯ã Tru64 ã§äœ¿çšãããŠããã®ãªããããŒãã£ã·ã§ã³ "
"<quote>c</quote> ã¯ãã£ã¹ã¯å
šäœãè¡šçŸãããšæ±ºããããŠããŸã (ã€ãŸã空ã§ã¯ãªã"
"ãã¹ãŠã®ããŒãã£ã·ã§ã³ãšéãªã£ãŠããã®ã§ã)ãLinux ã§ã¯ããã㯠"
"<filename>sda3</filename> ã <filename>sda</filename> ãšçããããšãæå³ããŸ"
"ãã(ãã 2 å°ç®ã® SCSI ãã£ã¹ã¯ãããã° <filename>sdb3</filename> 㯠"
"<filename>sdb</filename> ãšçããã以éåæ§) ãããã&d-i; ã䜿çšããããŒãã£"
"ã·ã§ã³åå²ããŒã« partman ã§ã¯ãéãªã£ãããŒãã£ã·ã§ã³ãæ±ããŸããããã®ããã"
"Tru64 ãš Debian ãšã§å
±æããã®ã¯ãçŸåšã奚ãããŸãããTru64 ãã£ã¹ã¯ã®ããŒ"
"ãã£ã·ã§ã³ã¯ãã€ã³ã¹ããŒã«ããã¹ãŠå®äºããåŸã« Debian ã§ããŠã³ãã§ããŸãã"
#. Tag: para
#: preparing.xml:995
#, no-c-format
msgid ""
"Another conventional requirement is for the <quote>a</quote> partition to "
"start from the beginning of the disk, so that it always includes the boot "
"block with the disk label. If you intend to boot Debian from that disk, you "
"need to size it at least 2MB to fit aboot and perhaps a kernel. Note that "
"this partition is only required for compatibility; you must not put a file "
"system onto it, or you'll destroy data."
msgstr ""
"ããã²ãšã€ã®äŒçµ±çãªæ±ºãŸãã¯ãããŒãã£ã·ã§ã³ <quote>a</quote> ãããã£ã¹ã¯ã®"
"æåããå§ãŸãããã®ããåžžã«ãã£ã¹ã¯ã©ãã«ãšèµ·åãããã¯ãå«ããšããããšã§"
"ããDebian ããã®ãããªãã£ã¹ã¯ããèµ·åãããå Žåã¯ãããã (ãšããããã¯ã«ãŒ"
"ãã«) ãåããããã«ããã®ããŒãã£ã·ã§ã³ã®ãµã€ãºãæäœ 2MB 確ä¿ããå¿
èŠããã"
"ã§ããããäºææ§ã«å¿
èŠãšãããã®ã¯ãã®ããŒãã£ã·ã§ã³ã ãã§ããããããã«ãã¡"
"ã€ã«ã·ã¹ãã ã¯çœ®ããªãããã«ããŠãã ããããããªãã°ããŒã¿ãå£ããŠããŸããŸ"
"ãã"
#. Tag: para
#: preparing.xml:1004
#, no-c-format
msgid ""
"It is possible, and indeed quite reasonable, to share a swap partition "
"between UNIX and Linux. In this case it will be needed to do a "
"<command>mkswap</command> on that partition every time the system is "
"rebooted from UNIX into Linux, as UNIX will damage the swap signature. You "
"may want to run <command>mkswap</command> from the Linux start-up scripts "
"before adding swap space with <command>swapon -a</command>."
msgstr ""
"ã¹ã¯ããããŒãã£ã·ã§ã³ã UNIX ãš Linux ã§å
±æããããšã¯å¯èœã§ããã¡ããæå³ã®"
"ããããšã§ãããã®å ŽåãUNIX ãã¹ã¯ããé åã®ããŒã¯ãå£ããŠããŸãã®ã§ãUNIX "
"ãã Linux ã«åãæ¿ããŠãªããŒããããã³ã«ãã®ããŒãã£ã·ã§ã³ã« "
"<command>mkswap</command> ãå®è¡ããå¿
èŠããããŸããLinux ã®ã¹ã¿ãŒãã¢ããã¹"
"ã¯ãªãããçšããŠã<command>swapon -a</command> ã§ã¹ã¯ããé åã䜿ãå§ããå"
"ã« <command>mkswap</command> ãå®è¡ããŠãããšè¯ãã§ãããã"
#. Tag: para
#: preparing.xml:1013
#, no-c-format
msgid ""
"If you want to mount UNIX partitions under Linux, note that Digital UNIX can "
"use two different file system types, UFS and AdvFS, of which Linux only "
"understands the former."
msgstr ""
"UNIX ã®ããŒãã£ã·ã§ã³ã Linux ããããŠã³ãããå Žåã¯ãDigital UNIX ãäºçš®é¡ã®"
"ãã¡ã€ã«ã·ã¹ãã (UFS ãš AdvFS) ãå©çšã§ããããšã«æ³šæããŠãã ãããLinux ã"
"èªèã§ããã®ã¯åè
ã ãã§ãã"
#. Tag: title
#: preparing.xml:1022
#, no-c-format
msgid "Partitioning in Windows NT"
msgstr "Windows NT ã§ã®ããŒãã£ã·ã§ã³åå²"
#. Tag: para
#: preparing.xml:1024
#, no-c-format
msgid ""
"Windows NT uses the PC-style partition table. If you are manipulating "
"existing FAT or NTFS partitions, it is recommended that you use the native "
"Windows NT tools (or, more conveniently, you can also repartition your disk "
"from the AlphaBIOS setup menu). Otherwise, it is not really necessary to "
"partition from Windows; the Linux partitioning tools will generally do a "
"better job. Note that when you run NT, the Disk Administrator may offer to "
"write a <quote>harmless signature</quote> on non-Windows disks if you have "
"any. <emphasis>Never</emphasis> let it do that, as this signature will "
"destroy the partition information."
msgstr ""
"Windows NT 㯠PC ã¹ã¿ã€ã«ã®ããŒãã£ã·ã§ã³ããŒãã«ã䜿çšããŸããæ¢åã® FAT ã "
"NTFS ã®ããŒãã£ã·ã§ã³ãæäœããå Žåã«ã¯ãWindows NT ã«ä»å±ã®ããŒã«ã䜿ãããš"
"ããå§ãããŸã (ãããã¯ãã£ãšäŸ¿å©ãªæ¹æ³ãšããŠãAlphaBIOS ã®èšå®ã¡ãã¥ãŒãã"
"ããã£ã¹ã¯ããŒãã£ã·ã§ã³ã®åæ§æãã§ããŸã)ããã以å€ã®å Žåã«ã¯ãWindows ãã"
"ããŒãã£ã·ã§ã³åå²ãè¡ããªããŠãæ§ããŸãããLinux ã®ããŒãã£ã·ã§ã³åå²ããŒã«"
"ã®ã»ãããéåžžã¯ããŸãä»äºãããªããŸããNT ã䜿ããšããã£ã¹ã¯ç®¡çããŒã«ã "
"Windows 以å€ã®ãã£ã¹ã¯ã« <quote>ç¡å®³ãªå°</quote> ãæžã蟌ãããä¿ããŠããŸã"
"ãã<emphasis>絶察ã«</emphasis>ãããªããšããããŠã¯ãããŸããããã® <quote>å°"
"</quote> ã¯ããŒãã£ã·ã§ã³æ
å ±ãç Žå£ããŠããŸããŸãã"
#. Tag: para
#: preparing.xml:1037
#, no-c-format
msgid ""
"If you plan to boot Linux from an ARC/AlphaBIOS/ARCSBIOS console, you will "
"need a (small) FAT partition for MILO. 5 MB is quite sufficient. If Windows "
"NT is installed, its 6 MB bootstrap partition can be employed for this "
"purpose. Debian &releasename; does not support installing MILO. If you "
"already have MILO installed on your system, or install MILO from other "
"media, Debian can still be booted from ARC."
msgstr ""
"Linux ã ARC/AlphaBIOS/ARCSBIOS ã³ã³ãœãŒã«ããèµ·åããã€ãããªããMILO ãå
¥ã"
"ãŠããããã® (å°ããª) FAT ããŒãã£ã·ã§ã³ãå¿
èŠã«ãªããŸãã5MB ãããã°å
åã§"
"ããWindows NT ãã€ã³ã¹ããŒã«ãããŠããå Žåã¯ããã® 6MB ã®èµ·åããŒãã£ã·ã§ã³"
"ããã¡ãã®ç®çã«ãæµçšã§ããŸããDebian &releasename; 㯠MILO ã®ã€ã³ã¹ããŒã«ã"
"ããµããŒãããŠããŸãããæ¢ã«ã·ã¹ãã ã« MILO ãã€ã³ã¹ããŒã«ãããŠããããä»ã®"
"ã¡ãã£ã¢ãã MILO ãã€ã³ã¹ããŒã«ããå ŽåãDebian 㯠ARC ããèµ·åã§ããŸãã"
#. Tag: title
#: preparing.xml:1054
#, no-c-format
msgid "Partitioning From DOS or Windows"
msgstr "DOS ã Windows ããã®ããŒãã£ã·ã§ã³åå²"
#. Tag: para
#: preparing.xml:1055
#, no-c-format
msgid ""
"If you are manipulating existing FAT or NTFS partitions, it is recommended "
"that you either use the scheme below or native Windows or DOS tools. "
"Otherwise, it is not really necessary to partition from DOS or Windows; the "
"Linux partitioning tools will generally do a better job."
msgstr ""
"æ¢åã® FAT ããã㯠NTFS ããŒãã£ã·ã§ã³ãæ±ãå Žåã«ã¯ã以éã§èª¬æããæ¹æ³ãçš"
"ããããããã㯠Windows ã DOS ã®ããŒã«ãçšããããšããå§ãããŸããæ±ããªã"
"å Žåã«ã¯ãDOS ã Windows ããããŒãã£ã·ã§ã³ãåå²ããå¿
èŠã¯ãŸã£ãããããŸã"
"ããäžè¬çã« Linux äžã®ããŒãã£ã·ã§ã³åå²ããŒã«ã䜿ãã°ãããé©åã«äœæ¥ãè¡ã"
"ãŸãã"
#. Tag: para
#: preparing.xml:1063
#, no-c-format
msgid ""
"But if you have a large IDE disk, and are not using LBA addressing, overlay "
"drivers (sometimes provided by hard disk manufacturers), or a new (post "
"1998) BIOS that supports large disk access extensions, then you must locate "
"your Debian boot partition carefully. In this case, you will have to put the "
"boot partition into the first 1024 cylinders of your hard disk (usually "
"around 524 megabytes, without BIOS translation). This may require that you "
"move an existing FAT or NTFS partition."
msgstr ""
"ãã ã倧ã㪠IDE ãã£ã¹ã¯ãçšããå Žåã§ãLBA ã¢ãã¬ã¹ãããªãŒããŒã¬ã€ãã©ã€"
"ã (HDD ã®ã¡ãŒã«ãŒããæäŸãããããšãæã
ãããŸã) ããã©ãŒãžãã£ã¹ã¯ã¢ã¯ã»"
"ã¹æ¡åŒµããµããŒãããæ°ãã (1998 幎以éã®) BIOS ããªããšãã«ã¯ãDebian ã®ããŒ"
"ãããŒãã£ã·ã§ã³ã¯æ³šæããŠé
眮ããªããã°ãªããŸããããã®ãããªå ŽåãããŒã"
"ããŒãã£ã·ã§ã³ãããŒããã£ã¹ã¯ã®å
é 1024 ã·ãªã³ã以å
ã«åããªããã°ãªããŸã"
"ã (ãã㯠BIOS å€æããªããã°ãéåžž 524 ã¡ã¬ãã€ãã«ãªããŸã)ãããã¯ããªã"
"ã¡ãæ¢åã® FAT ããŒãã£ã·ã§ã³ã NTFS ããŒãã£ã·ã§ã³ã移åããªããšãããªãããš"
"ãæå³ããŸãã"
#. Tag: title
#: preparing.xml:1077
#, no-c-format
msgid "Lossless Repartitioning When Starting From DOS, Win-32 or OS/2"
msgstr "DOS, Windows, OS/2 ããç¡é§ãªãããŒãã£ã·ã§ã³ãåãçŽã"
#. Tag: para
#: preparing.xml:1080
#, no-c-format
msgid ""
"One of the most common installations is onto a system that already contains "
"DOS (including Windows 3.1), Win32 (such as Windows 95, 98, Me, NT, 2000, "
"XP), or OS/2, and it is desired to put Debian onto the same disk without "
"destroying the previous system. Note that the installer supports resizing of "
"FAT and NTFS filesystems as used by DOS and Windows. Simply start the "
"installer and when you get to the partitioning step, select the option for "
"<menuchoice> <guimenuitem>Manual</guimenuitem> </menuchoice> partitioning, "
"select the partition to resize, and specify its new size. So in most cases "
"you should not need to use the method described below."
msgstr ""
"ããããã€ã³ã¹ããŒã«ã®ããã¡ãšããŠããã§ã« DOS (Windows3.1 ãå«ã), Win32 "
"(Windows 95, 98, Me, NT, 2000, XP), OS/2 ãªã©ãå
¥ã£ãŠããã·ã¹ãã ã«æ°ãã« "
"Debian ãã€ã³ã¹ããŒã«ããå Žåãæ¢åã®ã·ã¹ãã ãå£ãããšãªããåããã£ã¹ã¯ã« "
"Debian ãå
¥ãããšããéèŠããããŸããDOS ã Windows ã§äœ¿çšãããFAT ãã¡ã€ã«"
"ã·ã¹ãã ã»NTFS ãã¡ã€ã«ã·ã¹ãã ã®ãªãµã€ãºãã€ã³ã¹ããŒã©ã¯ãµããŒãããŠããããš"
"ã«æ³šæããŠãã ãããåã«ã€ã³ã¹ããŒã©ãèµ·åããããŒãã£ã·ã§ã³åå²ã®æ®µéã«æ¥ã"
"ãã<menuchoice> <guimenuitem>æå</guimenuitem> </menuchoice> ããŒãã£ã·ã§ã³"
"åå²ãéžæãããªãµã€ãºããããŒãã£ã·ã§ã³ãéžæããã®åŸãæ°ãããµã€ãºãæå®ã"
"ãŠãã ãããã»ãšãã©ã®å Žåã以äžã®æ¹æ³ã䜿ãå¿
èŠã¯ãããŸããã"
#. Tag: para
#: preparing.xml:1092
#, no-c-format
msgid ""
"Before going any further, you should have decided how you will be dividing "
"up the disk. The method in this section will only split a partition into two "
"pieces. One will contain the original OS and the other will be used for "
"Debian. During the installation of Debian, you will be given the opportunity "
"to use the Debian portion of the disk as you see fit, i.e., as swap or as a "
"file system."
msgstr ""
"å
ã«é²ãåã«ããã£ã¹ã¯ãã©ã®ããã«åå²ããã®ã決ããŠãããªããã°ãªããŸããã"
"ãã®ç¯ã§ã¯ 1 ã€ã®ããŒãã£ã·ã§ã³ã 2 ã€ã«åå²ããæ¹æ³ã®ã¿èª¬æããŸãããã®ãã¡ "
"1 ã€ã«ã¯æ¢åã® OS ãæ®ãããã 1 ã€ã Debian ã§å©çšããŸãããªããDebian ã«å²"
"ãåœãŠããã£ã¹ã¯é åããã©ã®çšé (ã¹ã¯ããããã¡ã€ã«ã·ã¹ãã ã) ã«ã©ã®ããã"
"ãã€å²ãåœãŠããã¯ãDebian ã€ã³ã¹ããŒã«ã®éäžã§æ±ºå®ã§ããŸãã"
#. Tag: para
#: preparing.xml:1101
#, no-c-format
msgid ""
"The idea is to move all the data on the partition to the beginning, before "
"changing the partition information, so that nothing will be lost. It is "
"important that you do as little as possible between the data movement and "
"repartitioning to minimize the chance of a file being written near the end "
"of the partition as this will decrease the amount of space you can take from "
"the partition."
msgstr ""
"ããã§çŽ¹ä»ããæ¹æ³ã¯ãããŒãã£ã·ã§ã³æ
å ±ãå€æŽããåã«ãããŒãã£ã·ã§ã³äžã®å
š"
"ããŒã¿ãããã®ããŒãã£ã·ã§ã³ã®å
é éšåã«ç§»åãããšãããã®ã§ããããããããš"
"ã§ããŒã¿ã®æ倱ã¯ãªããªããŸããããŒãã£ã·ã§ã³ã®åŸãã®æ¹ã«ãã¡ã€ã«ãååšãã"
"ãšããã®ããŒãã£ã·ã§ã³ããåŸããã空ãé åãæžã£ãŠããŸããŸããåŸã£ãŠãããŒã¿"
"ã®ç§»åãšããŒãã£ã·ã§ã³ã®åãçŽãã®æäžã«ããã¡ã€ã«ãããŒãã£ã·ã§ã³ã®çµãã®æ¹"
"ã«æžã蟌ãŸããªãããã«ããã®ã倧åã§ãã"
#. Tag: para
#: preparing.xml:1110
#, no-c-format
msgid ""
"The first thing needed is a copy of <command>fips</command> which is "
"available in the <filename>tools/</filename> directory on your nearest "
"Debian mirror. Unzip the archive and copy the files <filename>RESTORRB.EXE</"
"filename>, <filename>FIPS.EXE</filename> and <filename>ERRORS.TXT</filename> "
"to a bootable floppy. A bootable floppy can be created using the command "
"<filename>sys a:</filename> under DOS. <command>fips</command> comes with "
"very good documentation which you may want to read. You will definitely need "
"to read the documentation if you use a disk compression driver or a disk "
"manager. Create the disk and read the documentation <emphasis>before</"
"emphasis> you defragment the disk."
msgstr ""
"ãŸãæåã«å¿
èŠãšãªãã®ã¯ã<command>fips</command> ã®ã³ããŒã§ããããã¯ãè¿ã"
"ã® Debian ãã©ãŒãµã€ãã® <filename>tools/</filename> ãã£ã¬ã¯ããªããå
¥æã§ã"
"ãŸãããã®ã¢ãŒã«ã€ãã unzip ããŠã<filename>RESTORRB.EXE</filename>, "
"<filename>FIPS.EXE</filename>, <filename>ERRORS.TXT</filename> ã®åãã¡ã€ã«ã"
"èµ·åå¯èœãªãããããŒã«ã³ããŒããŠãã ãããèµ·åå¯èœãªãããããŒã¯ãDOS äžã§ "
"<filename>sys a:</filename> ãšããã³ãã³ããçšããã°äœæã§ããŸãã"
"<command>fips</command> ã«ã¯å€§å€åªããããã¥ã¡ã³ããçšæãããŠããŸãã®ã§ãèª"
"ãã§ãããšããã§ããããç¹ã«ãã£ã¹ã¯å§çž®ãã©ã€ãããã£ã¹ã¯ãããŒãžã£ã䜿ã£ãŠ"
"ããå Žåã¯ããã®ããã¥ã¡ã³ãã¯å¿
ãèªãã§ããã¹ãã§ãããããã£ã¹ã¯ãããã©ã°"
"ã¡ã³ããã <emphasis>å</emphasis> ã«ããã®ãããããŒãã£ã¹ã¯ãäœããããã¥ã¡"
"ã³ããèªãã§ãã ããã"
#. Tag: para
#: preparing.xml:1123
#, no-c-format
msgid ""
"The next thing needed is to move all the data to the beginning of the "
"partition. <command>defrag</command>, which comes standard with DOS 6.0 and "
"later, can easily do the job. See the <command>fips</command> documentation "
"for a list of other software that may do the trick. Note that if you have "
"Windows 9x, you must run <command>defrag</command> from there, since DOS "
"doesn't understand VFAT, which is used to support for long filenames, used "
"in Windows 95 and higher."
msgstr ""
"次ã«å¿
èŠãšãªãã®ã¯ããã¹ãŠã®ããŒã¿ãããŒãã£ã·ã§ã³ã®åæ¹ã«ç§»åããäœæ¥ã§ãã"
"DOS 6.0 以éã«æšæºã§çšæãããŠãã <command>defrag</command> ã䜿ãã°ãããã¯"
"ç°¡åã§ããåããããªäœæ¥ãè¡ããä»ã®ãœãããŠã§ã¢ã®äžèŠ§ã¯ã<command>fips</"
"command> ã®ããã¥ã¡ã³ãã«æžããŠãããŸããWindows9x ã䜿ã£ãŠããå Žåã¯ã"
"Windows9x ã®æ¹ãã <command>defrag</command> ãå®è¡ããªããã°ãªããªãããšã«æ³š"
"æããŠãã ãããDOS 㯠VFAT (Windows95 以éã§äœ¿ãããŠãããé·ããã¡ã€ã«åããµ"
"ããŒããã) ãèªèã§ããªãããã§ãã"
#. Tag: para
#: preparing.xml:1133
#, no-c-format
msgid ""
"After running the defragmenter (which can take a while on a large disk), "
"reboot with the <command>fips</command> disk you created in the floppy "
"drive. Simply type <filename>a:\\fips</filename> and follow the directions."
msgstr ""
"ããã©ã°ããŒã«ãå®è¡ããåŸ (倧ããªãã£ã¹ã¯ã§ã¯å°ã
æéãããããŸã)ãå
ã»ã©äœ"
"æããã<command>fips</command> ãåãããããããŒãã£ã¹ã¯ããã©ã€ãã«æ¿å
¥ã"
"ãŠãªããŒãããŠãã ãããèµ·åããããã®ãŸãŸ <filename>a:\\fips</filename> ãšæ"
"ã¡èŸŒãã§ããã®æ瀺ã«ãããã£ãŠãã ããã"
#. Tag: para
#: preparing.xml:1139
#, no-c-format
msgid ""
"Note that there are many other partition managers out there, in case "
"<command>fips</command> doesn't do the trick for you."
msgstr ""
"<command>fips</command> ã§ã¯ããŸããããªãå Žåã®ããã«ãä»ã«ãããŒãã£ã·ã§ã³"
"管çãœãããŠã§ã¢ã¯ããããããããšãå¿ã«çããŠãããŠãã ããã"
#. Tag: title
#: preparing.xml:1147
#, no-c-format
msgid "Partitioning for DOS"
msgstr "DOS ã®ããŒãã£ã·ã§ã³ãåå²ãã"
#. Tag: para
#: preparing.xml:1149
#, no-c-format
msgid ""
"If you are partitioning for DOS drives, or changing the size of DOS "
"partitions, using Linux tools, many people experience problems working with "
"the resulting FAT partitions. For instance, some have reported slow "
"performance, consistent problems with <command>scandisk</command>, or other "
"weird errors in DOS or Windows."
msgstr ""
"DOS ã®ãã©ã€ãã«ããŒãã£ã·ã§ã³ãäœæããããDOS ããŒãã£ã·ã§ã³ã®å®¹éãå€æŽã"
"ããããäœæ¥ã Linux ã®ããŒã«ã§è¡ããšããã®çµæã§ãã FAT ããŒãã£ã·ã§ã³ã§ã®"
"äœæ¥ã«åé¡ãæ®ãããšãããããã§ããäŸãã° DOS ã Windows äžã§ããã©ãŒãã³ã¹"
"ãèœã¡ããã<command>scandisk</command> ã§æŽåæ§ã®åé¡ãèµ·ãããããã®ä»åå "
"äžæã®ãšã©ãŒã«ééããããšãã£ãå ±åäŸããããŸãã"
#. Tag: para
#: preparing.xml:1157
#, no-c-format
msgid ""
"Apparently, whenever you create or resize a partition for DOS use, it's a "
"good idea to fill the first few sectors with zeros. You should do this prior "
"to running DOS's <command>format</command> command by executing the "
"following command from Linux:"
msgstr ""
"ã©ããã DOS ã§äœ¿çšããããŒãã£ã·ã§ã³ãäœæããããã®å®¹éãå€æŽãããããå Žå"
"ã¯ããã®æåã®ããã€ãã®ã»ã¯ã¿ã 0 ã§åããŠããã®ãè¯ãããã§ããDOS ã® "
"<command>format</command> ã³ãã³ããå®è¡ããåã«ãLinux ãã次ã®ã³ãã³ããå®"
"è¡ããŠãã ããã"
#. Tag: screen
#: preparing.xml:1164
#, no-c-format
msgid "# dd if=/dev/zero of=/dev/hdXX bs=512 count=4"
msgstr "# dd if=/dev/zero of=/dev/hdXX bs=512 count=4"
#. Tag: title
#: preparing.xml:1175
#, no-c-format
msgid "Partitioning in AmigaOS"
msgstr "AmigaOS ã§ã®ããŒãã£ã·ã§ã³åå²"
#. Tag: para
#: preparing.xml:1176
#, no-c-format
msgid ""
"If you are running AmigaOS, you can use the <command>HDToolBox</command> "
"program to adjust your native partitions prior to installation."
msgstr ""
"AmigaOS ãåäœãããŠããå Žåã<command>HDToolBox</command> ããã°ã©ã ã䜿ã£"
"ãŠãã€ã³ã¹ããŒã«äœæ¥ã®åã«ãã£ã¹ã¯ããŒãã£ã·ã§ã³ã調æŽã§ããŸãã"
#. Tag: title
#: preparing.xml:1184
#, no-c-format
msgid "Partitioning in Atari TOS"
msgstr "Atari TOS ã§ã®ããŒãã£ã·ã§ã³åå²"
#. Tag: para
#: preparing.xml:1185
#, no-c-format
msgid ""
"Atari partition IDs are three ASCII characters, use <quote>LNX</quote> for "
"data and <quote>SWP</quote> for swap partitions. If using the low memory "
"installation method, a small Minix partition is also needed (about 2 MB), "
"for which the partition ID is <quote>MNX</quote>. Failure to set the "
"appropriate partition IDs not only prevents the Debian installation process "
"from recognizing the partitions, but also results in TOS attempting to use "
"the Linux partitions, which confuses the hard disk driver and renders the "
"whole disk inaccessible."
msgstr ""
"Atari ã®ããŒãã£ã·ã§ã³ ID 㯠3 æåã®ã¢ã¹ããŒãã£ã©ã¯ã¿ã§è¡šãããŸããããŒã¿"
"ããŒãã£ã·ã§ã³ã«ã¯ <quote>LNX</quote> ããã¹ã¯ããããŒãã£ã·ã§ã³ã«ã¯ "
"<quote>SWP</quote> ãçšããŸããããã¡ã¢ãªã®å°ãªãã·ã¹ãã åãã®ã€ã³ã¹ããŒã«æ¹"
"æ³ãçšããå Žåã¯ãå°ã㪠(çŽ 2 MB ã®) Minix ããŒãã£ã·ã§ã³ãå¿
èŠã§ãããã®"
"ããŒãã£ã·ã§ã³ ID 㯠<quote>MNX</quote> ã«ããŸããé©åãªããŒãã£ã·ã§ã³ ID ã"
"èšå®ããªããšãDebian ã®ã€ã³ã¹ããŒã«ããã»ã¹ããã®ããŒãã£ã·ã§ã³ã®èªèã«å€±æã"
"ãã ãã§ãªããTOS ã Linux ããŒãã£ã·ã§ã³ã䜿ãããšããŠããŸããããããŒããã£"
"ã¹ã¯ãã©ã€ããæ··ä¹±ããŠããã£ã¹ã¯å
šäœã«ãããã¢ã¯ã»ã¹é害ãæããŸãã"
#. Tag: para
#: preparing.xml:1196
#, no-c-format
msgid ""
"There are a multitude of third party partitioning tools available (the Atari "
"<command>harddisk</command> utility doesn't permit changing the partition "
"ID); this manual cannot give detailed descriptions for all of them. The "
"following description covers <command>SCSITool</command> (from Hard+Soft "
"GmBH)."
msgstr ""
"ãµãŒãããŒãã£ããåºãŠããæ§ã
ãªããŒã«ãå©çšã§ããŸã (Atari ã® "
"<command>harddisk</command> ãŠãŒãã£ãªãã£ã§ã¯ããŒãã£ã·ã§ã³ ID ã®å€æŽã¯ã§ã"
"ãŸãã)ããã®ããã¥ã¢ã«ã§ã¯ãã®ãã¹ãŠã®è©³çŽ°ã玹ä»ããããšã¯äžå¯èœã§ãã以äžã®"
"解説ã§ã¯ <command>SCSITool</command> (Hard+Soft GmBH 補) ãæ±ããŸãã"
#. Tag: para
#: preparing.xml:1205
#, no-c-format
msgid ""
"Start <command>SCSITool</command> and select the disk you want to partition "
"(<guimenu>Disk</guimenu> menu, item <guimenuitem>select</guimenuitem>)."
msgstr ""
"<command>SCSITool</command> ãèµ·åããããŒãã£ã·ã§ã³ãäœæãããã£ã¹ã¯ãéžæ"
"ããŠãã ãã (<guimenu>Disk</guimenu> ã¡ãã¥ãŒã® <guimenuitem>select</"
"guimenuitem> é
ç®)ã"
#. Tag: para
#: preparing.xml:1211
#, no-c-format
msgid ""
"From the <guimenu>Partition</guimenu> menu, select either <guimenuitem>New</"
"guimenuitem> to add new partitions or change the existing partition sizes, "
"or <guimenuitem>Change</guimenuitem> to change one specific partition. "
"Unless you have already created partitions with the right sizes and only "
"want to change the partition ID, <guimenuitem>New</guimenuitem> is probably "
"the best choice."
msgstr ""
"<guimenu>Partition</guimenu> ã¡ãã¥ãŒãã <guimenuitem>New</guimenuitem> ãéž"
"ã¶ãšãæ°ããããŒãã£ã·ã§ã³ã®è¿œå ãšæ¢åããŒãã£ã·ã§ã³ã®å®¹éå€æŽãã§ãã"
"<guimenuitem>Change</guimenuitem> ãéžã¶ãšç¹å®ã®ããŒãã£ã·ã§ã³ãå€æŽã§ããŸ"
"ãããã§ã«é©åãªå®¹éã®ããŒãã£ã·ã§ã³ãäœæãããŠããŠãããŒãã£ã·ã§ã³ ID ã®å€"
"æŽã®ã¿ãè¡ãããå Žåãé€ãã<guimenuitem>New</guimenuitem> ãéžæããæ¹ããã"
"ã§ãããã"
#. Tag: para
#: preparing.xml:1221
#, no-c-format
msgid ""
"For the <guimenuitem>New</guimenuitem> choice, select <guilabel>existing</"
"guilabel> in the dialog box prompting the initial settings. The next window "
"shows a list of existing partitions which you can adjust using the scroll "
"buttons, or by clicking in the bar graphs. The first column in the partition "
"list is the partition type; just click on the text field to edit it. When "
"you are finished changing partition settings, save the changes by leaving "
"the window with the <guibutton>OK</guibutton> button."
msgstr ""
"<guimenuitem>New</guimenuitem> ãéžãã ããåæèšå®ã®ãã€ã¢ãã°ããã¯ã¹ãã "
"<guilabel>existing</guilabel> ãéžæããŠãã ããã次ã«è¡šç€ºããããŠã£ã³ããŠã«"
"ã¯ãæ¢åããŒãã£ã·ã§ã³ã®äžèŠ§ã衚瀺ãããŸããããã¯ãã¹ã¯ããŒã«ãã¿ã³ã䜿ã£ã"
"ããæ£ã°ã©ãã®å
éšãã¯ãªãã¯ããŠèª¿æŽã§ããŸããããŒãã£ã·ã§ã³äžèŠ§ã®æåã®æ¬"
"ã¯ãããŒãã£ã·ã§ã³ã¿ã€ãã§ãããã®ããã¹ããã£ãŒã«ããã¯ãªãã¯ããŠç·šéããŠã"
"ã ãããããŒãã£ã·ã§ã³èšå®ã®å€æŽãçµäºãããã<guibutton>OK</guibutton> ãã¿"
"ã³ãæŒããŠãŠã£ã³ããŠãéãããã®å€æŽãä¿åããŠãã ããã"
#. Tag: para
#: preparing.xml:1233
#, no-c-format
msgid ""
"For the <guimenuitem>Change</guimenuitem> option, select the partition to "
"change in the selection list, and select <guilabel>other systems</guilabel> "
"in the dialog box. The next window lists detailed information about the "
"location of this partition, and lets you change the partition ID. Save "
"changes by leaving the window with the <guibutton>OK</guibutton> button."
msgstr ""
"<guimenuitem>Change</guimenuitem> ãªãã·ã§ã³ã§ã¯ãå€æŽãå ããããŒãã£ã·ã§ã³"
"ãäžèŠ§ããéžæãããã€ã¢ãã°ããã¯ã¹ã® <guilabel>other systems</guilabel> ã"
"éžæããŠãã ããã次ã«è¡šç€ºããããŠã£ã³ããŠã«ã¯ããã®ããŒãã£ã·ã§ã³ã®äœçœ®ã«é¢"
"ãã詳现ãªæ
å ±ã衚瀺ããããŸãããŒãã£ã·ã§ã³ ID ã®å€æŽãå¯èœãšãªããŸãã"
"<guibutton>OK</guibutton> ãã¿ã³ãæŒããŠãŠã£ã³ããŠãéããã®å€æŽãä¿åããŠã"
"ã ããã"
#. Tag: para
#: preparing.xml:1243
#, no-c-format
msgid ""
"Write down the Linux names for each of the partitions you created or changed "
"for use with Linux — see <xref linkend=\"device-names\"/>."
msgstr ""
"Linux ã§äœ¿ãããã«äœæã»å€æŽããåããŒãã£ã·ã§ã³ã®ãLinux ã«ãããååãæžã"
"çããŠãããŠãã ãã (<xref linkend=\"device-names\"/> ãã芧ãã ãã)ã"
#. Tag: para
#: preparing.xml:1249
#, no-c-format
msgid ""
"Quit <command>SCSITool</command> using the <guimenuitem>Quit</guimenuitem> "
"item from the <guimenu>File</guimenu> menu. The computer will reboot to make "
"sure the changed partition table is used by TOS. If you changed any TOS/GEM "
"partitions, they will be invalidated and have to be reinitialized (we told "
"you to back up everything on the disk, didn't we?)."
msgstr ""
"<guimenu>File</guimenu> ã¡ãã¥ãŒã® <guimenuitem>Quit</guimenuitem> é
ç®ãéžæ"
"ããŠã<command>SCSITool</command> ãçµäºããŠãã ãããTOS ãééããªãå€æŽã"
"ããããŒãã£ã·ã§ã³ããŒãã«ãçšãããããã³ã³ãã¥ãŒã¿ãåèµ·åããŸãããªã TOS/"
"GEM ããŒãã£ã·ã§ã³ã«äœããã®å€æŽãå ããå Žåããã®ããŒãã£ã·ã§ã³ã¯ç¡å¹ã«ãª"
"ããååæåãå¿
èŠã«ãªããŸãã(ãã£ã¹ã¯ããã¹ãŠããã¯ã¢ãããããããå§ãããŸ"
"ãããã?)"
#. Tag: para
#: preparing.xml:1261
#, no-c-format
msgid ""
"There is a partitioning tool for Linux/m68k called <command>atari-fdisk</"
"command> in the installation system, but for now we recommend you partition "
"your disk using a TOS partition editor or some disk tool. If your partition "
"editor doesn't have an option to edit the partition type, you can do this "
"crucial step at a later stage (from the booted temporary install RAMdisk). "
"<command>SCSITool</command> is only one of the partition editors we know of "
"which supports selection of arbitrary partition types. There may be others; "
"select the tool that suits your needs."
msgstr ""
"Linux/m68k åãã®ããŒãã£ã·ã§ã³åå²ããŒã«ã«ã¯ <command>atari-fdisk</command> "
"ãšããã®ããããŸãããããä»ã®ãšãããTOS ããŒãã£ã·ã§ã³ãšãã£ã¿ããã®ä»ã®"
"ãã£ã¹ã¯ããŒã«ã§ãã£ã¹ã¯ããŒãã£ã·ã§ã³ãåå²ããããšããå§ãããŸãããããå©"
"çšã«ãªãããŒãã£ã·ã§ã³ãšãã£ã¿ã«ãããŒãã£ã·ã§ã³ã¿ã€ããç·šéããæ©èœããªãå Ž"
"åã«ã¯ããã®éèŠãªäœæ¥ãåŸã§ (èµ·ååŸäžæçã«ã€ã³ã¹ããŒã«ããã RAM ãã£ã¹ã¯ã"
"ã) è¡ã£ãŠãã ãããä»»æã®ããŒãã£ã·ã§ã³ã¿ã€ããéžæã§ããããŒãã£ã·ã§ã³ãš"
"ãã£ã¿ã¯ãç§ãã¡ãç¥ãéãã§ã¯ <command>SCSITool</command> ã®ã¿ã§ãããã ä»ã«"
"ããã®ãããªããŒã«ã¯ããã§ããããå¿
èŠã«å¿ããŠãããã®ãããããã䜿çšãã ã"
"ãã"
#. Tag: title
#: preparing.xml:1276
#, no-c-format
msgid "Partitioning in MacOS"
msgstr "MacOS ã§ã®ããŒãã£ã·ã§ã³åå²"
#. Tag: para
#: preparing.xml:1277
#, no-c-format
msgid ""
"Partitioning tools for Macintosh tested include <command>pdisk</command>, "
"<command>HD SC Setup</command> 7.3.5 (Apple), <command>HDT</command> 1.8 "
"(FWB), <command>SilverLining</command> (LaCie), and <command>DiskTool</"
"command> (Tim Endres, GPL). Full versions are required for <command>HDT</"
"command> and <command>SilverLining</command>. The Apple tool requires a "
"patch in order to recognize third-party disks (a description on how to patch "
"<command>HD SC Setup</command> using <command>ResEdit</command> can be found "
"at <ulink url=\"http://www.euronet.nl/users/ernstoud/patch.html\"></ulink>)."
msgstr ""
"ãã¹ãæžã¿ã® Mac ã®ããŒãã£ã·ã§ã³åå²ããŒã«ã«ã¯ã<command>pdisk</command>, "
"<command>HD SC Setup</command> 7.3.5 (Apple), <command>HDT</command> 1.8 "
"(FWB), <command>SilverLining</command> (LaCie), <command>DiskTool</command> "
"(Tim Endres, GPL) ããããŸãã<command>HDT</command> ãš "
"<command>SilverLining</command> ã®å Žåã¯å®å
šçãå¿
èŠã§ããApple ã®ããŒã«ã«"
"ãµãŒãããŒãã£è£œã®ãã£ã¹ã¯ãèªèãããã«ã¯ãããããå¿
èŠã§ã"
"<command>ResEdit</command> ãçšã㊠<command>HD SC Setup</command> ã«ãããã"
"åœãŠãæ¹æ³ã«ã€ããŠã¯ã<ulink url=\"http://www.euronet.nl/users/ernstoud/"
"patch.html\"></ulink> ãã芧ãã ãã)ã"
#. Tag: para
#: preparing.xml:1288
#, no-c-format
msgid ""
"For IDE based Macs, you need to use <command>Apple Drive Setup</command> to "
"create empty space for the Linux partitions, and complete the partitioning "
"under Linux, or use the MacOS version of pdisk available for download from "
"<ulink url=\"http://homepage.mac.com/alk/downloads/pdisk.sit.hqx\">Alsoft</"
"ulink>."
msgstr ""
"IDE ããŒã¹ã® Mac ã§ã¯ããŸã <command>Apple Drive Setup</command> ãçšã㊠"
"Linux ããŒãã£ã·ã§ã³ã«äœ¿ã空ã®é åãäœæããæçµçãªããŒãã£ã·ã§ã³åå²ã¯ "
"Linux ã§è¡ãããã«ãããã<ulink url=\"http://homepage.mac.com/alk/downloads/"
"pdisk.sit.hqx\">Alsoft</ulink> ã§ããŠã³ããŒãã§ãã MacOS çã® pdisk ãçšããŸ"
"ãã"
#. Tag: title
#: preparing.xml:1304
#, no-c-format
msgid "Partitioning from SunOS"
msgstr "SunOS ããã®ããŒãã£ã·ã§ã³åå²"
#. Tag: para
#: preparing.xml:1306
#, no-c-format
msgid ""
"It's perfectly fine to partition from SunOS; in fact, if you intend to run "
"both SunOS and Debian on the same machine, it is recommended that you "
"partition using SunOS prior to installing Debian. The Linux kernel "
"understands Sun disk labels, so there are no problems there. SILO supports "
"booting Linux and SunOS from any of EXT2 (Linux), UFS (SunOS), romfs or "
"iso9660 (CDROM) partitions."
msgstr ""
"SunOS ã§è¡ãã°ãããŒãã£ã·ã§ã³äœæã¯ãŸã£ããåé¡ãªãè¡ããŸããåäžã®ãã·ã³äž"
"㧠SunOS ãš Debian ãéçšããå Žåã¯ãDebian ãã€ã³ã¹ããŒã«ããåã«ãSunOS ã"
"çšããŠããŒãã£ã·ã§ã³ãäœæããŠããããšããå§ãããŸããLinux ã«ãŒãã«ã¯ Sun ã®"
"ãã£ã¹ã¯ã©ãã«ãèªèã§ããŸãã®ã§ããã®æ¹æ³ã§åé¡ãããŸãããSILO ã¯ãEXT2 "
"(Linux), UFS (SunOS), romfs, iso9660 (CDROM) ã®ããããã®ããŒãã£ã·ã§ã³ãã "
"Linux ããã³ SunOS ãèµ·åã§ããŸãã"
#. Tag: title
#: preparing.xml:1318
#, no-c-format
msgid "Partitioning from Linux or another OS"
msgstr "Linux ãä»ã® OS ããã®ããŒãã£ã·ã§ã³åå²"
#. Tag: para
#: preparing.xml:1320
#, no-c-format
msgid ""
"Whatever system you are using to partition, make sure you create a "
"<quote>Sun disk label</quote> on your boot disk. This is the only kind of "
"partition scheme that the OpenBoot PROM understands, and so it's the only "
"scheme from which you can boot. In <command>fdisk</command>, the <keycap>s</"
"keycap> key is used to create Sun disk labels. You only need to do this on "
"drives that do not already have a Sun disk label. If you are using a drive "
"that was previously formatted using a PC (or other architecture) you must "
"create a new disk label, or problems with the disk geometry will most likely "
"occur."
msgstr ""
"ããŒãã£ã·ã§ã³åå²ã«ã©ããªã·ã¹ãã ãçšããã«ããã<quote>Sun disk label</"
"quote> ãããŒããã£ã¹ã¯ã«äœãã®ã¯å¿ããªãããã«ããŠãã ããããã㯠OpenBoot "
"PROM ãèªèããå¯äžã®ããŒãã£ã·ã§ã³åœ¢åŒã§ãããããªãã¡èµ·åå¯èœãªå¯äžã®åœ¢åŒã§"
"ããããŸãã<command>fdisk</command> ãå©çšããå Žåã¯ã<keycap>s</keycap> "
"ããŒã䜿ããš Sun disk label ãäœæã§ããŸãã以åã« PC (ããã®ä»ã®ã¢ãŒããã¯"
"ãã£) ã§ãã©ãŒãããããããã©ã€ãã䜿ãå Žåã¯ãæ°ãããã£ã¹ã¯ã©ãã«ãäœãå¿
"
"èŠããããŸãããããªããšããŸãééããªããã£ã¹ã¯ãžãªã¡ããªã«é¢ããåé¡ãçã"
"ãã§ãããã"
#. Tag: para
#: preparing.xml:1332
#, no-c-format
msgid ""
"You will probably be using <command>SILO</command> as your boot loader (the "
"small program which runs the operating system kernel). <command>SILO</"
"command> has certain requirements for partition sizes and location; see "
"<xref linkend=\"partitioning\"/>."
msgstr ""
"ããããããŒãããŒã (ãªãã¬ãŒãã£ã³ã°ã·ã¹ãã ã«ãŒãã«ãèµ·åããããã®å°ããª"
"ããã°ã©ã ) ã«ã¯ <command>SILO</command> ã䜿ãããšã«ãªãã§ãããã"
"<command>SILO</command> ã«ã¯ããŒãã£ã·ã§ã³ãµã€ãºãæ ŒçŽäœçœ®ã«å¶éããããŸãã"
"<xref linkend=\"partitioning\"/> ãã芧ãã ããã"
#. Tag: title
#: preparing.xml:1347
#, no-c-format
msgid "MacOS/OSX Partitioning"
msgstr "MacOS/OSX ã®ããŒãã£ã·ã§ã³åå²"
#. Tag: para
#: preparing.xml:1349
#, no-c-format
msgid ""
"The <application>Apple Drive Setup</application> application can be found in "
"the <filename>Utilities</filename> folder on the MacOS CD. It will not "
"adjust existing partitions; it is limited to partitioning the entire disk at "
"once. The disk driver partitions don't show up in <application>Drive Setup</"
"application>."
msgstr ""
"MacOS CD ã® <filename>Utilities</filename> ãã©ã«ãã«ã<application>Apple "
"Drive Setup</application> ã¢ããªã±ãŒã·ã§ã³ãå
¥ã£ãŠããã¯ãã§ãããããçšããŠ"
"æ¢åã®ããŒãã£ã·ã§ã³ã調æŽã§ããŸãããã ããã£ã¹ã¯å
šäœããã¡ã©ã«ããŒãã£ã·ã§"
"ã³åå²ããããšããã§ããŸããããã£ã¹ã¯ãã©ã€ãããŒãã£ã·ã§ã³ã¯ "
"<application>Drive Setup</application> ããã¯èŠããŸããã"
#. Tag: para
#: preparing.xml:1356
#, no-c-format
msgid ""
"Remember to create a placeholder partition for GNU/Linux, preferably "
"positioned first in the disk layout. it doesn't matter what type it is, it "
"will be deleted and replaced later inside the &debian; installer."
msgstr ""
"GNU/Linux ã§çšãããšããã«ãå ŽæåãçšããŒãã£ã·ã§ã³ãäœãã®ãå¿ããªãã§ãã "
"ãããã§ããã°ãã£ã¹ã¯ã®å
é ã«çœ®ããŸããããåŸã§ &debian; ã®ã€ã³ã¹ããŒã©ã"
"ããäžåºŠæ¶ããŠçœ®ãæããããšã«ãªããŸãã®ã§ãã¿ã€ãã¯äœã§ãæ§ããŸããã"
#. Tag: para
#: preparing.xml:1362
#, no-c-format
msgid ""
"If you are planning to install both MacOS 9 and OS X, it is best to create "
"separate partitions for OS 9 and OS X. If they are installed on the same "
"partition, <application>Startup Disk</application> (and reboot) must be used "
"to select between the two; the choice between the two systems can't be made "
"at boot time. With separate partitions, separate options for OS 9 and OS X "
"will appear when holding the <keycap>option</keycap> key at boot time, and "
"separate options can be installed in the <application>yaboot</application> "
"boot menu as well. Also, Startup Disk will de-bless all other mountable "
"partitions, which can affect GNU/Linux booting. Both OS 9 and OS X "
"partitions will be accessible from either OS 9 or OS X."
msgstr ""
"MacOS 9 ãš OS X ã®äž¡æ¹ãã€ã³ã¹ããŒã«ããäºå®ã§ããããOS 9 ãš OS X ã«ã¯ããã"
"ãå¥ã
ã®ããŒãã£ã·ã§ã³ãäœãã®ãè¯ãã§ããããäž¡è
ãåãããŒãã£ã·ã§ã³ã«ã€ã³"
"ã¹ããŒã«ãããšãèµ·å OS ãéžã¶ããã« <application>Startup Disk</application> "
"ã (åèµ·åæã«ã) å¿
èŠã«ãªããŸãããã®äž¡è
ã®éžæã¯ãèµ·åæã«ã¯è¡ããªãã®ã§"
"ããå¥ã
ã®ããŒãã£ã·ã§ã³ã«ããŠããã°ãèµ·åæã« <keycap>option</keycap> ããŒã"
"æŒããŠããã°ãOS 9 ãš OS X å
±ã«ãå¥ã
ã®éžæè¢ãçŸããŸãããŸã "
"<application>yaboot</application> ã®ããŒãã¡ãã¥ãŒã«ããåãããã«å¥ã
ã®éžæ"
"è¢ãã€ã³ã¹ããŒã«ã§ããŸããStartup Disk ã¯ããŠã³ãå¯èœãªããŒãã£ã·ã§ã³ããã¹ãŠ"
"ããã£ãŠããŸã [蚳泚: åæ de-bless] ã®ã§ãGNU/Linux ã®èµ·åã圱é¿ãããããšã"
"ãããŸããOS 9ãOS X ã®åããŒãã£ã·ã§ã³ã¯ãããããã©ã¡ãã® OS ãããã¢ã¯ã»ã¹"
"ã§ããŸãã"
#. Tag: para
#: preparing.xml:1375
#, no-c-format
msgid ""
"GNU/Linux is unable to access information on UFS partitions, but does "
"support HFS+ (aka MacOS Extended) partitions. OS X requires one of these two "
"types for its boot partition. MacOS 9 can be installed on either HFS (aka "
"MacOS Standard) or HFS+. To share information between the MacOS and GNU/"
"Linux systems, an exchange partition is handy. HFS, HFS+ and MS-DOS FAT "
"partitions are supported by both MacOS and Linux."
msgstr ""
"GNU/Linux 㯠UFS ããŒãã£ã·ã§ã³ã®æ
å ±ã«ã¯ã¢ã¯ã»ã¹ã§ããŸããããHFS+ ããŒãã£"
"ã·ã§ã³ (MacOS æ¡åŒµããŒãã£ã·ã§ã³) ããµããŒãããŠããŸããOS X ã¯ããã® 2 ã€ã®"
"ãããããããŒãããŒãã£ã·ã§ã³ã«å¿
èŠãšããŸããMacOS 9 㯠HFS ããŒãã£ã·ã§ã³ "
"(MacOS æšæºããŒãã£ã·ã§ã³) ã HFS+ ã«ã€ã³ã¹ããŒã«ã§ããŸããMacOS ãš GNU/"
"Linux ã·ã¹ãã ã§æ
å ±ãå
±æããã«ã¯ãæ
å ±äº€æçšã®ããŒãã£ã·ã§ã³ãäœãã®ãæ軜"
"ã§ããHFS ããŒãã£ã·ã§ã³ãš MS-DOS FAT ããŒãã£ã·ã§ã³ã MacOS ãš Linux ã®åæ¹"
"ã§ãµããŒããããŠããŸãã"
#. Tag: title
#: preparing.xml:1395
#, no-c-format
msgid "Pre-Installation Hardware and Operating System Setup"
msgstr "ã€ã³ã¹ããŒã«åã«è¡ãããŒããŠã§ã¢ã»OS ã®èšå®"
#. Tag: para
#: preparing.xml:1396
#, no-c-format
msgid ""
"This section will walk you through pre-installation hardware setup, if any, "
"that you will need to do prior to installing Debian. Generally, this "
"involves checking and possibly changing firmware settings for your system. "
"The <quote>firmware</quote> is the core software used by the hardware; it is "
"most critically invoked during the bootstrap process (after power-up). Known "
"hardware issues affecting the reliability of &debian; on your system are "
"also highlighted."
msgstr ""
"ãã®ç¯ã§ã¯ãDebian ã®ã€ã³ã¹ããŒã«ã«å
ç«ã£ãŠå¿
èŠãšãªãããŒããŠã§ã¢ã®èšå®ã«ã€ã"
"ãŠèŠãŠãããŸããéåžžãã®äœæ¥ã§ã¯ãã·ã¹ãã ã®ãã¡ãŒã ãŠã§ã¢ã®èšå®ããã§ãã¯"
"ããå Žåã«ãã£ãŠã¯ãã®èšå®ãå€æŽããããšã«ãªããŸãã<quote>ãã¡ãŒã ãŠã§ã¢</"
"quote>ã¯ãããŒããŠã§ã¢ãå©çšããäžæ žçãªãœãããŠã§ã¢ã§ãé»æºæå
¥åŸã®ããŒãã"
"ãã»ã¹ã®éã«èµ·åããããæãéèŠãªãã®ã§ããããªãã䜿ãããšã«ãªã &debian; "
"ã®ä¿¡é Œæ§ã«åœ±é¿ãäžããããæ¢ç¥ã®ããŒããŠã§ã¢ã®è«žåé¡ã«ã€ããŠããåæ§ã«åã"
"æ±ã£ãŠããäºå®ã§ãã"
#. Tag: title
#: preparing.xml:1418
#, no-c-format
msgid "Invoking the BIOS Set-Up Menu"
msgstr "BIOS èšå®ã¡ãã¥ãŒã®èµ·å"
#. Tag: para
#: preparing.xml:1420
#, no-c-format
msgid ""
"BIOS provides the basic functions needed to boot your machine to allow your "
"operating system to access your hardware. Your system probably provides a "
"BIOS set-up menu, which is used to configure the BIOS. Before installing, "
"you <emphasis>must</emphasis> ensure that your BIOS is setup correctly; not "
"doing so can lead to intermittent crashes or an inability to install Debian."
msgstr ""
"BIOS ã¯ãã·ã³ã®ããŒãã«å¿
èŠãšãªãåºæ¬çæ©èœãæäŸããOS ãããŒããŠã§ã¢ã«ã¢ã¯"
"ã»ã¹ã§ããããã«ãããã®ã§ããããããã€ã³ã¹ããŒã«ããããšããŠãããã·ã³ã§"
"ããæãã BIOS ãèšå®ã§ãããããªã¡ãã¥ãŒãã€ããŠãããšæããŸããã€ã³ã¹ããŒ"
"ã«ã®åã«ãBIOS ãæ£ããèšå®ãããŠãããã©ããã <emphasis>å¿
ã</emphasis> 確"
"èªããŠãã ããããããªããšã·ã¹ãã ãäžæã«ã¯ã©ãã·ã¥ããããDebian ã®ã€ã³ã¹"
"ããŒã«ãã§ããªããªããããããŸããã"
#. Tag: para
#: preparing.xml:1429
#, no-c-format
msgid ""
"The rest of this section is lifted from the <ulink url=\"&url-pc-hw-faq;\"></"
"ulink>, answering the question, <quote>How do I enter the CMOS configuration "
"menu?</quote>. How you access the BIOS (or <quote>CMOS</quote>) "
"configuration menu depends on who wrote your BIOS software:"
msgstr ""
"ãã®ç¯ã®æ®ãã®éšåã¯ã<ulink url=\"&url-pc-hw-faq;\"></ulink> ã® <quote>CMOS "
"èšå®ã¡ãã¥ãŒãåŒã³åºãã«ã¯ã©ã®ããŒãæŒãã°ããã®ã§ãããã?</quote> ãšãã質"
"åãžã®çããåŒçšãããã®ã§ããBIOS (ããã㯠<quote>CMOS</quote>) èšå®ã¡"
"ãã¥ãŒã®åŒã³åºãæ¹ã¯ãBIOS ãœãããŠã§ã¢ã®è£œé è
ã«ãã£ãŠç°ãªããŸãã"
#. Tag: term
#: preparing.xml:1443
#, no-c-format
msgid "AMI BIOS"
msgstr "AMI BIOS"
#. Tag: para
#: preparing.xml:1444
#, no-c-format
msgid "<keycap>Delete</keycap> key during the POST (power on self test)"
msgstr ""
"POST (Power on self test: é»æºæå
¥æã®èªå·±èšºæãã¹ã) ã®è¡šç€ºäžã« "
"<keycap>Delete</keycap> ããŒãæŒã"
#. Tag: term
#: preparing.xml:1452
#, no-c-format
msgid "Award BIOS"
msgstr "Award BIOS"
#. Tag: para
#: preparing.xml:1453
#, no-c-format
msgid ""
"<keycombo> <keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>Esc</keycap> </"
"keycombo>, or <keycap>Delete</keycap> key during the POST"
msgstr ""
"POST ã®è¡šç€ºäžã«ã<keycombo> <keycap>Ctrl</keycap><keycap>Alt</"
"keycap><keycap>Esc</keycap> </keycombo> ãã<keycap>Delete</keycap> ããŒãæŒ"
"ã"
#. Tag: term
#: preparing.xml:1462
#, no-c-format
msgid "DTK BIOS"
msgstr "DTK BIOS"
#. Tag: para
#: preparing.xml:1463
#, no-c-format
msgid "<keycap>Esc</keycap> key during the POST"
msgstr "POST ã®è¡šç€ºäžã«ã<keycap>Esc</keycap> ããŒãæŒã"
#. Tag: term
#: preparing.xml:1470
#, no-c-format
msgid "IBM PS/2 BIOS"
msgstr "IBM PS/2 BIOS"
#. Tag: para
#: preparing.xml:1471
#, no-c-format
msgid ""
"<keycombo> <keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>Insert</keycap> "
"</keycombo> after <keycombo> <keycap>Ctrl</keycap><keycap>Alt</"
"keycap><keycap>Delete</keycap> </keycombo>"
msgstr ""
"<keycombo> <keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>Delete</keycap> "
"</keycombo> ã®åŸã<keycombo> <keycap>Ctrl</keycap><keycap>Alt</"
"keycap><keycap>Insert</keycap> </keycombo> ãæŒã"
#. Tag: term
#: preparing.xml:1485
#, no-c-format
msgid "Phoenix BIOS"
msgstr "Phoenix BIOS"
#. Tag: para
#: preparing.xml:1486
#, no-c-format
msgid ""
"<keycombo> <keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>Esc</keycap> </"
"keycombo> or <keycombo> <keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>S</"
"keycap> </keycombo> or <keycap>F1</keycap>"
msgstr ""
"<keycombo> <keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>Esc</keycap> </"
"keycombo> ãŸã㯠<keycombo> <keycap>Ctrl</keycap><keycap>Alt</"
"keycap><keycap>S</keycap> </keycombo> ãŸã㯠<keycap>F1</keycap>"
#. Tag: para
#: preparing.xml:1502
#, no-c-format
msgid ""
"Information on invoking other BIOS routines can be found in <ulink url="
"\"&url-invoking-bios-info;\"></ulink>."
msgstr ""
"ä»ã® BIOS ã«ãŒãã³ã®èµ·åã«é¢ããæ
å ±ã¯ã<ulink url=\"&url-invoking-bios-info;"
"\"></ulink> ã«ãããŸãã"
#. Tag: para
#: preparing.xml:1507
#, no-c-format
msgid ""
"Some &arch-title; machines don't have a CMOS configuration menu in the BIOS. "
"They require a software CMOS setup program. If you don't have the "
"Installation and/or Diagnostics diskette for your machine, you can try using "
"a shareware/freeware program. Try looking in <ulink url=\"&url-simtel;\"></"
"ulink>."
msgstr ""
"&arch-title; ãã·ã³ã®äžã«ã¯ãBIOS ã« CMOS èšå®ã¡ãã¥ãŒãæããªããã®ããããŸ"
"ãããããã§ã¯ããœãããŠã§ã¢ã® CMOS èšå®ããã°ã©ã ãå¿
èŠãšããŸãã䜿ã£ãŠãã"
"ãã·ã³çšã®ã€ã³ã¹ããŒã«ãã£ã¹ã¯ã蚺æãã£ã¹ã¯ãæã£ãŠããªãå Žåã¯ãã·ã§ã¢ãŠã§"
"ã¢ãããªãŒãŠã§ã¢ã®ããã°ã©ã ãè©ŠããŠã¿ãŠãã ããã<ulink url=\"&url-simtel;"
"\"></ulink> ãæ¢ããŠã¿ãŸãããã"
#. Tag: title
#: preparing.xml:1518 preparing.xml:1862
#, no-c-format
msgid "Boot Device Selection"
msgstr "ããŒãããã€ã¹ã®éžæ"
#. Tag: para
#: preparing.xml:1520
#, no-c-format
msgid ""
"Many BIOS set-up menus allow you to select the devices that will be used to "
"bootstrap the system. Set this to look for a bootable operating system on "
"<filename>A:</filename> (the first floppy disk), then optionally the first "
"CD-ROM device (possibly appearing as <filename>D:</filename> or <filename>E:"
"</filename>), and then from <filename>C:</filename> (the first hard disk). "
"This setting enables you to boot from either a floppy disk or a CD-ROM, "
"which are the two most common boot devices used to install Debian."
msgstr ""
"å€ãã® BIOS èšå®ã¡ãã¥ãŒã§ã¯ãã·ã¹ãã ãèµ·åããããã€ã¹ãéžæã§ããããã«"
"ãªã£ãŠããŸãããã®èšå®ã¯æ¬¡ã®ããã«ããŸãããããŸãèµ·åå¯èœãªãªãã¬ãŒãã£ã³ã°"
"ã·ã¹ãã ã <filename>A:</filename> (æåã®ãããããŒãã£ã¹ã¯) ããæ¢ããç¶ã"
"㊠CD-ROM ããã€ã¹ããããªããããã (ãããã <filename>D:</filename> ã "
"<filename>E:</filename> ã§ããã)ããããŠç¶ã㊠<filename>C:</filename> (æå"
"ã®ããŒããã£ã¹ã¯) ããæ¢ãããã«ããŸãããã®èšå®ãªãããããããŒãã£ã¹ã¯ãã"
"ã CD-ROM ãããèµ·åã§ããŸããDebian ã®ã€ã³ã¹ããŒã«ã«æãè¯ãçšããããã®ã¯ã"
"ã®äž¡è
ã§ãããã"
#. Tag: para
#: preparing.xml:1531
#, no-c-format
msgid ""
"If you have a newer SCSI controller and you have a CD-ROM device attached to "
"it, you are usually able to boot from the CD-ROM. All you have to do is "
"enable booting from a CD-ROM in the SCSI-BIOS of your controller."
msgstr ""
"æè¿ã® SCSI ã³ã³ãããŒã©ã䜿ã£ãŠããŠãããã« CD-ROM ãæ¥ç¶ããŠããå Žåãæ®é"
"ã¯ãã® CD-ROM ããèµ·åã§ããŸãããã®ããã«å¿
èŠãªã®ã¯ãã³ã³ãããŒã©ã® SCSI-"
"BIOS 㧠CD-ROM ããã®ããŒããæå¹ã«ããã ãã§ãã"
#. Tag: para
#: preparing.xml:1538
#, no-c-format
msgid ""
"Another popular option is to boot from a USB storage device (also called a "
"USB memory stick or USB key). Some BIOSes can boot directly from a USB "
"storage device, but some cannot. You may need to configure your BIOS to boot "
"from a <quote>Removable drive</quote> or even from <quote>USB-ZIP</quote> to "
"get it to boot from the USB device."
msgstr ""
"ãã®ä»ã®äžè¬çãªãªãã·ã§ã³ã¯ãUSB ã¹ãã¬ãŒãž (USB ã¡ã¢ãªã USB ããŒãšãåŒã°ã"
"ãŸã) ããèµ·åããããšã§ããããã€ãã® BIOS 㯠USB ã¹ãã¬ãŒãžã®ãã£ã¬ã¯ããªã"
"ãçŽæ¥èµ·åã§ããŸãããã§ããªãã®ããããŸããUSB ããã€ã¹ããèµ·åããããã«ã"
"<quote>Removable drive</quote> ã <quote>USB-ZIP</quote> ããèµ·åãããã "
"BIOS ã®èšå®ãããå¿
èŠããããããããŸããã"
#. Tag: para
#: preparing.xml:1546
#, no-c-format
msgid ""
"Here are some details about how to set the boot order. Remember to reset the "
"boot order after Linux is installed, so that you restart your machine from "
"the hard drive."
msgstr ""
"ããã§ã¯ãèµ·åé åºã®èšå®æ¹æ³ã«ã€ããŠå°ã
詳ãã説æããŸããLinux ã®ã€ã³ã¹ããŒ"
"ã«ãçµãã£ãããèµ·åã®é åºãå
ã«æ»ãããã·ã³ãããŒããŠã§ã¢ããèµ·åããããã«"
"ããŠãããŸãããã"
#. Tag: title
#: preparing.xml:1555
#, no-c-format
msgid "Changing the Boot Order on IDE Computers"
msgstr "IDE ã³ã³ãã¥ãŒã¿ã§èµ·åé åºãå€æŽãã"
#. Tag: para
#: preparing.xml:1558
#, no-c-format
msgid ""
"As your computer starts, press the keys to enter the BIOS utility. Often, it "
"is the <keycap>Delete</keycap> key. However, consult the hardware "
"documentation for the exact keystrokes."
msgstr ""
"ã³ã³ãã¥ãŒã¿ãèµ·åãããšãã« BIOS ã¡ãã¥ãŒã«å
¥ãããã®ããŒãæŒããŠãã ããã"
"<keycap>Delete</keycap> ããŒã®ããšãå€ãã§ãããããæ£ããããŒã¹ãããŒã¯ã¯"
"ããŒããŠã§ã¢ã®ææžã§ç¢ºèªããŠãã ããã"
#. Tag: para
#: preparing.xml:1565
#, no-c-format
msgid ""
"Find the boot sequence in the setup utility. Its location depends on your "
"BIOS, but you are looking for a field that lists drives."
msgstr ""
"BIOS èšå®ã¡ãã¥ãŒããèµ·åé åº (boot sequence) ã®èšå®é
ç®ãæ¢ããŠãã ãããå Ž"
"æ㯠BIOS ã«ãã£ãŠç°ãªããŸããã察象ã¯ãã©ã€ãããªã¹ãããŠãããã£ãŒã«ãã§"
"ãã"
#. Tag: para
#: preparing.xml:1570
#, no-c-format
msgid "Common entries on IDE machines are C, A, cdrom or A, C, cdrom."
msgstr ""
"IDE ãã·ã³ã§ã¯ C, A, CDROM ãŸã㯠A, C, CDROM ãšãªã£ãŠããããšãå€ããšæããŸ"
"ãã"
#. Tag: para
#: preparing.xml:1575
#, no-c-format
msgid "C is the hard drive, and A is the floppy drive."
msgstr "C ã¯ããŒããã£ã¹ã¯ã§ãA ã¯ãããããŒãã©ã€ãã§ãã"
#. Tag: para
#: preparing.xml:1581
#, no-c-format
msgid ""
"Change the boot sequence setting so that the CD-ROM or the floppy is first. "
"Usually, the <keycap>Page Up</keycap> or <keycap>Page Down</keycap> keys "
"cycle through the possible choices."
msgstr ""
"ãã®èµ·åé åºãå€æŽããŠãCD-ROM ãŸãã¯ãããããŒãå
ã«æ¥ãããã«ããŠãã ããã"
"é垞㯠<keycap>Page Up</keycap> ãš <keycap>Page Down</keycap> ããŒã䜿ããšã"
"æå®ã§ããéžæè¢ãé ã«çŸããŸãã"
#. Tag: para
#: preparing.xml:1589
#, no-c-format
msgid ""
"Save your changes. Instructions on the screen tell you how to save the "
"changes on your computer."
msgstr "å€æŽãä¿åããŸããä¿åæ¹æ³ã¯ç»é¢ã®èª¬æã«åŸã£ãŠãã ããã"
#. Tag: title
#: preparing.xml:1599
#, no-c-format
msgid "Changing the Boot Order on SCSI Computers"
msgstr "SCSI ã³ã³ãã¥ãŒã¿ã§èµ·åé åºãå€æŽãã"
#. Tag: para
#: preparing.xml:1603
#, no-c-format
msgid ""
"As your computer starts, press the keys to enter the SCSI setup utility."
msgstr ""
"ã³ã³ãã¥ãŒã¿ãèµ·åãããšãã«ãããŒãæŒã㊠SCSI èšå®ãŠãŒãã£ãªãã£ã«å
¥ã£ãŠã"
"ã ããã"
#. Tag: para
#: preparing.xml:1608
#, no-c-format
msgid ""
"You can start the SCSI setup utility after the memory check and the message "
"about how to start the BIOS utility displays when you start your computer."
msgstr ""
"SCSI èšå®ãŠãŒãã£ãªãã£ã«å
¥ãã®ã¯ãã·ã¹ãã ã®é»æºãå
¥ããã¡ã¢ãªãã§ãã¯ãçµã"
"ããBIOS ã¡ãã¥ãŒã®èµ·åæ¹æ³ã«é¢ããã¡ãã»ãŒãžãåºãåŸã«ãªããŸãã"
#. Tag: para
#: preparing.xml:1614
#, no-c-format
msgid ""
"The keystrokes you need depend on the utility. Often, it is "
"<keycombo><keycap>Ctrl</keycap><keycap>F2</keycap></keycombo>. However, "
"consult your hardware documentation for the exact keystrokes."
msgstr ""
"ããŒã¹ãããŒã¯ã¯ãŠãŒãã£ãªãã£ã«ãã£ãŠç°ãªããŸãã<keycombo><keycap>Ctrl</"
"keycap><keycap>F2</keycap></keycombo> ã®ããšã å€ãã§ãããããæ£ããããŒã¹ã"
"ããŒã¯ã¯ããŒããŠã§ã¢ã®ææžã§ç¢ºèªããŠãã ããã"
#. Tag: para
#: preparing.xml:1622
#, no-c-format
msgid "Find the utility for changing the boot order."
msgstr "èµ·åé åºãå€æŽããé
ç®ãæ¢ããŠãã ããã"
#. Tag: para
#: preparing.xml:1627
#, no-c-format
msgid ""
"Set the utility so that the SCSI ID of the CD drive is first on the list."
msgstr ""
"ãã®é
ç®ã§ãCD ãã©ã€ãã® SCSI ID ããªã¹ãã®å
é ã«æ¥ãããã«ããŠãã ããã"
#. Tag: para
#: preparing.xml:1633
#, no-c-format
msgid ""
"Save your changes. Instructions on the screen tell you how to save the "
"changes on your computer. Often, you must press <keycap>F10</keycap>."
msgstr ""
"å€æŽãä¿åããŸããä¿åæ¹æ³ã¯ç»é¢ã®èª¬æã«åŸã£ãŠãã ããã<keycap>F10</keycap> "
"ãæŒãããšã«ãªãå Žåãå€ããšæããŸãã"
#. Tag: title
#: preparing.xml:1647
#, no-c-format
msgid "Miscellaneous BIOS Settings"
msgstr "ãã®ä»ã® BIOS èšå®"
#. Tag: title
#: preparing.xml:1649
#, no-c-format
msgid "CD-ROM Settings"
msgstr "CD-ROM ã®èšå®"
#. Tag: para
#: preparing.xml:1650
#, no-c-format
msgid ""
"Some BIOS systems (such as Award BIOS) allow you to automatically set the CD "
"speed. You should avoid that, and instead set it to, say, the lowest speed. "
"If you get <userinput>seek failed</userinput> error messages, this may be "
"your problem."
msgstr ""
"BIOS ã«ãã£ãŠã¯ CD ã®é床ãèªåçã«èšå®ã§ãããã®ããããŸã (Award BIOS ãã"
"ãã§ã)ããã®èšå®ã¯é¿ããã¹ãã§ã代ããã«ãäžçªé
ãé床ãéžã¶ããã«ããŸãã"
"ãããããåå ã§ã<userinput>ã·ãŒã¯ã«å€±æããŸãã (seek failed)</userinput>ã"
"ãšãããšã©ãŒã¡ãã»ãŒãžãåºãããšããããŸãã"
#. Tag: title
#: preparing.xml:1660
#, no-c-format
msgid "Extended vs. Expanded Memory"
msgstr "Extended ã¡ã¢ãªãš Expanded ã¡ã¢ãª"
#. Tag: para
#: preparing.xml:1661
#, no-c-format
msgid ""
"If your system provides both ex<emphasis>ten</emphasis>ded and "
"ex<emphasis>pan</emphasis>ded memory, set it so that there is as much "
"extended and as little expanded memory as possible. Linux requires extended "
"memory and cannot use expanded memory."
msgstr ""
"ã·ã¹ãã ã ex<emphasis>ten</emphasis>ded ã¡ã¢ãª (XMS) ãš ex<emphasis>pan</"
"emphasis>ded ã¡ã¢ãª (EMS) ã®äž¡æ¹ããµããŒããšããŠããå Žåã¯ãextended ã¡ã¢ãªã"
"ã§ããã ãå€ããexpanded ã¡ã¢ãªãã§ããã ãå°ããããŸããããLinux ã«å¿
èŠãªã®"
"㯠extended ã¡ã¢ãªã§ãexpanded ã¡ã¢ãªã¯äœ¿ããŸããã"
#. Tag: title
#: preparing.xml:1671
#, no-c-format
msgid "Virus Protection"
msgstr "ãŠã£ã«ã¹é²åŸ¡"
#. Tag: para
#: preparing.xml:1672
#, no-c-format
msgid ""
"Disable any virus-warning features your BIOS may provide. If you have a "
"virus-protection board or other special hardware, make sure it is disabled "
"or physically removed while running GNU/Linux. These aren't compatible with "
"GNU/Linux; moreover, due to the file system permissions and protected memory "
"of the Linux kernel, viruses are almost unheard of<footnote> <para> After "
"installation you can enable Boot Sector protection if you want. This offers "
"no additional security in Linux but if you also run Windows it may prevent a "
"catastrophe. There is no need to tamper with the Master Boot Record (MBR) "
"after the boot manager has been set up. </para> </footnote>."
msgstr ""
"BIOS ã®ãŠã£ã«ã¹èŠåæ©èœã®é¡ã¯äžå䜿çšããªãã§ãã ããããŠã£ã«ã¹é²åŸ¡çšã®ããŒã"
"ãç¹å¥ãªããŒããŠã§ã¢ãããå Žåã¯ãLinux ãåããŠããéã¯ç¡å¹ã«ãããããããª"
"ããã°ç©ççã«åãå€ããŠãã ãããããã㯠Linux ãšäºææ§ããããŸããããã"
"ã« Linux ã«ã¯ãã¡ã€ã«ã·ã¹ãã ã®èš±å¯å±æ§æ©èœãšã«ãŒãã«ã®ã¡ã¢ãªä¿è·æ©èœãããã"
"ãããŠã£ã«ã¹ã¯ã»ãšãã©ååšããŸãã<footnote> <para> ã€ã³ã¹ããŒã«çµäºåŸã«ã"
"ããŒãã»ã¯ã¿ã®ä¿è·ã¯æå¹ã«ããŠãæ§ããŸããããã®æ©èœã¯ Linux ã®ã»ãã¥ãªãã£ã"
"é«ããŠããã¯ããŸããããWindows ã§ã®å€§æšäºãé²ãã§ããããããããŸãããããŒ"
"ããããŒãžã£ãèšå®ãããããšã¯ããã¹ã¿ãŒããŒãã¬ã³ãŒã (MBR) ãå€æŽããå¿
èŠã¯"
"ãããŸããã</para> </footnote>ã"
#. Tag: title
#: preparing.xml:1693
#, no-c-format
msgid "Shadow RAM"
msgstr "Shadow RAM"
#. Tag: para
#: preparing.xml:1694
#, no-c-format
msgid ""
"Your motherboard may provide <emphasis>shadow RAM</emphasis> or BIOS "
"caching. You may see settings for <quote>Video BIOS Shadow</quote>, "
"<quote>C800-CBFF Shadow</quote>, etc. <emphasis>Disable</emphasis> all "
"shadow RAM. Shadow RAM is used to accelerate access to the ROMs on your "
"motherboard and on some of the controller cards. Linux does not use these "
"ROMs once it has booted because it provides its own faster 32-bit software "
"in place of the 16-bit programs in the ROMs. Disabling the shadow RAM may "
"make some of it available for programs to use as normal memory. Leaving the "
"shadow RAM enabled may interfere with Linux access to hardware devices."
msgstr ""
"ããªãã®ãã¶ãŒããŒãã§ã¯ãæãã <emphasis>shadow RAM</emphasis> (ãŸã㯠"
"BIOS ãã£ãã·ã¥) ã䜿ããã¯ãã§ãããã®å Žå㯠<quote>Video BIOS Shadow</"
"quote> ã <quote>C800-CBFF Shadow</quote> ãªã©ã®èšå®ãããã¯ãã§ããshadow "
"RAM ã¯ããã¹ãŠ <emphasis>ç¡å¹</emphasis> ã«ããŠãã ãããshadow RAM ã¯ãã"
"ã¶ãŒããŒããã³ã³ãããŒã©ã«ãŒãäžã® ROM ãžã®ã¢ã¯ã»ã¹ãé«éã«ããããã«å©çšãã"
"ããã®ã§ãããLinux ã¯èµ·åããåŸã«ã¯ãããã® ROM ã䜿ããŸãããLinux ã«ã¯èªå"
"ã®ãããé«é㪠32 ããããœãããŠã§ã¢ãããããããã ROM å
éšã® 16 ããããã"
"ã°ã©ã ã®ä»£ããã«äœ¿ãããã§ããshadow RAM ãç¡å¹ã«ãããšããã®äžéšãéåžžã®ã¡ã¢"
"ãªãšããŠããã°ã©ã ããå©çšã§ããŸããshadow RAM ãæå¹ã«ãããŸãŸã ãšãLinux ã®"
"ããŒããŠã§ã¢ã®ã¢ã¯ã»ã¹ãéªéãããŠããŸããããããŸããã"
#. Tag: title
#: preparing.xml:1711
#, no-c-format
msgid "Memory Hole"
msgstr "Memory Hole"
#. Tag: para
#: preparing.xml:1712
#, no-c-format
msgid ""
"If your BIOS offers something like <quote>15–16 MB Memory Hole</"
"quote>, please disable that. Linux expects to find memory there if you have "
"that much RAM."
msgstr ""
"BIOS ã« <quote>15–16 MB Memory Hole</quote> ãšãããããªèšå®ããã£ã"
"ããããã¯ç¡å¹ã«ããŠãããŠãã ããã16MB 以äžã®ã¡ã¢ãªãããå Žåã¯ãLinux ã¯ã"
"ã®é åã«ãã¡ã¢ãªããããã®ãšããŠåäœããŸãã"
#. Tag: para
#: preparing.xml:1718
#, no-c-format
msgid ""
"We have a report of an Intel Endeavor motherboard on which there is an "
"option called <quote>LFB</quote> or <quote>Linear Frame Buffer</quote>. This "
"had two settings: <quote>Disabled</quote> and <quote>1 Megabyte</quote>. Set "
"it to <quote>1 Megabyte</quote>. When disabled, the installation floppy was "
"not read correctly, and the system eventually crashed. At this writing we "
"don't understand what's going on with this particular device — it just "
"worked with that setting and not without it."
msgstr ""
"Intel Endeavor ãã¶ãŒããŒãã§ã¯ã<quote>LFB</quote> ãšã <quote>Linear Frame "
"Buffer</quote> ãšãããèšå®ãããããšããã¬ããŒããåããŠããŸããããã®èšå®"
"㯠<quote>Disabled</quote> ãš <quote>1 Megabyte</quote> ããéžã¹ãããã«ãªã£"
"ãŠããŸãããèšå®ã¯ <quote>1 Megabyte</quote> ã«ããŠãã ãããç¡å¹ (Disabled) "
"ã«ãããšãã€ã³ã¹ããŒã«ãããããŒãæ£ããèªã¿èŸŒãŸãããã·ã¹ãã ãã¯ã©ãã·ã¥ã"
"ãŠããŸããŸããçŸæç¹ã§ã¯ããã®ããã€ã¹ã§ãªã«ãèµ·ãã£ãŠããã®ããç§ãã¡ã¯ç解"
"ããŠããŸãããããã£ãŠããã®ã¯ãåã«ãã®èšå®ã§ã¯åããããã§ãªããšåããªãã"
"ãšããããšã ãã§ãã"
#. Tag: title
#: preparing.xml:1734
#, no-c-format
msgid "Advanced Power Management"
msgstr "Advanced Power Management"
#. Tag: para
#: preparing.xml:1735
#, no-c-format
msgid ""
"If your motherboard provides Advanced Power Management (APM), configure it "
"so that power management is controlled by APM. Disable the doze, standby, "
"suspend, nap, and sleep modes, and disable the hard disk's power-down timer. "
"Linux can take over control of these modes, and can do a better job of power-"
"management than the BIOS."
msgstr ""
"ãã¶ãŒããŒãã Advanced Power Management (APM) ã«å¯Ÿå¿ããŠãããããããæå¹ã«"
"ããŠãé»æºç®¡çã APM ãå¶åŸ¡ããããã«ããŠãã ããããŸã doze, standby, "
"suspend, nap, sleep ã®åã¢ãŒãã¯ç¡å¹ã«ããããŒããã£ã¹ã¯ã® power-down ã¿ã€"
"ããŒãç¡å¹ã«ããŠãã ãããLinux ã¯ãããã®ã¢ãŒãã®å¶åŸ¡ãèªåã§å®è¡ã§ããé»æº"
"管çã®ä»äºã BIOS ãããããŸãè¡ãããšãã§ããŸãã"
#. Tag: title
#: preparing.xml:1753
#, no-c-format
msgid "Firmware Revisions and Existing OS Setup"
msgstr "ãã¡ãŒã ãŠã§ã¢ã®ãªããžã§ã³ãšæ¢å OS ã®èšå®"
#. Tag: para
#: preparing.xml:1755
#, no-c-format
msgid ""
"&arch-title; machines are generally self-configuring and do not require "
"firmware configuration. However, you should make sure that you have the "
"appropriate ROM and system patches. On the Macintosh, MacOS version >= 7.1 "
"is recommended because version 7.0.1 contains a bug in the video drivers "
"preventing the boot loader from deactivating the video interrupts, resulting "
"in a boot hang. On the BVM VMEbus systems you should make sure you are using "
"BVMBug revision G or higher boot ROMs. The BVMBug boot ROMs do not come as "
"standard on the BVM systems but are available from BVM on request free of "
"charge."
msgstr ""
"éåžž &arch-title; ãã·ã³ã¯èªåçã«èšå®ãè¡ãã®ã§ããã¡ãŒã ãŠã§ã¢ã®èšå®ã¯å¿
èŠ"
"ãããŸãããããããé©å㪠ROM ãããããšãšãã·ã¹ãã ã«é©åãªããããåœãã£ãŠ"
"ããããšã¯ç¢ºèªããŠãããŸããããMacintosh ãªããããŒãžã§ã³ 7.1 以äžã® MacOS "
"ãçšããããšããå§ãããŸããããŒãžã§ã³ 7.0.1 ã® MacOS ã«ã¯ãããªãã©ã€ãã«ã"
"ã°ããããããããŒãããŒãããããªå²ã蟌ã¿ãç¡å¹åã§ãããèµ·åæã«ãã³ã°ã¢ã"
"ãããŠããŸãããã§ããBVM VMEbus ã·ã¹ãã ã§ã¯ãå¿
ã BVMBug ãªããžã§ã³ G 以é"
"ã®ããŒã ROM ãå©çšããŠãã ãããBVMBug ããŒã ROM 㯠BVM ã·ã¹ãã ã«æšæºã®ã"
"ã®ã§ã¯ãããŸããããç³ã蟌ãã°ç¡æ㧠BVM ããå
¥æã§ããŸãã"
#. Tag: title
#: preparing.xml:1778
#, no-c-format
msgid "Invoking OpenFirmware"
msgstr "OpenFirmware ã®èµ·å"
#. Tag: para
#: preparing.xml:1779
#, no-c-format
msgid ""
"There is normally no need to set up the BIOS (called OpenFirmware) on &arch-"
"title; systems. PReP and CHRP are equipped with OpenFirmware, but "
"unfortunately, the means you use to invoke it vary from manufacturer to "
"manufacturer. You'll have to consult the hardware documentation which came "
"with your machine."
msgstr ""
"æ®é &arch-title; ã·ã¹ãã ã§ã¯ BIOS (OpenFirmware ãšåŒã°ããŸã) ã®èšå®ããã"
"å¿
èŠã¯ãããŸãããOpenFirmware 㯠PReP ãš CHRP ãåããŠããŸãããæ®å¿µãªããã"
"ã®èµ·åæ¹æ³ã¯ã¡ãŒã«ãŒã«ãã£ãŠåå·®äžå¥ã§ãããã·ã³ã«ä»å±ã®ãããŒããŠã§ã¢ã®ææž"
"ã«ãããå¿
èŠãããã§ãããã"
#. Tag: para
#: preparing.xml:1787
#, fuzzy, no-c-format
#| msgid ""
#| "On &arch-title; Macintoshes, you invoke OpenFirmware with "
#| "<keycombo><keycap>Command</keycap> <keycap>option</keycap> <keycap>O</"
#| "keycap> <keycap>F</keycap></keycombo> while booting. Generally it will "
#| "check for these keystrokes after the chime, but the exact timing varies "
#| "from model to model. See <ulink url=\"&url-netbsd-powerpc-faq;\"></ulink> "
#| "for more hints."
msgid ""
"On &arch-title; Macintoshes, you invoke OpenFirmware with "
"<keycombo><keycap>Command (cloverleaf/Apple)</keycap> <keycap>Option </"
"keycap> <keycap>o</keycap> <keycap>f</keycap></keycombo> while booting. "
"Generally it will check for these keystrokes after the chime, but the exact "
"timing varies from model to model. See <ulink url=\"&url-netbsd-powerpc-faq;"
"\"></ulink> for more hints."
msgstr ""
"&arch-title; ã® Macintosh ã§ã¯ãOpenFirmware ã¯ããŒãæã« "
"<keycombo><keycap>Command</keycap> <keycap>option</keycap> <keycap>O</"
"keycap> <keycap>F</keycap></keycombo> ã§èµ·åã§ããŸããéåžžã¯ãã£ã€ã ã®åŸã§ã"
"ã®ããŒå
¥åããããŠãããã調ã¹ãŸãããæ£ç¢ºãªã¿ã€ãã³ã°ã¯ã¢ãã«ã«ãã£ãŠããã"
"ãã§ãã詳ããæ
å ±ã¯ <ulink url=\"&url-netbsd-powerpc-faq;\"></ulink> ãèŠãŠ"
"ãã ããã"
#. Tag: para
#: preparing.xml:1796
#, no-c-format
msgid ""
"The OpenFirmware prompt looks like this: <informalexample><screen>\n"
"ok\n"
"0 >\n"
"</screen></informalexample> Note that on older model &arch-title; Macs, the "
"default and sometimes hardwired I/O for OpenFirmware user interaction is "
"through the serial (modem) port. If you invoke OpenFirmware on one of these "
"machines, you will just see a black screen. In that case, a terminal program "
"running on another computer, connected to the modem port, is needed to "
"interact with OpenFirmware."
msgstr ""
"OpenFirmware ã®ããã³ããã¯æ¬¡ã®ããã«ãªããŸãã<informalexample><screen>\n"
"ok\n"
"0 >\n"
"</screen></informalexample> &arch-title; Mac ã®å€ãã¢ãã«ã§ã¯ãOpenFirmware "
"ãšãŠãŒã¶ãšã®éä¿¡ã¯ãããã©ã«ãã§ã·ãªã¢ã« (ã¢ãã ) ããŒãçµç±ã«ãªã£ãŠããããš"
"ããããŸã (å Žåã«ãã£ãŠã¯å€æŽã§ããªãããšããããŸã)ããã®ãããªãã·ã³ã§ "
"OpenFirmware ãèµ·åãããšãåã«çã£é»ãªç»é¢ã衚瀺ãããããšã«ãªããŸãããã®å Ž"
"å OpenFirmware ãšéä¿¡ããã«ã¯ãå¥ã®ã³ã³ãã¥ãŒã¿ã§ç«¯æ«ããã°ã©ã ãåãããŠã"
"ãããã¢ãã ããŒãã«ã€ãªãå¿
èŠããããŸãã"
#. Tag: para
#: preparing.xml:1809
#, no-c-format
msgid ""
"The OpenFirmware on OldWorld Beige G3 machines, OF versions 2.0f1 and 2.4, "
"is broken. These machines will most likely not be able to boot from the hard "
"drive unless the firmware is patched. A firmware patch is included in the "
"<application>System Disk 2.3.1</application> utility, available from Apple "
"at <ulink url=\"ftp://ftp.apple.com/developer/macosxserver/utilities/"
"SystemDisk2.3.1.smi.bin\"></ulink>. After unpacking the utility in MacOS, "
"and launching it, select the <guibutton>Save</guibutton> button to have the "
"firmware patches installed to nvram."
msgstr ""
"OldWorld Beige G3 ãã·ã³ã§ã¯ãOpenFirmware ã® 2.0f1 ãš 2.4 ã¯äœ¿ãç©ã«ãªããŸã"
"ãããã¡ãŒã ãŠã§ã¢ã«ããããåœãŠãªããšããã®ãããªãã·ã³ã§ã¯ãŸãããŒããã£ã¹"
"ã¯ããã®ããŒãã¯ã§ããŸããããã¡ãŒã ãŠã§ã¢ã®ããã㯠<application>System "
"Disk 2.3.1</application> ãŠãŒãã£ãªãã£ã«å«ãŸããŠãããApple ã® <ulink url="
"\"ftp://ftp.apple.com/developer/macosxserver/utilities/SystemDisk2.3.1.smi."
"bin\"></ulink> ããå
¥æã§ããŸãããã®ãŠãŒãã£ãªãã£ã MacOS ããå±éããå®è¡"
"ã㊠<guibutton>Save</guibutton> ãã¿ã³ãæŒããšããã¡ãŒã ãŠã§ã¢ã®ãããã "
"nvram ã«ã€ã³ã¹ããŒã«ãããŸãã"
#. Tag: title
#: preparing.xml:1829
#, no-c-format
msgid "Invoking OpenBoot"
msgstr "OpenBoot ã®èµ·å"
#. Tag: para
#: preparing.xml:1831
#, no-c-format
msgid ""
"OpenBoot provides the basic functions needed to boot the &arch-title; "
"architecture. This is rather similar in function to the BIOS in the x86 "
"architecture, although much nicer. The Sun boot PROMs have a built-in forth "
"interpreter which lets you do quite a number of things with your machine, "
"such as diagnostics and simple scripts."
msgstr ""
"OpenBoot ã¯ã&arch-title; ã¢ãŒããã¯ãã£ã®ããŒãã«å¿
èŠãšãªãåºæ¬çãªæ©èœãæ"
"äŸãããã®ã§ãããã㯠x86 ã¢ãŒããã¯ãã£ã«çœ®ãã BIOS ãšæ©èœçã«ã¯äŒŒãŠããŸã"
"ãããã£ãšåªããŠããŸããSun ã®ããŒã PROM ã«ã¯ Forth ã®ã€ã³ã¿ãŒããªã¿ãçµã¿èŸŒ"
"ãŸããŠãããããã䜿ããšèšºæãç°¡åãªã¹ã¯ãªããã®å®è¡ãªã©ãã³ã³ãã¥ãŒã¿ã«å¯Ÿã"
"ãŠæ§ã
ãªããšãè¡ããŸãã"
#. Tag: para
#: preparing.xml:1839
#, no-c-format
msgid ""
"To get to the boot prompt you need to hold down the <keycap>Stop</keycap> "
"key (on older type 4 keyboards, use the <keycap>L1</keycap> key, if you have "
"a PC keyboard adapter, use the <keycap>Break</keycap> key) and press the "
"<keycap>A</keycap> key. The boot PROM will give you a prompt, either "
"<userinput>ok</userinput> or <userinput>></userinput>. It is preferred to "
"have the <userinput>ok</userinput> prompt. So if you get the old style "
"prompt, hit the <keycap>n</keycap> key to get the new style prompt."
msgstr ""
"ããŒãããã³ãããåŒã³åºãã«ã¯ã<keycap>Stop</keycap> ã㌠(Type 4 ããŒããŒã"
"ããå€ããã®ã§ã¯ <keycap>L1</keycap> ããŒããŸã PC ããŒããŒãã¢ããã¿ãæã£ãŠ"
"ãããªã <keycap>Break</keycap> ããŒ) ãæŒããªãã <keycap>A</keycap> ããŒã"
"æŒããŠãã ãããããŒã PROM 㯠<userinput>ok</userinput> ããã㯠"
"<userinput>></userinput> ãšããããã³ããã衚瀺ããŸãã<userinput>ok</"
"userinput> ãšããããã³ããã®æ¹ã奜ãŸããæ¹ãå€ãããã§ããå€ãæ¹ã®ããã³ãã"
"ã衚瀺ãããå Žåã¯ã<keycap>n</keycap> ããŒãæŒããšæ°ããæ¹ã®ããã³ããã«ãªã"
"ãŸãã"
#. Tag: para
#: preparing.xml:1851
#, no-c-format
msgid ""
"If you are using a serial console, send a break to the machine. With "
"Minicom, use <keycap>Ctrl-A F</keycap>, with cu, hit <keycap>Enter</keycap>, "
"then type <userinput>%~break</userinput>. Consult the documentation of your "
"terminal emulator if you are using a different program."
msgstr ""
"ã·ãªã¢ã«ã³ã³ãœãŒã«ã䜿çšããŠããå Žåããã·ã³ã« break ãéä¿¡ããŠãã ããã"
"Minicom ã§ã¯ <keycap>Ctrl-A F</keycap> ã䜿çšããŸããcu ã§ã¯ <keycap>Enter</"
"keycap> ãæŒããŠã<userinput>%~break</userinput> ãšå
¥åããŠãã ããããã®ä»ã®"
"ããã°ã©ã ã䜿çšããŠããå Žåã¯ããã®ç«¯æ«ãšãã¥ã¬ãŒã¿ã®ææžãåç
§ããŠãã ã"
"ãã"
#. Tag: para
#: preparing.xml:1864
#, no-c-format
msgid ""
"You can use OpenBoot to boot from specific devices, and also to change your "
"default boot device. However, you need to know some details about how "
"OpenBoot names devices; it's considerably different from Linux device "
"naming, described in <xref linkend=\"device-names\"/>. Also, the command "
"will vary a bit, depending on what version of OpenBoot you have. More "
"information about OpenBoot can be found in the <ulink url=\"&url-openboot;"
"\">Sun OpenBoot Reference</ulink>."
msgstr ""
"OpenBoot ã䜿ããšãç¹å®ã®ããã€ã¹ããèµ·åããããããã©ã«ãã®ããŒãããã€ã¹ã"
"å€æŽãããã§ããŸããããããã®ããã«ã¯ãOpenBoot ã«ãããããã€ã¹ã®åŒã³æ¹ã«ã€"
"ããŠãããçšåºŠè©³ããç¥ã£ãŠããå¿
èŠããããŸããããã¯ã<xref linkend=\"device-"
"names\"/> ã§èª¬æãã Linux ã«ãããããã€ã¹ã®åœåæ³ãšã¯ããªãç°ãªã£ãŠããŸãã"
"ãŸãã³ãã³ãã OpenBoot ã®ããŒãžã§ã³ã«ãã£ãŠå°ã
ç°ãªããŸããOpenBoot ã«é¢ãã"
"ãã詳现ãªæ
å ±ã¯ã<ulink url=\"&url-openboot;\">Sun OpenBoot Reference</"
"ulink> ã«ãããŸãã"
#. Tag: para
#: preparing.xml:1874
#, no-c-format
msgid ""
"Typically, with newer revisions, you can use OpenBoot devices such as "
"<quote>floppy</quote>, <quote>cdrom</quote>, <quote>net</quote>, "
"<quote>disk</quote>, or <quote>disk2</quote>. These have the obvious "
"meanings; the <quote>net</quote> device is for booting from the network. "
"Additionally, the device name can specify a particular partition of a disk, "
"such as <quote>disk2:a</quote> to boot disk2, first partition. Full OpenBoot "
"device names have the form: <informalexample> <screen>\n"
"<replaceable>driver-name</replaceable>@\n"
"<replaceable>unit-address</replaceable>:\n"
"<replaceable>device-arguments</replaceable>\n"
"</screen></informalexample> In older revisions of OpenBoot, device naming is "
"a bit different: the floppy device is called <quote>/fd</quote>, and SCSI "
"disk devices are of the form <quote>sd(<replaceable>controller</"
"replaceable>, <replaceable>disk-target-id</replaceable>, <replaceable>disk-"
"lun</replaceable>)</quote>. The command <userinput>show-devs</userinput> in "
"newer OpenBoot revisions is useful for viewing the currently configured "
"devices. For full information, whatever your revision, see the <ulink url="
"\"&url-openboot;\">Sun OpenBoot Reference</ulink>."
msgstr ""
"æ°ããçã§ã¯ããããŠãã®å Žå <quote>floppy</quote>, <quote>cdrom</quote>, "
"<quote>net</quote>, <quote>disk</quote>, <quote>disk2</quote> ãªã©ã® "
"OpenBoot ããã€ã¹ã䜿ããŸããããããæåéãã®æå³ã§ããäŸãã° <quote>net</"
"quote> ããã€ã¹ã¯ãããã¯ãŒã¯ããã®èµ·åçšã§ããããã«ãããã€ã¹åã§ã¯ç¹å®ã®"
"ãã£ã¹ã¯ã»ç¹å®ã®ããŒãã£ã·ã§ã³ãæå®ããããšãã§ããŸããäŸãã°ç¬¬ 2 ãã£ã¹ã¯ã®"
"第 1 ããŒãã£ã·ã§ã³ããèµ·åããã«ã¯ <quote>disk2:a</quote> ã®ããã«æå®ããŸ"
"ããOpenBoot ã®å®å
šãªããã€ã¹åã¯ä»¥äžã®ããã«ãªããŸãã<informalexample> "
"<screen>\n"
"<replaceable>driver-name</replaceable>@\n"
"<replaceable>unit-address</replaceable>:\n"
"<replaceable>device-arguments</replaceable>\n"
"</screen></informalexample> OpenBoot ã®å€ãçã§ã¯ãããã€ã¹åã®ä»ãæ¹ãè¥å¹²ç°"
"ãªããŸãããããããŒããã€ã¹ã¯ <quote>/fd</quote> ãšãªããSCSI ãã£ã¹ã¯ããã€"
"ã¹ã®åœ¢åŒã¯ <quote>sd(<replaceable>controller</replaceable>, "
"<replaceable>disk-target-id</replaceable>, <replaceable>disk-lun</"
"replaceable>)</quote> ãšãªããŸããæ°ããçã® OpenBoot ã«ã¯ <userinput>show-"
"devs</userinput> ãšããã³ãã³ãããããããã¯çŸåšèšå®ãããŠããããã€ã¹ãèŠã"
"ã®ã«äŸ¿å©ã§ããã©ã®çã䜿ãã«ãããå®å
šãªæ
å ±ã¯ <ulink url=\"&url-openboot;"
"\">Sun OpenBoot Reference</ulink> ãã芧ãã ããã"
#. Tag: para
#: preparing.xml:1897
#, no-c-format
msgid ""
"To boot from a specific device, use the command <userinput>boot "
"<replaceable>device</replaceable></userinput>. You can set this behavior as "
"the default using the <userinput>setenv</userinput> command. However, the "
"name of the variable to set changed between OpenBoot revisions. In OpenBoot "
"1.x, use the command <userinput>setenv boot-from <replaceable>device</"
"replaceable></userinput>. In later revisions of OpenBoot, use the command "
"<userinput>setenv boot-device <replaceable>device</replaceable></userinput>. "
"Note, this is also configurable using the <command>eeprom</command> command "
"on Solaris, or modifying the appropriate files in <filename>/proc/openprom/"
"options/</filename>, for example under Linux: <informalexample><screen>\n"
"# echo disk1:1 > /proc/openprom/options/boot-device\n"
"</screen></informalexample> and under Solaris:"
msgstr ""
"ç¹å®ã®ããã€ã¹ããèµ·åããã«ã¯ã<userinput>boot<replaceable>ããã€ã¹å</"
"replaceable></userinput> ãšããã³ãã³ãã䜿ã£ãŠãã ããã<userinput>setenv</"
"userinput> ã³ãã³ãã䜿ãã°ããã®åäœãããã©ã«ãã«èšå®ããããšãã§ããŸããã"
"ããèšå®ããå€æ°å㯠OpenBoot ã®ãªããžã§ã³ã«ãã£ãŠç°ãªããŸããOpenBoot 1.x ã§"
"ã¯ã<userinput>setenv boot-from<replaceable>ããã€ã¹å</replaceable></"
"userinput> ãšããã³ãã³ãã䜿ããŸãããã以éã®çã® OpenBoot ã§ã¯ "
"<userinput>setenv boot-device<replaceable>ããã€ã¹å</replaceable></"
"userinput> ãšããã³ãã³ãã䜿ããŸãããªããã®èšå®ã¯ãSolaris ã® "
"<command>eeprom</command> ã³ãã³ãã䜿ã£ããã<filename>/proc/openprom/"
"options/</filename> ã®é©åœãªãã¡ã€ã«ãå€æŽããŠè¡ããŸããäŸãšã㊠Linux ãããª"
"ã <informalexample><screen>\n"
"# echo disk1:1 > /proc/openprom/options/boot-device\n"
"</screen></informalexample> Solaris ã§ã¯ä»¥äžã®ããã«ããŠãã ããã"
#. Tag: screen
#: preparing.xml:1916
#, no-c-format
msgid "eeprom boot-device=disk1:1"
msgstr "eeprom boot-device=disk1:1"
#. Tag: title
#: preparing.xml:1926
#, no-c-format
msgid "BIOS Setup"
msgstr "BIOS èšå®"
#. Tag: para
#: preparing.xml:1927
#, no-c-format
msgid ""
"In order to install &debian; on a &arch-title; or zSeries machine you have "
"first boot a kernel into the system. The boot mechanism of this platform is "
"inherently different to other ones, especially from PC-like systems: there "
"are no floppy devices available at all. You will notice another big "
"difference while you work with this platform: most (if not all) of the time "
"you will work remote, with the help of some client session software like "
"telnet, or a browser. This is due to that special system architecture where "
"the 3215/3270 console is line-based instead of character-based."
msgstr ""
"&debian; ã S/390 ã zSeries ãã·ã³ã«ã€ã³ã¹ããŒã«ããã«ã¯ããŸãã«ãŒãã«ããã"
"ãã®ã·ã¹ãã ã§èµ·åããªããã°ãªããŸããããããã®ãã©ãããã©ãŒã ã«ãããèµ·å"
"ã¡ã«ããºã ã¯ãããããã®æãç«ã¡ããä»ã®ãã©ãããã©ãŒã (ç¹ã« PC ç³»ã®ã·ã¹ã"
"ã ) ãšã¯ç°ãªã£ãŠããŸãããããããŒããã€ã¹ã¯å
šã䜿ããŸããããã®ãã©ãã"
"ãã©ãŒã ã§äœæ¥ãããŠããéã«ã¯ãä»ã«ã倧ããªéãã«æ°ä»ãããšã«ãªããŸãã(ãã¹"
"ãŠã§ã¯ãªãã«ãã) ã»ãšãã©ã®äœæ¥ããtelnet ããã©ãŠã¶ã®ãããªã¯ã©ã€ã¢ã³ãã»ã"
"ã·ã§ã³ãœãããŠã§ã¢ãçšããŠããªã¢ãŒãã§è¡ãããšã«ãªãã®ã§ãããã㯠3215/3270 "
"ã³ã³ãœãŒã«ããã£ã©ã¯ã¿ããŒã¹ã§ã¯ãªãã©ã€ã³ããŒã¹ã§ãããšãããç¹æ®ãªã·ã¹ãã "
"ã¢ãŒããã¯ãã£ã ããã§ãã"
#. Tag: para
#: preparing.xml:1939
#, no-c-format
msgid ""
"Linux on this platform runs either natively on the bare machine, in a so-"
"called LPAR (Logical Partition) or in a virtual machine supplied by the VM "
"system. You can use a boot tape on all of those systems; you may use some "
"other boot media, too, but those may not be generally available. For "
"example, you can use the virtual card reader of a virtual machine, or boot "
"from the HMC (Hardware Management Console) of an LPAR if the HMC and this "
"option is available for you."
msgstr ""
"ãã®ãã©ãããã©ãŒã ã§ã® Linux ã¯ããã·ã³æ¬äœãã®ãã®ã§ãLPAR (Logical "
"Partition) ãšåŒã°ãããã®ã®äžãããã㯠VM ã·ã¹ãã ããäžããããä»®æ³ãã·ã³äž"
"ã§åäœãããããšãå¯èœã§ããããŒãããŒãã¯ã©ããªå Žåã§ãå©çšã§ããŸããä»ã«ã"
"䜿ããããŒãã¡ãã£ã¢ã¯ãããŸããããã€ã§ãå©çšã§ãããšã¯éããŸãããäŸãã°ä»®"
"æ³ãã·ã³ã§ã¯ä»®æ³ã«ãŒããªãŒããŒã䜿ããŸãããLPAR ã§ã¯ HMC (Hardware "
"Management Console) ããèµ·åã§ããããšããããŸãã"
#. Tag: para
#: preparing.xml:1949
#, no-c-format
msgid ""
"Before you actually perform an installation, you have to go over some design "
"and preparation steps. IBM has made documentation available about the whole "
"process, e.g. how to prepare an installation medium and how actually to boot "
"from that medium. Duplicating that information here is neither possible nor "
"necessary. However, we will describe here which kind of Debian-specific data "
"is needed and where to find it. Using both sources of information, you have "
"to prepare your machine and the installation medium before you can perform a "
"boot from it. When you see the welcome message in your client session, "
"return to this document to go through the Debian-specific installation steps."
msgstr ""
"å®éã«ã€ã³ã¹ããŒã«ãè¡ããŸãã«ãèšèšãããæºåããããã段éãããã€ãèžãŸãª"
"ããã°ãªããŸãããå
šäœã®æé ãäŸãã°ã€ã³ã¹ããŒã«ã¡ãã£ã¢ã®æºåãããã®ã¡ãã£"
"ã¢ããã®å®éã®èµ·åãªã©ã¯ãIBM ããã®ææžã§èª¬æãããŠããŸããããã§ãã®æ
å ±ã"
"ç¹°ãè¿ãã®ã¯äžå¯èœã§ãããäžå¿
èŠã§ããããããããå¿
èŠãšãªã Debian ç¹æã®æ
"
"å ±ãããã®ååŸå
ã«ã€ããŠã¯ãããã§è¿°ã¹ãããšæããŸããäž¡æ¹ã®æ
å ±æºãå
ã«ãã"
"ã·ã³ãšèµ·åçšã€ã³ã¹ããŒã«ã¡ãã£ã¢ãèµ·ååã«æºåããŠãã ãããã¯ã©ã€ã¢ã³ãã»ã"
"ã·ã§ã³ã§ welcome ã¡ãã»ãŒãžãèŠããããŸããã®ææžã«æ»ããDebian ã®ã€ã³ã¹ããŒ"
"ã«æé ãè¡ã£ãŠãã£ãŠãã ããã"
#. Tag: title
#: preparing.xml:1966
#, no-c-format
msgid "Native and LPAR installations"
msgstr "ãã€ãã£ã㪠LPAR ãžã®ã€ã³ã¹ããŒã«"
#. Tag: para
#: preparing.xml:1967
#, no-c-format
msgid ""
"Please refer to chapter 5 of the <ulink url=\"http://www.redbooks.ibm.com/"
"pubs/pdfs/redbooks/sg244987.pdf\"> Linux for &arch-title;</ulink> Redbook "
"and chapter 3.2 of the <ulink url=\"http://www.redbooks.ibm.com/pubs/pdfs/"
"redbooks/sg246264.pdf\"> Linux for IBM eServer zSeries and &arch-title;: "
"Distributions</ulink> Redbook on how to set up an LPAR for Linux."
msgstr ""
"LPAR ã Linux åãã«èšå®ããã«ã¯ã<ulink url=\"http://www.redbooks.ibm.com/"
"pubs/pdfs/redbooks/sg244987.pdf\"> Linux for &arch-title;</ulink> Redbook ã® "
"5 ç« ãš <ulink url=\"http://www.redbooks.ibm.com/pubs/pdfs/redbooks/sg246264."
"pdf\"> Linux for IBM eServer zSeries and &arch-title;: Distributions</ulink> "
"Redbook ã® 3.2 ç« ãã芧ãã ããã"
#. Tag: title
#: preparing.xml:1981
#, no-c-format
msgid "Installation as a VM guest"
msgstr "VM ã²ã¹ããšããŠã®ã€ã³ã¹ããŒã«"
#. Tag: para
#: preparing.xml:1983
#, no-c-format
msgid ""
"Please refer to chapter 6 of the <ulink url=\"http://www.redbooks.ibm.com/"
"pubs/pdfs/redbooks/sg244987.pdf\"> Linux for &arch-title;</ulink> Redbook "
"and chapter 3.1 of the <ulink url=\"http://www.redbooks.ibm.com/pubs/pdfs/"
"redbooks/sg246264.pdf\"> Linux for IBM eServer zSeries and &arch-title;: "
"Distributions</ulink> Redbook on how to set up a VM guest for running Linux."
msgstr ""
"Linux ãåäœããã VM ã²ã¹ãã®èšå®ã«ã€ããŠã¯ã<ulink url=\"http://www."
"redbooks.ibm.com/pubs/pdfs/redbooks/sg244987.pdf\">Linux for &arch-title;</"
"ulink> Redbook ã® 6 ç« ãšã<ulink url=\"http://www.redbooks.ibm.com/pubs/pdfs/"
"redbooks/sg246264.pdf\">Linux for IBM eServer zSeries and &arch-title;: "
"Distributions</ulink> Redbook ã® 3.1 ç« ãã芧ãã ããã"
#. Tag: para
#: preparing.xml:1993
#, no-c-format
msgid ""
"You need to copy all the files from the <filename>generic</filename> sub-"
"directory to your CMS disk. Be sure to transfer <filename>kernel.debian</"
"filename> and <filename>initrd.debian</filename> in binary mode with a fixed "
"record length of 80 characters."
msgstr ""
"ãã¹ãŠã®ãã¡ã€ã«ã <filename>generic</filename> ãµããã£ã¬ã¯ããªãã CMS ãã£"
"ã¹ã¯ã«ã³ããŒããå¿
èŠããããŸãã<filename>kernel.debian</filename> ãš "
"<filename>initrd.debian</filename> ã¯ãå¿
ãåºå®ã¬ã³ãŒãé·ã 80 æåãšãããã€"
"ããªã¢ãŒãã§è»¢éããŠãã ããã"
#. Tag: title
#: preparing.xml:2005
#, no-c-format
msgid "Setting up an installation server"
msgstr "ã€ã³ã¹ããŒã«ãµãŒãã®èšå®"
#. Tag: para
#: preparing.xml:2007
#, no-c-format
msgid ""
"If you don't have a connection to the Internet (either directly or via a web "
"proxy) you need to create a local installation server that can be accessed "
"from your S/390. This server keeps all the packages you want to install and "
"must make them available using NFS, HTTP or FTP."
msgstr ""
"(çŽæ¥ã«ãã web ãããã·è¶ãã«ãã) ã€ã³ã¿ãŒãããã«æ¥ç¶ããŠããªããã°ãã€ã³"
"ã¹ããŒã«ããããšããŠãã S/390 ããã¢ã¯ã»ã¹ã§ããå Žæã«ããŒã«ã«ãªã€ã³ã¹ããŒã«"
"ãµãŒããå¿
èŠã§ãããã®ãµãŒãã¯ãã€ã³ã¹ããŒã«ãè¡ããããã¹ãŠã®ããã±ãŒãžãã"
"NFS, HTTP, FTP ã®ããããã§æäŸã§ããªããã°ãªããŸããã"
#. Tag: para
#: preparing.xml:2015
#, no-c-format
msgid ""
"The installation server needs to copy the exact directory structure from any "
"&debian; mirror, but only the s390 and architecture-independent files are "
"required. You can also copy the contents of all installation CDs into such a "
"directory tree."
msgstr ""
"ã€ã³ã¹ããŒã«ãµãŒãã«ã¯ã&debian; ãã©ãŒã®ããããããããã£ã¬ã¯ããªæ§é ããã®"
"ãŸãŸã³ããŒããŠããªããã°ãªããŸããããã ãå¿
èŠãªã®ã¯ s390 ãšã¢ãŒããã¯ãã£ã«"
"äŸåããªããã¡ã€ã«ã ãã§ãããããã¯ãã€ã³ã¹ããŒã« CD ã®å
容ããã®ãã£ã¬ã¯ã"
"ãªããªãŒã«ã³ããŒããã®ã§ãæ§ããŸããã"
#. Tag: emphasis
#: preparing.xml:2024
#, no-c-format
msgid "FIXME: more information needed — from a Redbook?"
msgstr "FIXME: more information needed — from a Redbook?"
#. Tag: title
#: preparing.xml:2031
#, no-c-format
msgid "Hardware Issues to Watch Out For"
msgstr "æ°ãã€ããã¹ãããŒããŠã§ã¢ã®åé¡"
#. Tag: para
#: preparing.xml:2033
#, no-c-format
msgid ""
"Atari TT RAM boards are notorious for RAM problems under Linux; if you "
"encounter any strange problems, try running at least the kernel in ST-RAM. "
"Amiga users may need to exclude RAM using a booter memfile. <phrase "
"condition=\"FIXME\"><emphasis> FIXME: more description of this needed. </"
"emphasis></phrase>"
msgstr ""
"Atari TT RAM ããŒãã¯ãLinux 㧠RAM ã«ãŸã€ããåé¡ãåŒãèµ·ããããšã§æåã§"
"ãããªã«ãåŠãªåé¡ãçãããããŸã㯠ST-RAM ã§ã«ãŒãã«ãåäœãããŠã¿ãŠãã ã"
"ããAmiga ãŠãŒã¶ã¯ãbooter memfile ã䜿ã RAM ãçšããªãããã«ããã»ãããã"
"ã§ãããã<phrase condition=\"FIXME\"><emphasis>FIXME: ãã£ãšèª¬æãå¿
èŠã</"
"emphasis></phrase>"
#. Tag: title
#: preparing.xml:2048
#, no-c-format
msgid "USB BIOS support and keyboards"
msgstr "USB BIOS ãµããŒããšããŒããŒã"
#. Tag: para
#: preparing.xml:2049
#, no-c-format
msgid ""
"If you have no AT-style keyboard and only a USB model, you may need to "
"enable legacy AT keyboard emulation in your BIOS setup. Only do this if the "
"installation system fails to use your keyboard in USB mode. Conversely, for "
"some systems (especially laptops) you may need to disable legacy USB support "
"if your keyboard does not respond. Consult your main board manual and look "
"in the BIOS for <quote>Legacy keyboard emulation</quote> or <quote>USB "
"keyboard support</quote> options."
msgstr ""
"AT 圢åŒã®ããŒããŒãããªããUSB ã®ãã®ãããªãå ŽåãBIOS èšå®ã§ legacy AT "
"keyboard emulation ãæå¹ã«ããå¿
èŠããããŸããããŒããŒãã USB ã¢ãŒãã§äœ¿çš"
"ãããšãã«ãã€ã³ã¹ããŒã«ã·ã¹ãã ã倱æããå Žåãåã«ããã ãããŠãã ãããå"
"察ã«ãããã€ãã®ã·ã¹ãã (ç¹ã«ã©ãããããã³ã³ãã¥ãŒã¿) ã®å ŽåãããŒããŒãã"
"åå¿ããªããã°ãã¬ã¬ã·ãŒ USB ãµããŒããç¡å¹ã«ããå¿
èŠããããããããŸãããã"
"ã¶ãŒããŒãã®ããã¥ã¢ã«ã調ã¹ãŠã<quote>Legacy keyboard emulation</quote> ã "
"<quote>USB keyboard support</quote> ãšãã£ã BIOS èšå®ã«å
¥ã£ãŠãã ããã"
#. Tag: title
#: preparing.xml:2063
#, no-c-format
msgid "Display-visibility on OldWorld Powermacs"
msgstr "OldWorld PowerMAC ã§ã®ãã£ã¹ãã¬ã€è¡šç€º"
#. Tag: para
#: preparing.xml:2065
#, no-c-format
msgid ""
"Some OldWorld Powermacs, most notably those with the <quote>control</quote> "
"display driver, may not reliably produce a colormap under Linux when the "
"display is configured for more than 256 colors. If you are experiencing such "
"issues with your display after rebooting (you can sometimes see data on the "
"monitor, but on other occasions cannot see anything) or, if the screen turns "
"black after booting the installer instead of showing you the user interface, "
"try changing your display settings under MacOS to use 256 colors instead of "
"<quote>thousands</quote> or <quote>millions</quote>."
msgstr ""
"ãã£ã¹ãã¬ã€ãã©ã€ãã <quote>å¶åŸ¡</quote> ãã OldWorld PowerMAC ã§ã¯ã衚瀺"
"ã 256 è²ãã倧ããèšå®ããŠããå ŽåãLinux äžã§åºåããã®ã«é©åãªã«ã©ãŒããã"
"ãçæããªãå¯èœæ§ããããŸããåèµ·ååŸã«ãã®ãããªç¶æ
ã«ãªã£ã (ã¢ãã¿ã«è¡šç€º"
"ãããããšããããŸãããããã§ãªããã°äœãèŠããŸãã) å Žåããã€ã³ã¹ããŒã©ã®"
"èµ·ååŸã«ããŠãŒã¶ã€ã³ã¿ãŒãã§ãŒã¹ã衚瀺ããç»é¢ãé»ããªã£ãŠããŸã£ãå Žåã¯ã"
"MacOS äžã§ã<quote>æ°å</quote>ã<quote>æ°çŸäž</quote> ãšèšå®ããã«ã256 è²ãš"
"ããŠã¿ãŠãã ããã"
|