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
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
|
# KURASAWA Nozomu <nabetaro@debian.or.jp>, 2010.
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: debian-boot@lists.debian.org\n"
"POT-Creation-Date: 2010-10-29 05:56+0000\n"
"PO-Revision-Date: 2010-12-30 14:58+0900\n"
"Last-Translator: KURASAWA Nozomu <nabetaro@caldron.jp>\n"
"Language-Team: Japanese <debian-japanese@lists.debian.org>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Virtaal 0.5.2\n"
#. Tag: title
#: hardware.xml:5
#, no-c-format
msgid "System Requirements"
msgstr "å¿
èŠãªã·ã¹ãã "
#. Tag: para
#: hardware.xml:7
#, no-c-format
msgid ""
"This section contains information about what hardware you need to get "
"started with &debian;. You will also find links to further information about "
"hardware supported by GNU and &arch-kernel;."
msgstr ""
"ãã®ç¯ã§ã¯ã&debian; ãå§ããããã«å¿
èŠãªããŒããŠã§ã¢ã«é¢ããæ
å ±ãæ±ããŸãã"
"ãŸããGNU ã &arch-kernel; ã§ãµããŒããããããŒããŠã§ã¢ã«é¢ãããã詳ããæ
å ±"
"ãžã®ãªã³ã¯ãçšæããŸããã"
#. Tag: title
#: hardware.xml:20
#, no-c-format
msgid "Supported Hardware"
msgstr "ãµããŒãããããŒããŠã§ã¢"
#. Tag: para
#: hardware.xml:21
#, no-c-format
#| msgid ""
#| "Debian does not impose hardware requirements beyond the requirements of "
#| "the Linux kernel and the GNU tool-sets. Therefore, any architecture or "
#| "platform to which the Linux kernel, libc, <command>gcc</command>, etc. "
#| "have been ported, and for which a Debian port exists, can run Debian. "
#| "Please refer to the Ports pages at <ulink url=\"&url-ports;\"></ulink> "
#| "for more details on &arch-title; architecture systems which have been "
#| "tested with &debian-gnu;."
msgid ""
"&debian; does not impose hardware requirements beyond the requirements of "
"the Linux or kFreeBSD kernel and the GNU tool-sets. Therefore, any "
"architecture or platform to which the Linux or kFreeBSD kernel, libc, "
"<command>gcc</command>, etc. have been ported, and for which a &debian; port "
"exists, can run &debian;. Please refer to the Ports pages at <ulink url="
"\"&url-ports;\"></ulink> for more details on &arch-title; architecture "
"systems which have been tested with &debian-gnu;."
msgstr ""
"&debian; ã¯ãLinuxã»kFreeBSD ã«ãŒãã«ã GNU ããŒã«ã»ãããå¿
èŠãšãã以äžã®"
"ããŒããŠã§ã¢ãèŠæ±ããŸããããããããLinuxã»kFreeBSD ã«ãŒãã«ãlibcã"
"<command>gcc</command> ãªã©ã移æ€ãããŠããŠã&debian; ã®ç§»æ€çãååšããã°ã"
"ã©ããªã¢ãŒããã¯ãã£ã ãã©ãããã©ãŒã ã§ã &debian; ãåäœãããããšãã§ããŸ"
"ãããã§ã« &debian-gnu; ã§ãã¹ããããŠãã &arch-title; ã¢ãŒããã¯ãã£ã·ã¹ã"
"ã ã®è©³çŽ°ã¯ã <ulink url=\"&url-ports;\"></ulink> ã«ãã移æ€çã®ããŒãžãåç
§ã"
"ãŠãã ããã"
#. Tag: para
#: hardware.xml:32
#, no-c-format
msgid ""
"Rather than attempting to describe all the different hardware configurations "
"which are supported for &arch-title;, this section contains general "
"information and pointers to where additional information can be found."
msgstr ""
"ãã®ç¯ã§ã¯ã&arch-title; ã§ãµããŒããããããŒããŠã§ã¢ã®æ§ã
ãªèšå®ã®ãã¹ãŠã«è§Š"
"ããããšã¯é¿ããäžè¬çãªæ
å ±ãšãããªãæ
å ±ãèŠã€ããããå Žæãžã®ãã€ã³ã¿ã玹"
"ä»ããŸãã"
#. Tag: title
#: hardware.xml:41
#, no-c-format
msgid "Supported Architectures"
msgstr "ãµããŒãããã¢ãŒããã¯ãã£"
#. Tag: para
#: hardware.xml:42
#, no-c-format
msgid ""
"&debian; GNU/Linux &release; supports eleven major architectures and several "
"variations of each architecture known as <quote>flavors</quote>."
msgstr ""
"&debian; GNU/Linux &release; 㯠11 ã®äž»èŠãªã¢ãŒããã¯ãã£ãšã<quote>ãã¬ãŒ"
"ããŒ</quote>ãšåŒã°ããåã¢ãŒããã¯ãã£ã®ããªãšãŒã·ã§ã³ããµããŒãããŠããŸãã"
#. Tag: entry
#: hardware.xml:53 hardware.xml:179
#, no-c-format
msgid "Architecture"
msgstr "ã¢ãŒããã¯ãã£"
#. Tag: entry
#: hardware.xml:53 hardware.xml:179
#, no-c-format
msgid "&debian; Designation"
msgstr "&debian; ã§ã®å称"
#. Tag: entry
#: hardware.xml:54
#, no-c-format
msgid "Subarchitecture"
msgstr "ãµãã¢ãŒããã¯ãã£"
#. Tag: entry
#: hardware.xml:54
#, no-c-format
msgid "Flavor"
msgstr "ãã¬ãŒããŒ"
#. Tag: entry
#: hardware.xml:60 hardware.xml:185
#, no-c-format
msgid "Intel x86-based"
msgstr "Intel x86 ããŒã¹"
#. Tag: entry
#: hardware.xml:61
#, no-c-format
msgid "i386"
msgstr "i386"
#. Tag: entry
#: hardware.xml:67 hardware.xml:190
#, no-c-format
msgid "AMD64 & Intel EM64T"
msgstr "AMD64 & Intel EM64T"
#. Tag: entry
#: hardware.xml:68
#, no-c-format
msgid "amd64"
msgstr "amd64"
#. Tag: entry
#: hardware.xml:74
#, no-c-format
msgid "<entry>ARM</entry>"
msgstr "<entry>ARM</entry>"
#. Tag: entry
#: hardware.xml:75
#, no-c-format
msgid "armel"
msgstr "armel"
#. Tag: entry
#: hardware.xml:76
#, no-c-format
msgid "Intel IOP32x"
msgstr "Intel IOP32x"
#. Tag: entry
#: hardware.xml:77
#, no-c-format
msgid "iop32x"
msgstr "iop32x"
#. Tag: entry
#: hardware.xml:79
#, no-c-format
msgid "Intel IXP4xx"
msgstr "Intel IXP4xx"
#. Tag: entry
#: hardware.xml:80
#, no-c-format
msgid "ixp4xx"
msgstr "ixp4xx"
#. Tag: entry
#: hardware.xml:82
#, no-c-format
msgid "Marvell Kirkwood"
msgstr "Marvell Kirkwood"
#. Tag: entry
#: hardware.xml:83
#, no-c-format
msgid "kirkwood"
msgstr "kirkwood"
#. Tag: entry
#: hardware.xml:85
#, no-c-format
msgid "Marvell Orion"
msgstr "Marvell Orion"
#. Tag: entry
#: hardware.xml:86
#, no-c-format
msgid "orion5x"
msgstr "orion5x"
#. Tag: entry
#: hardware.xml:88
#, no-c-format
msgid "<entry>Versatile</entry>"
msgstr "<entry>Versatile</entry>"
#. Tag: entry
#: hardware.xml:89
#, no-c-format
msgid "versatile"
msgstr "versatile"
#. Tag: entry
#: hardware.xml:93
#, no-c-format
msgid "HP PA-RISC"
msgstr "HP PA-RISC"
#. Tag: entry
#: hardware.xml:94
#, no-c-format
msgid "hppa"
msgstr "hppa"
#. Tag: entry
#: hardware.xml:95
#, no-c-format
msgid "PA-RISC 1.1"
msgstr "PA-RISC 1.1"
#. Tag: entry
#: hardware.xml:96
#, no-c-format
msgid "<entry>32</entry>"
msgstr "<entry>32</entry>"
#. Tag: entry
#: hardware.xml:98
#, no-c-format
msgid "PA-RISC 2.0"
msgstr "PA-RISC 2.0"
#. Tag: entry
#: hardware.xml:99
#, no-c-format
msgid "<entry>64</entry>"
msgstr "<entry>64</entry>"
#. Tag: entry
#: hardware.xml:103
#, no-c-format
msgid "Intel IA-64"
msgstr "Intel IA-64"
#. Tag: entry
#: hardware.xml:104
#, no-c-format
msgid "ia64"
msgstr "ia64"
#. Tag: entry
#: hardware.xml:110
#, no-c-format
msgid "MIPS (big endian)"
msgstr "MIPS (ããã°ãšã³ãã£ã¢ã³)"
#. Tag: entry
#: hardware.xml:111
#, no-c-format
msgid "mips"
msgstr "mips"
#. Tag: entry
#: hardware.xml:112
#, no-c-format
msgid "SGI IP22 (Indy/Indigo 2)"
msgstr "SGI IP22 (Indy/Indigo 2)"
#. Tag: entry
#: hardware.xml:113
#, no-c-format
msgid "r4k-ip22"
msgstr "r4k-ip22"
#. Tag: entry
#: hardware.xml:115
#, no-c-format
msgid "SGI IP32 (O2)"
msgstr "SGI IP32 (O2)"
#. Tag: entry
#: hardware.xml:116
#, no-c-format
msgid "r5k-ip32"
msgstr "r5k-ip32"
#. Tag: entry
#: hardware.xml:118 hardware.xml:131
#, no-c-format
msgid "MIPS Malta (32 bit)"
msgstr "MIPS Malta (32 bit)"
#. Tag: entry
#: hardware.xml:119 hardware.xml:132
#, no-c-format
msgid "4kc-malta"
msgstr "4kc-malta"
#. Tag: entry
#: hardware.xml:121 hardware.xml:134
#, no-c-format
msgid "MIPS Malta (64 bit)"
msgstr "MIPS Malta (64 bit)"
#. Tag: entry
#: hardware.xml:122 hardware.xml:135
#, no-c-format
msgid "5kc-malta"
msgstr "5kc-malta"
#. Tag: entry
#: hardware.xml:126
#, no-c-format
msgid "MIPS (little endian)"
msgstr "MIPS (ãªãã«ãšã³ãã£ã¢ã³)"
#. Tag: entry
#: hardware.xml:127
#, no-c-format
msgid "mipsel"
msgstr "mipsel"
#. Tag: entry
#: hardware.xml:128
#, no-c-format
msgid "Cobalt"
msgstr "Cobalt"
#. Tag: entry
#: hardware.xml:129
#, no-c-format
msgid "cobalt"
msgstr "cobalt"
#. Tag: entry
#: hardware.xml:139
#, no-c-format
msgid "IBM/Motorola PowerPC"
msgstr "IBM/Motorola PowerPC"
#. Tag: entry
#: hardware.xml:140
#, no-c-format
msgid "<entry>powerpc</entry>"
msgstr "<entry>powerpc</entry>"
#. Tag: entry
#: hardware.xml:141
#, no-c-format
msgid "PowerMac"
msgstr "PowerMac"
#. Tag: entry
#: hardware.xml:142
#, no-c-format
msgid "pmac"
msgstr "pmac"
#. Tag: entry
#: hardware.xml:144
#, no-c-format
msgid "PReP"
msgstr "PReP"
#. Tag: entry
#: hardware.xml:145
#, no-c-format
msgid "prep"
msgstr "prep"
#. Tag: entry
#: hardware.xml:149
#, no-c-format
msgid "Sun SPARC"
msgstr "Sun SPARC"
#. Tag: entry
#: hardware.xml:150
#, no-c-format
msgid "sparc"
msgstr "sparc"
#. Tag: entry
#: hardware.xml:151
#, no-c-format
msgid "<entry>sun4u</entry>"
msgstr "<entry>sun4u</entry>"
#. Tag: entry
#: hardware.xml:152
#, no-c-format
msgid "sparc64"
msgstr "sparc64"
#. Tag: entry
#: hardware.xml:154
#, no-c-format
msgid "<entry>sun4v</entry>"
msgstr "<entry>sun4v</entry>"
#. Tag: entry
#: hardware.xml:158
#, no-c-format
msgid "IBM S/390"
msgstr "IBM S/390"
#. Tag: entry
#: hardware.xml:159
#, no-c-format
msgid "s390"
msgstr "s390"
#. Tag: entry
#: hardware.xml:160
#, no-c-format
msgid "IPL from VM-reader and DASD"
msgstr "VM-reader ã DASD ããã® IPL"
#. Tag: entry
#: hardware.xml:161
#, no-c-format
msgid "generic"
msgstr "generic"
#. Tag: entry
#: hardware.xml:163
#, no-c-format
msgid "IPL from tape"
msgstr "ããŒãããã® IPL"
#. Tag: entry
#: hardware.xml:164
#, no-c-format
msgid "tape"
msgstr "tape"
#. Tag: para
#: hardware.xml:169
#, no-c-format
msgid "&debian; GNU/kFreeBSD &release; supports two architectures."
msgstr ""
"&debian; GNU/kFreeBSD &release; ã¯ãµãã€ã®ã¢ãŒããã¯ãã£ããµããŒãããŠããŸ"
"ãã"
#. Tag: entry
#: hardware.xml:186
#, no-c-format
msgid "kfreebsd-i386"
msgstr "kfreebsd-i386"
#. Tag: entry
#: hardware.xml:191
#, no-c-format
msgid "kfreebsd-amd64"
msgstr "kfreebsd-amd64"
#. Tag: para
#: hardware.xml:196
#, no-c-format
#| msgid ""
#| "This document covers installation for the <emphasis>&arch-title;</"
#| "emphasis> architecture. If you are looking for information on any of the "
#| "other Debian-supported architectures take a look at the <ulink url="
#| "\"http://www.debian.org/ports/\">Debian-Ports</ulink> pages."
msgid ""
"This document covers installation for the <emphasis>&arch-title;</emphasis> "
"architecture using the <emphasis>&arch-kernel;</emphasis> kernel. If you are "
"looking for information on any of the other &debian;-supported architectures "
"take a look at the <ulink url=\"http://www.debian.org/ports/\">&debian;-"
"Ports</ulink> pages."
msgstr ""
"ãã®ææžã¯ <emphasis>&arch-kernel;</emphasis> ã«ãŒãã«ãçšãã "
"<emphasis>&arch-title;</emphasis> ã¢ãŒããã¯ãã£ãžã®ã€ã³ã¹ããŒã«ãæ±ããŸãã"
"&debian; ããµããŒãããŠããä»ã®ã¢ãŒããã¯ãã£ã«é¢ããæ
å ±ãæ¢ããŠãããªãã"
"<ulink url=\"http://www.debian.org/ports/\">&debian; 移æ€ç</ulink> ã®ããŒãž"
"ãã芧ãã ããã"
#. Tag: para
#: hardware.xml:206
#, no-c-format
msgid ""
"The &arch-title; architecture only supports Intel Itanium processors and not "
"the much more common 64-bit processors from the EM64T family (including e.g. "
"the Pentium D and the Core2 Duo). Those systems are supported by "
"the <emphasis>amd64</emphasis> architecture or, if you prefer a 32-bit "
"userland, the <emphasis>i386</emphasis> architecture."
msgstr ""
"&arch-title; ã¢ãŒããã¯ãã£ã¯ãIntel Itanium ããã»ããµã®ã¿ãµããŒãããEM64T "
"ãã¡ããªãŒã«ããã (Pentium D ã Core2 Duo ãå«ã) ãã£ãšäžè¬ç㪠"
"64 ãããããã»ããµã¯ãµããŒãããŠããŸããããããã®ã·ã¹ãã 㯠"
"<emphasis>amd64</emphasis> ã¢ãŒããã¯ãã£ãã32 ããããŠãŒã¶ã©ã³ãã§ãããã° "
"<emphasis>i386</emphasis> ã¢ãŒããã¯ãã£ã§ãµããŒãããŠããŸãã"
#. Tag: para
#: hardware.xml:216
#, no-c-format
#| msgid ""
#| "This is the first official release of &debian-gnu; for the &arch-title; "
#| "architecture. We feel that it has proven itself sufficiently to be "
#| "released. However, because it has not had the exposure (and hence testing "
#| "by users) that some other architectures have had, you may encounter a few "
#| "bugs. Use our <ulink url=\"&url-bts;\">Bug Tracking System</ulink> to "
#| "report any problems; make sure to mention the fact that the bug is on the "
#| "&arch-title; platform. It can be necessary to use the <ulink url=\"&url-"
#| "list-subscribe;\">debian-&arch-listname; mailing list</ulink> as well."
msgid ""
"This is the first official release of &debian-gnu; for the &arch-title; "
"architecture. We feel that it has proven itself sufficiently to be released. "
"However, because it has not had the exposure (and hence testing by users) "
"that some other architectures have had, you may encounter a few bugs. Use "
"our <ulink url=\"&url-bts;\">Bug Tracking System</ulink> to report any "
"problems; make sure to mention the fact that the bug is on the &arch-title; "
"platform using the <emphasis>&arch-kernel;</emphasis> kernel. It can be "
"necessary to use the <ulink url=\"&url-list-subscribe;\">debian-&arch-"
"listname; mailing list</ulink> as well."
msgstr ""
"ãã㯠&arch-title; ã¢ãŒããã¯ãã£çš &debian-gnu; ã®åå
¬åŒãªãªãŒã¹ã§ãããã§"
"ã«ãªãªãŒã¹ãšããã«å
åå®å®ããŠãããšç§ãã¡ã¯èããŠããŸãããããããŸã ä»ã®"
"ã¢ãŒããã¯ãã£çã»ã©åºã䜿ãããŠããªã (ã€ãŸããŠãŒã¶ã«ãããã¹ããå€ããªã) "
"ããšãããããã€ãã®ãã°ã«ã§ãããå¯èœæ§ããããŸããäœãåé¡ãèµ·ãããã"
"<ulink url=\"&url-bts;\">ãã°è¿œè·¡ã·ã¹ãã </ulink> ã䜿ã£ãŠå ±åããŠãã ããã"
"ãã®éããã®ãã°ãã<emphasis>&arch-kernel;</emphasis> ã«ãŒãã«ãçšãã "
"&arch-title; ãã©ãããã©ãŒã äžã®ãã®ã§ããããšãå¿
ãæžãæ·»ããŠãã ããããŸ"
"ã <ulink url=\"&url-list-subscribe;\">debian-&arch-listname; ã¡ãŒãªã³ã°ãªã¹"
"ã</ulink> ã®è³Œèªãå¿
èŠãããããŸããã"
#. Tag: title
#: hardware.xml:239 hardware.xml:275 hardware.xml:381 hardware.xml:400
#: hardware.xml:483 hardware.xml:541 hardware.xml:594
#, no-c-format
msgid "CPU, Main Boards, and Video Support"
msgstr "CPUã»ãã¶ãŒããŒãã»ãããªã®ãµããŒã"
#. Tag: para
#: hardware.xml:240 hardware.xml:401
#, no-c-format
msgid ""
"Complete information concerning supported peripherals can be found at <ulink "
"url=\"&url-hardware-howto;\">Linux Hardware Compatibility HOWTO</ulink>. "
"This section merely outlines the basics."
msgstr ""
"ãµããŒãããŠããåšèŸºæ©åšã«é¢ããå®å
šãªæ
å ±ã¯ã<ulink url=\"&url-hardware-"
"howto;\">Linux ããŒããŠã§ã¢äºææ§ HOWTO</ulink> ã«ãããŸãããã®ç¯ã§ã¯åºæ¬ç"
"ãªããšã®ã¿èª¬æããŸãã"
#. Tag: title
#: hardware.xml:248 hardware.xml:409 hardware.xml:518
#, no-c-format
msgid "<title>CPU</title>"
msgstr "<title>CPU</title>"
#. Tag: para
#: hardware.xml:249
#, no-c-format
msgid "Both AMD64 and Intel EM64T processors are supported."
msgstr "AMD64 ãš Intel EM64t ããã»ããµã®äž¡æ¹ããµããŒãããŠããŸãã"
#. Tag: para
#: hardware.xml:277
#, no-c-format
msgid ""
"Each distinct ARM architecture requires its own kernel. Because of this the "
"standard &debian; distribution only supports installation on a number of the "
"most common platforms. The &debian; userland however may be used by "
"<emphasis>any</emphasis> ARM CPU."
msgstr ""
"ããããã® ARM ã¢ãŒããã¯ãã£ã¯èªåèªèº«ã®ã«ãŒãã«ãå¿
èŠãšããŸãããã®ãããæš"
"æºã® &debian; ãã£ã¹ããªãã¥ãŒã·ã§ã³ã¯ãå€ãã®æãäžè¬çãªãã©ãããã©ãŒã äž"
"ãžã®ã€ã³ã¹ããŒã«ãæ¯æŽããã ãã§ãããããã&debian; ã®ãŠãŒã¶ã©ã³ãã¯ã"
"<emphasis>ã©ã®</emphasis> ARM CPU ã§äœ¿çšããŠãæ§ããŸããã"
#. Tag: para
#: hardware.xml:286
#, no-c-format
msgid ""
"Most ARM CPUs may be run in either endian mode (big or little). However, the "
"majority of current system implementation uses little-endian mode. &debian; "
"currently only supports little-endian ARM systems."
msgstr ""
"å€ãã® ARM CPU 㯠(ããã°ããªãã«ã®) ã©ã¡ãã®ãšã³ãã£ã¢ã³ã¢ãŒãã§ãåäœããŸ"
"ããããããçŸåšã®å€§å€æ°ã®ã·ã¹ãã å®è£
ã§ã¯ããªãã«ãšã³ãã£ã¢ã³ã¢ãŒãã䜿çšã"
"ãŸããçŸåš &debian; ã¯ãªãã«ãšã³ãã£ã¢ã³ ARM ã·ã¹ãã ã®ã¿ãµããŒãããŸãã"
#. Tag: para
#: hardware.xml:294
#, no-c-format
msgid "The supported platforms are:"
msgstr "ãµããŒããããã©ãããã©ãŒã ã¯ä»¥äžã®ãã®ã§ãã"
#. Tag: term
#: hardware.xml:301
#, no-c-format
msgid "IOP32x"
msgstr "IOP32x"
#. Tag: para
#: hardware.xml:302
#, no-c-format
msgid ""
"Intel's I/O Processor (IOP) line is found in a number of products related to "
"data storage and processing. &debian; currently supports the IOP32x "
"platform, featuring the IOP 80219 and 32x chips commonly found in Network "
"Attached Storage (NAS) devices. &debian; explicitly supports two such "
"devices: the <ulink url=\"&url-arm-cyrius-glantank;\">GLAN Tank</ulink> from "
"IO-Data and the <ulink url=\"&url-arm-cyrius-n2100;\">Thecus N2100</ulink>."
msgstr ""
"Intel ã® I/O ããã»ããµ (IOP) ã©ã€ã³ã¯ãããŒã¿ã®ã¹ãã¬ãŒãžãããã»ãã·ã³ã°ã«"
"é¢ä¿ãã補åã®æ°ã ãååšããŸãã&debian; ã§ã¯çŸåšããããã¯ãŒã¯æ¥ç¶ã¹ãã¬ãŒ"
"ãž (NAS) ããã€ã¹ã«ãã䜿ãããŠãããIOP 80219 ã 32x ããããšãã£ã IOP32x "
"ãã©ãããã©ãŒã ããµããŒãããŠããŸãã&debian; ã確å®ã«ãµããŒãããŠããã®ã¯ã"
"IO-Data ã® <ulink url=\"&url-arm-cyrius-glantank;\">GLAN Tank</ulink> ãš "
"<ulink url=\"&url-arm-cyrius-n2100;\">Thecus N2100</ulink> ã® 2 ã€ã®ããã€ã¹"
"ã§ãã"
#. Tag: term
#: hardware.xml:315
#, no-c-format
msgid "IXP4xx"
msgstr "IXP4xx"
#. Tag: para
#: hardware.xml:316
#, no-c-format
msgid ""
"The IXP4xx platform is based on Intel's XScale ARM core. Currently, only one "
"IXP4xx based system is supported, the Linksys NSLU2. The Linksys NSLU2 "
"(Network Storage Link for USB 2.0 Disk Drives) is a small device which "
"allows you to easily provide storage via the network. It comes with an "
"Ethernet connection and two USB ports to which hard drives can be connected. "
"There is an external site with <ulink url=\"&url-arm-cyrius-nslu2;"
"\">installation instructions</ulink>."
msgstr ""
"IXP4xx ãã©ãããã©ãŒã ã¯ãIntel ã® XScale ARM ã³ã¢ãå
ã«ããŠããŸããçŸåšã"
"Linksys NSLU2 ãšãã IXP4xx ããŒã¹ã·ã¹ãã ã®ã¿ãµããŒãããŠããŸããLinksys "
"NSLU2 (Network Storage Link for USB 2.0 ãã£ã¹ã¯ãã©ã€ã) ã¯ããããã¯ãŒã¯ã¹"
"ãã¬ãŒãžãç°¡åã«æäŸããå°åããã€ã¹ã§ããã€ãŒãµãããæ¥ç¶ãšãããŒããã£ã¹ã¯"
"ãã©ã€ããæ¥ç¶ãã USB ããŒãã 2 ã€åããŠããŸãã<ulink url=\"&url-arm-"
"cyrius-nslu2;\">installation instructions</ulink> ãšããå€éšãµã€ãããããŸ"
"ãã"
#. Tag: term
#: hardware.xml:330
#, no-c-format
msgid "Kirkwood"
msgstr "Kirkwood"
#. Tag: para
#: hardware.xml:331
#, no-c-format
msgid ""
"Kirkwood is a system on a chip (SoC) from Marvell that integrates an ARM "
"CPU, Ethernet, SATA, USB, and other functionality in one chip. We currently "
"support the following Kirkwood based devices: OpenRD (OpenRD-Base and OpenRD-"
"Client), <ulink url=\"&url-arm-cyrius-sheevaplug;\">SheevaPlug</ulink> and "
"<ulink url=\"&url-arm-cyrius-qnap-kirkwood;\">QNAP Turbo Station</ulink> "
"(TS-110, TS-119, TS-210, TS-219 and TS-219P; the TS-410 and TS-419P are not "
"yet supported)."
msgstr ""
"Kirkwood ã¯ãMarvell 補㮠System on a Chip (SoC) ã§ãARM CPUãã€ãŒãµãããã"
"SATAãUSBããã®ä»ã®æ©èœã 1 ãããã«çµ±åãããŠããŸããçŸåšä»¥äžã® Kirkwood "
"ããŒã¹ããã€ã¹ããµããŒãããŠããŸããOpenRD (OpenRD-Base and OpenRD-Client) "
"ã <ulink url=\"&url-arm-cyrius-sheevaplug;\">SheevaPlug</ulink> ã<ulink "
"url=\"&url-arm-cyrius-qnap-kirkwood;\">QNAP Turbo Station</ulink> ã§ã "
"(TS-110, TS-119, TS-210, TS-219, TS-219P; TS-410 ãš TS-419P ã¯ããŸã ãµããŒã"
"ããŠããŸãã)ã"
#. Tag: term
#: hardware.xml:346
#, no-c-format
msgid "Orion5x"
msgstr "Orion5x"
#. Tag: para
#: hardware.xml:347
#, no-c-format
msgid ""
"Orion is a system on a chip (SoC) from Marvell that integrates an ARM CPU, "
"Ethernet, SATA, USB, and other functionality in one chip. There are many "
"Network Attached Storage (NAS) devices on the market that are based on an "
"Orion chip. We currently support the following Orion based devices: <ulink "
"url=\"&url-arm-cyrius-kuroboxpro;\">Buffalo Kurobox</ulink>, <ulink url="
"\"&url-arm-cyrius-mv2120;\">HP mv2120</ulink>, <ulink url=\"&url-arm-cyrius-"
"qnap;\">QNAP Turbo Station</ulink> (TS-109, TS-209 and TS-409)."
msgstr ""
"Orion ã¯ãMarvell 補㮠System on a Chip (SoC) ã§ãARM CPUãã€ãŒãµãããã"
"SATAãUSBããã®ä»ã®æ©èœã 1 ãããã«çµ±åãããŠããŸããåžå Žã«åºåã£ãŠãããã"
"ããã®ãããã¯ãŒã¯ã¹ãã¬ãŒãž (NAS) 㧠Orion ããããæ¡çšãããŠããŸããçŸåšä»¥"
"äžã® Orion ããŒã¹ããã€ã¹ããµããŒãããŠããŸãã<ulink url=\"&url-arm-cyrius-"
"kuroboxpro;\">Buffalo çç®±</ulink>, <ulink url=\"&url-arm-cyrius-mv2120;"
"\">HP mv2120</ulink>, <ulink url=\"&url-arm-cyrius-qnap;\">QNAP Turbo "
"Station</ulink> (TS-109, TS-209 and TS-409) ã§ãã"
#. Tag: term
#: hardware.xml:362
#, no-c-format
msgid "<term>Versatile</term>"
msgstr "<term>Versatile</term>"
#. Tag: para
#: hardware.xml:363
#, no-c-format
msgid ""
"The Versatile platform is emulated by QEMU and is therefore a nice way to "
"test and run &debian; on ARM if you don't have the hardware."
msgstr ""
"Versatile ãã©ãããã©ãŒã 㯠QEMU ã§ãšãã¥ã¬ãŒããããŠããããã®ããããŒã"
"ãŠã§ã¢ããªããŠã ARM ã§ã® &debian; ã®ãã¹ããå®è¡ãè¡ãè¯ãæ¹æ³ã§ãã"
#. Tag: para
#: hardware.xml:382
#, no-c-format
msgid ""
"There are two major support <emphasis>&architecture;</emphasis> flavors: PA-"
"RISC 1.1 and PA-RISC 2.0. The PA-RISC 1.1 architecture is targeted at 32-bit "
"processors whereas the 2.0 architecture is targeted to the 64-bit "
"processors. Some systems are able to run either kernel. In both cases, the "
"userland is 32-bit. There is the possibility of a 64-bit userland in the "
"future."
msgstr ""
"PA-RISC 1.1 ãš PA-RISC 2.0 ãšãã 2 ã€ã® <emphasis>&architecture;</emphasis> "
"ãã¬ãŒããŒããµããŒãããŠããŸããPA-RISC 1.1 ã¢ãŒããã¯ãã£ã¯ 32 ããããã"
"ã»ããµãã¿ãŒã²ããã«ããŠããŸãããPA-RISC 2.0 ã¢ãŒããã¯ãã£ã¯ 64 ããããã"
"ã»ããµããµããŒãããŠããŸããããã€ãã®ã·ã¹ãã ã§ã¯ãã©ã¡ãã®ã«ãŒãã«ãåäœã"
"ãŸããã©ã¡ãã®å ŽåããŠãŒã¶ã©ã³ã㯠32 ãããã§ããå°æ¥çã« 64 ãããã®ãŠãŒã¶"
"ã©ã³ãã䜿çšã§ããããã«ãªãã§ãããã"
#. Tag: para
#: hardware.xml:410
#, no-c-format
msgid ""
"Nearly all x86-based (IA-32) processors still in use in personal computers "
"are supported, including all varieties of Intel's \"Pentium\" series. This "
"also includes 32-bit AMD and VIA (former Cyrix) processors, and processors "
"like the Athlon XP and Intel P4 Xeon."
msgstr ""
"ãŸã ããŒãœãã«ã³ã³ãã¥ãŒã¿ã§äœ¿ãããŠãã x86 ããŒã¹ (IA-32) ããã»ããµãã"
"Intel \"Pentium\" ã·ãªãŒãºã®ãã¹ãŠã®å€çš®ãå«ããã»ãšãã©ãã¹ãŠããµããŒãããŠ"
"ããŸãããŸããAMD ã VIA (æ§ Cyrix) ã® 32 ãããããã»ããµããAthlon XP ã "
"Intel P4 Xeon ãšãã£ãããã»ããµããµããŒãããŠããŸãã"
#. Tag: para
#: hardware.xml:417
#, no-c-format
msgid ""
"However, &debian; GNU/Linux &releasename; will <emphasis>not</emphasis> run "
"on 386 or earlier processors. Despite the architecture name \"i386\", "
"support for actual 80386 processors (and their clones) was dropped with the "
"Sarge (r3.1) release of &debian;<footnote> <para> We have long tried to "
"avoid this, but in the end it was necessary due a unfortunate series of "
"issues with the compiler and the kernel, starting with an bug in the C++ ABI "
"provided by GCC. You should still be able to run &debian; GNU/Linux on "
"actual 80386 processors if you compile your own kernel and compile all "
"packages from source, but that is beyond the scope of this manual. </para> </"
"footnote>. (No version of Linux has ever supported the 286 or earlier chips "
"in the series.) All i486 and later processors are still supported<footnote> "
"<para> Many &debian; packages will actually run slightly faster on modern "
"computers as a positive side effect of dropping support for these old chips. "
"The i486, introduced in 1989, has three opcodes (bswap, cmpxchg, and xadd) "
"which the i386, introduced in 1986, did not have. Previously, these could "
"not be easily used by most &debian; packages; now they can. </para> </"
"footnote>."
msgstr ""
"ããã &debian; GNU/Linux &releasename; ã¯ã386 以åã®ããã»ããµã§ã¯"
"<emphasis>åäœããŸãã</emphasis>ãã¢ãŒããã¯ãã£åã \"i386\" ã§ããã«ããã"
"ããããå®éã® 80386 ããã»ããµ (ãšãã®ã¯ããŒã³) ã®ãµããŒãã¯ã&debian; ã® "
"Sarge (r3.1) ãªãªãŒã¹ã§æã¡åãããŸãã<footnote> <para> ç§ãã¡ã¯æã¡åããé¿"
"ããããšåªåããŠããŸããããGCC ã®æäŸãã C++ ABI ã®ãã°ã«å§ãŸãã³ã³ãã€ã©ãš"
"ã«ãŒãã«ã®åé¡ã«ãããæçµçã«ããããããåŸãªããªããŸãããèªåã®ã«ãŒãã«ãš"
"ãã¹ãŠã®ããã±ãŒãžããœãŒã¹ããã³ã³ãã€ã«ããã°ããŸã 80386 ããã»ããµã§ "
"&debian; GNU/Linux ãåäœãããããããŸããããæ¬ããã¥ã¢ã«ã®ç¯çãè¶ããŠããŸ"
"ããŸãã</para> </footnote>ã(Linux ã§ã¯ 286 ããã以åã®ãããããµããŒããã"
"ããšã¯ãããŸãã) i486 以éã®ãã¹ãŠã®ããã»ããµããµããŒãããŠããŸã"
"<footnote> <para> å€ããããããµããŒãããªãããšã«ããæ£ã®åœ±é¿ãšããŠãå€ãã® "
"&debian; ããã±ãŒãžãæè¿ã®ã³ã³ãã¥ãŒã¿äžã§ãå€å°éãåäœããããšãæããããŸ"
"ãã1989 幎ã«çºå£²ããã i486 ã§ã¯ããªãã³ãŒãã 3 〠(bswap, cmpxchg, xadd) "
"æã£ãŠããŸããã1986 幎ã«çºå£²ããã i386 ã«ã¯ãããŸããã以åã¯ã»ãšãã©ã® "
"&debian; ããã±ãŒãžã§ããã䜿çšã§ããŸããã§ããããçŸåšã§ã¯äœ¿çšã§ããŸãã</"
"para> </footnote>ã"
#. Tag: para
#: hardware.xml:450
#, no-c-format
msgid ""
"If your system has a 64-bit processor from the AMD64 or Intel EM64T "
"families, you will probably want to use the installer for the amd64 "
"architecture instead of the installer for the (32-bit) i386 architecture."
msgstr ""
"ã·ã¹ãã ã« AMD64 ã Intel EM64T ãã¡ããªãšãã£ãã64 ãããããã»ããµã䜿ãã"
"ãŠãããªãããããã (32 ããã) i386 ã¢ãŒããã¯ãã£çšã€ã³ã¹ããŒã©ã§ã¯ãªãã"
"amd64 ã¢ãŒããã¯ãã£çšã€ã³ã¹ããŒã©ã䜿çšããæ¹ãããã§ãããã"
#. Tag: title
#: hardware.xml:459
#, no-c-format
msgid "I/O Bus"
msgstr "I/O ãã¹"
#. Tag: para
#: hardware.xml:460
#, no-c-format
msgid ""
"The system bus is the part of the motherboard which allows the CPU to "
"communicate with peripherals such as storage devices. Your computer must use "
"the ISA, EISA, PCI, PCIe, PCI-X, or VESA Local Bus (VLB, sometimes called "
"the VL bus). Essentially all personal computers sold in recent years use one "
"of these."
msgstr ""
"ã·ã¹ãã ãã¹ãšã¯ãCPU ãšèšæ¶è£
眮ã®ãããªåšèŸºæ©åšãšã®éä¿¡ãå¯èœã«ããããã«ã"
"ã¶ãŒããŒãã«æèŒãããŠãããã®ã§ããããªãã®ã³ã³ãã¥ãŒã¿ã§ã¯ãISAãEISAã"
"PCIãPCIeãPCI-XãVESA ããŒã«ã«ãã¹ (VLBãVL ãã¹ãšãåŒã°ããŸã) ã®ããããã"
"䜿ãããŠããã¯ãã§ããæ¬è³ªçã«ãè¿å¹Žè²©å£²ãããããŒãœãã«ã³ã³ãã¥ãŒã¿ã«ã¯ãã"
"ã®ã©ããã䜿ãããŠããŸãã"
#. Tag: para
#: hardware.xml:484
#, no-c-format
msgid ""
"&debian; on &arch-title; supports the following platforms: <itemizedlist> "
"<listitem><para> SGI IP22: this platform includes the SGI machines Indy, "
"Indigo 2 and Challenge S. Since these machines are very similar, whenever "
"this document refers to the SGI Indy, the Indigo 2 and Challenge S are meant "
"as well. </para></listitem> <listitem><para> SGI IP32: this platform is "
"generally known as SGI O2. </para></listitem> <listitem><para> MIPS Malta: "
"this platform is emulated by QEMU and is therefore a nice way to test and "
"run &debian; on MIPS if you don't have the hardware. </para></listitem> </"
"itemizedlist> Complete information regarding supported mips/mipsel machines "
"can be found at the <ulink url=\"&url-linux-mips;\">Linux-MIPS homepage</"
"ulink>. In the following, only the systems supported by the &debian; "
"installer will be covered. If you are looking for support for other "
"subarchitectures, please contact the <ulink url=\"&url-list-subscribe;\"> "
"debian-&arch-listname; mailing list</ulink>."
msgstr ""
"&arch-title; ã§ã¯ã&debian; ã¯ä»¥äžã®ãã©ãããã©ãŒã ããµããŒãããŠããŸãã"
"<itemizedlist> <listitem><para> SGI IP22: ãã®ãã©ãããã©ãŒã ã«ã¯ãIndy, "
"Indigo 2, Challenge S ãšãã£ã SGI ãã·ã³ãå«ã¿ãŸãããããã®ãã·ã³ã¯ãšãŠã䌌"
"éã£ãŠãããããæ¬ææžã§ã¯ãSGI Indy, Indigo 2, Challenge S ã«ã€ããŠãåæ§ã«"
"åç
§ã§ããŸãã </para></listitem> <listitem><para> SGI IP32: ãã®ãã©ãã"
"ãã©ãŒã ã¯äžè¬çã« SGI O2 ãšããŠç¥ãããŠããŸãã</para></listitem> "
"<listitem><para> MIPS Malta: ãã®ãã©ãããã©ãŒã 㯠QEMU ã§ãšãã¥ã¬ãŒããããŠ"
"ããããã®ããããŒããŠã§ã¢ããªããŠã MIPS ã§ã® &debian; ã®ãã¹ããå®è¡ãè¡ã"
"è¯ãæ¹æ³ã§ãã</para></listitem> </itemizedlist> mips/mipsel ãã·ã³ã®ãµããŒã"
"ã«ã€ããŠã®å®å
šãªæ
å ±ã¯ã<ulink url=\"&url-linux-mips;\">Linux-MIPS homepage</"
"ulink> ã«ãããŸãã以äžã§ã¯ã&debian; ã€ã³ã¹ããŒã©ã§ãµããŒããããŠããã·ã¹ã"
"ã ã«ã€ããŠã®ã¿å¯Ÿè±¡ã«ããŠããŸãããã®ä»ã®ãµãã¢ãŒããã¯ãã£ã®ãµããŒããå¿
èŠãª"
"å Žåã¯ã<ulink url=\"&url-list-subscribe;\"> debian-&arch-listname; ã¡ãŒãªã³"
"ã°ãªã¹ã</ulink>ã«é£çµ¡ããŠãã ããã"
#. Tag: para
#: hardware.xml:519
#, no-c-format
msgid ""
"On SGI IP22, SGI Indy, Indigo 2 and Challenge S with R4000, R4400, R4600 and "
"R5000 processors are supported by the &debian; installation system on big "
"endian MIPS. On SGI IP32, currently only systems based on the R5000 are "
"supported."
msgstr ""
"R4000, R4400, R4600, R5000 ããã»ããµãæèŒãã SGI IP22, SGI Indy, Indigo "
"2, Challenge S ã¯ãããã°ãšã³ãã£ã¢ã³ MIPS çš &debian; ã€ã³ã¹ããŒã«ã·ã¹ãã ã§"
"ãµããŒãããŠããŸããSGI IP32 ã§ã¯çŸåšãR5000 ããŒã¹ã®ã·ã¹ãã ã®ã¿ãµããŒãããŠ"
"ããŸãã"
#. Tag: para
#: hardware.xml:525
#, no-c-format
msgid ""
"Some MIPS machines can be operated in both big and little endian mode. For "
"little endian MIPS, please read the documentation for the mipsel "
"architecture."
msgstr ""
"MIPS ãã·ã³ã®äžã«ã¯ãããã°ãšã³ãã£ã¢ã³ãšãªãã«ãšã³ãã£ã¢ã³ã®äž¡æ¹ã®ã¢ãŒãã§å"
"äœãããã®ããããŸãããªãã«ãšã³ãã£ã¢ã³çš MIPS ã«ã€ããŠã¯ãmipsel ã¢ãŒããã¯"
"ãã£ã®ææžãã芧ãã ããã"
#. Tag: para
#: hardware.xml:542
#, no-c-format
msgid ""
"&debian; on &arch-title; supports the following platforms: <itemizedlist> "
"<listitem><para> Cobalt Microserver: only MIPS based Cobalt machines are "
"covered here. This includes the Cobalt RaQ, Qube2 and RaQ2, and the Gateway "
"Microserver. </para></listitem> <listitem><para> MIPS Malta: this platform "
"is emulated by QEMU and is therefore a nice way to test and run &debian; on "
"MIPS if you don't have the hardware. </para></listitem> </itemizedlist> "
"Complete information regarding supported mips/mipsel machines can be found "
"at the <ulink url=\"&url-linux-mips;\">Linux-MIPS homepage</ulink>. In the "
"following, only the systems supported by the &debian; installer will be "
"covered. If you are looking for support for other subarchitectures, please "
"contact the <ulink url=\"&url-list-subscribe;\"> debian-&arch-listname; "
"mailing list</ulink>."
msgstr ""
"&arch-title; ã§ã¯ã&debian; ã¯ä»¥äžã®ãã©ãããã©ãŒã ããµããŒãããŠããŸãã"
"<itemizedlist> <listitem><para> Cobalt Microserver: ããã§ã¯ MIPS ããŒã¹ã® "
"Cobalt ãã·ã³ (Cobalt RaQ, Qube2, RaQ2, Gateway Microserver) ã®ã¿ã察象ãšããŸ"
"ãã</para></listitem> <listitem><para> MIPS Malta: ãã®ãã©ãããã©ãŒã 㯠"
"QEMU ã§ãšãã¥ã¬ãŒããããŠããããã®ããããŒããŠã§ã¢ããªããŠã MIPS ã§ã® "
"&debian; ã®ãã¹ããå®è¡ãè¡ãè¯ãæ¹æ³ã§ãã</para></listitem> </"
"itemizedlist> mips/mipsel ãã·ã³ãµããŒãã«ã€ããŠã®å®å
šãªæ
å ±ã¯ã<ulink url="
"\"&url-linux-mips;\">Linux-MIPS homepage</ulink> ã«ãããŸãã以äžã§ã¯ã"
"&debian; ã€ã³ã¹ããŒã©ã§ãµããŒããããŠããã·ã¹ãã ã«ã€ããŠã®ã¿å¯Ÿè±¡ã«ããŠããŸ"
"ãããã®ä»ã®ãµãã¢ãŒããã¯ãã£ã®ãµããŒããå¿
èŠãªå Žåã¯ã<ulink url=\"&url-"
"list-subscribe;\"> debian-&arch-listname; ã¡ãŒãªã³ã°ãªã¹ã</ulink> ã«é£çµ¡ããŠ"
"ãã ããã"
#. Tag: title
#: hardware.xml:570
#, no-c-format
msgid "CPU/Machine types"
msgstr "CPU/ãã·ã³ã¿ã€ã"
#. Tag: para
#: hardware.xml:572
#, no-c-format
msgid ""
"All MIPS based Cobalt machines are supported with the exception of the Qube "
"2700 (Qube 1)."
msgstr ""
"MIPS ã® Cobalt ãã·ã³ã¯ãQube 2700 (Qube 1) ãé€ãããã¹ãŠãµããŒãããŠããŸ"
"ãã"
#. Tag: title
#: hardware.xml:580
#, no-c-format
msgid "Supported console options"
msgstr "ãµããŒãããã³ã³ãœãŒã«ãªãã·ã§ã³"
#. Tag: para
#: hardware.xml:581
#, no-c-format
msgid "Cobalt machines use 115200 bps."
msgstr "Cobalt ãã·ã³ã¯ 115200 bps ã䜿çšããŸãã"
#. Tag: para
#: hardware.xml:595
#, no-c-format
msgid ""
"For &debian-gnu; &release; only the PMac (Power-Macintosh or PowerMac) and "
"PreP subarchitectures are supported."
msgstr ""
"&debian-gnu; &release; ã§ã¯ãPMac (Power-Macintosh ãªãã PowerMac) ãµãã¢ãŒ"
"ããã¯ãã£ãš PreP ãµãã¢ãŒããã¯ãã£ã®ã¿ãµããŒãããŠããŸãã"
#. Tag: title
#: hardware.xml:616
#, no-c-format
msgid "Kernel Flavours"
msgstr "ã«ãŒãã«ãã¬ãŒããŒ"
#. Tag: para
#: hardware.xml:618
#, no-c-format
msgid ""
"There are two flavours of the powerpc kernel in &debian;, based on the CPU "
"type:"
msgstr ""
"&debian; ã§ã¯ã以äžã® CPU ã¿ã€ãã«åºã¥ããŠãpowerpc ã«ãŒãã«ã®ãã¬ãŒããŒã 2 "
"çš®é¡ãããŸãã"
#. Tag: term
#: hardware.xml:625
#, no-c-format
msgid "<term>powerpc</term>"
msgstr "<term>powerpc</term>"
#. Tag: para
#: hardware.xml:626
#, no-c-format
msgid ""
"Most systems use this kernel flavour, which supports the PowerPC 601, 603, "
"604, 740, 750, and 7400 processors. All Apple PowerMac machines up to and "
"including the one marketed as G4 use one of these processors."
msgstr ""
"ã»ãšãã©ã®ã·ã¹ãã ã¯ãã®ã«ãŒãã«ãã¬ãŒããŒã䜿çšããŸãããã㯠PowerPC 601, "
"603, 604, 740, 750, 7400 ããã»ããµããµããŒãããŠããŸããG4 ãšããŠçºå£²ããã"
"ãã®ãå«ã Apple ã® PowerMac ãã·ã³ã¯ããã®ããããã®ããã»ããµã䜿çšããŠããŸ"
"ãã"
#. Tag: term
#: hardware.xml:636
#, no-c-format
msgid "power64"
msgstr "power64"
#. Tag: para
#: hardware.xml:637
#, no-c-format
msgid "The power64 kernel flavour supports the following CPUs:"
msgstr "power64 ã«ãŒãã«ãã¬ãŒããŒã¯ä»¥äžã® CPU ããµããŒãããŠããŸãã"
#. Tag: para
#: hardware.xml:641
#, no-c-format
msgid ""
"The POWER3 processor is used in older IBM 64-bit server systems: known "
"models include the IntelliStation POWER Model 265, the pSeries 610 and 640, "
"and the RS/6000 7044-170, 7043-260, and 7044-270."
msgstr ""
"POWER3 ããã»ããµã¯ IBM ã® 64 ããããµãŒãã·ã¹ãã ã§äœ¿çšãããŠããŸããããç¥"
"ãããã¢ãã«ã¯ãIntelliStation POWER Model 265 ã pSeries 610/640ãRS/6000 "
"7044-170, 7043-260, 7044-270 ã§ãã"
#. Tag: para
#: hardware.xml:647
#, no-c-format
msgid ""
"The POWER4 processor is used in more recent IBM 64-bit server systems: known "
"models include the pSeries 615, 630, 650, 655, 670, and 690."
msgstr ""
"POWER4 ããã»ããµã¯ãã€ãæè¿ã® IBM 64 ããããµãŒãã·ã¹ãã ã§äœ¿çšãããŠããŸ"
"ããããç¥ãããã¢ãã«ã¯ãpSeries 615, 630, 650, 655, 670, 690 ã§ãã"
#. Tag: para
#: hardware.xml:652
#, no-c-format
msgid ""
"Systems using the Apple G5 (PPC970FX processor) are also based on the POWER4 "
"architecture, and use this kernel flavour."
msgstr ""
"Apple G5 (PPC970FX processor) ã䜿çšããã·ã¹ãã ã POWER4 ã¢ãŒããã¯ãã£ã"
"ããŒã¹ã«ããŠããããã®ã«ãŒãã«ãã¬ãŒããŒã䜿çšããŸãã"
#. Tag: title
#: hardware.xml:686
#, no-c-format
msgid "Power Macintosh (pmac) subarchitecture"
msgstr "Power Macintosh (pmac) ãµãã¢ãŒããã¯ãã£"
#. Tag: para
#: hardware.xml:688
#, no-c-format
msgid ""
"Apple (and briefly a few other manufacturers — Power Computing, for "
"example) made a series of Macintosh computers based on the PowerPC "
"processor. For purposes of architecture support, they are categorized as "
"NuBus (not supported by &debian;), OldWorld, and NewWorld."
msgstr ""
"Apple (ãããŠããšãã° Power Computing ã®ãããªä»ã®ã¡ãŒã«ãŒ) ã¯ãPowerPC ãã"
"ã»ããµããŒã¹ã® Macintosh ã³ã³ãã¥ãŒã¿ã補é ããŠããŸããã¢ãŒããã¯ãã£ã®ãµããŒ"
"ãã®çš®é¡ã«ãããNuBus (&debian; ã§ã¯æªãµããŒã), OldWorld PCI, NewWorld ã«å"
"é¡ãããŠããŸãã"
#. Tag: para
#: hardware.xml:695
#, no-c-format
msgid ""
"OldWorld systems are most Power Macintoshes with a floppy drive and a PCI "
"bus. Most 603, 603e, 604, and 604e based Power Macintoshes are OldWorld "
"machines. Those pre-iMac PowerPC models from Apple use a four digit naming "
"scheme, except for the beige colored G3 systems, which are also OldWorld."
msgstr ""
"OldWorld ã·ã¹ãã ã¯ãããããŒãã©ã€ããš PCI ãã¹ãåãããã»ãšãã©ã® Power "
"Macintosh ã®ããšã§ãã603, 603e, 604, 604e ããŒã¹ã® Power Macintosh ã "
"OldWorld ãã·ã³ã§ããããŒãžã¥ã® G3 ã·ã¹ãã ã®ä»ã¯ãApple ã® 4 æ¡ã®æ°åã®åœå"
"èŠåãæ〠iMac 以åã® PowerPC ã¢ãã«ã OldWorld ã§ãã"
#. Tag: para
#: hardware.xml:703
#, no-c-format
msgid ""
"The so called NewWorld PowerMacs are any PowerMacs in translucent colored "
"plastic cases and later models. That includes all iMacs, iBooks, G4 systems, "
"blue colored G3 systems, and most PowerBooks manufactured in and after 1999. "
"The NewWorld PowerMacs are also known for using the <quote>ROM in RAM</"
"quote> system for MacOS, and were manufactured from mid-1998 onwards."
msgstr ""
"察ã㊠NewWorld PowerMac ãšåŒã°ããã®ãåéæã® PowerMac 以éã®ãã®ã§ãããã¹"
"ãŠã® iMac, iBook, G4 ã·ã¹ãã , éã G3 ã·ã¹ãã , 1999 幎以éã«è£œé ãããã»ãš"
"ãã©ã® PowerBook ãå«ãŸããŸããNewWorld PowerMac ã¯ã1998 幎åã°ãã補é ã"
"ããMacOS çšã« <quote>ROM in RAM</quote> ã·ã¹ãã ã䜿çšããŠããŸãã"
#. Tag: para
#: hardware.xml:711
#, no-c-format
msgid ""
"Specifications for Apple hardware are available at <ulink url=\"http://www."
"info.apple.com/support/applespec.html\">AppleSpec</ulink>, and, for older "
"hardware, <ulink url=\"http://www.info.apple.com/support/applespec.legacy/"
"index.html\">AppleSpec Legacy</ulink>."
msgstr ""
"Apple ã®ããŒããŠã§ã¢ã®ä»æ§ã¯ã<ulink url=\"http://www.info.apple.com/support/"
"applespec.html\">AppleSpec</ulink> ãããå€ãããŒããŠã§ã¢ã«é¢ããŠã¯ <ulink "
"url=\"http://www.info.apple.com/support/applespec.legacy/index.html"
"\">AppleSpec Legacy</ulink> ããå
¥æã§ããŸãã"
#. Tag: entry
#: hardware.xml:727 hardware.xml:862 hardware.xml:906 hardware.xml:935
#, no-c-format
msgid "Model Name/Number"
msgstr "ã¢ãã«å/åçª"
#. Tag: entry
#: hardware.xml:728
#, no-c-format
msgid "Generation"
msgstr "äžä»£"
#. Tag: entry
#: hardware.xml:734
#, no-c-format
msgid "Apple"
msgstr "Apple"
#. Tag: entry
#: hardware.xml:735
#, no-c-format
msgid "iMac Bondi Blue, 5 Flavors, Slot Loading"
msgstr "iMac ãã³ãã€ãã«ãŒã5 è²ãã¹ãããããŒãã£ã³ã°"
#. Tag: entry
#: hardware.xml:736 hardware.xml:739 hardware.xml:742 hardware.xml:745
#: hardware.xml:748 hardware.xml:751 hardware.xml:754 hardware.xml:757
#: hardware.xml:760 hardware.xml:763 hardware.xml:766 hardware.xml:769
#: hardware.xml:772 hardware.xml:775 hardware.xml:778 hardware.xml:781
#, no-c-format
msgid "NewWorld"
msgstr "NewWorld"
#. Tag: entry
#: hardware.xml:738
#, no-c-format
msgid "iMac Summer 2000, Early 2001"
msgstr "iMac 2000 幎å€ã¢ãã«ã2001 幎幎åã¢ãã«"
#. Tag: entry
#: hardware.xml:741
#, no-c-format
msgid "iMac G5"
msgstr "iMac G5"
#. Tag: entry
#: hardware.xml:744
#, no-c-format
msgid "iBook, iBook SE, iBook Dual USB"
msgstr "iBook, iBook SE, iBook Dual USB"
#. Tag: entry
#: hardware.xml:747
#, no-c-format
msgid "iBook2"
msgstr "iBook2"
#. Tag: entry
#: hardware.xml:750
#, no-c-format
msgid "iBook G4"
msgstr "iBook G4"
#. Tag: entry
#: hardware.xml:753
#, no-c-format
msgid "Power Macintosh Blue and White (B&W) G3"
msgstr "Power Macintosh Blue and White (B&W) G3"
#. Tag: entry
#: hardware.xml:756
#, no-c-format
msgid "Power Macintosh G4 PCI, AGP, Cube"
msgstr "Power Macintosh G4 PCI, AGP, Cube"
#. Tag: entry
#: hardware.xml:759
#, no-c-format
msgid "Power Macintosh G4 Gigabit Ethernet"
msgstr "Power Macintosh G4 Gigabit Ethernet"
#. Tag: entry
#: hardware.xml:762
#, no-c-format
msgid "Power Macintosh G4 Digital Audio, Quicksilver"
msgstr "Power Macintosh G4 Digital Audio, Quicksilver"
#. Tag: entry
#: hardware.xml:765
#, no-c-format
msgid "Power Macintosh G5"
msgstr "Power Macintosh G5"
#. Tag: entry
#: hardware.xml:768
#, no-c-format
msgid "PowerBook G3 FireWire Pismo (2000)"
msgstr "PowerBook G3 FireWire Pismo (2000)"
#. Tag: entry
#: hardware.xml:771
#, no-c-format
msgid "PowerBook G3 Lombard (1999)"
msgstr "PowerBook G3 Lombard (1999)"
#. Tag: entry
#: hardware.xml:774
#, no-c-format
msgid "PowerBook G4 Titanium"
msgstr "PowerBook G4 Titanium"
#. Tag: entry
#: hardware.xml:777
#, no-c-format
msgid "PowerBook G4 Aluminum"
msgstr "PowerBook G4 Aluminum"
#. Tag: entry
#: hardware.xml:780
#, no-c-format
msgid "Xserve G5"
msgstr "Xserve G5"
#. Tag: entry
#: hardware.xml:783
#, no-c-format
msgid "Performa 4400, 54xx, 5500"
msgstr "Performa 4400, 54xx, 5500"
#. Tag: entry
#: hardware.xml:784 hardware.xml:787 hardware.xml:790 hardware.xml:793
#: hardware.xml:796 hardware.xml:799 hardware.xml:802 hardware.xml:805
#: hardware.xml:808 hardware.xml:811 hardware.xml:814 hardware.xml:817
#: hardware.xml:823 hardware.xml:826 hardware.xml:832 hardware.xml:838
#: hardware.xml:844
#, no-c-format
msgid "OldWorld"
msgstr "OldWorld"
#. Tag: entry
#: hardware.xml:786
#, no-c-format
msgid "Performa 6360, 6400, 6500"
msgstr "Performa 6360, 6400, 6500"
#. Tag: entry
#: hardware.xml:789
#, no-c-format
msgid "Power Macintosh 4400, 5400"
msgstr "Power Macintosh 4400, 5400"
#. Tag: entry
#: hardware.xml:792
#, no-c-format
msgid "Power Macintosh 7200, 7300, 7500, 7600"
msgstr "Power Macintosh 7200, 7300, 7500, 7600"
#. Tag: entry
#: hardware.xml:795
#, no-c-format
msgid "Power Macintosh 8200, 8500, 8600"
msgstr "Power Macintosh 8200, 8500, 8600"
#. Tag: entry
#: hardware.xml:798
#, no-c-format
msgid "Power Macintosh 9500, 9600"
msgstr "Power Macintosh 9500, 9600"
#. Tag: entry
#: hardware.xml:801
#, no-c-format
msgid "Power Macintosh (Beige) G3 Minitower"
msgstr "Power Macintosh (ããŒãžã¥) G3 ããã¿ã¯ãŒ"
#. Tag: entry
#: hardware.xml:804
#, no-c-format
msgid "Power Macintosh (Beige) Desktop, All-in-One"
msgstr "Power Macintosh (ããŒãžã¥) ãã¹ã¯ããã, ãªãŒã«ã€ã³ã¯ã³"
#. Tag: entry
#: hardware.xml:807
#, no-c-format
msgid "PowerBook 2400, 3400, 3500"
msgstr "PowerBook 2400, 3400, 3500"
#. Tag: entry
#: hardware.xml:810
#, no-c-format
msgid "PowerBook G3 Wallstreet (1998)"
msgstr "PowerBook G3 Wallstreet (1998)"
#. Tag: entry
#: hardware.xml:813
#, no-c-format
msgid "Twentieth Anniversary Macintosh"
msgstr "Twentieth Anniversary Macintosh"
#. Tag: entry
#: hardware.xml:816
#, no-c-format
msgid "Workgroup Server 7250, 7350, 8550, 9650, G3"
msgstr "Workgroup Server 7250, 7350, 8550, 9650, G3"
#. Tag: entry
#: hardware.xml:821
#, no-c-format
msgid "Power Computing"
msgstr "Power Computing"
#. Tag: entry
#: hardware.xml:822
#, no-c-format
msgid "PowerBase, PowerTower / Pro, PowerWave"
msgstr "PowerBase, PowerTower / Pro, PowerWave"
#. Tag: entry
#: hardware.xml:825
#, no-c-format
msgid "PowerCenter / Pro, PowerCurve"
msgstr "PowerCenter / Pro, PowerCurve"
#. Tag: entry
#: hardware.xml:830
#, no-c-format
msgid "UMAX"
msgstr "UMAX"
#. Tag: entry
#: hardware.xml:831
#, no-c-format
msgid "C500, C600, J700, S900"
msgstr "C500, C600, J700, S900"
#. Tag: entry
#: hardware.xml:836
#, no-c-format
msgid "<entry>APS</entry>"
msgstr "<entry>APS</entry>"
#. Tag: entry
#: hardware.xml:837
#, no-c-format
msgid "APS Tech M*Power 604e/2000"
msgstr "APS Tech M*Power 604e/2000"
#. Tag: entry
#: hardware.xml:842 hardware.xml:868
#, no-c-format
msgid "Motorola"
msgstr "Motorola"
#. Tag: entry
#: hardware.xml:843
#, no-c-format
msgid "Starmax 3000, 4000, 5000, 5500"
msgstr "Starmax 3000, 4000, 5000, 5500"
#. Tag: title
#: hardware.xml:852
#, no-c-format
msgid "PReP subarchitecture"
msgstr "PReP ãµãã¢ãŒããã¯ãã£"
#. Tag: entry
#: hardware.xml:869
#, no-c-format
msgid "Firepower, PowerStack Series E, PowerStack II"
msgstr "Firepower, PowerStack Series E, PowerStack II"
#. Tag: entry
#: hardware.xml:871
#, no-c-format
msgid "MPC 7xx, 8xx"
msgstr "MPC 7xx, 8xx"
#. Tag: entry
#: hardware.xml:873
#, no-c-format
msgid "MTX, MTX+"
msgstr "MTX, MTX+"
#. Tag: entry
#: hardware.xml:875
#, no-c-format
msgid "MVME2300(SC)/24xx/26xx/27xx/36xx/46xx"
msgstr "MVME2300(SC)/24xx/26xx/27xx/36xx/46xx"
#. Tag: entry
#: hardware.xml:877
#, no-c-format
msgid "MCP(N)750"
msgstr "MCP(N)750"
#. Tag: entry
#: hardware.xml:881 hardware.xml:912
#, no-c-format
msgid "IBM RS/6000"
msgstr "IBM RS/6000"
#. Tag: entry
#: hardware.xml:882
#, no-c-format
msgid "40P, 43P"
msgstr "40P, 43P"
#. Tag: entry
#: hardware.xml:884
#, no-c-format
msgid "Power 830/850/860 (6070, 6050)"
msgstr "Power 830/850/860 (6070, 6050)"
#. Tag: entry
#: hardware.xml:886
#, no-c-format
msgid "6030, 7025, 7043"
msgstr "6030, 7025, 7043"
#. Tag: entry
#: hardware.xml:888
#, no-c-format
msgid "p640"
msgstr "p640"
#. Tag: title
#: hardware.xml:896
#, no-c-format
msgid "CHRP subarchitecture (unsupported)"
msgstr "CHRP ãµãã¢ãŒããã¯ã㣠(æªãµããŒã)"
#. Tag: entry
#: hardware.xml:913
#, no-c-format
msgid "B50, 43P-150, 44P"
msgstr "B50, 43P-150, 44P"
#. Tag: entry
#: hardware.xml:916
#, no-c-format
msgid "Genesi"
msgstr "Genesi"
#. Tag: entry
#: hardware.xml:917
#, no-c-format
msgid "Pegasos I, Pegasos II"
msgstr "Pegasos I, Pegasos II"
#. Tag: title
#: hardware.xml:925
#, no-c-format
msgid "APUS subarchitecture (unsupported)"
msgstr "APUS ãµãã¢ãŒããã¯ã㣠(æªãµããŒã)"
#. Tag: entry
#: hardware.xml:941
#, no-c-format
msgid "Amiga Power-UP Systems (APUS)"
msgstr "Amiga Power-UP Systems (APUS)"
#. Tag: entry
#: hardware.xml:942
#, no-c-format
msgid "A1200, A3000, A4000"
msgstr "A1200, A3000, A4000"
#. Tag: title
#: hardware.xml:950
#, no-c-format
msgid "Nubus PowerMac subarchitecture (unsupported)"
msgstr "Nubus PowerMac ãµãã¢ãŒããã¯ã㣠(æªãµããŒã)"
#. Tag: para
#: hardware.xml:952
#, no-c-format
msgid ""
"NuBus systems are not currently supported by &debian;/powerpc. The "
"monolithic Linux/PPC kernel architecture does not have support for these "
"machines; instead, one must use the MkLinux Mach microkernel, which &debian; "
"does not yet support. These include the following: <itemizedlist> "
"<listitem><para> Power Macintosh 6100, 7100, 8100 </para></listitem> "
"<listitem><para> Performa 5200, 6200, 6300 </para></listitem> "
"<listitem><para> Powerbook 1400, 2300, and 5300 </para></listitem> "
"<listitem><para> Workgroup Server 6150, 8150, 9150 </para></listitem> </"
"itemizedlist> A linux kernel for these machines and limited support is "
"available at <ulink url=\"http://nubus-pmac.sourceforge.net/\"></ulink>."
msgstr ""
"NuBus ã·ã¹ãã ã¯çŸåš &debian;/powerpc ã§ãµããŒããããŠããŸãããã¢ããªã·ã㯠"
"Linux/PPC ã«ãŒãã«ã¢ãŒããã¯ãã£ã§ã¯ããã·ã³ããµããŒãããŠãããã&debian; ã§"
"ã¯ãŸã ãµããŒãããŠããªã MkLinux Mach ãã€ã¯ãã«ãŒãã«ã䜿çšããªããã°ãªããª"
"ããã®ããããŸãã以äžã®ãã®ãå«ãŸããŸãã<itemizedlist> <listitem><para> "
"Power Macintosh 6100, 7100, 8100 </para></listitem> <listitem><para> "
"Performa 5200, 6200, 6300 </para></listitem> <listitem><para> Powerbook "
"1400, 2300, and 5300 </para></listitem> <listitem><para> Workgroup Server "
"6150, 8150, 9150 </para></listitem> </itemizedlist> 以äžã®ãã·ã³çš Linux ã«ãŒ"
"ãã«ã¯ <ulink url=\"http://nubus-pmac.sourceforge.net/\"></ulink> ã§éå®çã«"
"ãµããŒããããŠããŸãã"
#. Tag: title
#: hardware.xml:989
#, no-c-format
msgid "Non-PowerPC Macs"
msgstr "é PowerPC Mac"
#. Tag: para
#: hardware.xml:991
#, no-c-format
msgid ""
"Macintosh computers using the 680x0 series of processors are <emphasis>not</"
"emphasis> in the PowerPC family but are instead m68k machines. Those models "
"start with <quote>Mac II</quote> series, go on to the <quote>LC</quote> "
"family, then the Centris series, and culminate in the Quadras and Performas. "
"These models usually have a Roman numeral or 3-digit model number such as "
"Mac IIcx, LCIII or Quadra 950."
msgstr ""
"680x0 系㮠ããã»ããµãæèŒãã Macintosh ã³ã³ãã¥ãŒã¿ã¯ãPowerPC ç³»"
"<emphasis>ã§ã¯ãªã</emphasis>代ããã« m68k ãã·ã³ãšãªããŸãããã®ã·ãªãŒãºã¯ "
"<quote>Mac II</quote> ã·ãªãŒãºããå§ãŸãã<quote>LC</quote> ç³»ãCentris ã·"
"ãªãŒãºãQuadra ã Performa ã§å
šçãšãªããŸããã以äžã®ã¢ãã«ã¯ãMac IIcx, "
"LCIII, Quadra 950 ã®ããã«ããŒãæ°åã 3 æ¡ã®ã¢ãã«ãã³ããŒã®ãã®ãã»ãŒããã«"
"該åœããŸãã"
#. Tag: para
#: hardware.xml:1000
#, no-c-format
msgid ""
"This model range started with the Mac II (Mac II, IIx, IIcx, IIci, IIsi, "
"IIvi, IIvx, IIfx), then the LC (LC, LCII, III, III+, 475, 520, 550, 575, "
"580, 630), then the Mac TV, then the Centris (610, 650, 660AV), the Quadra "
"(605, 610, 630, 650, 660AV, 700, 800, 840AV, 900, 950), and finally the "
"Performa 200-640CD."
msgstr ""
"ãã®ã¢ãã«ã®ç¯å²ã¯ãMac II (Mac II, IIx, IIcx, IIci, IIsi, IIvi, IIvx, IIfx) "
"ã§ã¯ããŸããLC (LC, LCII, III, III+, 475, 520, 550, 575, 580, 630)ãMac TVã"
"Centris (610, 650, 660AV)ãQuadra (605, 610, 630, 650, 660AV, 700, 800, "
"840AV, 900, 950)ãæåŸã« Performa 200-640CD ãšãªããŸãã"
#. Tag: para
#: hardware.xml:1008
#, no-c-format
msgid ""
"In laptops, it started with the Mac Portable, then the PowerBook 100-190cs "
"and the PowerBook Duo 210-550c (excluding PowerBook 500 which is Nubus, "
"please see the section above)."
msgstr ""
"ã©ãããããã§ã¯ãMac Portable ããã¯ããŸããPowerBook 100-190cs ã "
"PowerBook Duo 210-550c (PowerBook 500 㯠Nubus ããã¯ãããŸããååºã®ç¯ãã芧"
"ãã ãã)"
#. Tag: title
#: hardware.xml:1024
#, no-c-format
msgid "S/390 and zSeries machine types"
msgstr "S/390 ã zSeries ãã·ã³ã¿ã€ã"
#. Tag: para
#: hardware.xml:1025
#, no-c-format
msgid ""
"Since &debian; Squeeze, support for booting in ESA/390 mode was dropped. "
"Your machine needs to support for at least the z/Architecture, Architecture "
"Level Set 2. The userland is still compiled for ESA/390, though. All zSeries "
"hardware is fully supported. &arch-title; support software is included from "
"the kernel 2.6.32 development stream. The most current information about "
"IBM's Linux support can be found at the <ulink url=\"http://www.ibm.com/"
"developerworks/linux/linux390/development_technical.html\"> Linux on "
"<trademark class=\"registered\">System z</trademark> page on developerWorks</"
"ulink>."
msgstr ""
"&debian; Squeeze ãããESA/390 ã¢ãŒãã§ã®èµ·åããµããŒãããªããªããŸãããå°ãª"
"ããšããã·ã³ããz/Architecture ã®ã¢ãŒããã¯ãã£ã¬ãã« 2 ããµããŒãããŠããå¿
"
"èŠããããŸãããããããŠãŒã¶ã©ã³ãã¯ãŸã ESA/390 ã§ã³ã³ãã€ã«ãããŠããŸããã"
"ã¹ãŠã® zSeries ããŒããŠã§ã¢ããµããŒãããŠããŸããã«ãŒãã« 2.6.32 éçºã¹ããªãŒ"
"ã ã® &arch-title; ãµããŒããœãããŠã§ã¢ãå«ãã§ããŸããIBM ã® Linux ãµããŒãã«"
"é¢ããææ°æ
å ±ã¯ã<ulink url=\"http://www.ibm.com/developerworks/linux/"
"linux390/development_technical.html\"> developerWorks ã«ãã Linux on "
"<trademark class=\"registered\">System z</trademark> ã§ã® Linux ããŒãž</"
"ulink> ã«ãããŸãã"
#. Tag: title
#: hardware.xml:1048
#, no-c-format
msgid "CPU and Main Boards Support"
msgstr "CPUã»ãã¶ãŒããŒãã®ãµããŒã"
#. Tag: para
#: hardware.xml:1049
#, no-c-format
msgid ""
"Sparc-based hardware is divided into a number of different subarchitectures, "
"identified by one of the following names: sun4, sun4c, sun4d, sun4m, sun4u "
"or sun4v. The following list describes what machines they include and what "
"level of support may be expected for each of them."
msgstr ""
"Sparc ããŒã¹ã®ããŒããŠã§ã¢ã¯ãæ°çš®ã®ç°ãªããµãã¢ãŒããã¯ãã£ã«åãããŠããã"
"sun4, sun4c, sun4d, sun4m, sun4u, sun4v ãšãã£ãååã§èªèãããŠããŸãã以äž"
"ã«ãåãµãã¢ãŒããã¯ãã£ã«ã©ã®ãããªãã·ã³ãå«ãŸããã©ã®çšåºŠãµããŒããããã "
"ãããããšãã£ãããšãäžèŠ§ããŸãã"
#. Tag: term
#: hardware.xml:1060
#, no-c-format
msgid "sun4, sun4c, sun4d, sun4m"
msgstr "sun4, sun4c, sun4d, sun4m"
#. Tag: para
#: hardware.xml:1062
#, no-c-format
msgid ""
"None of these 32-bit sparc subarchitectures (sparc32) is supported. For a "
"complete list of machines belonging to these subarchitectures, please "
"consult the <ulink url=\"http://en.wikipedia.org/wiki/SPARCstation"
"\">Wikipedia SPARCstation page</ulink>."
msgstr ""
"32 ãããã® sparc ãµãã¢ãŒããã¯ã㣠(sparc32) ã§ããµããŒãããŠãããã®ã¯ãã"
"ãŸããããã®ã¢ãŒããã¯ãã£ã«å±ãããã·ã³ã®å®å
šãªãªã¹ãã¯ã<ulink url="
"\"http://en.wikipedia.org/wiki/SPARCstation\">Wikipedia ã® SPARCstation ã®"
"ããŒãž</ulink> ãã芧ãã ããã"
#. Tag: para
#: hardware.xml:1069
#, no-c-format
msgid ""
"The last &debian; release to support sparc32 was Etch, but even then only "
"for sun4m systems. Support for the other 32-bits subarchitectures had "
"already been discontinued after earlier releases."
msgstr ""
"sparc32 ããµããŒãããæåŸã® &debian; ãªãªãŒã¹ã¯ Etch ã§ããããããã§ã "
"sun4m ã·ã¹ãã ãããµããŒãããŠããŸãããä»ã® 32 ããããµãã¢ãŒããã¯ãã£ã®ãµ"
"ããŒãã¯ãåæãªãªãŒã¹ããç¶ç¶ãããŠããŸããã"
#. Tag: term
#: hardware.xml:1079
#, no-c-format
msgid "<term>sun4u</term>"
msgstr "<term>sun4u</term>"
#. Tag: para
#: hardware.xml:1081
#, no-c-format
msgid ""
"This subarchitecture includes all 64-bit machines (sparc64) based on the "
"UltraSparc processor and its clones. Most of the machines are well "
"supported, even though for some you may experience problems booting from CD "
"due to firmware or bootloader bugs (this problem may be worked around by "
"using netbooting). Use the sparc64 or sparc64-smp kernel in UP and SMP "
"configurations respectively."
msgstr ""
"ãã®ãµãã¢ãŒããã¯ãã£ã«ã¯ãUltraSparc ããã»ããµãšãã®äºæ CPU ãæèŒããã"
"å
š 64 ããããã·ã³ (sparc64) ãå«ãŸããŸãããã¡ãŒã ãŠã§ã¢ãããŒãããŒãã®ãã°"
"ã§ãCD ããèµ·åããéã«åé¡ãèµ·ããå¯èœæ§ããããŸãã (netboot ã§ãã®åé¡ã«å¯Ÿ"
"åŠã§ããŸã)ãã»ãšãã©ã®ãã·ã³ããã¡ããšãµããŒããããŠããŸããUP ã SMP ã®æ§æ"
"ã«ããããŠãsparc64 ã sparc64-smp ã®ã«ãŒãã«ã䜿çšããŠãã ããã"
#. Tag: term
#: hardware.xml:1094
#, no-c-format
msgid "<term>sun4v</term>"
msgstr "<term>sun4v</term>"
#. Tag: para
#: hardware.xml:1096
#, no-c-format
msgid ""
"This is the newest addition to the Sparc family, which includes machines "
"based on the Niagara multi-core CPUs. At the moment such CPUs are only "
"available in T1000 and T2000 servers by Sun, and are well supported. Use the "
"sparc64-smp kernel."
msgstr ""
"Sparc ãã¡ããªã«æ°ããè¿œå ãããNiagara ãã«ãã³ã¢ CPU ãæèŒãããã·ã³ãå«ã"
"ã§ããŸããçŸåšããããã£ã CPU 㯠Sun ã® T1000 ãµãŒãã T2000 ãµãŒãã§ã®ã¿å©"
"çšã§ãããã¡ããšãµããŒããããŠããŸããsparc64-smp ã«ãŒãã«ã䜿çšããŠãã ã"
"ãã"
#. Tag: para
#: hardware.xml:1107
#, no-c-format
msgid ""
"Note that Fujitsu's SPARC64 CPUs used in PRIMEPOWER family of servers are "
"not supported due to lack of support in the Linux kernel."
msgstr ""
"ãµãŒãã® PRIMEPOWER ãã¡ããªã§äœ¿çšãããŠããå¯å£«éã® SPARC64 CPU ã¯ãLinux "
"ã«ãŒãã«ã®ãµããŒããäžå
åãªããã&debian; ã§ããµããŒãããŠããªãããšã«ã泚æ"
"ãã ããã"
#. Tag: title
#: hardware.xml:1116
#, no-c-format
msgid "Laptops"
msgstr "ã©ãããããã³ã³ãã¥ãŒã¿"
#. Tag: para
#: hardware.xml:1117
#, no-c-format
msgid ""
"Laptops are also supported and nowadays most laptops work out of the box. In "
"case a laptop contains specialized or proprietary hardware, some specific "
"functions may not be supported. To see if your particular laptop works well "
"with GNU/Linux, see for example the <ulink url=\"&url-x86-laptop;\">Linux "
"Laptop pages</ulink>."
msgstr ""
"ã©ãããããã³ã³ãã¥ãŒã¿ããµããŒãããŠããŸãããæè¿ã®ã»ãšãã©ã®ã©ããããã"
"ã³ã³ãã¥ãŒã¿ã¯ãã®ãŸãŸåäœããŸããã©ãããããã³ã³ãã¥ãŒã¿ã«ç¹æ®ãªããŒããŠã§"
"ã¢ãééçãªããŒããŠã§ã¢ãããå Žåãç¹æ®ãªæ©èœããµããŒããããŠããªãå¯èœæ§ã"
"ãããŸããç¹å®ã®ã©ãããããã GNU/Linux ã§ããŸãåäœãããã©ãããç¥ãããã«"
"ã¯ã<ulink url=\"&url-x86-laptop;\">Linux ã©ãããããããŒãž</ulink> ãã芧ã"
"ã ããã"
#. Tag: title
#: hardware.xml:1129 hardware.xml:1152 hardware.xml:1172 hardware.xml:1195
#, no-c-format
msgid "Multiple Processors"
msgstr "ãã«ãããã»ããµ"
#. Tag: para
#: hardware.xml:1130
#, no-c-format
msgid ""
"Multiprocessor support — also called <quote>symmetric multiprocessing</"
"quote> or SMP — is available for this architecture. The standard "
"&debian; &release; kernel image has been compiled with SMP support. The "
"standard kernel is also usable on non-SMP systems, but has a slight overhead "
"which will cause a small reduction in performance. For normal system use "
"this will hardly be noticable."
msgstr ""
"ãã®ã¢ãŒããã¯ãã£ã§ã¯ããã«ãããã»ããµãµããŒã (<quote>察称åãã«ãããã»ã"
"ã·ã³ã°</quote> ã SMP ãšåŒã°ããŠãã) ãå©çšã§ããŸãã&debian; &release; ã®æš"
"æºã«ãŒãã«ã€ã¡ãŒãžã¯ SMP ãµããŒããæå¹ã«ããŠã³ã³ãã€ã«ãããŠããŸããæšæºã«ãŒ"
"ãã«ã¯é SMP ã·ã¹ãã ã§ã䜿çšã§ããŸãããããããªæ§èœå£åãšãªãè¥å¹²ã®ãªãŒããŒ"
"ãããããããŸããéåžžã®ã·ã¹ãã ã§ã¯ãã»ãšãã©åé¡ãšãªããªãã§ãããã"
#. Tag: para
#: hardware.xml:1139
#, no-c-format
msgid ""
"In order to optimize the kernel for single CPU systems, you'll have to "
"replace the standard &debian; kernel.<phrase arch=\"linux-any\"> You can "
"find a discussion of how to do this in <xref linkend=\"kernel-baking\"/>. At "
"this time (kernel version &kernelversion;) the way you disable SMP is to "
"deselect <quote>&smp-config-option;</quote> in the <quote>&smp-config-"
"section;</quote> section of the kernel config.</phrase>"
msgstr ""
"ã·ã³ã°ã« CPU ã·ã¹ãã ã«ã«ãŒãã«ãæé©åãããå Žåã¯ã&debian; ã®æšæºã«ãŒãã«"
"ã眮ãæããå¿
èŠããããŸãã<phrase arch=\"linux-any\">ãã®æé ã«é¢ããè°è«"
"㯠<xref linkend=\"kernel-baking\"/> ã«ãããŸããçŸæç¹ (ã«ãŒãã«ããŒãžã§ã³ "
"&kernelversion;) 㧠SMP ãç¡å¹ã«ããããã«ã¯ãã«ãŒãã«ã³ã³ãã£ã°ã¬ãŒã·ã§ã³ã® "
"<quote>&smp-config-section;</quote> ã»ã¯ã·ã§ã³ã«ãã <quote>&smp-config-"
"option;</quote> ã®éžæã解é€ããŠãã ããã</phrase>"
#. Tag: para
#: hardware.xml:1154
#, no-c-format
msgid ""
"Multiprocessor support — also called <quote>symmetric multiprocessing</"
"quote> or SMP — is available for this architecture. The standard "
"&debian; &release; kernel image has been compiled with <firstterm>SMP-"
"alternatives</firstterm> support. This means that the kernel will detect the "
"number of processors (or processor cores) and will automatically deactivate "
"SMP on uniprocessor systems."
msgstr ""
"ãã®ã¢ãŒããã¯ãã£ã§ã¯ããã«ãããã»ããµãµããŒã (<quote>察称åãã«ãããã»ã"
"ã·ã³ã°</quote> ã SMP ãšåŒã°ããŠãã) ãå©çšã§ããŸãã&debian; &release; ã®æš"
"æºã«ãŒãã«ã€ã¡ãŒãžã¯ <firstterm>SMP-alternatives</firstterm> ããµããŒãããã"
"ãã³ã³ãã€ã«ãããŠããŸãããã®ãããããã»ããµã®æ° (ãããã»ããµã³ã¢ã®æ°) ã"
"æ€åºããåäžããã»ããµã·ã¹ãã ã®å Žåãèªåçã« SMP ãç¡å¹ã«ããŸãã"
#. Tag: para
#: hardware.xml:1163
#, no-c-format
msgid ""
"The 486 flavour of the &debian; kernel image packages for &arch-title; is "
"not compiled with SMP support."
msgstr ""
"&arch-title; çš &debian; ã«ãŒãã«ã€ã¡ãŒãžããã±ãŒãžã® 486 ãã¬ãŒããŒã§ã¯ã"
"SMP ããµããŒãããããã³ã³ãã€ã«ãããŠããŸããã"
#. Tag: para
#: hardware.xml:1173
#, no-c-format
msgid ""
"Multiprocessor support — also called <quote>symmetric multiprocessing</"
"quote> or SMP — is available for this architecture. However, the "
"standard &debian; &release; kernel image does not support SMP. This should "
"not prevent installation, since the standard, non-SMP kernel should boot on "
"SMP systems; the kernel will simply use the first CPU."
msgstr ""
"ãã®ã¢ãŒããã¯ãã£ã§ã¯ããã«ãããã»ããµãµããŒã (<quote>察称åãã«ãããã»ã"
"ã·ã³ã°</quote> ã SMP ãšåŒã°ããŠãã) ãå©çšã§ããŸããããã &debian; "
"&release; ã®æšæºã«ãŒãã«ã€ã¡ãŒãžã¯ SMP ããµããŒãããŠããŸãããæšæºã®é SMP "
"ã«ãŒãã«ã¯ SMP ã·ã¹ãã ã§ãèµ·åã§ããŸããããã€ã³ã¹ããŒã«ã«ã¯åé¡ãããŸããã"
"æšæºã«ãŒãã«ã¯åã« 1 çªç®ã® CPU ãçšããŸãã"
#. Tag: para
#: hardware.xml:1182
#, no-c-format
msgid ""
"In order to take advantage of multiple processors, you'll have to replace "
"the standard &debian; kernel.<phrase arch=\"linux-any\"> You can find a "
"discussion of how to do this in <xref linkend=\"kernel-baking\"/>. At this "
"time (kernel version &kernelversion;) the way you enable SMP is to select "
"<quote>&smp-config-option;</quote> in the <quote>&smp-config-section;</"
"quote> section of the kernel config.</phrase>"
msgstr ""
"ãã«ãããã»ããµãå©çšããããã«ã¯ã&debian; ã®æšæºã«ãŒãã«ã眮ãæããå¿
èŠã"
"ãããŸãã<phrase arch=\"linux-any\">ãã®æé ã«é¢ãã話é¡ã¯ <xref linkend="
"\"kernel-baking\"/> ã«ãããŸããçŸæç¹ (ã«ãŒãã«ããŒãžã§ã³ &kernelversion;) "
"㧠SMP ãæå¹ã«ããããã«ã¯ãã«ãŒãã«ã³ã³ãã£ã°ã¬ãŒã·ã§ã³ã® <quote>&smp-"
"config-section;</quote> ã»ã¯ã·ã§ã³ã«ãã <quote>&smp-config-option;</quote> "
"ãéžæããŠãã ããã</phrase>"
#. Tag: para
#: hardware.xml:1196
#, no-c-format
msgid ""
"Multiprocessor support — also called <quote>symmetric multiprocessing</"
"quote> or SMP — is available for this architecture, and is supported "
"by a precompiled &debian; kernel image. Depending on your install media, "
"this SMP-capable kernel may or may not be installed by default. This should "
"not prevent installation, since the standard, non-SMP kernel should boot on "
"SMP systems; the kernel will simply use the first CPU."
msgstr ""
"ãã®ã¢ãŒããã¯ãã£ã§ã¯ããã«ãããã»ããµãµããŒã (<quote>察称åãã«ãããã»ã"
"ã·ã³ã°</quote> ã SMP ãšåŒã°ããŠãã) ãå©çšã§ããã³ã³ãã€ã«æžã¿ã® &debian; "
"ã«ãŒãã«ã€ã¡ãŒãžã§ãµããŒããããŠããŸãããã® SMP 察å¿ã«ãŒãã«ããããã©ã«ãã§"
"ã€ã³ã¹ããŒã«ããããã©ããã¯ãã€ã³ã¹ããŒã«ã«äœ¿çšããã¡ãã£ã¢ã«äŸåããŸããæš"
"æºã®é SMP ã«ãŒãã«ã¯ SMP ã·ã¹ãã ã§ãèµ·åã§ããŸããããã€ã³ã¹ããŒã«ã«ã¯åé¡"
"ãããŸãããæšæºã«ãŒãã«ã¯åã« 1 çªç®ã® CPU ãçšããŸãã"
#. Tag: para
#: hardware.xml:1206
#, no-c-format
msgid ""
"In order to take advantage of multiple processors, you should check to see "
"if a kernel package that supports SMP is installed, and if not, choose an "
"appropriate kernel package."
msgstr ""
"è€æ°ã®ããã»ããµãå©çšããããã«ã¯ãSMP ããµããŒãããã«ãŒãã«ããã±ãŒãžãã€"
"ã³ã¹ããŒã«ãããããšããã§ãã¯ããããããã§ãªããã°ãé©åãªã«ãŒãã«ããã±ãŒ"
"ãžãéžã¶å¿
èŠããããŸãã"
#. Tag: para
#: hardware.xml:1212
#, no-c-format
#| msgid ""
#| "You can also build your own customized kernel to support SMP. <phrase "
#| "arch=\"linux-any\">You can find a discussion of how to do this in <xref "
#| "linkend=\"kernel-baking\"/>. At this time (kernel version "
#| "&kernelversion;) the way you enable SMP is to select <quote>&smp-config-"
#| "option;</quote> in the <quote>&smp-config-section;</quote> section of the "
#| "kernel config.</phrase>"
msgid ""
"You can also build your own customized kernel to support SMP.<phrase arch="
"\"linux-any\"> You can find a discussion of how to do this in <xref linkend="
"\"kernel-baking\"/>. At this time (kernel version &kernelversion;) the way "
"you enable SMP is to select <quote>&smp-config-option;</quote> in the "
"<quote>&smp-config-section;</quote> section of the kernel config.</phrase>"
msgstr ""
"SMP ããµããŒãããã«ã¹ã¿ã ã«ãŒãã«ãèªåã§äœãããšãã§ããŸãã<phrase arch="
"\"linux-any\">ãã®æé ã«é¢ãã話é¡ã¯ <xref linkend=\"kernel-baking\"/> ã«ãã"
"ãŸããçŸæç¹ (ã«ãŒãã«ããŒãžã§ã³ &kernelversion;) 㧠SMP ãæå¹ã«ããããã«"
"ã¯ãã«ãŒãã«ã³ã³ãã£ã°ã¬ãŒã·ã§ã³ã® <quote>&smp-config-section;</quote> ã»ã¯"
"ã·ã§ã³ã«ãã <quote>&smp-config-option;</quote> ãéžæããŠãã ããã</phrase>"
#. Tag: title
#: hardware.xml:1223
#, no-c-format
msgid "Graphics Card Support"
msgstr "ã°ã©ãã£ãã¯ã«ãŒãã®ãµããŒã"
#. Tag: para
#: hardware.xml:1224
#, no-c-format
#| msgid ""
#| "You should be using a VGA-compatible display interface for the console "
#| "terminal. Nearly every modern display card is compatible with VGA. "
#| "Ancient standards such CGA, MDA, or HGA should also work, assuming you do "
#| "not require X11 support. Note that X11 is not used during the "
#| "installation process described in this document."
msgid ""
"You should be using a VGA-compatible display interface for the console "
"terminal. Nearly every modern display card is compatible with VGA. Ancient "
"standards such CGA, MDA, or HGA should also work, assuming you do not "
"require X11 support. Note that X11 is not used during the installation "
"process described in this document unless the graphical installer was "
"explicitly selected."
msgstr ""
"ã³ã³ãœãŒã«ç«¯æ«ã䜿çšããããã«ã¯ãVGA äºæãã£ã¹ãã¬ã€ã€ã³ã¿ãŒãã§ãŒã¹ãå¿
èŠ"
"ã§ããæè¿ã®ãããªã«ãŒãã¯ããã®ã»ãŒãã¹ãŠã VGA ãšäºææ§ããããŸãããã€ãŠã®"
"æšæºã§ãã£ã CGAãMDAãHGA ãªã©ããX11 ã®ãµããŒããå¿
èŠãšããªããªãåäœããã§"
"ãããããªãããã®ææžã§æ±ãã€ã³ã¹ããŒã«ã®éçšã§ã¯ãã°ã©ãã£ã«ã«ã€ã³ã¹ããŒã©"
"ã§æ瀺ããå Žåãé€ã㊠X11 ãçšããŸããã"
#. Tag: para
#: hardware.xml:1233
#, no-c-format
msgid ""
"&debian;'s support for graphical interfaces is determined by the underlying "
"support found in X.Org's X11 system. Most AGP, PCI, PCIe, and PCI-X video "
"cards work under X.Org. Details on supported graphics buses, cards, "
"monitors, and pointing devices can be found at <ulink url=\"&url-xorg;\"></"
"ulink>. &debian; &release; ships with X.Org version &x11ver;."
msgstr ""
"&debian; ããµããŒãããã°ã©ãã£ãã¯ã€ã³ã¿ãŒãã§ãŒã¹ã¯ãX.Org ã® X11 System ã®"
"ãµããŒãã«åºã¥ãããã®ã§ããã»ãšãã©ã® AGP, PCI, PCIe, PCI-X ãããªã«ãŒã㯠"
"X.Org ã®äžã§åäœããŸãããµããŒããããŠããã°ã©ãã£ãã¯ãã¹ãã«ãŒããã¢ãã¿ã"
"ãã€ã³ãã£ã³ã°ããã€ã¹ã«é¢ãããã詳现ãªæ
å ±ã«ã€ããŠã¯ã<ulink url=\"&url-"
"xorg;\"></ulink> ãã芧ãã ããããªã &debian; &release; 㯠X.Org ããŒãžã§ã³ "
"&x11ver; ãæ¡çšããŠããŸãã"
#. Tag: para
#: hardware.xml:1242
#, no-c-format
msgid "The X.Org X Window System is only supported on the SGI Indy and the O2."
msgstr "X.Org X ãŠã£ã³ããŠã·ã¹ãã 㯠SGI Indy ãš O2 ã§ã®ã¿ãµããŒãããŠããŸãã"
#. Tag: para
#: hardware.xml:1247
#, no-c-format
msgid ""
"Most graphics options commonly found on Sparc-based machines are supported. "
"X.org graphics drivers are available for sunbw2, suncg14, suncg3, suncg6, "
"sunleo and suntcx framebuffers, Creator3D and Elite3D cards (sunffb driver), "
"PGX24/PGX64 ATI-based video cards (ati driver), and PermediaII-based cards "
"(glint driver). To use an Elite3D card with X.org you additionally need to "
"install the <classname>afbinit</classname> package, and read the "
"documentation included with it on how to activate the card."
msgstr ""
"Sparc ããŒã¹ãã·ã³ã§å
±éããŠååšãããã»ãšãã©ã®ã°ã©ãã£ãã¯ãªãã·ã§ã³ããµ"
"ããŒãããŠããŸããX.org ã°ã©ãã£ãã¯ãã©ã€ãã§ã¯ãsunbw2, suncg14, suncg3, "
"suncg6, sunleo, suntcx ã®åãã¬ãŒã ãããã¡ããCreator3D ã Elite3D ã®ã«ãŒã "
"(sunffb ãã©ã€ã)ãPGX24/PGX64 ATI ããŒã¹ãããªã«ãŒã (ati ãã©ã€ã)ã"
"PermediaII ããŒã¹ã«ãŒã (glint ãã©ã€ã) ãå©çšã§ããŸããElite3D ã«ãŒãã X."
"org ã§äœ¿çšããã«ã¯ã<classname>afbinit</classname> ããã±ãŒãžãè¿œå ã€ã³ã¹ããŒ"
"ã«ããå¿
èŠããããŸãããŸããã«ãŒããæå¹ã«ããããã«ããã®ããã±ãŒãžã«ä»å±ã"
"ãããã¥ã¡ã³ãããèªã¿ãã ããã"
#. Tag: para
#: hardware.xml:1257
#, no-c-format
msgid ""
"It is not uncommon for a Sparc machine to have two graphics cards in a "
"default configuration. In such a case there is a possibility that the Linux "
"kernel will not direct its output to the card initially used by the "
"firmware. The lack of output on the graphical console may then be mistaken "
"for a hang (usually the last message seen on console is 'Booting Linux...'). "
"One possible solution is to physically remove one of the video cards; "
"another option is to disable one of the cards using a kernel boot parameter. "
"Also, if graphical output is not required or desired, serial console may be "
"used as an alternative. On some systems use of serial console can be "
"activated automatically by disconnecting the keyboard before booting the "
"system."
msgstr ""
"Sparc ãã·ã³ã®ããã©ã«ãæ§æã§ãã°ã©ãã£ãã¯ã«ãŒãã 2 ã€æã£ãŠããã®ã¯ãçã"
"ãããšã§ã¯ãããŸããããã®ãããªå Žåããã¡ãŒã ãŠã§ã¢ã§ã¯ããã«äœ¿çšããã«ãŒã"
"ã«ãLinux ã«ãŒãã«ãåºåãåããªãå¯èœæ§ããããŸããã°ã©ãã£ã«ã«ã³ã³ãœãŒã«ãž"
"ã®åºåãæ¬ ãããšããã³ã°ã«ééããããããããŸãã (éåžžãã³ã³ãœãŒã«ã«è¡šç€ºã"
"ããæåŸã®ã¡ãã»ãŒãžã¯ã'Booting Linux...' ã§ã)ã解決æ³ã® 1 ã€ã«ãããªã«ãŒã"
"ãç©ççã«åãé€ããŠããŸãããšããç©ããããŸãããŸããã«ãŒãã«ã®ããŒããã©"
"ã¡ãŒã¿ã§ãã«ãŒãã 1 ã€ç¡å¹ã«ããŠããŸããšããæ¹æ³ããããŸããã°ã©ãã£ãã¯åºå"
"ãå¿
é ã§ãªããå¿
èŠãªããªããã·ãªã¢ã«ã³ã³ãœãŒã«ã代ããã«äœ¿çšããæ¹æ³ããããŸ"
"ããããçš®ã®ã·ã¹ãã ã§ã¯ãã·ã¹ãã ãèµ·åããåã«ããŒããŒããæ¥ç¶ããªããšãèª"
"åçã«ã·ãªã¢ã«ã³ã³ãœãŒã«ã䜿çšããç©ããããŸãã"
#. Tag: title
#: hardware.xml:1279
#, no-c-format
msgid "Network Connectivity Hardware"
msgstr "ãããã¯ãŒã¯æ¥ç¶æ©åš"
#. Tag: para
#: hardware.xml:1280
#, no-c-format
msgid ""
"Almost any network interface card (NIC) supported by the &arch-kernel; "
"kernel should also be supported by the installation system; modular drivers "
"should normally be loaded automatically. <phrase arch=\"x86\">This includes "
"most PCI and PCMCIA cards.</phrase> <phrase arch=\"i386\">Many older ISA "
"cards are supported as well.</phrase>"
msgstr ""
"&arch-kernel; ã«ãŒãã«ããµããŒãããŠãããããã¯ãŒã¯ã€ã³ã¿ãŒãã§ãŒã¹ã«ãŒã "
"(NIC) ãªããã»ãšãã©ã€ã³ã¹ããŒã«ã·ã¹ãã ã§ããµããŒãããŠããŸãããã©ã€ãã¢"
"ãžã¥ãŒã«ã¯ãéåžžèªåçã«èªã¿èŸŒãŸããŸãã<phrase arch=\"x86\">ããã«ã¯ã ã»ãš"
"ãã©ã® PCI ã«ãŒããš PCMCIA ã«ãŒããå«ãŸããŸãã</phrase> <phrase arch="
"\"i386\">å€ãã®å€ã ISA ã«ãŒããããã¡ããšãµããŒããããŠããŸãã</phrase>"
#. Tag: para
#: hardware.xml:1289
#, no-c-format
msgid ""
"This includes a lot of generic PCI cards (for systems that have PCI) and the "
"following NICs from Sun:"
msgstr ""
"ããããã®äžè¬ç㪠PCI ã«ãŒã (PCI ãæã€ã·ã¹ãã åã) ãã以äžã®ãã㪠Sun "
"ã® NIC ãå«ãŸããŸãã"
#. Tag: para
#: hardware.xml:1295
#, no-c-format
msgid "Sun LANCE"
msgstr "Sun LANCE"
#. Tag: para
#: hardware.xml:1300
#, no-c-format
msgid "Sun Happy Meal"
msgstr "Sun Happy Meal"
#. Tag: para
#: hardware.xml:1305
#, no-c-format
msgid "Sun BigMAC"
msgstr "Sun BigMAC"
#. Tag: para
#: hardware.xml:1310
#, no-c-format
msgid "Sun QuadEthernet"
msgstr "Sun QuadEthernet"
#. Tag: para
#: hardware.xml:1315
#, no-c-format
msgid "MyriCOM Gigabit Ethernet"
msgstr "MyriCOM Gigabit Ethernet"
#. Tag: para
#: hardware.xml:1322
#, no-c-format
msgid "The list of supported network devices is:"
msgstr "以äžã«ãµããŒãããŠãããããã¯ãŒã¯ããã€ã¹ãæããŸãã"
#. Tag: para
#: hardware.xml:1327
#, no-c-format
msgid "Channel to Channel (CTC) and ESCON connection (real or emulated)"
msgstr ""
"Channel to Channel (CTC) ã ESCON æ¥ç¶ (ãªã¢ã«ãããã¯ãšãã¥ã¬ãŒã·ã§ã³)"
#. Tag: para
#: hardware.xml:1332
#, no-c-format
msgid "OSA-2 Token Ring/Ethernet and OSA-Express Fast Ethernet (non-QDIO)"
msgstr "OSA-2 Token Ring/Ethernet ã OSA-Express Fast Ethernet (é QDIO)"
#. Tag: para
#: hardware.xml:1337
#, no-c-format
msgid "OSA-Express in QDIO mode, HiperSockets and Guest-LANs"
msgstr "QDIO ã¢ãŒãã® OSA-Express, HiperSockets, Guest-LAN"
#. Tag: para
#: hardware.xml:1346
#, no-c-format
msgid ""
"On &arch-title;, most built-in Ethernet devices are supported and modules "
"for additional PCI and USB devices are provided. The major exception is the "
"IXP4xx platform (featuring devices such as the Linksys NSLU2) which needs a "
"proprietary microcode for the operation of its built-in Ethernet device. "
"Unofficial images for Linksys NSLU2 with this proprietary microcode can be "
"obtained from the <ulink url=\"&url-slug-firmware;\">Slug-Firmware site</"
"ulink>."
msgstr ""
"&arch-title; ã§ã¯ãã»ãšãã©ã®å
èµã€ãŒãµãããããã€ã¹ããµããŒãããŠãããè¿œå "
"ãã PCIã»USB ããã€ã¹ã®ã¢ãžã¥ãŒã«ãæäŸããŠããŸããäž»ãªäŸå€ã¯ãå
èµã€ãŒãµ"
"ãããããã€ã¹ãæäœããã®ã«ããããã©ãšã¿ãªãã€ã¯ãã³ãŒããå¿
èŠãªã(Linksys "
"NSLU2 ãªã©ã®ããã€ã¹ã«ç¹åŸŽããã) IXP4xx ãã©ãããã©ãŒã ã§ãããã®ãããã©ãš"
"ã¿ãªãã€ã¯ãã³ãŒãããã Linksys NSLU2 çšã®éå
¬åŒã€ã¡ãŒãžã¯ã<ulink url="
"\"&url-slug-firmware;\">Slug-Firmware site</ulink> ã§æã«å
¥ããããŸãã"
#. Tag: para
#: hardware.xml:1356
#, no-c-format
msgid "ISDN is supported, but not during the installation."
msgstr "ISDN ã¯ãµããŒãããŠããŸãããã€ã³ã¹ããŒã«äžã«ã¯äœ¿çšã§ããŸããã"
#. Tag: title
#: hardware.xml:1363
#, no-c-format
msgid "Wireless Network Cards"
msgstr "ã¯ã€ã€ã¬ã¹ãããã¯ãŒã¯ã«ãŒã"
#. Tag: para
#: hardware.xml:1364
#, no-c-format
msgid ""
"Wireless networking is in general supported as well and a growing number of "
"wireless adapters are supported by the official &arch-kernel; kernel, "
"although many of them do require firmware to be loaded. If firmware is "
"needed, the installer will prompt you to load firmware. See <xref linkend="
"\"loading-firmware\"/> for detailed information on how to load firmware "
"during the installation."
msgstr ""
"äžè¬çã«ã¯ã€ã€ã¬ã¹ãããã¯ãŒã¯ã¯ããããµããŒããããŠãããå
¬åŒ &arch-kernel; "
"ã«ãŒãã«ã§ãµããŒãããŠããã¯ã€ã€ã¬ã¹ã¢ããã¿ã®æ°ã¯å¢å ããŠããŸãããå€ãã¯"
"ãã¡ãŒã ãŠã§ã¢ã®èªã¿èŸŒã¿ãå¿
èŠã§ãããã¡ãŒã ãŠã§ã¢ãå¿
èŠãªå Žåãã€ã³ã¹ããŒã©"
"ã¯ãã¡ãŒã ãŠã§ã¢ã®ããŒããä¿ããŸããã€ã³ã¹ããŒã«äžã®ãã¡ãŒã ãŠã§ã¢ã®ããŒãã«"
"ã€ããŠã®è©³çŽ°ã¯ã<xref linkend=\"loading-firmware\"/> ãã芧ãã ããã"
#. Tag: para
#: hardware.xml:1372
#, no-c-format
msgid ""
"Wireless NICs that are not supported by the official &arch-kernel; kernel "
"can generally be made to work under &debian-gnu;, but are not supported "
"during the installation."
msgstr ""
"å
¬åŒ &arch-kernel; ã«ãŒãã«ã§ãµããŒããããŠããªãã¯ã€ã€ã¬ã¹ NIC ã &debian-"
"gnu; ã§åäœããŸãããã€ã³ã¹ããŒã«ã®éã¯ãµããŒããããŸããã"
#. Tag: para
#: hardware.xml:1377
#, no-c-format
msgid ""
"Support for encrypted wireless during installation is currently limited to "
"WEP. If your access point uses stronger encryption, it cannot be used during "
"the installation process."
msgstr ""
"æå·åã¯ã€ã€ã¬ã¹æ¥ç¶ã®ãµããŒãã¯ãã€ã³ã¹ããŒã«äžã«ã¯ WEP ã«å¶éãããŠããŸãã"
"ã¢ã¯ã»ã¹ãã€ã³ãããã£ãšåŒ·åºãªæå·ã®å Žåãã€ã³ã¹ããŒã«ããã»ã¹äžã¯å©çšã§ããŸ"
"ããã"
#. Tag: para
#: hardware.xml:1383
#, no-c-format
msgid ""
"If there is a problem with wireless and there is no other NIC you can use "
"during the installation, it is still possible to install &debian-gnu; using "
"a full CD-ROM or DVD image. Select the option to not configure a network and "
"install using only the packages available from the CD/DVD. You can then "
"install the driver and firmware you need after the installation is completed "
"(after the reboot) and configure your network manually."
msgstr ""
"ã¯ã€ã€ã¬ã¹ã«åé¡ãããããã®ä»ã® NIC ãã€ã³ã¹ããŒã«äžã«äœ¿çšã§ããªãå Žåã§ãã"
"ãã«ãµã€ãºã® CD-ROMã»DVD ã€ã¡ãŒãžã䜿çšããŠã&debian-gnu; ãã€ã³ã¹ããŒã«ã§ã"
"ãŸãããããã¯ãŒã¯ãèšå®ããªãããã«ããCD/DVD ã«ããããã±ãŒãžã®ã¿ã䜿çšããŠ"
"ã€ã³ã¹ããŒã«ãè¡ã£ãŠãã ãããã€ã³ã¹ããŒã«ãå®äºåŸ (ãªããŒãåŸ) ã«ãå¿
èŠãªã"
"ã©ã€ããšãã¡ãŒã ãŠã§ã¢ãã€ã³ã¹ããŒã«ãããããã¯ãŒã¯ãæåã§èšå®ããŠãã ã"
"ãã"
#. Tag: para
#: hardware.xml:1393
#, no-c-format
msgid ""
"In some cases the driver you need may not be available as a &debian; "
"package. You will then have to look if there is source code available in the "
"internet and compile the driver yourself. How to do this is outside the "
"scope of this manual. <phrase arch=\"x86\">If no Linux driver is available, "
"your last resort is to use the <classname>ndiswrapper</classname> package, "
"which allows you to use a Windows driver.</phrase>"
msgstr ""
"ããã€ãã®å Žåãå¿
èŠãªãã©ã€ãã &debian; ããã±ãŒãžãšããŠå©çšã§ããªãããšã"
"ãããŸãããã®å Žåãã€ã³ã¿ãŒãããããå©çšã§ãããœãŒã¹ã³ãŒãããããã©ããæ¢"
"ããèªåã§ãã©ã€ããã³ã³ãã€ã«ããå¿
èŠãããã§ããããã©ã®ããã«è¡ããã¯ãã®"
"ããã¥ã¢ã«ã§ã¯æ±ããŸããã<phrase arch=\"x86\">å©çšã§ãã Linux ã®ãã©ã€ãã"
"ãªãå ŽåãWindows ã®ãã©ã€ããå©çšã§ãã <classname>ndiswrapper</classname> "
"ããã±ãŒãžãæåŸã®æ¥œåã«ãªããŸãã</phrase>"
#. Tag: title
#: hardware.xml:1407
#, no-c-format
msgid "Known Issues for &arch-title;"
msgstr "&arch-title; ã«å¯Ÿããæ¢ç¥ã®åé¡"
#. Tag: para
#: hardware.xml:1408
#, no-c-format
msgid ""
"There are a couple of issues with specific network cards that are worth "
"mentioning here."
msgstr ""
"以äžã«ãããŠèšåããç¹å®ã®ãããã¯ãŒã¯ã«ãŒãã«ã¯ã2, 3 ã®åé¡ããããŸãã"
#. Tag: title
#: hardware.xml:1415
#, no-c-format
msgid "Conflict between tulip and dfme drivers"
msgstr "tulip ãã©ã€ããš dfme ãã©ã€ãã®ç«¶å"
#. Tag: para
#: hardware.xml:1417
#, no-c-format
msgid ""
"There are various PCI network cards that have the same PCI identification, "
"but are supported by related, but different drivers. Some cards work with "
"the <literal>tulip</literal> driver, others with the <literal>dfme</literal> "
"driver. Because they have the same identification, the kernel cannot "
"distinguish between them and it is not certain which driver will be loaded. "
"If this happens to be the wrong one, the NIC may not work, or work badly."
msgstr ""
"é¢é£ããŠãµããŒããããããã©ããç°ãªããã©ã€ãã䜿ããããªãåã PCI èå¥åã"
"æã€æ§ã
㪠PCI ãããã¯ãŒã¯ã«ãŒãããããŸããããã«ãŒã㯠<literal>tulip</"
"literal> ãã©ã€ãã§åäœããŸãããå¥ã®ã«ãŒã㯠<literal>dfme</literal> ãã©ã€"
"ãã§åäœãããšããŸããäž¡è
ãåãèå¥åãæã£ãŠãããšãã«ãŒãã«ã«ã¯èŠåããã€"
"ãããã©ã®ãã©ã€ããèªã¿èŸŒãã確å®ã§ããŸãããé©åã§ãªããã©ã€ããèªã¿èŸŒãã "
"å ŽåãNIC ã¯åäœããªãã誀åäœããŸãã"
#. Tag: para
#: hardware.xml:1427
#, no-c-format
msgid ""
"This is a common problem on Netra systems with a Davicom (DEC-Tulip "
"compatible) NIC. In that case the <literal>tulip</literal> driver is "
"probably the correct one. You can prevent this issue by blacklisting the "
"wrong driver module as described in <xref linkend=\"module-blacklist\"/>."
msgstr ""
"ããã¯ãDavicom (DEC-Tulip äºæ) NIC ã䜿çšãã Netra ã·ã¹ãã å
±éã®åé¡ã§"
"ãããã®å Žåããããã <literal>tulip</literal> ãã©ã€ããé©åãªãã®ã§ããã"
"ã®åé¡ã¯ã<xref linkend=\"module-blacklist\"/> ã§èª¬æããŠãããäžé©åãªã¢"
"ãžã¥ãŒã«ããã©ãã¯ãªã¹ãã«å
¥ããããšã§é²ããŸãã"
#. Tag: para
#: hardware.xml:1435
#, no-c-format
msgid ""
"An alternative solution during the installation is to switch to a shell and "
"unload the wrong driver module using <userinput>modprobe -r "
"<replaceable>module</replaceable></userinput> (or both, if they are both "
"loaded). After that you can load the correct module using "
"<userinput>modprobe <replaceable>module</replaceable></userinput>. Note that "
"the wrong module may then still be loaded when the system is rebooted."
msgstr ""
"ãã®ä»ãã€ã³ã¹ããŒã«äžã®è§£æ±ºçãšããŠã¯ã<userinput>modprobe -r "
"<replaceable>module</replaceable></userinput> ãšããŠãäžé©åãªãã©ã€ãã¢"
"ãžã¥ãŒã« (äž¡æ¹èªã¿èŸŒãŸããŠããå Žåã¯äž¡æ¹) ãåãå€ããŠãã ããããã®åŸã"
"<userinput>modprobe <replaceable>module</replaceable></userinput> ã§ãé©åãª"
"ç©ãèªã¿èŸŒãã§ãã ãããã·ã¹ãã ããªããŒããããŸã§ãäžé©åãªã¢ãžã¥ãŒã«ãèªã¿"
"蟌ãŸãããŸãŸã«ãªãå¯èœæ§ãããããšã«æ³šæããŠãã ããã"
#. Tag: title
#: hardware.xml:1448
#, no-c-format
msgid "Sun B100 blade"
msgstr "Sun B100 blade"
#. Tag: para
#: hardware.xml:1450
#, no-c-format
msgid ""
"The <literal>cassini</literal> network driver does not work with Sun B100 "
"blade systems."
msgstr ""
"Sun B100 blade ã·ã¹ãã ã§ã® <literal>cassini</literal> ãããã¯ãŒã¯ãã©ã€ãã¯"
"åäœããŸããã"
#. Tag: title
#: hardware.xml:1465
#, no-c-format
msgid "Braille Displays"
msgstr "ç¹åãã£ã¹ãã¬ã€"
#. Tag: para
#: hardware.xml:1466
#, no-c-format
msgid ""
"Support for braille displays is determined by the underlying support found "
"in <classname>brltty</classname>. Most displays work under "
"<classname>brltty</classname>, connected via either a serial port, USB or "
"bluetooth. Details on supported braille devices can be found on the <ulink "
"url=\"&url-brltty;\"><classname>brltty</classname> website</ulink>. &debian-"
"gnu; &release; ships with <classname>brltty</classname> version &brlttyver;."
msgstr ""
"ç¹åãã£ã¹ãã¬ã€ã®ãµããŒãã¯ã<classname>brltty</classname> ã§èŠã€ããåºæ¬ç"
"ãªãµããŒãã«ãã決å®ãããŸãã<classname>brltty</classname> ã§åäœããã»ãšã"
"ã©ã®ãã£ã¹ãã¬ã€ã¯ãã·ãªã¢ã«ããŒãã USBãbluetooth ã§æ¥ç¶ããŸããç¹åããã€"
"ã¹ãµããŒãã®è©³çŽ°ã¯ã <ulink url=\"&url-brltty;\"><classname>brltty</"
"classname> ãŠã§ããµã€ã</ulink> ã«ãããŸãã&debian-gnu; &release; ã§ã¯ã"
"<classname>brltty</classname> ã®ããŒãžã§ã³ &brlttyver; ãæäŸããŠããŸãã"
#. Tag: title
#: hardware.xml:1480
#, no-c-format
msgid "Hardware Speech Synthesis"
msgstr "ããŒããŠã§ã¢é³å£°åæ"
#. Tag: para
#: hardware.xml:1481
#, no-c-format
msgid ""
"Support for hardware speech synthesis devices is determined by the "
"underlying support found in <classname>speakup</classname>. "
"<classname>speakup</classname> only supports integrated boards and external "
"devices connected to a serial port (no USB or serial-to-USB adapters are "
"supported). Details on supported hardware speech synthesis devices can be "
"found on the <ulink url=\"&url-speakup;\"><classname>speakup</classname> "
"website</ulink>. &debian-gnu; &release; ships with <classname>speakup</"
"classname> version &speakupver;."
msgstr ""
"ããŒããŠã§ã¢é³å£°åæã®ãµããŒãã¯ã<classname>speakup</classname> ã§èŠã€ããåº"
"æ¬çãªãµããŒãã«ãã決å®ãããŸãã<classname>speakup</classname> ã¯ãçµ±ååºæ¿"
"ãã·ãªã¢ã«ããŒãã«æ¥ç¶ãããå€éšããã€ã¹ã®ã¿ãµããŒãããŠããŸã (USB ãã·ãªã¢"
"ã«-USB ã¢ããã¿ã¯ãµããŒãããŠããŸãã)ãããŒããŠã§ã¢é³å£°åæãµããŒãã®è©³çŽ°"
"ã¯ã<ulink url=\"&url-speakup;\"><classname>speakup</classname> ãŠã§ããµã€ã"
"</ulink> ã«ãããŸãã&debian-gnu; &release; ã§ã¯ã<classname>speakup</"
"classname> ã®ããŒãžã§ã³ &speakupver; ãæäŸããŠããŸãã"
#. Tag: title
#: hardware.xml:1501
#, no-c-format
msgid "Peripherals and Other Hardware"
msgstr "åšèŸºæ©åšããã®ä»ã®ããŒããŠã§ã¢"
#. Tag: para
#: hardware.xml:1502
#, no-c-format
msgid ""
"&arch-kernel; supports a large variety of hardware devices such as mice, "
"printers, scanners, PCMCIA and USB devices. However, most of these devices "
"are not required while installing the system."
msgstr ""
"&arch-kernel; ã¯ãããŠã¹ãããªã³ã¿ãã¹ãã£ããPCMCIAãUSB ããã€ã¹ãªã©ã®æ§ã
"
"ãªããŒããŠã§ã¢ã«å¹
åºã察å¿ããŠããŸããããããã·ã¹ãã ã®ã€ã³ã¹ããŒã«ã«ããã"
"ãã®ããã€ã¹ãå¿
èŠãªããã§ã¯ãããŸããã"
#. Tag: para
#: hardware.xml:1508
#, no-c-format
msgid ""
"USB hardware generally works fine, only some USB keyboards may require "
"additional configuration (see <xref linkend=\"hardware-issues\"/>)."
msgstr ""
"USB ããŒããŠã§ã¢ã¯ãããŠãããŸãåããŸããUSB ããŒããŒãã ãã¯è¿œå èšå®ãå¿
èŠ"
"ãããããŸãã (<xref linkend=\"hardware-issues\"/> ãã芧ãã ãã)ã"
#. Tag: para
#: hardware.xml:1514
#, no-c-format
msgid ""
"Again, see the <ulink url=\"&url-hardware-howto;\">Linux Hardware "
"Compatibility HOWTO</ulink> to determine whether your specific hardware is "
"supported by Linux."
msgstr ""
"ç¹å®ã®ããŒããŠã§ã¢ã Linux äžã§ãµããŒããããŠããããå€æããããã«ã¯ãããäž"
"床 <ulink url=\"&url-hardware-howto;\">Linux ããŒããŠã§ã¢äºææ§ HOWTO</"
"ulink> ãã芧ãã ããã"
#. Tag: para
#: hardware.xml:1520
#, no-c-format
msgid ""
"Package installations from XPRAM and tape are not supported by this system. "
"All packages that you want to install need to be available on a DASD or over "
"the network using NFS, HTTP or FTP."
msgstr ""
"XPRAM ãããŒãããã®ããã±ãŒãžã®ã€ã³ã¹ããŒã«ã¯ããã®ã·ã¹ãã ã§ã¯ãµããŒãããŠ"
"ããŸãããå
šãŠã®ããã±ãŒãžã¯ãDASDãæå¹ã«ããããNFS, HTTP, FTP ã䜿ã£ãŠãã"
"ãã¯ãŒã¯ããã€ã³ã¹ããŒã«ããå¿
èŠããããŸãã"
#. Tag: para
#: hardware.xml:1526
#, no-c-format
msgid ""
"The Cobalt RaQ has no support for additional devices but the Qube has one "
"PCI slot."
msgstr ""
"Cobalt RaQ ã§ã¯è¿œå ããã€ã¹ããµããŒãããŠããŸããããQube ã«ã¯ PCI ã¹ãããã"
"ã²ãšã€ãããŸãã"
#. Tag: title
#: hardware.xml:1538
#, no-c-format
msgid "Devices Requiring Firmware"
msgstr "ãã¡ãŒã ãŠã§ã¢ãå¿
èŠãªããã€ã¹"
#. Tag: para
#: hardware.xml:1539
#, no-c-format
msgid ""
"Besides the availability of a device driver, some hardware also requires so-"
"called <firstterm>firmware</firstterm> or <firstterm>microcode</firstterm> "
"to be loaded into the device before it can become operational. This is most "
"common for network interface cards (especially wireless NICs), but for "
"example some USB devices and even some hard disk controllers also require "
"firmware."
msgstr ""
"ããã€ã¹ãã©ã€ãã®å¯çšæ§ãšã¯å¥ã«ãããã€ãã®ããŒããŠã§ã¢ã§ã¯ããããã "
"<firstterm>ãã¡ãŒã ãŠã§ã¢</firstterm> ã <firstterm>ãã€ã¯ãã³ãŒã</"
"firstterm> ãšãããã®ããããã€ã¹ãå©çšã§ããããã«ãªãåã«ãããã€ã¹ã«èªã¿èŸŒ"
"ãŸããå¿
èŠããããã®ããããŸãããã£ãšãäžè¬çãªã®ã¯ãããã¯ãŒã¯ã€ã³ã¿ãŒ"
"ãã§ãŒã¹ã«ãŒã (ç¹ã«ã¯ã€ã€ã¬ã¹ NIC) ã§ãããäŸãã° USB ããã€ã¹ãããŒããã£ã¹"
"ã¯ã³ã³ãããŒã©ã§ãããã¡ãŒã ãŠã§ã¢ãå¿
èŠãªãã®ããããŸãã"
#. Tag: para
#: hardware.xml:1547
#, no-c-format
msgid ""
"In most cases firmware is non-free according to the criteria used by the "
"&debian-gnu; project and thus cannot be included in the main distribution or "
"in the installation system. If the device driver itself is included in the "
"distribution and if &debian-gnu; legally can distribute the firmware, it "
"will often be available as a separate package from the non-free section of "
"the archive."
msgstr ""
"å€ãã®å Žåã&debian-gnu; ãããžã§ã¯ãã§äœ¿çšããåºæºã«ãããŠãnon-free (éã"
"ãªãŒ) ã§ãããããmain ãã£ã¹ããªãã¥ãŒã·ã§ã³ããã€ã³ã¹ããŒã«ã·ã¹ãã ã«å«ãã"
"ãšãã§ããŸãããããã€ã¹ãã©ã€ããã®ãã®ããã£ã¹ããªãã¥ãŒã·ã§ã³ã«å«ãŸãã"
"&debian-gnu; ãæ³çã«ãã¡ãŒã ãŠã§ã¢ãé
åžã§ããã®ã§ããã°ãã¢ãŒã«ã€ãã® non-"
"free ã»ã¯ã·ã§ã³ã«ç¬ç«ããããã±ãŒãžãšããŠãå©çšã§ããããšããã°ãã°ãããŸãã"
#. Tag: para
#: hardware.xml:1556
#, no-c-format
msgid ""
"However, this does not mean that such hardware cannot be used during an "
"installation. Starting with &debian-gnu; 5.0, &d-i; supports loading "
"firmware files or packages containing firmware from a removable medium, such "
"as a floppy disk or USB stick. See <xref linkend=\"loading-firmware\"/> for "
"detailed information on how to load firmware files or packages during the "
"installation."
msgstr ""
"ããããã®ããšã¯ããããã£ãããŒããŠã§ã¢ããã€ã³ã¹ããŒã«äžã«äœ¿çšã§ããªãããš"
"ãæå³ããããã§ã¯ãããŸããã&debian-gnu; 5.0, &d-i; ããã¯ããããããŒãã£"
"ã¹ã¯ã USB ã¡ã¢ãªãªã©ã®ãªã ãŒããã«ã¡ãã£ã¢ã«ããããã¡ãŒã ãŠã§ã¢ãã¡ã€ã«ã"
"ãã¡ãŒã ãŠã§ã¢ããã±ãŒãžã®èªã¿èŸŒã¿ããµããŒãããŠããŸããã©ã®ããã«ã€ã³ã¹ããŒ"
"ã«äžã«ãã¡ãŒã ãŠã§ã¢ãã¡ã€ã«ããã¡ãŒã ãŠã§ã¢ããã±ãŒãžãå©çšããã®ãããšãã£"
"ã詳现æ
å ±ã¯ã<xref linkend=\"loading-firmware\"/> ãã芧ãã ããã"
#. Tag: title
#: hardware.xml:1572
#, no-c-format
msgid "Purchasing Hardware Specifically for GNU/&arch-kernel;"
msgstr "GNU/&arch-kernel; ã«é©ããããŒããŠã§ã¢ã®è³Œå
¥"
#. Tag: para
#: hardware.xml:1574
#, no-c-format
msgid ""
"There are several vendors, who ship systems with &debian; or other "
"distributions of GNU/Linux <ulink url=\"&url-pre-installed;\">pre-installed</"
"ulink>. You might pay more for the privilege, but it does buy a level of "
"peace of mind, since you can be sure that the hardware is well-supported by "
"GNU/Linux."
msgstr ""
"&debian; ãä»ã® GNU/Linux ãã£ã¹ããªãã¥ãŒã·ã§ã³ã <ulink url=\"&url-pre-"
"installed;\">ããªã€ã³ã¹ããŒã«</ulink> ããã·ã¹ãã ãåºè·ããŠãããã³ãããã"
"ãŸããå€å°äœåãªãéãããããããããŸããããããçšåºŠã®å®å¿ã賌å
¥ã§ããããš"
"ã«ãªããŸãããã®ããŒããŠã§ã¢ã¯ GNU/Linux ã§ãã£ãããµããŒããããŠããããšã確"
"ä¿¡ã§ããããã§ãããã"
#. Tag: para
#: hardware.xml:1582
#, no-c-format
msgid ""
"If you do have to buy a machine with Windows bundled, carefully read the "
"software license that comes with Windows; you may be able to reject the "
"license and obtain a rebate from your vendor. Searching the Internet for "
"<quote>windows refund</quote> may get you some useful information to help "
"with that."
msgstr ""
"ãã Windows ããã³ãã«ããããã·ã³ãè²·ããããããªãå Žåã¯ãWindows ã«ä»å±ã"
"ããœãããŠã§ã¢ã©ã€ã»ã³ã¹ã泚ææ·±ãèªã¿ãŸãããããã®ã©ã€ã»ã³ã¹ãæåŠããŠã賌"
"å
¥å
ã®ãã³ãããæãæ»ããåããããšãã§ãããããããŸããã<quote>windows "
"refund</quote> ã«ã€ããŠã€ã³ã¿ãŒããããæ€çŽ¢ãããšãããã«ã€ããŠæçšãªæ
å ±ãæ"
"ã«ã¯ããããç¥ããŸããã"
#. Tag: para
#: hardware.xml:1590
#, no-c-format
msgid ""
"Whether or not you are purchasing a system with &arch-kernel; bundled, or "
"even a used system, it is still important to check that your hardware is "
"supported by the &arch-kernel; kernel. Check if your hardware is listed in "
"the references found above. Let your salesperson (if any) know that you're "
"shopping for a &arch-kernel; system. Support &arch-kernel;-friendly hardware "
"vendors."
msgstr ""
"&arch-kernel; ããã³ãã«ãããã·ã¹ãã ã賌å
¥ããå Žåã§ããäžå€ã®ã·ã¹ãã ã賌"
"å
¥ããå Žåã§ãããã®ããŒããŠã§ã¢ã &arch-kernel; ã«ãŒãã«ã§ãµããŒããããŠãã"
"ãæ¹ããŠç¢ºèªããããšãéèŠã§ããåè¿°ã®åèè³æã®äžã«ããã®ããŒããŠã§ã¢ãæã"
"ãããŠãããã©ããã確èªããŠãã ããã(ããããã°) 賌å
¥å
ã®è²©å£²å¡ã«ã¯ã&arch-"
"kernel; ã·ã¹ãã ã賌å
¥ããããšãäŒããŸãããããŸãã&arch-kernel; ã«å奜çãª"
"ããŒããŠã§ã¢ãã³ããæ¯æŽããŸãããã"
#. Tag: title
#: hardware.xml:1601
#, no-c-format
msgid "Avoid Proprietary or Closed Hardware"
msgstr "ç¬å çã»ééçãªããŒããŠã§ã¢ãé¿ãã"
#. Tag: para
#: hardware.xml:1602
#, no-c-format
msgid ""
"Some hardware manufacturers simply won't tell us how to write drivers for "
"their hardware. Others won't allow us access to the documentation without a "
"non-disclosure agreement that would prevent us from releasing the &arch-"
"kernel; source code."
msgstr ""
"ããããŒããŠã§ã¢ã¡ãŒã«ãŒã¯ãã©ã®ããã«ãã©ã€ããæžããããããããŸã£ããæã"
"ãŠãããŸããããŸãã&arch-kernel; ã®ãœãŒã¹ã³ãŒãå
¬éã劚ãã NDA (éå
¬éã®å"
"æ) ãããªãéããææžãèŠããŠãããªãã¡ãŒã«ãŒããããŸãã"
#. Tag: para
#: hardware.xml:1609
#, no-c-format
msgid ""
"Since we haven't been granted access to the documentation on these devices, "
"they simply won't work under &arch-kernel;. You can help by asking the "
"manufacturers of such hardware to release the documentation. If enough "
"people ask, they will realize that the free software community is an "
"important market."
msgstr ""
"ãããã®ããã€ã¹ã &arch-kernel; äžã§ãŸã£ããåäœããªãã®ã¯ãããã«é¢ããææž"
"ãèªãããšãèš±å¯ãããŠããªãããã§ãããã®ãããªããŒããŠã§ã¢ãäœã£ãŠããã¡ãŒ"
"ã«ãŒã«ãææžãå
¬éããããã«èŠè«ããŠãã ããããããããããã®äººãã¡ãèŠè«ã"
"ãã°ã圌ãã &arch-kernel; ãéèŠãªåžå Žã§ãããšèªèããã§ãããã"
#. Tag: title
#: hardware.xml:1621
#, no-c-format
msgid "Windows-specific Hardware"
msgstr "Windows ã«ç¹åããããŒããŠã§ã¢"
#. Tag: para
#: hardware.xml:1622
#, no-c-format
msgid ""
"A disturbing trend is the proliferation of Windows-specific modems and "
"printers. In some cases these are specially designed to be operated by the "
"Microsoft Windows operating system and bear the legend <quote>WinModem</"
"quote> or <quote>Made especially for Windows-based computers</quote>. This "
"is generally done by removing the embedded processors of the hardware and "
"shifting the work they do over to a Windows driver that is run by your "
"computer's main CPU. This strategy makes the hardware less expensive, but "
"the savings are often <emphasis>not</emphasis> passed on to the user and "
"this hardware may even be more expensive than equivalent devices that retain "
"their embedded intelligence."
msgstr ""
"Windows ã«ç¹åããã¢ãã ãããªã³ã¿ãæ¥å¢ãããšããè¿·æãªåŸåã«ãããŸãããã"
"ã㯠Microsoft Windows ã«ãã£ãŠåäœããããã«ç¹å¥ã«èšèšãããŠããŠã"
"<quote>WinModem</quote> ã ãšã <quote>Windows å°çšã³ã³ãã¥ãŒã¿åãç¹å¥ä»æ§</"
"quote> ãªã©ãšæ瀺ãããŠãããã®ããããŸããããã¯éåžžãããŒããŠã§ã¢ã«å
èµãã"
"ãããã»ããµãåãé€ãããã®ä»äºã Windows ãã©ã€ãã«ãã£ãŠ CPU ã«è©ä»£ããã"
"ããŠããŸãããã®æŠç¥ã¯ããŒããŠã§ã¢ãå®äŸ¡ã«ãããã®ã®ããã®ãããªç¯çŽããŠãŒã¶"
"ã«æ©æµãäžãããšã¯<emphasis>éããŸãã</emphasis>ããã®çš®ã®ããŒããŠã§ã¢ã¯ãå"
"çã®æ©èœãæã€ããŒããŠã§ã¢å
èµã®ãã®ãããé«äŸ¡ã«ãªãããšããããŸãã"
#. Tag: para
#: hardware.xml:1635
#, no-c-format
msgid ""
"You should avoid Windows-specific hardware for two reasons. The first is "
"that the manufacturers do not generally make the resources available to "
"write a &arch-kernel; driver. Generally, the hardware and software interface "
"to the device is proprietary, and documentation is not available without a "
"non-disclosure agreement, if it is available at all. This precludes it being "
"used for free software, since free software writers disclose the source code "
"of their programs. The second reason is that when devices like these have "
"had their embedded processors removed, the operating system must perform the "
"work of the embedded processors, often at <emphasis>real-time</emphasis> "
"priority, and thus the CPU is not available to run your programs while it is "
"driving these devices. Since the typical Windows user does not multi-process "
"as intensively as a &arch-kernel; user, the manufacturers hope that the "
"Windows user simply won't notice the burden this hardware places on their "
"CPU. However, any multi-processing operating system, even Windows 2000 or "
"XP, suffers from degraded performance when peripheral manufacturers skimp on "
"the embedded processing power of their hardware."
msgstr ""
"Windows ã«åºæã®ããŒããŠã§ã¢ã¯æ¬¡ã® 2 ã€ã®çç±ããé¿ããã¹ãã§ãã1 ã€ã¯è£œé "
"ã¡ãŒã«ãŒãäžè¬çã« &arch-kernel; çšã®ãã©ã€ããæžãããã«å¿
èŠãªæ
å ±ãå
¬éããª"
"ãããšã§ããäžè¬çã«ããŒããŠã§ã¢ããã³ãœãããŠã§ã¢ã®ããã€ã¹ãžã®ã€ã³ã¿ãŒ"
"ãã§ãŒã¹ã¯ééçãªãã®ã§ãããããããã«é¢ããææžãå©çšå¯èœã§ãã£ããšããŠ"
"ããé¢é£æ
å ±ã¯å
¬è¡šããªããšããåæãªãã«ã¯å©çšã§ããŸãããããªãŒãœãããŠã§ã¢"
"ã®éçºè
ã¯ããã°ã©ã ã®ãœãŒã¹ã³ãŒããå
¬éããã®ã§ããã®çš®ã®ããŒããŠã§ã¢ã¯ã"
"ãªãŒãœãããŠã§ã¢äžã§ã¯å©çšã§ããªããªããŸãã2 ã€ãã®çç±ã¯ããããã®ããŒã"
"ãŠã§ã¢ã«ã¯å
èµã®ããã»ããµããªãããããã®è©ä»£ãã OS ãããªããã°ãªããªããš"
"ããããšã§ããå
èµããã»ããµãè¡ãäœæ¥ã¯ãå€ãã®å Žå<emphasis>ãªã¢ã«ã¿ã€ã </"
"emphasis>åŠçãèŠããã®ã§ããã®è©ä»£ãããã OS ã¯ãã®äœæ¥ãåªå
ããŠå®è¡ããªã"
"ãã°ãªããŸããããã®çµæ CPU ã¯ãããã®ããã€ã¹ãå¶åŸ¡ããŠããéãä»ã®ããã°ã©"
"ã ãå®è¡ããããšãã§ããªããªããŸããå
žåç㪠Windows ãŠãŒã¶ã¯ &arch-kernel; "
"ãŠãŒã¶ã»ã©æ¿ãããã«ãããã»ã¹ãå©çšããªãã®ã§ã補é ã¡ãŒã«ãŒã¯ Windows ãŠãŒã¶"
"ãããŒããŠã§ã¢ã®è² è·ã CPU ã«çœ®ãæãã£ãŠããããšã«å®éã¯æ°ä»ããªãã ãããšé«"
"ãæ¬ã£ãŠããŸãã ããããåšèŸºæ©åšã®è£œé ã¡ãŒã«ãŒãããŒããŠã§ã¢å
ã®åŠçèœåãã±"
"ãã£ããšãããã«ãããã»ã¹ OS ã®ããã©ãŒãã³ã¹ã¯ãWindows 2000 ã XP ã§ããæª"
"ããªããŸãã"
#. Tag: para
#: hardware.xml:1656
#, no-c-format
#| msgid ""
#| "You can help improve this situation by encouraging these manufacturers to "
#| "release the documentation and other resources necessary for us to program "
#| "their hardware, but the best strategy is simply to avoid this sort of "
#| "hardware until it is listed as working in the <ulink url=\"&url-hardware-"
#| "howto;\">Linux Hardware Compatibility HOWTO</ulink>."
msgid ""
"You can help improve this situation by encouraging these manufacturers to "
"release the documentation and other resources necessary for us to program "
"their hardware, but the best strategy is simply to avoid this sort of "
"hardware<phrase arch=\"linux-any\"> until it is listed as working in the "
"<ulink url=\"&url-hardware-howto;\">Linux Hardware Compatibility HOWTO</"
"ulink></phrase>."
msgstr ""
"ãããã®è£œé ã¡ãŒã«ãŒã«ãããŒããŠã§ã¢ã®ããã°ã©ã ãäœãã®ã«å¿
èŠãªææžããã®ä»"
"ã®ãªãœãŒã¹ãå
¬éããããã«åãããããã®ãããªç¶æ³ãæ¹åããæå©ãã¯ããªãã«"
"ãã§ããŸããããããæãããæ¹æ³ã¯ã<phrase arch=\"linux-any\"><ulink url="
"\"&url-hardware-howto;\">Linux ããŒããŠã§ã¢äºææ§ HOWTO</ulink> ã«èŒããŸã§ã"
"</phrase>ãã®çš®ã®ããŒããŠã§ã¢ãé¿ããããšã§ãã"
#. Tag: title
#: hardware.xml:1674
#, no-c-format
msgid "Installation Media"
msgstr "ã€ã³ã¹ããŒã«ã«å©çšã§ããã¡ãã£ã¢"
#. Tag: para
#: hardware.xml:1676
#, no-c-format
msgid ""
"This section will help you determine which different media types you can use "
"to install &debian;. For example, if you have a floppy disk drive on your "
"machine, it can be used to install &debian;. There is a whole chapter "
"devoted to media, <xref linkend=\"install-methods\"/>, which lists the "
"advantages and disadvantages of each media type. You may want to refer back "
"to this page once you reach that section."
msgstr ""
"æ¬ç¯ã¯ã&debian; ãã€ã³ã¹ããŒã«ããã®ã«ãã©ã®ã¡ãã£ã¢ã䜿çšãããã決ããå©ã"
"ãšãªãã§ããããäŸãã°ããã·ã³ã«ãããããŒãã£ã¹ã¯ãã©ã€ããããã°ã&debian; "
"ãã€ã³ã¹ããŒã«ããã®ã«äœ¿çšããããšãã§ããŸããåã¡ãã£ã¢ã«å¯ŸããŠå©ç¹ãšæ¬ ç¹ã"
"æãããç« å
šäœãã¡ãã£ã¢ã«è²»ãããç« (<xref linkend=\"install-methods\"/>) ã"
"ãããŸãããã®ç« ããããã®ããŒãžãããäžåºŠåç
§ãããããããŸããã"
#. Tag: title
#: hardware.xml:1687
#, no-c-format
msgid "Floppies"
msgstr "ãããããŒãã£ã¹ã¯"
#. Tag: para
#: hardware.xml:1688
#, no-c-format
msgid ""
"In some cases, you'll have to do your first boot from floppy disks. "
"Generally, all you will need is a high-density (1440 kilobytes) 3.5 inch "
"floppy drive."
msgstr ""
"ããã€ãã®ç¶æ³ã§ã¯ãæåã®èµ·åã¯ãããããŒãã£ã¹ã¯ããè¡ãå¿
èŠãããã§ãã"
"ããéåžž 3.5 ã€ã³ãé«å¯åºŠ (1440 kB) ãããããŒãã©ã€ããããã°å
åã§ãã"
#. Tag: para
#: hardware.xml:1694
#, no-c-format
msgid "For CHRP, floppy support is currently broken."
msgstr "CHRP ã§ã¯ããããããŒã®ãµããŒãã¯ãçŸåšäžæããŠããŸãã"
#. Tag: title
#: hardware.xml:1701
#, no-c-format
msgid "CD-ROM/DVD-ROM"
msgstr "CD-ROM/DVD-ROM"
#. Tag: para
#: hardware.xml:1703
#, no-c-format
msgid ""
"Whenever you see <quote>CD-ROM</quote> in this manual, it applies to both CD-"
"ROMs and DVD-ROMs, because both technologies are really the same from the "
"operating system's point of view, except for some very old nonstandard CD-"
"ROM drives which are neither SCSI nor IDE/ATAPI."
msgstr ""
"ãã®ããã¥ã¢ã«ã§ <quote>CD-ROM</quote> ãšèšè¿°ããŠããå Žåã¯ããªãã¬ãŒãã£ã³ã°"
"ã·ã¹ãã ããèŠãŠç䟡ãªã®ã§ãCD-ROMã»DVD-ROM ãšèŠãªããŠãã ããã(SCSI ã§ã "
"IDE/ATAPI ã§ããªããããªãéåžžã«å€ãéæšæºãª CD-ROM ãã©ã€ããé€ã)"
#. Tag: para
#: hardware.xml:1710
#, no-c-format
msgid ""
"CD-ROM based installation is supported for some architectures. On machines "
"which support bootable CD-ROMs, you should be able to do a completely "
"<phrase arch=\"not-s390\">floppy-less</phrase> <phrase arch=\"s390\">tape-"
"less</phrase> installation. Even if your system doesn't support booting from "
"a CD-ROM, you can use the CD-ROM in conjunction with the other techniques to "
"install your system, once you've booted up by other means; see <xref linkend="
"\"boot-installer\"/>."
msgstr ""
"ããã€ãã®ã¢ãŒããã¯ãã£ã§ã¯ CD-ROM ããŒã¹ã®ã€ã³ã¹ããŒã«ããµããŒãããŠããŸ"
"ããèµ·åå¯èœãª CD-ROM ããµããŒããããã·ã³ã§ã¯ã<phrase arch=\"not-s390\">ã"
"ããããŒãå¿
èŠãšããªã</phrase> <phrase arch=\"s390\">ããŒããå¿
èŠãšããªã</"
"phrase> å®å
šãªã€ã³ã¹ããŒã«ãå¯èœã§ããCD-ROM ããã®èµ·åãã§ããªãã·ã¹ãã ã§"
"ã¯ããã®ã»ãã®ãã¯ããã¯ãçµã¿åãããã° ã€ã³ã¹ããŒã«ã« CD-ROM ã䜿ããŸãã"
"<xref linkend=\"boot-installer\"/> ãåç
§ããŠäžåºŠä»ã®æ¹æ³ã§èµ·åããŠãã ããã"
#. Tag: para
#: hardware.xml:1722
#, no-c-format
msgid ""
"SCSI, SATA and IDE/ATAPI CD-ROMs are supported. The <ulink url=\"&url-cd-"
"howto;\">Linux CD-ROM HOWTO</ulink> contains in-depth information on using "
"CD-ROMs with Linux."
msgstr ""
"SCSI, SATA, IDE/ATAPI CD-ROM ããµããŒãããŠããŸãã<ulink url=\"&url-cd-"
"howto;\">Linux CD-ROM HOWTO</ulink> ã«ã¯ãLinux 㧠CD-ROM ã䜿çšããéã®ãæ"
"ãäžããæ
å ±ããããŸãã"
#. Tag: para
#: hardware.xml:1728
#, no-c-format
msgid ""
"USB CD-ROM drives are also supported, as are FireWire devices that are "
"supported by the ohci1394 and sbp2 drivers."
msgstr ""
"ohci1394 ã sbp2 ãã©ã€ãã§ãµããŒãããŠãã FireWire ããã€ã¹ãšåæ§ãUSB CD-"
"ROM ãã©ã€ãããµããŒãããŠããŸãã"
#. Tag: para
#: hardware.xml:1733
#, no-c-format
msgid "IDE/ATAPI CD-ROMs are supported on all ARM machines."
msgstr "ãã¹ãŠã® ARM ãã·ã³ã§ IDE/ATAPI CD-ROM ããµããŒãããŠããŸãã"
#. Tag: para
#: hardware.xml:1737
#, no-c-format
msgid ""
"On SGI machines, booting from CD-ROM requires a SCSI CD-ROM drive capable of "
"working with a logical blocksize of 512 bytes. Many of the SCSI CD-ROM "
"drives sold on the PC market do not have this capability. If your CD-ROM "
"drive has a jumper labeled <quote>Unix/PC</quote> or <quote>512/2048</"
"quote>, place it in the <quote>Unix</quote> or <quote>512</quote> position. "
"To start the install, simply choose the <quote>System installation</quote> "
"entry in the firmware."
msgstr ""
"SGI ãã·ã³ã§ CD-ROM ããèµ·åããã«ã¯ã512 ãã€ãã®è«çãããã¯ãµã€ãºãæ±ãã "
"SCSI CD-ROM ãã©ã€ããå¿
èŠã§ããPC åãã«å£²ãããŠãã SCSI CD-ROM ã®å€ãã¯ã"
"ãã®æ©èœããããŸããããæã¡ã® CD-ROM ãã©ã€ãã« <quote>Unix/PC</quote> ãšã "
"<quote>512/2048</quote> ãšããã©ãã«ã®ã€ãããžã£ã³ãããã£ããã<quote>Unix</"
"quote> ãŸã㯠<quote>512</quote> ã®æ¹ã«ããŠãã ãããã€ã³ã¹ããŒã«ãã¯ãããã«"
"ã¯ããã¡ãŒã ãŠã§ã¢ã® <quote>System installation</quote> ãšã³ããªãåã«éžæã"
"ãŸãã"
#. Tag: title
#: hardware.xml:1751
#, no-c-format
msgid "Hard Disk"
msgstr "ããŒããã£ã¹ã¯"
#. Tag: para
#: hardware.xml:1753
#, no-c-format
msgid ""
"Booting the installation system directly from a hard disk is another option "
"for many architectures. This will require some other operating system to "
"load the installer onto the hard disk."
msgstr ""
"ããŒããã£ã¹ã¯ããã€ã³ã¹ããŒã«ã·ã¹ãã ãçŽæ¥ããŒãããã®ã¯ãå€ãã®ã¢ãŒããã¯"
"ãã£ã§äœ¿ããæ¹æ³ã§ããããã¯ä»ã® OS ã«ãããŒããã£ã¹ã¯äžã«ããã€ã³ã¹ããŒã©ã"
"ããŒãããããèŠæ±ããŸãã"
#. Tag: para
#: hardware.xml:1759
#, no-c-format
msgid ""
"Although the &arch-title; does not allow booting from SunOS (Solaris), you "
"can install from a SunOS partition (UFS slices)."
msgstr ""
"&arch-title; ã§ã¯ SunOS (Solaris) ããã®èµ·å㯠ãµããŒããããŠããŸãããã"
"SunOS ããŒãã£ã·ã§ã³ (UFS ã¹ã©ã€ã¹) ããã€ã³ã¹ããŒã«ããããšã¯å¯èœã§ãã"
#. Tag: title
#: hardware.xml:1767
#, no-c-format
msgid "USB Memory Stick"
msgstr "USB ã¡ã¢ãª"
#. Tag: para
#: hardware.xml:1769
#, no-c-format
msgid ""
"Many &debian; boxes need their floppy and/or CD-ROM drives only for setting "
"up the system and for rescue purposes. If you operate some servers, you will "
"probably already have thought about omitting those drives and using an USB "
"memory stick for installing and (when necessary) for recovering the system. "
"This is also useful for small systems which have no room for unnecessary "
"drives."
msgstr ""
"å€ãã® &debian; ããã¯ã¹ã§ã¯ã·ã¹ãã ã®ã»ããã¢ãããã¬ã¹ãã¥ãŒçšéã®ã¿ã«ã"
"ããããŒã»CD-ROM ãã©ã€ããå¿
èŠã§ããè€æ°ã®ãµãŒãã®æäœãããŠããå Žåããããª"
"ãã©ã€ããçç¥ã㊠USB ã¡ã¢ãªã䜿çšããŠãã·ã¹ãã ã®ã€ã³ã¹ããŒã«ã (å¿
èŠãªã) "
"修埩ããããšãæ¢ã«èããŠããããšã§ãããããŸããäžèŠãªãã©ã€ããæ ŒçŽããäœå°"
"ã®ãªããå°ããªã·ã¹ãã ã«å¯ŸããŠã䟿å©ã§ãã"
#. Tag: title
#: hardware.xml:1781
#, no-c-format
msgid "Network"
msgstr "ãããã¯ãŒã¯"
#. Tag: para
#: hardware.xml:1783
#, no-c-format
msgid ""
"The network can be used during the installation to retrieve files needed for "
"the installation. Whether the network is used or not depends on the "
"installation method you choose and your answers to certain questions that "
"will be asked during the installation. The installation system supports most "
"types of network connections (including PPPoE, but not ISDN or PPP), via "
"either HTTP or FTP. After the installation is completed, you can also "
"configure your system to use ISDN and PPP."
msgstr ""
"ã€ã³ã¹ããŒã«ã«å¿
èŠãªãã¡ã€ã«ãã€ã³ã¹ããŒã«äžã«ååŸããã®ã«ããããã¯ãŒã¯ã䜿"
"çšã§ããŸãããããã¯ãŒã¯ã䜿çšãããã©ããã¯ãããªããéžæããã€ã³ã¹ããŒã«æ¹"
"æ³ãšãã€ã³ã¹ããŒã«äžã®è³ªåãžã®çã«äŸåããŸããã€ã³ã¹ããŒã«ã·ã¹ãã ã¯ãããã"
"ã¯ãŒã¯ãžã®ã»ãšãã©ã®æ¥ç¶æ³ (PPPoE ãå«ããISDN ã PPP ã¯äžå¯) äžã§ã®ãHTTP "
"ãš FTP ã®ã©ã¡ããšããµããŒãããŠããŸããã€ã³ã¹ããŒã«å®äºåŸã«ãISDN ã PPP ã䜿"
"çšããããã«ã·ã¹ãã ã®èšå®ãã§ããŸãã"
#. Tag: para
#: hardware.xml:1793
#, no-c-format
msgid ""
"You can also <emphasis>boot</emphasis> the installation system over the "
"network. <phrase arch=\"mips;mipsel\">This is the preferred installation "
"technique for &arch-title;.</phrase>"
msgstr ""
"ãŸããã€ã³ã¹ããŒã«ã·ã¹ãã ãããããã¯ãŒã¯è¶ãã«<emphasis>èµ·å</emphasis>ãã"
"ããšãã§ããŸãã<phrase arch=\"mips;mipsel\">&arch-title; ã§ã¯ããã奜ãŸãã"
"ã§ãããã</phrase>"
#. Tag: para
#: hardware.xml:1799
#, no-c-format
msgid ""
"Diskless installation, using network booting from a local area network and "
"NFS-mounting of all local filesystems, is another option."
msgstr ""
"ãããã¯ãŒã¯è¶ãã«èµ·åãè¡ãããã¹ãŠã®ããŒã«ã«ãã¡ã€ã«ã·ã¹ãã ã NFS ã§ããŠã³"
"ãããŠããã£ã¹ã¯ã¬ã¹ã€ã³ã¹ããŒã«ãããããšãäžã€ã®éžæã§ãã"
#. Tag: title
#: hardware.xml:1807
#, no-c-format
msgid "Un*x or GNU system"
msgstr "Un*xã»GNU ã·ã¹ãã "
#. Tag: para
#: hardware.xml:1809
#, no-c-format
msgid ""
"If you are running another Unix-like system, you could use it to install "
"&debian-gnu; without using the &d-i; described in the rest of this manual. "
"This kind of install may be useful for users with otherwise unsupported "
"hardware or on hosts which can't afford downtime. If you are interested in "
"this technique, skip to the <xref linkend=\"linux-upgrade\"/>."
msgstr ""
"ä»ã® Unix ã©ã€ã¯ã·ã¹ãã ã皌åããŠããã°ãæ¬ããã¥ã¢ã«ã®æ®ãã§èª¬æããŠãã "
"&d-i; ã䜿çšããªãã§ã&debian-gnu; ãã€ã³ã¹ããŒã«ã§ããŸãããã®ã€ã³ã¹ããŒã«æ¹"
"æ³ãªããä»ã®æ¹æ³ã§ã¯ãµããŒãããªãããŒããŠã§ã¢ããããŠã³ã¿ã€ã ãçšæã§ããªã"
"ãŠãŒã¶ã«ãšã£ãŠäŸ¿å©ã§ãããã®æ¹æ³ã«èå³ãããã°ã<xref linkend=\"linux-upgrade"
"\"/> ãžã¹ãããããŠãã ããã"
#. Tag: title
#: hardware.xml:1821
#, no-c-format
msgid "Supported Storage Systems"
msgstr "ãµããŒãããèšæ¶è£
眮"
#. Tag: para
#: hardware.xml:1823
#, no-c-format
msgid ""
"The &debian; boot disks contain a kernel which is built to maximize the "
"number of systems it runs on. Unfortunately, this makes for a larger kernel, "
"which includes many drivers that won't be used for your machine<phrase arch="
"\"linux-any\"> (see <xref linkend=\"kernel-baking\"/> to learn how to build "
"your own kernel)</phrase>. Support for the widest possible range of devices "
"is desirable in general, to ensure that &debian; can be installed on the "
"widest array of hardware."
msgstr ""
"&debian; ã®èµ·åãã£ã¹ã¯ã«ã¯ãæ§ã
ãªã·ã¹ãã ã«æ倧é察å¿ããã«ãŒãã«ãåããã"
"ãŠããŸãããã®ããæ®å¿µãªããããŸã£ãã䜿ãããããšã®ãªãããããã®ãã©ã€ãã"
"ã«ãŒãã«ãè¥å€§åãããŠããŸã<phrase arch=\"linux-any\"> (åæ§ç¯ã®ä»æ¹ã¯ "
"<xref linkend=\"kernel-baking\"/> ãã芧ãã ãã)</phrase>ãããããæ§ã
ãª"
"ããŒããŠã§ã¢ãžç¢ºå®ã« &debian; ãã€ã³ã¹ããŒã«ããã«ã¯ã§ããã ãå¹
åºãããã€ã¹"
"ããµããŒãããã®ãæãŸããã§ãããã"
#. Tag: para
#: hardware.xml:1833
#, no-c-format
msgid ""
"Generally, the &debian; installation system includes support for floppies, "
"IDE (also known as PATA) drives, IDE floppies, parallel port IDE devices, "
"SATA and SCSI controllers and drives, USB, and FireWire. The supported file "
"systems include FAT, Win-32 FAT extensions (VFAT) and NTFS."
msgstr ""
"äžè¬çã« &debian; ã®ã€ã³ã¹ããŒã©ã¯ããããããŒã (PATA ãšããŠãç¥ããã) IDE"
"ãã©ã€ããIDE ãããããŒããã©ã¬ã«ããŒãã® IDE ããã€ã¹ãSATA ã SCSI ã³ã³ã"
"ããŒã©ãšãã©ã€ããUSBãFireWire ããµããŒãããŠããŸãããµããŒãããŠãããã¡ã€"
"ã«ã·ã¹ãã ã¯ãFATãWin-32 æ¡åŒµ FAT (VFAT)ãNTFS ã§ãã"
#. Tag: para
#: hardware.xml:1840
#, no-c-format
msgid ""
"Disk interfaces that emulate the <quote>AT</quote> hard disk interface "
"— often called MFM, RLL, IDE, or PATA — are supported. SATA and "
"SCSI disk controllers from many different manufacturers are supported. See "
"the <ulink url=\"&url-hardware-howto;\">Linux Hardware Compatibility HOWTO</"
"ulink> for more details."
msgstr ""
"MFMãRLLãIDEãPATA ãšãã£ã <quote>AT</quote> ããŒããã£ã¹ã¯ã€ã³ã¿ãŒãã§ãŒã¹"
"ããšãã¥ã¬ãŒãããããã£ã¹ã¯ã€ã³ã¿ãŒãã§ãŒã¹ããµããŒãããŠããŸãããŸããå€ã"
"ã®ã¡ãŒã«ãŒã® SATA ã SCSI ãã£ã¹ã¯ã³ã³ãããŒã©ããµããŒãããŠããŸãã詳现㯠"
"<ulink url=\"&url-hardware-howto;\">Linux ããŒããŠã§ã¢äºææ§ HOWTO</ulink> ã"
"ã芧ãã ããã"
#. Tag: para
#: hardware.xml:1848
#, no-c-format
msgid ""
"Any storage system supported by the Linux kernel is also supported by the "
"boot system. The following SCSI drivers are supported in the default kernel: "
"<itemizedlist> <listitem><para> Sparc ESP </para></listitem> "
"<listitem><para> PTI Qlogic,ISP </para></listitem> <listitem><para> Adaptec "
"AIC7xxx </para></listitem> <listitem><para> NCR and Symbios 53C8XX </para></"
"listitem> </itemizedlist> IDE systems (such as the UltraSPARC 5) are also "
"supported. See <ulink url=\"&url-sparc-linux-faq;\">Linux for SPARC "
"Processors FAQ</ulink> for more information on SPARC hardware supported by "
"the Linux kernel."
msgstr ""
"Linux ã«ãŒãã«ã§ãµããŒããããå€éšèšæ¶è£
眮ã¯ããã¹ãŠãã®ããŒãã·ã¹ãã ã§ããµ"
"ããŒããããŠããŸãã以äžã® SCSI ãã©ã€ããããã©ã«ãã®ã«ãŒãã«ã§ãµããŒããã"
"ãŠããŸãã<itemizedlist> <listitem><para> Sparc ESP </para></listitem> "
"<listitem><para> PTI Qlogic,ISP </para></listitem> <listitem><para> Adaptec "
"AIC7xxx </para></listitem> <listitem><para> NCR and Symbios 53C8XX </para></"
"listitem> </itemizedlist> ãŸãã(UltraSPARC 5 ã®ãããª) IDE ã·ã¹ãã ããµããŒ"
"ããããŠããŸããLinux ã«ãŒãã«ã«ãã SPARC ããŒããŠã§ã¢ã®ãµããŒãã«é¢ãã詳ã"
"ãæ
å ±ã¯ <ulink url=\"&url-sparc-linux-faq;\">SPARC ããã»ããµçš Linux FAQ</"
"ulink> ãã芧ãã ããã"
#. Tag: para
#: hardware.xml:1881
#, no-c-format
msgid ""
"Any storage system supported by the Linux kernel is also supported by the "
"boot system. Note that the current Linux kernel does not support floppies on "
"CHRP systems at all."
msgstr ""
"Linux ã«ãŒãã«ã§ãµããŒããããå€éšèšæ¶è£
眮ã¯ããã¹ãŠãã®ããŒãã·ã¹ãã ã§ããµ"
"ããŒããããŠããŸãããã ãçŸè¡ã® Linux ã«ãŒãã«ã¯ãCHRP ã·ã¹ãã ã®ãããããŒ"
"ããŸã£ãããµããŒãããŠããªãããšã«ã泚æãã ããã"
#. Tag: para
#: hardware.xml:1887
#, no-c-format
msgid ""
"Any storage system supported by the Linux kernel is also supported by the "
"boot system. Note that the current Linux kernel does not support the floppy "
"drive."
msgstr ""
"Linux ã«ãŒãã«ã§ãµããŒããããå€éšèšæ¶è£
眮ã¯ããã¹ãŠãã®ããŒãã·ã¹ãã ã§ããµ"
"ããŒããããŠããŸãããã ããçŸè¡ã® Linux ã«ãŒãã«ã¯ããããããŒãã©ã€ãããµ"
"ããŒãããŠããªãããšã«ã泚æãã ããã"
#. Tag: para
#: hardware.xml:1893
#, no-c-format
msgid ""
"Any storage system supported by the Linux kernel is also supported by the "
"boot system."
msgstr ""
"Linux ã«ãŒãã«ã§ãµããŒããããå€éšèšæ¶è£
眮ã¯ããã¹ãŠãã®ããŒãã·ã¹ãã ã§ããµ"
"ããŒããããŠããŸãã"
#. Tag: para
#: hardware.xml:1898
#, no-c-format
msgid ""
"Any storage system supported by the Linux kernel is also supported by the "
"boot system. This means that FBA and ECKD DASDs are supported with the old "
"Linux disk layout (ldl) and the new common S/390 disk layout (cdl)."
msgstr ""
"Linux ã«ãŒãã«ã§ãµããŒããããå€éšèšæ¶è£
眮ã¯ããã¹ãŠãã®ããŒãã·ã¹ãã ã§ããµ"
"ããŒããããŠããŸãããã㯠FBA ã ECKD DASD ãå€ã Linux ãã£ã¹ã¯ã¬ã€ã¢ãŠã "
"(ldl) ããæ°ãã S/390 å
±éãã£ã¹ã¯ã¬ã€ã¢ãŠã (cdl) ããµããŒããããšããããš"
"ã§ãã"
#. Tag: title
#: hardware.xml:1915
#, no-c-format
msgid "Memory and Disk Space Requirements"
msgstr "å¿
èŠãªã¡ã¢ãªãšãã£ã¹ã¯ã¹ããŒã¹"
#. Tag: para
#: hardware.xml:1917
#, no-c-format
msgid ""
"You must have at least &minimum-memory; of memory and &minimum-fs-size; of "
"hard disk space to perform a normal installation. Note that these are fairly "
"minimal numbers. For more realistic figures, see <xref linkend=\"minimum-"
"hardware-reqts\"/>."
msgstr ""
"éåžžã®ã€ã³ã¹ããŒã«ãè¡ãã«ã¯ãå°ãªããšã &minimum-memory; ã® RAM ãš &minimum-"
"fs-size; ã®ããŒããã£ã¹ã¯é åãå¿
èŠã§ããããã¯ãæ¬åœã«æå°éã®å€ã ãšããããš"
"ã«æ³šæããŠãã ãããçŸå®çãªå€ã¯ã<xref linkend=\"minimum-hardware-reqts\"/> "
"ãã芧ãã ããã"
#. Tag: para
#: hardware.xml:1924
#, no-c-format
msgid ""
"Installation on systems with less memory<footnote condition=\"gtk\"> <para> "
"Installation images that support the graphical installer require more memory "
"than images that support only the textual installer and should not be used "
"on systems with less than &minimum-memory; of memory. If there is a choice "
"between booting the regular and the graphical installer, the former should "
"be selected. </para> </footnote> or disk space available may be possible but "
"is only advised for experienced users."
msgstr ""
"ã¡ã¢ãªããã£ã¹ã¯é åãå°ãªãã·ã¹ãã <footnote condition=\"gtk\"> <para>ã°ã©"
"ãã£ã«ã«ã€ã³ã¹ããŒã©ããµããŒãããã€ã³ã¹ããŒã«ã€ã¡ãŒãžã¯ãããã¹ãã€ã³ã¹ããŒ"
"ã©ã®ã¿ããµããŒãããã€ã¡ãŒãžãããã¡ã¢ãªãå¿
èŠã§ã&minimum-memory; æªæºã®ã·ã¹"
"ãã ã§äœ¿çšããã¹ãã§ã¯ãããŸãããéåžžã®ã€ã³ã¹ããŒã©ãã°ã©ãã£ã«ã«ã€ã³ã¹ããŒ"
"ã©ãéžã¶éžæè¢ã衚瀺ãããå Žåã¯ãåè
ãéžæããŠãã ããã</para> </footnote>"
"ãžã®ã€ã³ã¹ããŒã«ãå¯èœã§ãããçµéšãç©ãã ãŠãŒã¶ã«ã®ã¿ãå§ãããŸãã"
#~ msgid ""
#~ "Complete information regarding supported S/390 and zSeries machines can "
#~ "be found in IBM's Redbook <ulink url=\"http://www.redbooks.ibm.com/pubs/"
#~ "pdfs/redbooks/sg246264.pdf\"> Linux for IBM eServer zSeries and S/390: "
#~ "Distributions</ulink> in chapter 2.1 or at the <ulink url=\"http://"
#~ "www-128.ibm.com/developerworks/linux/linux390/index.html\">zSeries page "
#~ "at the developerWorks</ulink>. In short, G5, Multiprise 3000, G6 and all "
#~ "zSeries are fully supported; Multiprise 2000, G3 and G4 machines are "
#~ "supported with IEEE floating point emulation and thus degraded "
#~ "performance."
#~ msgstr ""
#~ "S/390 ã zSeries ãã·ã³ã«ã€ããŠã®å®å
šãªæ
å ±ã¯ãIBM ã® ã¬ãããã㯠2.1 ç« "
#~ "å
ã® <ulink url=\"http://www.redbooks.ibm.com/pubs/pdfs/redbooks/sg246264."
#~ "pdf\"> Linux for IBM eServer zSeries and S/390: Distributions</ulink> ãã"
#~ "<ulink url=\"http://www-128.ibm.com/developerworks/linux/linux390/index."
#~ "html\">zSeries page at the developerWorks</ulink> ã§èŠã€ãããŸããèŠãã"
#~ "ã«ãG5, Multiprise 3000, G6 ããã³å
š zSeries ã¯ãã«ãµããŒããMultiprise "
#~ "2000, G3, G4 ã¯ããã©ãŒãã³ã¹ãäœäžããŸãããIEEE æµ®åå°æ°ç¹æŒç®ãšãã¥ã¬ãŒ"
#~ "ã·ã§ã³ã§ãµããŒãããŠããŸãã"
#~ msgid "DEC Alpha"
#~ msgstr "DEC Alpha"
#~ msgid "alpha"
#~ msgstr "alpha"
#~ msgid ""
#~ "Complete information regarding supported DEC Alphas can be found at "
#~ "<ulink url=\"&url-alpha-howto;\">Linux Alpha HOWTO</ulink>. The purpose "
#~ "of this section is to describe the systems supported by the boot disks."
#~ msgstr ""
#~ "DEC Alpha ã®ãµããŒãç¶æ³ã«é¢ããå®å
šãªæ
å ±ã«ã€ããŠã¯ã<ulink url=\"&url-"
#~ "alpha-howto;\">Linux Alpha HOWTO</ulink> ãåç
§ããŠãã ããããã®ç¯ã®ç®ç"
#~ "ã¯ãèµ·åãã£ã¹ã¯ããµããŒãããæ©çš®ã«ã€ããŠèª¬æããããšã§ãã"
#~ msgid ""
#~ "Alpha machines are subdivided into different system types because there "
#~ "are a number of generations of motherboard and supporting chipsets. "
#~ "Different systems (<quote>sub-architectures</quote>) often have radically "
#~ "different engineering and capabilities. Therefore, the process of "
#~ "installing and, more to the point, booting, can vary from system to "
#~ "system."
#~ msgstr ""
#~ "Alpha ãã·ã³ã¯ããã¶ãŒããŒããšãµããŒããããããã»ããã«è€æ°ã®äžä»£ãããã"
#~ "ããè€æ°ã®æ©çš®ã«åé¡ãããŠããŸããAlpha ã§ã¯æ©çš® (<quote>ãµãã¢ãŒããã¯"
#~ "ãã£</quote>) ã®éãã«ãã£ãŠçšããããŠããæè¡ãšæ§èœãåçã«éãããšãå€"
#~ "ãããã®ãããã€ã³ã¹ããŒã«ããã»ã¹ãããé©åã«ã¯ããŒãããã»ã¹ãã·ã¹ãã ã«"
#~ "ãã£ãŠç°ãªããŸãã"
#~ msgid ""
#~ "The following table lists the system types supported by the Debian "
#~ "installation system. The table also indicates the <emphasis>code name</"
#~ "emphasis> for these system types. You'll need to know this code name when "
#~ "you actually begin the installation process:"
#~ msgstr ""
#~ "以äžã®è¡šã« Debian ã®ã€ã³ã¹ããŒã©ã§ãµããŒããããæ©çš®ãæããŸããåæã«ã·ã¹"
#~ "ãã ã¿ã€ãã«å¯Ÿå¿ãã<emphasis>ã³ãŒãããŒã </emphasis>ã瀺ããŸããå®éã«ã€"
#~ "ã³ã¹ããŒã«äœæ¥ãå§ããåã«ãã®ã³ãŒãããŒã ã調ã¹ãŠããå¿
èŠããããŸãã"
#~ msgid "Hardware Type"
#~ msgstr "ããŒããŠã§ã¢ã¿ã€ã"
#~ msgid "Aliases"
#~ msgstr "å¥å"
#~ msgid "MILO image"
#~ msgstr "MILO ã€ã¡ãŒãž"
#~ msgid "ALCOR"
#~ msgstr "ALCOR"
#~ msgid "AlphaStation 500 5/266.300"
#~ msgstr "AlphaStation 500 5/266.300"
#~ msgid "Maverick"
#~ msgstr "Maverick"
#~ msgid "alcor"
#~ msgstr "alcor"
#~ msgid "AlphaStation 500 5/333...500"
#~ msgstr "AlphaStation 500 5/333...500"
#~ msgid "Bret"
#~ msgstr "Bret"
#~ msgid "AlphaStation 600/266...300"
#~ msgstr "AlphaStation 600/266...300"
#~ msgid "Alcor"
#~ msgstr "Alcor"
#~ msgid "AlphaStation 600/300...433"
#~ msgstr "AlphaStation 600/300...433"
#~ msgid "<entry>XLT</entry>"
#~ msgstr "<entry>XLT</entry>"
#~ msgid "<entry>xlt</entry>"
#~ msgstr "<entry>xlt</entry>"
#~ msgid "BOOK1"
#~ msgstr "BOOK1"
#~ msgid "AlphaBook1 (laptop)"
#~ msgstr "AlphaBook1 (ã©ããããã)"
#~ msgid "Alphabook1/Burns"
#~ msgstr "Alphabook1/Burns"
#~ msgid "book1"
#~ msgstr "book1"
#~ msgid "AVANTI"
#~ msgstr "AVANTI"
#~ msgid "AlphaStation 200 4/100...166"
#~ msgstr "AlphaStation 200 4/100...166"
#~ msgid "Mustang"
#~ msgstr "Mustang"
#~ msgid "avanti"
#~ msgstr "avanti"
#~ msgid "AlphaStation 200 4/233"
#~ msgstr "AlphaStation 200 4/233"
#~ msgid "Mustang+"
#~ msgstr "Mustang+"
#~ msgid "AlphaStation 205 4/133...333"
#~ msgstr "AlphaStation 205 4/133...333"
#~ msgid "<entry>LX3</entry>"
#~ msgstr "<entry>LX3</entry>"
#~ msgid "AlphaStation 250 4/300"
#~ msgstr "AlphaStation 250 4/300"
#~ msgid "<entry>M3+</entry>"
#~ msgstr "<entry>M3+</entry>"
#~ msgid "AlphaStation 255 4/133...333"
#~ msgstr "AlphaStation 255 4/133...333"
#~ msgid "LX3+"
#~ msgstr "LX3+"
#~ msgid "AlphaStation 300 4/266"
#~ msgstr "AlphaStation 300 4/266"
#~ msgid "Melmac"
#~ msgstr "Melmac"
#~ msgid "AlphaStation 400 4/166"
#~ msgstr "AlphaStation 400 4/166"
#~ msgid "Chinet"
#~ msgstr "Chinet"
#~ msgid "AlphaStation 400 4/233...300"
#~ msgstr "AlphaStation 400 4/233...300"
#~ msgid "Avanti"
#~ msgstr "Avanti"
#~ msgid "EB164"
#~ msgstr "EB164"
#~ msgid "AlphaPC164"
#~ msgstr "AlphaPC164"
#~ msgid "PC164"
#~ msgstr "PC164"
#~ msgid "pc164"
#~ msgstr "pc164"
#~ msgid "AlphaPC164-LX"
#~ msgstr "AlphaPC164-LX"
#~ msgid "LX164"
#~ msgstr "LX164"
#~ msgid "lx164"
#~ msgstr "lx164"
#~ msgid "AlphaPC164-SX"
#~ msgstr "AlphaPC164-SX"
#~ msgid "SX164"
#~ msgstr "SX164"
#~ msgid "sx164"
#~ msgstr "sx164"
#~ msgid "eb164"
#~ msgstr "eb164"
#~ msgid "EB64+"
#~ msgstr "EB64+"
#~ msgid "AlphaPC64"
#~ msgstr "AlphaPC64"
#~ msgid "Cabriolet"
#~ msgstr "Cabriolet"
#~ msgid "cabriolet"
#~ msgstr "cabriolet"
#~ msgid "AlphaPCI64"
#~ msgstr "AlphaPCI64"
#~ msgid "eb64p"
#~ msgstr "eb64p"
#~ msgid "EB66"
#~ msgstr "EB66"
#~ msgid "eb66"
#~ msgstr "eb66"
#~ msgid "EB66+"
#~ msgstr "EB66+"
#~ msgid "eb66p"
#~ msgstr "eb66p"
#~ msgid "JENSEN"
#~ msgstr "JENSEN"
#~ msgid "DEC 2000 Model 300(S)"
#~ msgstr "DEC 2000 Model 300(S)"
#~ msgid "Jensen"
#~ msgstr "Jensen"
#~ msgid "<entry>N/A</entry>"
#~ msgstr "<entry>ãªã</entry>"
#~ msgid "DEC 2000 Model 500"
#~ msgstr "DEC 2000 Model 500"
#~ msgid "Culzen"
#~ msgstr "Culzen"
#~ msgid "DECpc 150"
#~ msgstr "DECpc 150"
#~ msgid "MIATA"
#~ msgstr "MIATA"
#~ msgid "Personal WorkStation 433a"
#~ msgstr "Personal WorkStation 433a"
#~ msgid "Miata"
#~ msgstr "Miata"
#~ msgid "miata"
#~ msgstr "miata"
#~ msgid "Personal WorkStation 433au"
#~ msgstr "Personal WorkStation 433au"
#~ msgid "Personal WorkStation 466au"
#~ msgstr "Personal WorkStation 466au"
#~ msgid "Personal WorkStation 500a"
#~ msgstr "Personal WorkStation 500a"
#~ msgid "Personal WorkStation 500au"
#~ msgstr "Personal WorkStation 500au"
#~ msgid "Personal WorkStation 550au"
#~ msgstr "Personal WorkStation 550au"
#~ msgid "Personal WorkStation 600a"
#~ msgstr "Personal WorkStation 600a"
#~ msgid "Personal WorkStation 600au"
#~ msgstr "Personal WorkStation 600au"
#~ msgid "MIKASA"
#~ msgstr "MIKASA"
#~ msgid "AlphaServer 1000 4/200"
#~ msgstr "AlphaServer 1000 4/200"
#~ msgid "Mikasa"
#~ msgstr "Mikasa"
#~ msgid "mikasa"
#~ msgstr "mikasa"
#~ msgid "AlphaServer 1000 4/233..266"
#~ msgstr "AlphaServer 1000 4/233..266"
#~ msgid "Mikasa+"
#~ msgstr "Mikasa+"
#~ msgid "AlphaServer 1000 5/300"
#~ msgstr "AlphaServer 1000 5/300"
#~ msgid "Mikasa-Pinnacle"
#~ msgstr "Mikasa-Pinnacle"
#~ msgid "Mikasa-Primo"
#~ msgstr "Mikasa-Primo"
#~ msgid "NAUTILUS"
#~ msgstr "NAUTILUS"
#~ msgid "UP1000"
#~ msgstr "UP1000"
#~ msgid "Nautilus"
#~ msgstr "Nautilus"
#~ msgid "UP1100"
#~ msgstr "UP1100"
#~ msgid "Galaxy-Train/Nautilus Jr."
#~ msgstr "Galaxy-Train/Nautilus Jr."
#~ msgid "NONAME"
#~ msgstr "NONAME"
#~ msgid "AXPpci33"
#~ msgstr "AXPpci33"
#~ msgid "Noname"
#~ msgstr "Noname"
#~ msgid "noname"
#~ msgstr "noname"
#~ msgid "<entry>UDB</entry>"
#~ msgstr "<entry>UDB</entry>"
#~ msgid "Multia"
#~ msgstr "Multia"
#~ msgid "NORITAKE"
#~ msgstr "NORITAKE"
#~ msgid "AlphaServer 1000A 4/233...266"
#~ msgstr "AlphaServer 1000A 4/233...266"
#~ msgid "Noritake"
#~ msgstr "Noritake"
#~ msgid "AlphaServer 1000A 5/300"
#~ msgstr "AlphaServer 1000A 5/300"
#~ msgid "Noritake-Pinnacle"
#~ msgstr "Noritake-Pinnacle"
#~ msgid "AlphaServer 1000A 5/333...500"
#~ msgstr "AlphaServer 1000A 5/333...500"
#~ msgid "Noritake-Primo"
#~ msgstr "Noritake-Primo"
#~ msgid "AlphaServer 800 5/333...500"
#~ msgstr "AlphaServer 800 5/333...500"
#~ msgid "Corelle"
#~ msgstr "Corelle"
#~ msgid "AlphaStation 600 A"
#~ msgstr "AlphaStation 600 A"
#~ msgid "Alcor-Primo"
#~ msgstr "Alcor-Primo"
#~ msgid "Digital Server 3300"
#~ msgstr "Digital Server 3300"
#~ msgid "Digital Server 3300R"
#~ msgstr "Digital Server 3300R"
#~ msgid "PLATFORM 2000"
#~ msgstr "PLATFORM 2000"
#~ msgid "<entry>P2K</entry>"
#~ msgstr "<entry>P2K</entry>"
#~ msgid "<entry>p2k</entry>"
#~ msgstr "<entry>p2k</entry>"
#~ msgid "RAWHIDE"
#~ msgstr "RAWHIDE"
#~ msgid "AlphaServer 1200 5/xxx"
#~ msgstr "AlphaServer 1200 5/xxx"
#~ msgid "Tincup/DaVinci"
#~ msgstr "Tincup/DaVinci"
#~ msgid "AlphaServer 4000 5/xxx"
#~ msgstr "AlphaServer 4000 5/xxx"
#~ msgid "Wrangler/Durango"
#~ msgstr "Wrangler/Durango"
#~ msgid "AlphaServer 4100 5/xxx"
#~ msgstr "AlphaServer 4100 5/xxx"
#~ msgid "Dodge"
#~ msgstr "Dodge"
#~ msgid "Digital Server 5300"
#~ msgstr "Digital Server 5300"
#~ msgid "Digital Server 7300"
#~ msgstr "Digital Server 7300"
#~ msgid "RUFFIAN"
#~ msgstr "RUFFIAN"
#~ msgid "DeskStation AlphaPC164-UX"
#~ msgstr "DeskStation AlphaPC164-UX"
#~ msgid "Ruffian"
#~ msgstr "Ruffian"
#~ msgid "ruffian"
#~ msgstr "ruffian"
#~ msgid "DeskStation RPL164-2"
#~ msgstr "DeskStation RPL164-2"
#~ msgid "DeskStation RPL164-4"
#~ msgstr "DeskStation RPL164-4"
#~ msgid "DeskStation RPX164-2"
#~ msgstr "DeskStation RPX164-2"
#~ msgid "DeskStation RPX164-4"
#~ msgstr "DeskStation RPX164-4"
#~ msgid "Samsung AlphaPC164-BX"
#~ msgstr "Samsung AlphaPC164-BX"
#~ msgid "SABLE"
#~ msgstr "SABLE"
#~ msgid "AlphaServer 2000 4/xxx"
#~ msgstr "AlphaServer 2000 4/xxx"
#~ msgid "Demi-Sable"
#~ msgstr "Demi-Sable"
#~ msgid "AlphaServer 2000 5/xxx"
#~ msgstr "AlphaServer 2000 5/xxx"
#~ msgid "Demi-Gamma-Sable"
#~ msgstr "Demi-Gamma-Sable"
#~ msgid "AlphaServer 2100 4/xxx"
#~ msgstr "AlphaServer 2100 4/xxx"
#~ msgid "Sable"
#~ msgstr "Sable"
#~ msgid "AlphaServer 2100 5/xxx"
#~ msgstr "AlphaServer 2100 5/xxx"
#~ msgid "Gamma-Sable"
#~ msgstr "Gamma-Sable"
#~ msgid "TAKARA"
#~ msgstr "TAKARA"
#~ msgid "21164 PICMG SBC"
#~ msgstr "21164 PICMG SBC"
#~ msgid "Takara"
#~ msgstr "Takara"
#~ msgid "takara"
#~ msgstr "takara"
#~ msgid "TITAN"
#~ msgstr "TITAN"
#~ msgid "AlphaServer DS15"
#~ msgstr "AlphaServer DS15"
#~ msgid "HyperBrick2"
#~ msgstr "HyperBrick2"
#~ msgid "AlphaServer DS25"
#~ msgstr "AlphaServer DS25"
#~ msgid "Granite"
#~ msgstr "Granite"
#~ msgid "AlphaServer ES45"
#~ msgstr "AlphaServer ES45"
#~ msgid "Privateer"
#~ msgstr "Privateer"
#~ msgid "UNKNOWN"
#~ msgstr "UNKNOWN"
#~ msgid "Yukon"
#~ msgstr "Yukon"
#~ msgid "TSUNAMI"
#~ msgstr "TSUNAMI"
#~ msgid "AlphaServer DS10"
#~ msgstr "AlphaServer DS10"
#~ msgid "Webbrick"
#~ msgstr "Webbrick"
#~ msgid "AlphaServer DS10L"
#~ msgstr "AlphaServer DS10L"
#~ msgid "Slate"
#~ msgstr "Slate"
#~ msgid "AlphaServer DS20"
#~ msgstr "AlphaServer DS20"
#~ msgid "Catamaran/Goldrush"
#~ msgstr "Catamaran/Goldrush"
#~ msgid "AlphaServer DS20E"
#~ msgstr "AlphaServer DS20E"
#~ msgid "Goldrack"
#~ msgstr "Goldrack"
#~ msgid "AlphaServer DS20L"
#~ msgstr "AlphaServer DS20L"
#~ msgid "Shark"
#~ msgstr "Shark"
#~ msgid "AlphaServer ES40"
#~ msgstr "AlphaServer ES40"
#~ msgid "Clipper"
#~ msgstr "Clipper"
#~ msgid "DP264"
#~ msgstr "DP264"
#~ msgid "SMARTengine 21264 PCI/ISA SBC"
#~ msgstr "SMARTengine 21264 PCI/ISA SBC"
#~ msgid "Eiger"
#~ msgstr "Eiger"
#~ msgid "Warhol"
#~ msgstr "Warhol"
#~ msgid "Windjammer"
#~ msgstr "Windjammer"
#~ msgid "UP2000"
#~ msgstr "UP2000"
#~ msgid "Swordfish"
#~ msgstr "Swordfish"
#~ msgid "XP1000"
#~ msgstr "XP1000"
#~ msgid "Monet/Brisbane"
#~ msgstr "Monet/Brisbane"
#~ msgid "XP900"
#~ msgstr "XP900"
#~ msgid "WILDFIRE"
#~ msgstr "WILDFIRE"
#~ msgid "AlphaServer GS160"
#~ msgstr "AlphaServer GS160"
#~ msgid "Wildfire"
#~ msgstr "Wildfire"
#~ msgid "AlphaServer GS320"
#~ msgstr "AlphaServer GS320"
#~ msgid "<entry>XL</entry>"
#~ msgstr "<entry>XL</entry>"
#~ msgid "XL-233...266"
#~ msgstr "XL-233...266"
#~ msgid "<entry>xl</entry>"
#~ msgstr "<entry>xl</entry>"
#~ msgid ""
#~ "It is believed that Debian &releasename; supports installing on all alpha "
#~ "sub-architectures with the exception of the ARC-only Ruffian and XL sub-"
#~ "architectures and the Titan subarchitecture, which requires a change to "
#~ "the kernel compile options."
#~ msgstr ""
#~ "Debian &releasename; ã¯ãARC ã®ã¿ã® Ruffian ã XL ãµãã¢ãŒããã¯ãã£ãé€ã"
#~ "å
š alpha ã¢ãŒããã¯ãã£ãšãã«ãŒãã«ã®ã³ã³ãã€ã«ãªãã·ã§ã³ãå€æŽããå¿
èŠã"
#~ "ãã Titan ãµãã¢ãŒããã¯ãã£ãžã®ã€ã³ã¹ããŒã«ããµããŒããããšèããããŸ"
#~ "ãã"
#~ msgid ""
#~ "Both SCSI and IDE/ATAPI CD-ROMs are supported on &arch-title;, as long as "
#~ "the controller is supported by the SRM console. This rules out many add-"
#~ "on controller cards, but most integrated IDE and SCSI chips and "
#~ "controller cards that were provided by the manufacturer can be expected "
#~ "to work. To find out whether your device is supported from the SRM "
#~ "console, see the <ulink url=\"&url-srm-howto;\">SRM HOWTO</ulink>."
#~ msgstr ""
#~ "ã³ã³ãããŒã©ã SRM ã³ã³ãœãŒã«ã§ãµããŒããããŠããéããSCSIã»IDE/ATAPI ã® "
#~ "CD-ROM ã¯ãšãã« &arch-title; ã§ãµããŒããããŠããŸããããã«ããå€ãã®ã¢ã"
#~ "ãªã³ã³ã³ãããŒã©ãŒã«ãŒãã䜿ããªããªããŸãããã¡ãŒã«ãŒãæäŸããŠããçµ±å "
#~ "IDEã»SCSI ããããã³ã³ãããŒã©ã«ãŒããåäœãããšäºæ³ã§ããŸããããã€ã¹ã "
#~ "SRM ã³ã³ãœãŒã«ã§ãµããŒããããŠããããç¥ãã«ã¯ã<ulink url=\"&url-srm-"
#~ "howto;\">SRM HOWTO</ulink> ãã芧ãã ããã"
#~ msgid ""
#~ "Any storage system supported by the Linux kernel is also supported by the "
#~ "boot system. This includes both SCSI and IDE disks. Note, however, that "
#~ "on many systems, the SRM console is unable to boot from IDE drives, and "
#~ "the Jensen is unable to boot from floppies. (see <ulink url=\"&url-jensen-"
#~ "howto;\"></ulink> for more information on booting the Jensen)"
#~ msgstr ""
#~ "Linux ã«ãŒãã«ã§ãµããŒãããŠããå€éšèšæ¶è£
眮ã¯ããã¹ãŠãã®èµ·åã·ã¹ãã ã§ã"
#~ "ãµããŒãããŠããŸããããã«ã¯ SCSI ãã£ã¹ã¯ã IDE ãã£ã¹ã¯ãå«ãŸããŠããŸ"
#~ "ãããããå€ãã®æ©çš®ã«ãããŠãSRM ã³ã³ãœãŒã«ã IDE ãã©ã€ãããèµ·åã§ããª"
#~ "ãããšããJensen ããããããŒããèµ·åã§ããªãããšã«ã泚æãã ããã"
#~ "(Jensen ã®èµ·åã«é¢ãããã詳ããæ
å ±ã«ã€ããŠã¯ <ulink url=\"&url-jensen-"
#~ "howto;\"></ulink> ãã芧ãã ãã)"
#~ msgid "Motorola 680x0"
#~ msgstr "Motorola 680x0"
#~ msgid "m68k"
#~ msgstr "m68k"
#~ msgid "Atari"
#~ msgstr "Atari"
#~ msgid "atari"
#~ msgstr "atari"
#~ msgid "Amiga"
#~ msgstr "Amiga"
#~ msgid "amiga"
#~ msgstr "amiga"
#~ msgid "68k Macintosh"
#~ msgstr "68k Macintosh"
#~ msgid "<entry>mac</entry>"
#~ msgstr "<entry>mac</entry>"
#~ msgid "<entry>VME</entry>"
#~ msgstr "<entry>VME</entry>"
#~ msgid "bvme6000"
#~ msgstr "bvme6000"
#~ msgid "mvme147"
#~ msgstr "mvme147"
#~ msgid "mvme16x"
#~ msgstr "mvme16x"
#~ msgid ""
#~ "Complete information concerning supported M68000 based "
#~ "(<emphasis>&architecture;</emphasis>) systems can be found at the <ulink "
#~ "url=\"&url-m68k-faq;\">Linux/m68k FAQ</ulink>. This section merely "
#~ "outlines the basics."
#~ msgstr ""
#~ "M68000 ããŒã¹ã® (<emphasis>&architecture;</emphasis>) ã·ã¹ãã ã®ãµããŒãã«"
#~ "é¢ããå®å
šãªæ
å ±ã¯ã<ulink url=\"&url-m68k-faq;\">Linux/m68k FAQ</ulink> "
#~ "ã«ãããŸãããã®ç¯ã§ã¯ãåºæ¬çãªããšã®ã¿èª¬æããŸãã"
#~ msgid ""
#~ "The &architecture; port of Linux runs on any 680x0 with a PMMU (Paged "
#~ "Memory Management Unit) and a FPU (floating-point unit). This includes "
#~ "the 68020 with an external 68851 PMMU, the 68030, and better, and "
#~ "excludes the <quote>EC</quote> line of 680x0 processors. See the <ulink "
#~ "url=\"&url-m68k-faq;\">Linux/m68k FAQ</ulink> for complete details."
#~ msgstr ""
#~ "&architecture; çã® Linux ã¯ãPMMU (ããŒãžã¡ã¢ãªç®¡çè£
眮) ãš FPU (æµ®åå°æ°"
#~ "ç¹æŒç®è£
眮) ãæèŒãããããã 680x0 ããã»ããµäžã§åäœããŸããããã«ã¯ã"
#~ "å€éš 68851 PMMU ãæèŒãã 68020, 68030, ããã³ãã以éã®ããã»ããµãå«ãŸ"
#~ "ããŸãããã ã 680x0 ããã»ããµã® <quote>EC</quote> ã·ãªãŒãºã¯å«ãŸããŸã"
#~ "ããå®å
šãªãã®è©³çŽ°ã«ã€ããŠã¯ <ulink url=\"&url-m68k-faq;\">Linux/m68k "
#~ "FAQ</ulink> ãã芧ãã ããã"
#~ msgid ""
#~ "There are four major supported <emphasis>&architecture;</emphasis> "
#~ "flavors: Amiga, Atari, Macintosh and VME machines. Amiga and Atari were "
#~ "the first two systems to which Linux was ported; in keeping, they are "
#~ "also the two most well-supported Debian ports. The Macintosh line is "
#~ "supported incompletely, both by Debian and by the Linux kernel; see "
#~ "<ulink url=\"&url-m68k-mac;\">Linux m68k for Macintosh</ulink> for "
#~ "project status and supported hardware. The BVM and Motorola single board "
#~ "VMEbus computers are the most recent addition to the list of machines "
#~ "supported by Debian. Ports to other &architecture; architectures, such as "
#~ "the Sun3 architecture and NeXT black box, are underway but not yet "
#~ "supported by Debian."
#~ msgstr ""
#~ "ãµããŒãããŠãã䞻㪠<emphasis>&architecture;</emphasis> ãã¬ãŒããŒã«ã¯ 4 "
#~ "çš®é¡ (AmigaãAtariãMacintoshãVME) ãããŸããAmiga ãš Atari ã¯ãLinux ã®"
#~ "移æ€ãæåã«è¡ããã 2 ã€ã®ã·ã¹ãã ã§ããã¡ã³ããã³ã¹ããããããŠããŠãæ"
#~ "ãå¹
åºããµããŒããããŠãã Debian ã®ç§»æ€çã§ããããŸããäžæ¹ Macintosh ã·"
#~ "ãªãŒãºã®ãµããŒãã¯ãDebian ããã³ Linux ã«ãŒãã«ã®ã©ã¡ãã«ãããŠãäžå®å
šã§"
#~ "ãããããžã§ã¯ãã®é²æç¶æ³ãšããµããŒããããŠããããŒããŠã§ã¢ã«ã€ããŠã¯ã"
#~ "<ulink url=\"&url-m68k-mac;\">Linux m68k for Macintosh</ulink> ãã芧ãã "
#~ "ããããªã BVM ã Motorola ã·ã³ã°ã«ããŒã VMEbus ã³ã³ãã¥ãŒã¿ã¯ãæè¿ "
#~ "Debian ã§ãµããŒããããããã«ãªã£ããã·ã³ã§ãããŸã Sun3 ã¢ãŒããã¯ãã£ã "
#~ "NeXT black box ã®ãããªãä»ã® &architecture; ã¢ãŒããã¯ãã£ãžã®ç§»æ€ã¯é²è¡"
#~ "äžã§ããããŸã Debian ã§ã¯ãµããŒããããŠããŸããã"
#~ msgid ""
#~ "Unfortunately, it's quite rare to find any vendor shipping new &arch-"
#~ "title; machines at all."
#~ msgstr ""
#~ "æ®å¿µãªãããæ°ãã &arch-title; ãã·ã³ãåºè·ãããã³ãã¯ã»ãšãã©ãããŸã"
#~ "ãã"
#~ msgid ""
#~ "Another example is the proprietary hardware in the older Macintosh line. "
#~ "In fact, no specifications or documentation have ever been released for "
#~ "any Macintosh hardware, most notably the ADB controller (used by the "
#~ "mouse and keyboard), the floppy controller, and all acceleration and CLUT "
#~ "manipulation of the video hardware (though we do now support CLUT "
#~ "manipulation on nearly all internal video chips). In a nutshell, this "
#~ "explains why the Macintosh Linux port lags behind other Linux ports."
#~ msgstr ""
#~ "ããšãã°ãå€ã Macintosh ã·ãªãŒãºã®ç¬å çããŒããŠã§ã¢ãããã§ããå®éã"
#~ "Macintosh ã®ããŒããŠã§ã¢ã«é¢ããä»æ§æžãææžã¯ãŸã£ããå
¬è¡šãããŠããŸããã"
#~ "ãã®ãããªããŒããŠã§ã¢ã§ãããç¥ãããŠãããã®ã«ã¯ (ããŠã¹ãããŒããŒãã§çš"
#~ "ããããŠãã) ADB ã³ã³ãããŒã©ããããããŒã³ã³ãããŒã©ããŸããããªããŒã"
#~ "ãŠã§ã¢ã®ãã¹ãŠã®ã¢ã¯ã»ã©ã¬ãŒã·ã§ã³æ©èœã CLUT æ©èœããããŸã (çŸåšã§ã¯ãã»"
#~ "ãŒãã¹ãŠã®å
èµãããã«ããã CLUT æ©èœããµããŒããããŠããŸã)ããããã·ã§"
#~ "ã«ã·ãªãŒãºã®ããæžç±ã§ã¯ãä»ã® Linux ã®ç§»æ€çã«æ¯ã¹ãŠ Macintosh ã® Linux "
#~ "ã®ç§»æ€ãé
ããã®ã¯ãã®ããã ãšèª¬æãããŠããŸãã"
#~ msgid ""
#~ "In fact, installation from your local disk is the preferred installation "
#~ "technique for most &architecture; machines."
#~ msgstr ""
#~ "å®éã« &architecture; ã®ãã·ã³ã®ã»ãšãã©ã§ã¯ãããŒã«ã«ãã£ã¹ã¯ããã®ã€ã³ã¹"
#~ "ããŒã«ã奜ãŸããã§ãããã"
#~ msgid ""
#~ "Pretty much all storage systems supported by the Linux kernel are "
#~ "supported by the Debian installation system. Note that the current Linux "
#~ "kernel does not support floppies on the Macintosh at all, and the Debian "
#~ "installation system doesn't support floppies for Amigas. Also supported "
#~ "on the Atari is the Macintosh HFS system, and AFFS as a module. Macs "
#~ "support the Atari (FAT) file system. Amigas support the FAT file system, "
#~ "and HFS as a module."
#~ msgstr ""
#~ "Linux ã«ãŒãã«ã§ãµããŒããããŠããå€éšèšæ¶è£
眮ã®ã»ãšãã©ãã¹ãŠããDebian "
#~ "ã®ã€ã³ã¹ããŒã©ã§ãµããŒããããŠããŸãããã ããçŸè¡ã® Linux ã«ãŒãã«ã "
#~ "Macintosh ã®ãããããŒããŸã£ãããµããŒãããŠããªãããšãDebian ã®ã€ã³ã¹"
#~ "ããŒã©ã Amiga ã®ãããããŒããµããŒãããŠããªãããšã«ã¯ã泚æãã ããããŸ"
#~ "ã Atari ã§ã¯ãMacintosh HFS ã·ã¹ãã ãšãã¢ãžã¥ãŒã«ãšã㊠AFFS ããµããŒã"
#~ "ãããŠããŸããMac 㯠Atari (FAT) ãã¡ã€ã«ã·ã¹ãã ããµããŒãããŠããŸãã"
#~ "Amiga ã¯ãFAT ãã¡ã€ã«ã·ã¹ãã ãšãã¢ãžã¥ãŒã«ãšã㊠HFS ããµããŒãããŠããŸ"
#~ "ãã"
#~ msgid ""
#~ "On the Amiga the size of FastRAM is relevant towards the total memory "
#~ "requirements. Also, using Zorro cards with 16-bit RAM is not supported; "
#~ "you'll need 32-bit RAM. The <command>amiboot</command> program can be "
#~ "used to disable 16-bit RAM; see the <ulink url=\"&url-m68k-faq;\">Linux/"
#~ "m68k FAQ</ulink>. Recent kernels should disable 16-bit RAM automatically."
#~ msgstr ""
#~ "Amiga äžã§ã¯ FastRAM ã®å®¹éã¯ãå¿
èŠãªå
šã¡ã¢ãªéãšé¢é£ããããŸãããŸãã16 "
#~ "ããã RAM ãæèŒãã Zorro ã«ãŒãã¯ãµããŒããããŠããŸãã (32 ããã RAM "
#~ "ãå¿
èŠã§ã)ã16 ããã RAM ãç¡å¹ã«ããã«ã¯ <command>amiboot</command> ã"
#~ "ãã°ã©ã ãå©çšã§ããŸãã<ulink url=\"&url-m68k-faq;\">Linux/m68k FAQ</"
#~ "ulink> ãã芧ãã ããããªããæè¿ã®ã«ãŒãã«ã¯èªåçã« 16 ããã RAM ãç¡å¹"
#~ "ã«ããã¯ãã§ãã"
#~ msgid ""
#~ "On the Atari, both ST-RAM and Fast RAM (TT-RAM) are used by Linux. Many "
#~ "users have reported problems running the kernel itself in Fast RAM, so "
#~ "the Atari bootstrap will place the kernel in ST-RAM. The minimum "
#~ "requirement for ST-RAM is 2 MB. You will need an additional 12 MB or more "
#~ "of TT-RAM."
#~ msgstr ""
#~ "Atari ã§ã¯ ST-RAM ãš Fast RAM (TT-RAM) ã®äž¡æ¹ã Linux ã§äœ¿ãããŸãããã ã"
#~ "å€ãã®ãŠãŒã¶ã Fast RAM äžã§ã¯ã«ãŒãã«ãã®ãã®ã®åäœã«åé¡ãããããšãå ±å"
#~ "ããŠããŸãããã®ãã Atari bootstrap ã¯ã«ãŒãã«ã ST-RAM äžã«çœ®ãããã«ã"
#~ "ãŸããæäœã§ã 2 MB ã® ST-RAM ãå¿
èŠã§ãããŸãè¿œå 㧠12 MB 以äžã® TT-RAM "
#~ "ãå¿
èŠã«ãªãã§ãããã"
#~ msgid ""
#~ "On the Macintosh, care should be taken on machines with RAM-based video "
#~ "(RBV). The RAM segment at physical address 0 is used as screen memory, "
#~ "making the default load position for the kernel unavailable. The "
#~ "alternate RAM segment used for kernel and RAMdisk must be at least 4 MB."
#~ msgstr ""
#~ "Macintosh 㧠RAM-based video (RBV) ãæèŒãããã·ã³ã䜿ãå Žåã«ã¯æ³šæãå¿
"
#~ "èŠã§ããç©çã¢ãã¬ã¹ 0 ã® RAM ã»ã°ã¡ã³ããã¹ã¯ãªãŒã³ã¡ã¢ãªãšããŠäœ¿ãããã"
#~ "ããã«ãŒãã«ãæšæºã§ããŒããããå Žæãå©çšã§ããªãã®ã§ãããã®ããã代ãã"
#~ "ã«ã«ãŒãã«ãš RAM ãã£ã¹ã¯ã䜿ã RAM ã»ã°ã¡ã³ãããå°ãªããšã 4 MB å¿
èŠã§"
#~ "ãã"
#~ msgid "FIXME: is this still true?"
#~ msgstr "FIXME: ããã¯ãŸã æ£ããã§ãã?"
#~ msgid "Broadcom BCM91250A (SWARM)"
#~ msgstr "Broadcom BCM91250A (SWARM)"
#~ msgid "sb1-bcm91250a"
#~ msgstr "sb1-bcm91250a"
#~ msgid "Broadcom BCM91480B (BigSur)"
#~ msgstr "Broadcom BCM91480B (BigSur)"
#~ msgid "sb1a-bcm91480b"
#~ msgstr "sb1a-bcm91480b"
#~ msgid ""
#~ "The Broadcom BCM91250A evaluation board comes with an SB1 1250 chip with "
#~ "two cores which are supported in SMP mode by this installer. Similarly, "
#~ "the BCM91480B evaluation board contains an SB1A 1480 chip with four cores "
#~ "which are supported in SMP mode."
#~ msgstr ""
#~ "2 ã³ã¢ã® SB1 1250 ãããã«ä»å±ãã Broadcom BCM91250A è©äŸ¡ããŒãã¯ããã®ã€"
#~ "ã³ã¹ããŒã©ã® SMP ã¢ãŒãã§ãµããŒãããŠããŸããåæ§ã«ã4 ã³ã¢ã® SB1A 1480 "
#~ "ããããå«ã BCM91480B è©äŸ¡ããŒãã¯ãSMP ã¢ãŒãã§ãµããŒãããŠããŸãã"
#~ msgid "Both Cobalt and Broadcom BCM91250A/BCM91480B use 115200 bps."
#~ msgstr ""
#~ "Cobalt ãš Broadcom BCM91250A/BCM91480B ã§ã¯ 115200 bps ã䜿çšããŸãã"
#~ msgid ""
#~ "The Broadcom BCM91250A and BCM91480B evaluation boards have standard 3.3v "
#~ "PCI slots and support VGA emulation or Linux framebuffer on a selected "
#~ "range of graphics cards. A <ulink url=\"&url-bcm91250a-hardware;"
#~ "\">compatibility listing</ulink> for Broadcom evaluation boards is "
#~ "available."
#~ msgstr ""
#~ "Broadcom BCM91250A/BCM91480B è©äŸ¡ããŒãã«ã¯æšæº 3.3v PCI ã¹ããããããã"
#~ "VGA ãšãã¥ã¬ãŒã·ã§ã³ããã°ã©ãã£ãã¯ã«ãŒãã®éžæããç¯å²ã§ã® Linux ãã¬ãŒ"
#~ "ã ãããã¡ããµããŒãããŠããŸããBroadcom è©äŸ¡ããŒãçšã®<ulink url=\"&url-"
#~ "bcm91250a-hardware;\">äºææ§ãªã¹ã</ulink>ãå©çšã§ããŸãã"
#~ msgid ""
#~ "The Broadcom BCM91250A evaluation board offers standard 3.3v 32 bit and "
#~ "64 bit PCI slots as well as USB connectors. The Broadcom BCM91480B "
#~ "evaluation board features four 64 bit PCI slots."
#~ msgstr ""
#~ "Broadcom BCM91250A è©äŸ¡ããŒãã¯ãæšæº 3.3v 32/64 ããã PCI ã¹ããããã"
#~ "USB ã³ãã¯ã¿ãšåãããã«æ±ããŸããBroadcom BCM91480B è©äŸ¡ããŒãã¯ã64 ãã"
#~ "ã PCI ã¹ãããã 4 ååããŠããŸãã"
#~ msgid ""
#~ "The Broadcom BCM91250A supports standard IDE devices, including CD-ROM "
#~ "drives, but CD images for this platform are currently not provided "
#~ "because the firmware doesn't recognize CD drives. In order to install "
#~ "Debian on an Broadcom BCM91480B evaluation board, you need an PCI IDE, "
#~ "SATA or SCSI card."
#~ msgstr ""
#~ "Broadcom BCM91250A ã¯ã(CD-ROM ãã©ã€ããå«ã) æšæº IDE ããã€ã¹ããµããŒã"
#~ "ããŠããŸããããã¡ãŒã ãŠã§ã¢ã CD ãã©ã€ããèªèã§ããªããããçŸåšãã®ã"
#~ "ã©ãããã©ãŒã çšã® CD ã€ã¡ãŒãžã¯æäŸãããŠããŸãããBroadcom BCM91480B è©"
#~ "䟡ããŒãã« Debian ãã€ã³ã¹ããŒã«ããã«ã¯ãPCI ã® IDE, SATA, SCSI ãããã"
#~ "ã®ã«ãŒããå¿
èŠã§ãã"
#~ msgid ""
#~ "The X.Org X Window System is only supported on the SGI Indy and the O2. "
#~ "The Broadcom BCM91250A and BCM91480B evaluation boards have standard 3.3v "
#~ "PCI slots and support VGA emulation or Linux framebuffer on a selected "
#~ "range of graphics cards. A <ulink url=\"&url-bcm91250a-hardware;"
#~ "\">compatibility listing</ulink> for Broadcom evaluation boards is "
#~ "available."
#~ msgstr ""
#~ "X.Org X Window System 㯠SGI ã® Indy ãš O2 ããµããŒãããŠããŸããBroadcom "
#~ "BCM91250A/BCM91480B è©äŸ¡ããŒãã«ã¯æšæº 3.3v PCI ã¹ãããããããVGA ãšãã¥"
#~ "ã¬ãŒã·ã§ã³ããã°ã©ãã£ãã¯ã«ãŒãã®éžæããç¯å²ã§ã® Linux ãã¬ãŒã ãããã¡"
#~ "ããµããŒãããŠããŸããBroadcom è©äŸ¡ããŒãçšã®<ulink url=\"&url-bcm91250a-"
#~ "hardware;\">äºææ§ãªã¹ã</ulink>ãå©çšã§ããŸãã"
#~ msgid ""
#~ "The Broadcom BCM91250A evaluation board offers standard 3.3v 32 bit and "
#~ "64 bit PCI slots as well as USB connectors. The Broadcom BCM91480B "
#~ "evaluation board features four 64 bit PCI slots. The Cobalt RaQ has no "
#~ "support for additional devices but the Qube has one PCI slot."
#~ msgstr ""
#~ "Broadcom BCM91250A è©äŸ¡ããŒãã¯ãæšæº 3.3v 32/64 ããã PCI ã¹ããããã"
#~ "USB ã³ãã¯ã¿ãšåãããã«æ±ããŸããBroadcom BCM91480B è©äŸ¡ããŒãã¯ã64 ãã"
#~ "ã PCI ã¹ãããã 4 ååããŠããŸããCobalt Qube 㯠PCI ã¹ããããã²ãšã€"
#~ "æã£ãŠããŸãããCobalt RaQ ã¯è¿œå ããã€ã¹ããµããŒãããŠããŸããã"
#~ msgid ""
#~ "On SGI machines, booting from CD-ROM requires a SCSI CD-ROM drive capable "
#~ "of working with a logical blocksize of 512 bytes. Many of the SCSI CD-ROM "
#~ "drives sold on the PC market do not have this capability. If your CD-ROM "
#~ "drive has a jumper labeled <quote>Unix/PC</quote> or <quote>512/2048</"
#~ "quote>, place it in the <quote>Unix</quote> or <quote>512</quote> "
#~ "position. To start the install, simply choose the <quote>System "
#~ "installation</quote> entry in the firmware. The Broadcom BCM91250A "
#~ "supports standard IDE devices, including CD-ROM drives, but CD images for "
#~ "this platform are currently not provided because the firmware doesn't "
#~ "recognize CD drives. In order to install Debian on an Broadcom BCM91480B "
#~ "evaluation board, you need an PCI IDE, SATA or SCSI card."
#~ msgstr ""
#~ "SGI ãã·ã³ã§ CD-ROM ããèµ·åããã«ã¯ã512 ãã€ãã®è«çãããã¯ãµã€ãºãæ±ã"
#~ "ã SCSI CD-ROM ãã©ã€ããå¿
èŠã§ããPC åãã«å£²ãããŠãã SCSI CD-ROM ã®å€"
#~ "ãã¯ããã®æ©èœããããŸããããæã¡ã® CD-ROM ãã©ã€ãã« <quote>Unix/PC</"
#~ "quote> ãšã <quote>512/2048</quote> ãšããã©ãã«ã®ã€ãããžã£ã³ãããã£ã"
#~ "ãã<quote>Unix</quote> ãŸã㯠<quote>512</quote> ã®æ¹ã«ããŠãã ãããã€ã³"
#~ "ã¹ããŒã«ãå§ããã«ã¯ãåã«ãã¡ãŒã ãŠã§ã¢ã® <quote>System installation</"
#~ "quote> ãšã³ããªãéžæããŠãã ãããBroadcom BCM91250A ã¯ã(CD-ROM ãã©ã€ã"
#~ "ãå«ã) æšæº IDE ããã€ã¹ããµããŒãããŠããŸããããã¡ãŒã ãŠã§ã¢ã CD ãã©"
#~ "ã€ããèªèã§ããªããããçŸåšãã®ãã©ãããã©ãŒã çšã® CD ã€ã¡ãŒãžã¯æäŸãã"
#~ "ãŠããŸãããBroadcom BCM91480B è©äŸ¡ããŒãã« Debian ãã€ã³ã¹ããŒã«ããã«"
#~ "ã¯ãPCI ã® IDE, SATA, SCSI ããããã®ã«ãŒããå¿
èŠã§ãã"
#~ msgid "<entry>arm</entry>"
#~ msgstr "<entry>arm</entry>"
#~ msgid "Netwinder and CATS"
#~ msgstr "Netwinderã»CATS"
#~ msgid "netwinder"
#~ msgstr "netwinder"
#~ msgid "arm and armel"
#~ msgstr "arm ãš armel"
#~ msgid "Netwinder"
#~ msgstr "Netwinder"
#~ msgid ""
#~ "This is actually the name for the group of machines based upon the "
#~ "StrongARM 110 CPU and Intel 21285 Northbridge (also known as Footbridge). "
#~ "It comprises of machines like: Netwinder (possibly one of the most common "
#~ "ARM boxes), CATS (also known as the EB110ATX), EBSA 285 and Compaq "
#~ "personal server (cps, aka skiff)."
#~ msgstr ""
#~ "ããã¯å®éã«ã¯ãStrongARM 110 CPU ã«åºã¥ããIntel 21285 ããŒã¹ããªããž "
#~ "(ãããããªããžãšããŠãç¥ããã) ãåãããã·ã³çŸ€ã®ååã§ããNetwinder (ã"
#~ "ããããã£ãšãäžè¬ç㪠ARM ããã¯ã¹), CATS (EB110ATX ãšããŠãç¥ãããŠã"
#~ "ã), EBSA 285, Compaq ããŒãœãã«ãµãŒã (cps, aka skiff) ãšãã£ããã·ã³ãå«"
#~ "ãã§ããŸãã"
#~ msgid "CHRP"
#~ msgstr "CHRP"
#~ msgid "chrp"
#~ msgstr "chrp"
#~ msgid "<entry>prep</entry>"
#~ msgstr "<entry>prep</entry>"
#~ msgid ""
#~ "There are four major supported <emphasis>&architecture;</emphasis> "
#~ "subarchitectures: PMac (Power-Macintosh or PowerMac), PReP, APUS (Amiga "
#~ "Power-UP System), and CHRP machines. Each subarchitecture has its own "
#~ "boot methods. In addition, there are four different kernel flavours, "
#~ "supporting different CPU variants."
#~ msgstr ""
#~ "ãµããŒãããã䞻㪠<emphasis>&architecture;</emphasis> ã®ãµãã¢ãŒããã¯"
#~ "ãã£ã¯ãPMac (Power-Macintosh ã PowerMac), PReP, APUS (Amiga Power-UP "
#~ "System), CHRP ã® 4 ã€ã§ãããããã®ãµãã¢ãŒããã¯ãã£ãèªèº«ã§èµ·åããæ¹æ³"
#~ "ããããŸããããã«ãç°ãªã CPU ã®å€çš®ããµããŒãããã4 çš®ã®ã«ãŒãã«ãã¬ãŒ"
#~ "ããŒããããŸãã"
#~ msgid ""
#~ "Ports to other <emphasis>&architecture;</emphasis> architectures, such as "
#~ "the Be-Box and MBX architecture, are underway but not yet supported by "
#~ "Debian. We may have a 64-bit port in the future."
#~ msgstr ""
#~ "Be-BoxãMBX ãšãã£ãä»ã® &architecture; ã¢ãŒããã¯ãã£ãžã®ç§»æ€ã¯äœæ¥äžã§ã"
#~ "ãããŸã Debian ã§ã¯ãµããŒããããŸããããŸããå°æ¥çã«ã¯ãã® 64bit 移æ€ç"
#~ "ããµããŒãããäºå®ã§ãã"
#~ msgid "<term>prep</term>"
#~ msgstr "<term>prep</term>"
#~ msgid "This kernel flavour supports the PReP subarchitecture."
#~ msgstr ""
#~ "ãã®ã«ãŒãã«ãã¬ãŒããŒã¯ PReP ãµãã¢ãŒããã¯ãã£ããµããŒãããŠããŸãã"
#~ msgid "apus"
#~ msgstr "apus"
#~ msgid ""
#~ "This kernel flavour supports the Amiga Power-UP System, though it is "
#~ "currently disabled."
#~ msgstr ""
#~ "ãã®ã«ãŒãã«ãã¬ãŒããŒã¯ãAmiga Power-UP System ããµããŒãããŠããŸãããçŸ"
#~ "åšç¡å¹ã«ãªã£ãŠããŸãã"
#~ msgid "CHRP subarchitecture"
#~ msgstr "CHRP ãµãã¢ãŒããã¯ãã£"
#~ msgid "APUS subarchitecture"
#~ msgstr "APUS ãµãã¢ãŒããã¯ãã£"
#~ msgid ""
#~ "As for ISDN, the D-channel protocol for the (old) German 1TR6 is not "
#~ "supported; Spellcaster BRI ISDN boards are also not supported by the &d-"
#~ "i;. Using ISDN during the installation is not supported."
#~ msgstr ""
#~ "ISDN ã§ã¯ã(å€ã) ãã€ãã® 1TR6 çš D ãã£ãã«ã¯ãµããŒãããŠããŸããã"
#~ "Spellcaster BRI ISDN ããŒãã &d-i; ã§ã¯ãµããŒãããŠããŸãããISDN ãã€ã³"
#~ "ã¹ããŒã«äžã«äœ¿çšããã®ã¯ãµããŒãããŠããŸããã"
#~ msgid ""
#~ "The installation system currently does not support retrieving firmware. "
#~ "This means that any network cards that use a driver that requires "
#~ "firmware to be loaded, is not supported by default."
#~ msgstr ""
#~ "ã€ã³ã¹ããŒã«ã·ã¹ãã ã¯ãçŸåšãã¡ãŒã ãŠã§ã¢ã®ååŸããµããŒãããŠããŸãããã"
#~ "ã®ããããã¡ãŒã ãŠã§ã¢ãèªã¿èŸŒãå¿
èŠããããã©ã€ãã䜿çšãããããã¯ãŒã¯"
#~ "ã«ãŒãã¯ãããã©ã«ãã§ã¯ãµããŒãããŠããŸããã"
#~ msgid ""
#~ "If there is no other NIC you can use during the installation, it is still "
#~ "possible to install &debian-gnu; using a full CD-ROM or DVD image. Select "
#~ "the option to not configure a network and install using only the packages "
#~ "available from the CD/DVD. You can then install the driver and firmware "
#~ "you need after the installation is completed (after the reboot) and "
#~ "configure your network manually. Note that the firmware may be packaged "
#~ "separately from the driver and may not be available in the <quote>main</"
#~ "quote> section of the &debian-gnu; archive."
#~ msgstr ""
#~ "ã€ã³ã¹ããŒã«ã®éã«äœ¿çšã§ããããã®ä»ã® NIC ããªãå Žåã§ãããã«ãµã€ãºã® "
#~ "CD-ROMã»DVD ã€ã¡ãŒãžã䜿çšããŠã&debian-gnu; ãã€ã³ã¹ããŒã«ã§ããŸãããã"
#~ "ãã¯ãŒã¯ãèšå®ãããCD/DVD ã§æå¹ãªããã±ãŒãžã ãã§ã€ã³ã¹ããŒã«ãè¡ããªã"
#~ "ã·ã§ã³ãéžæããŠãã ãããã€ã³ã¹ããŒã«ãå®äºããåŸ (åèµ·ååŸ) ã§ãå¿
èŠãªã"
#~ "ã©ã€ãããã¡ãŒã ãŠã§ã¢ãã€ã³ã¹ããŒã«ãããããã¯ãŒã¯ã®èšå®ãæåã§è¡ããŸ"
#~ "ãããã¡ãŒã ãŠã§ã¢ã¯ããã©ã€ããšåå²ãããŠããã&debian-gnu; ã¢ãŒã«ã€ãã® "
#~ "<quote>main</quote> ã»ã¯ã·ã§ã³ã«ãªããããããªãããšã«æ³šæããŠãã ããã"
#~ msgid ""
#~ "If the driver itself <emphasis>is</emphasis> supported, you may also be "
#~ "able to use the NIC during installation by copying the firmware from some "
#~ "medium to <filename>/usr/lib/hotplug/firmware</filename>. Don't forget to "
#~ "also copy the firmware to that location for the installed system before "
#~ "the reboot at the end of the installation."
#~ msgstr ""
#~ "ãã©ã€ãèªäœããµããŒãããŠ<emphasis>ãã</emphasis>å Žåããã¡ãŒã ãŠã§ã¢ã"
#~ "ããããã®ã¡ãã£ã¢ãã <filename>/usr/lib/hotplug/firmware</filename> ã«ã³"
#~ "ããŒããŠãã€ã³ã¹ããŒã«äžã« NIC ã䜿çšããããã«ãã§ããã§ãããããã¡ãŒã "
#~ "ãŠã§ã¢ã®ã³ããŒããã€ã³ã¹ããŒã«ã®æåŸã§åèµ·åããåã«ãã€ã³ã¹ããŒã«ãè¡ã£ã"
#~ "ã·ã¹ãã ã®åãå Žæãžãè¡ãã®ãå¿ããªãã§ãã ããã"
#~ msgid ""
#~ "Both SCSI and IDE/ATAPI CD-ROMs are supported. In addition, all non-"
#~ "standard CD interfaces supported by Linux are supported by the boot disks "
#~ "(such as Mitsumi and Matsushita drives). However, these models might "
#~ "require special boot parameters or other massaging to get them to work, "
#~ "and booting off these non-standard interfaces is unlikely. The <ulink url="
#~ "\"&url-cd-howto;\">Linux CD-ROM HOWTO</ulink> contains in-depth "
#~ "information on using CD-ROMs with Linux."
#~ msgstr ""
#~ "SCSIã»IDE/ATAPI ã® CD-ROM ã¯ãšãã«ãµããŒããããŠããŸããããã«ãLinux ã§ãµ"
#~ "ããŒããããŠãã (ããããæŸäžãªã©ã®) éæšæºã® CD ã€ã³ã¿ãŒãã§ãŒã¹ããèµ·å"
#~ "ãã£ã¹ã¯ã§ãµããŒããããŠããŸãããããããããã®ã¢ãã«ã«ã¯ç¹å¥ãªããŒããã©"
#~ "ã¡ãŒã¿ããåäœã®ããã®ä»ã®åŠçœ®ãå¿
èŠãªããšããããŸãããŸãããããã®éæšæº"
#~ "ã€ã³ã¿ãŒãã§ãŒã¹ã® CD-ROM ããèµ·åããããšã¯å°é£ã§ããLinux äžã§ CD-ROM ã"
#~ "å©çšããããã®è©³çŽ°ãªæ
å ±ã¯ã<ulink url=\"&url-cd-howto;\">Linux CD-ROM "
#~ "HOWTO</ulink> ã«ãããŸãã"
#~ msgid "ARM and StrongARM"
#~ msgstr "ARMã»StrongARM"
#~ msgid "DECstation"
#~ msgstr "DECstation"
#~ msgid "r4k-kn04"
#~ msgstr "r4k-kn04"
#~ msgid "r3k-kn02"
#~ msgstr "r3k-kn02"
#~ msgid ""
#~ "Currently only DECstations with R3000 and R4000/R4400 CPUs are supported "
#~ "by the Debian installation system on little endian MIPS. The Debian "
#~ "installation system works on the following machines:"
#~ msgstr ""
#~ "çŸåšã¯ãR3000 ãš R4000/R4400 CPU æèŒã® DECstation ã®ã¿ããªãã«ãšã³ãã£ã¢"
#~ "ã³ MIPS ã® Debian ã€ã³ã¹ããŒã«ã·ã¹ãã ã§ãµããŒãããŠããŸããDebian ã€ã³ã¹"
#~ "ããŒã«ã·ã¹ãã ã¯ã以äžã®ãã·ã³ã§åäœããŸãã"
#~ msgid "System Type"
#~ msgstr "ã·ã¹ãã ã¿ã€ã"
#~ msgid "<entry>CPU</entry>"
#~ msgstr "<entry>CPU</entry>"
#~ msgid "Code-name"
#~ msgstr "ã³ãŒãããŒã "
#~ msgid "Debian subarchitecture"
#~ msgstr "Debian ãµãã¢ãŒããã¯ãã£"
#~ msgid "DECstation 5000/1xx"
#~ msgstr "DECstation 5000/1xx"
#~ msgid "R3000"
#~ msgstr "R3000"
#~ msgid "3MIN"
#~ msgstr "3MIN"
#~ msgid "DECstation 5000/150"
#~ msgstr "DECstation 5000/150"
#~ msgid "R4000"
#~ msgstr "R4000"
#~ msgid "DECstation 5000/200"
#~ msgstr "DECstation 5000/200"
#~ msgid "3MAX"
#~ msgstr "3MAX"
#~ msgid "DECstation 5000/240"
#~ msgstr "DECstation 5000/240"
#~ msgid "3MAX+"
#~ msgstr "3MAX+"
#~ msgid "DECstation 5000/260"
#~ msgstr "DECstation 5000/260"
#~ msgid "R4400"
#~ msgstr "R4400"
#~ msgid "Personal DECstation 5000/xx"
#~ msgstr "Personal DECstation 5000/xx"
#~ msgid "Maxine"
#~ msgstr "Maxine"
#~ msgid "Personal DECstation 5000/50"
#~ msgstr "Personal DECstation 5000/50"
#~ msgid ""
#~ "All Cobalt machines are supported. In the past, only machines with a "
#~ "serial console were supported (that is, all machines except for the Qube "
#~ "2700, aka Qube1). However, installations are now also possible through "
#~ "SSH."
#~ msgstr ""
#~ "ãã¹ãŠã® Cobalt ãã·ã³ããµããŒãããŠããŸãã以åã¯ãã·ãªã¢ã«ã³ã³ãœãŒã«ããµ"
#~ "ããŒããããã·ã³ (Qube 2700, aka Qube1 ãé€ãå
šãã·ã³) ã®ã¿ã§ããããã"
#~ "ããçŸåš SSH ãçµç±ããã€ã³ã¹ããŒã«ãå¯èœã§ãã"
#~ msgid ""
#~ "A serial console is available on all supported DECstations (9600 bps, "
#~ "8N1). To use the serial console, you have to boot the installer image "
#~ "with the <literal>console=ttyS</literal><replaceable>x</replaceable> "
#~ "kernel parameter (with <replaceable>x</replaceable> being the number of "
#~ "the serial port you have your terminal connected to — usually "
#~ "<literal>2</literal>, but <literal>0</literal> for the Personal "
#~ "DECstations). On 3MIN and 3MAX+ (DECstation 5000/1xx, 5000/240 and "
#~ "5000/260) a local console is available with the PMAG-BA and the PMAGB-B "
#~ "graphics options."
#~ msgstr ""
#~ "ãµããŒãããŠãããã¹ãŠã® DECstations ã§ãã·ãªã¢ã«ã³ã³ãœãŒã« (9600 bps, "
#~ "8N1) ãæå¹ã§ããã·ãªã¢ã«ã³ã³ãœãŒã«ã䜿çšããéã«ã¯ãã€ã³ã¹ããŒã©èµ·åæã«"
#~ "ã«ãŒãã«ãã©ã¡ãŒã¿ã« <literal>console=ttyS</literal><replaceable>x</"
#~ "replaceable> (<replaceable>x</replaceable> ã«ã¯ç«¯æ«ãæ¥ç¶ããã·ãªã¢ã«ããŒ"
#~ "ãã®çªå· — é垞㯠<literal>2</literal>ãPersonal DECstation ã®å Žå"
#~ "㯠<literal>0</literal>) ãäžããŠãã ããã3MIN ã 3MAX+ (DECstation "
#~ "5000/1xx, 5000/240, 5000/260) ã§ã¯ãPMAG-BA ã PMAGB-B ã°ã©ãã£ãã¯ãªã"
#~ "ã·ã§ã³ã«ããããŒã«ã«ã³ã³ãœãŒã«ãæå¹ã«ãªããŸãã"
#~ msgid ""
#~ "If you have a Linux system to use as serial terminal, an easy way is to "
#~ "run <command>cu</command><footnote> <para> In Woody this command was part "
#~ "of the <classname>uucp</classname> package, but in later releases it is "
#~ "available as a separate package. </para> </footnote> on it. Example: "
#~ "<informalexample><screen>\n"
#~ "$ cu -l /dev/ttyS1 -s 9600\n"
#~ "</screen></informalexample> where the option <literal>-l</literal> (line) "
#~ "sets the serial port to use and <literal>-s</literal> (speed) sets the "
#~ "speed for the connection (9600 bits per second)."
#~ msgstr ""
#~ "ã·ãªã¢ã«ç«¯æ«ãšããŠäœ¿ãã Linux ã·ã¹ãã ãããå Žåã¯ã<command>cu</"
#~ "command><footnote> <para>Woody ã§ã¯ããã®ã³ãã³ã㯠<classname>uucp</"
#~ "classname> ããã±ãŒãžã®äžéšã§ãããåŸã®ãªãªãŒã¹ã§ã¯ããã±ãŒãžãåå²ããã"
#~ "ã®ãæäŸãããŸãã</para> </footnote> ãå®è¡ããã®ãç°¡åã§ããäŸ: "
#~ "<informalexample><screen>\n"
#~ "$ cu -l /dev/ttyS1 -s 9600\n"
#~ "</screen></informalexample> <literal>-l</literal> (line) ãªãã·ã§ã³ã¯ã·ãª"
#~ "ã¢ã«ããŒãã䜿çšããããšãæå®ãã<literal>-s</literal> (speed) ã§éä¿¡é"
#~ "床 (9600bps) ãæå®ããŸãã"
#~ msgid ""
#~ "CD 1 contains the installer for the r3k-kn02 subarchitecture (the R3000-"
#~ "based DECstations 5000/1xx and 5000/240 as well as the R3000-based "
#~ "Personal DECstation models), CD 2 the installer for the r4k-kn04 "
#~ "subarchitecture (the R4x00-based DECstations 5000/150 and 5000/260 as "
#~ "well as the Personal DECstation 5000/50)."
#~ msgstr ""
#~ "CD 1 ã«å
¥ã£ãŠããã€ã³ã¹ããŒã©ã¯ãr3k-kn02 ãµãã¢ãŒããã¯ãã£çšã§ã (R3000 "
#~ "ããŒã¹ã® DECstations 5000/1xx ãš 5000/240 ãšãR3000 ããŒã¹ã® Personal "
#~ "DECstation ã¢ãã«)ãCD 2 ã«å
¥ã£ãŠããã€ã³ã¹ããŒã©ã¯ r4k-kn04 ãµãã¢ãŒãã"
#~ "ã¯ãã£çšã§ã (R4x00 ããŒã¹ã® DECstations 5000/150 ãš 5000/260 ãšã"
#~ "Personal DECstation 5000/50)ã"
#~ msgid ""
#~ "To boot from CD, issue the command <userinput>boot <replaceable>#</"
#~ "replaceable>/rz<replaceable>id</replaceable></userinput> on the firmware "
#~ "prompt, where <replaceable>#</replaceable> is the number of the "
#~ "TurboChannel device from which to boot (3 on most DECstations) and "
#~ "<replaceable>id</replaceable> is the SCSI ID of the CD-ROM drive. If you "
#~ "need to pass additional parameters, they can optionally be appended with "
#~ "the following syntax:"
#~ msgstr ""
#~ "CD ããèµ·åããã«ã¯ããã¡ãŒã ãŠã§ã¢ã®ããã³ããã§<userinput>boot "
#~ "<replaceable>#</replaceable>/rz<replaceable>id</replaceable></userinput> "
#~ "ãšããã³ãã³ããå®è¡ããŠãã ããããã㧠<replaceable>#</replaceable> ã¯èµ·"
#~ "åããããšãã TurboChannel ããã€ã¹ã®çªå· (ã»ãšãã©ã® DECstation ã§ã¯ 3) "
#~ "ã§ã<replaceable>id</replaceable> 㯠CD-ROM ãã©ã€ãã® SCSI ID ã§ããä»ã«"
#~ "ãæž¡ãã¹ããã©ã¡ãŒã¿ãããå Žåã¯ã次ã®æžåŒã«åŸãã°è¿œå ã§ããŸãã"
#~ msgid ""
#~ "boot <replaceable>#</replaceable>/rz<replaceable>id</replaceable> "
#~ "param1=value1 param2=value2 ..."
#~ msgstr ""
#~ "boot <replaceable>#</replaceable>/rz<replaceable>id</replaceable> "
#~ "param1=value1 param2=value2 ..."
#~ msgid ""
#~ "Due to kernel limitations only the onboard network interfaces on "
#~ "DECstations are supported, TurboChannel option network cards currently do "
#~ "not work."
#~ msgstr ""
#~ "ã«ãŒãã«ã®å¶éã§ãDECstation ã«ãªã³ããŒãã§æèŒãããŠãããããã¯ãŒã¯ã€ã³"
#~ "ã¿ãŒãã§ãŒã¹ã®ã¿ãµããŒãããŠããŸãããªãã·ã§ã³ã® TurboChannel ãããã¯ãŒã¯"
#~ "ã«ãŒãã¯çŸåšåäœããŸããã"
|