~ubuntu-branches/ubuntu/oneiric/installation-guide/oneiric

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
# Debian GNU/Linux Installation Guide
msgid ""
msgstr ""
"Project-Id-Version: d-i-manual\n"
"Report-Msgid-Bugs-To: debian-boot@lists.debian.org\n"
"POT-Creation-Date: 2009-11-02 22:19+0000\n"
"PO-Revision-Date: 2005-07-18 13:23+0800\n"
"Last-Translator: Lin, Shu-Fen<satashiohno@gmail.com>\n"
"Language-Team: debian-chinese-big5 <debian-chinese-big5@lists.debian.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#. Tag: title
#: partitioning.xml:5
#, no-c-format
msgid "Partitioning for Debian"
msgstr "為 Debian 分割磁區"

#. Tag: title
#: partitioning.xml:13
#, no-c-format
msgid "Deciding on Debian Partitions and Sizes"
msgstr "決定 Debian 磁區及大小"

#. Tag: para
#: partitioning.xml:14
#, no-c-format
msgid ""
"At a bare minimum, GNU/Linux needs one partition for itself. You can have a "
"single partition containing the entire operating system, applications, and "
"your personal files. Most people feel that a separate swap partition is also "
"a necessity, although it's not strictly true. <quote>Swap</quote> is scratch "
"space for an operating system, which allows the system to use disk storage "
"as <quote>virtual memory</quote>. By putting swap on a separate partition, "
"Linux can make much more efficient use of it. It is possible to force Linux "
"to use a regular file as swap, but it is not recommended."
msgstr ""
"最小化情況下,GNU/Linux 需要一個分割區。您可以有一個包含整個作業系統,應用程"
"式以及您個人檔案的分割區。大多數人認為另建一個的置換分割區是有必要的,雖然嚴"
"格來說它並不正確。 <quote>Swap</quote> 是一個作業系統用的空白空間,允許系統使"
"用磁碟來提供 <quote>虛擬記憶體</quote>。通過置換空間至一個分離的分割區,"
"Linux 可以有效地使用它。強迫 Linux 使用一個一般檔案作為置換空間也是可行的,但"
"是並不建議這種做法。"

#. Tag: para
#: partitioning.xml:26
#, no-c-format
msgid ""
"Most people choose to give GNU/Linux more than the minimum number of "
"partitions, however. There are two reasons you might want to break up the "
"file system into a number of smaller partitions. The first is for safety. If "
"something happens to corrupt the file system, generally only one partition "
"is affected. Thus, you only have to replace (from the backups you've been "
"carefully keeping) a portion of your system. At a bare minimum, you should "
"consider creating what is commonly called a <quote>root partition</quote>. "
"This contains the most essential components of the system. If any other "
"partitions get corrupted, you can still boot into GNU/Linux to fix the "
"system. This can save you the trouble of having to reinstall the system from "
"scratch."
msgstr ""
"大多數人選擇給 GNU/Linu 比最小化更多的分區。有兩個原因可能使您願意把檔案系統"
"打散放置到一些較小的分區上。第一個問題是安全性,如果檔案系統出現了問題,一般"
"來說只有一個磁區會受到影響。因此,您只需要更換(來自於您小心維護的備份)一個磁"
"區。在最小化階段,您應該考慮建立所謂的 <quote>根分割區</quote>。它含有最主要"
"的系統組件。如果其它分割區出現了問題,您仍可以進入至 GNU/Linux 來修復系統。這"
"樣您可以不必從頭重新安裝系統。"

#. Tag: para
#: partitioning.xml:40
#, no-c-format
msgid ""
"The second reason is generally more important in a business setting, but it "
"really depends on your use of the machine. For example, a mail server "
"getting spammed with e-mail can easily fill a partition. If you made "
"<filename>/var/mail</filename> a separate partition on the mail server, most "
"of the system will remain working even if you get spammed."
msgstr ""
"第二個理由對商業設置來說更重要,但它實際上取決於您機器的使用。比如,一個郵件"
"伺服器接受到很多垃圾郵件會很快填滿一個分割區,如果您建立 <filename>/var/"
"mail</filename> 在一個分離的分割區上面,大多數系統在您得到太多垃圾郵件的情況"
"下會繼續工作。"

#. Tag: para
#: partitioning.xml:48
#, no-c-format
msgid ""
"The only real drawback to using more partitions is that it is often "
"difficult to know in advance what your needs will be. If you make a "
"partition too small then you will either have to reinstall the system or you "
"will be constantly moving things around to make room in the undersized "
"partition. On the other hand, if you make the partition too big, you will be "
"wasting space that could be used elsewhere. Disk space is cheap nowadays, "
"but why throw your money away?"
msgstr ""
"使用更多分割區的唯一缺點是很難預先知道您將來的需求。如果您建立了一個太小的分"
"割區,則您可能需要重新安裝系統或者不停地移動資料以增加分割區空間。除此之外,"
"如果您建立的分割區過大,您將浪費一些可以用在別的地方的空間。硬碟容量目前很便"
"宜,但是為什麼要浪費呢?"

#. Tag: title
#: partitioning.xml:67
#, no-c-format
msgid "The Directory Tree"
msgstr "目錄樹"

#. Tag: para
#: partitioning.xml:68
#, no-c-format
msgid ""
"&debian; adheres to the <ulink url=\"&url-fhs-home;\">Filesystem Hierarchy "
"Standard</ulink> for directory and file naming. This standard allows users "
"and software programs to predict the location of files and directories. The "
"root level directory is represented simply by the slash <filename>/</"
"filename>. At the root level, all Debian systems include these directories:"
msgstr ""
"&debian; 依照 <ulink url=\"&url-fhs-home;\">檔案系統層次標準 (Filesystem "
"Hierarchy Standard)</ulink> 為目錄以及檔案命名。這個標準允許使用者以及軟體程"
"式預測檔案及目錄的位置。根層次目錄只是簡單表現為 <filename>/</filename>。在根"
"層次,所有的 Debian 系統包括這些目錄:"

#. Tag: entry
#: partitioning.xml:82
#, no-c-format
msgid "Directory"
msgstr "目錄"

#. Tag: entry
#: partitioning.xml:82
#, no-c-format
msgid "Content"
msgstr "內容"

#. Tag: filename
#: partitioning.xml:88
#, no-c-format
msgid "<filename>bin</filename>"
msgstr "<filename>bin</filename>"

#. Tag: entry
#: partitioning.xml:89
#, no-c-format
msgid "Essential command binaries"
msgstr "基礎命令執行檔案"

#. Tag: filename
#: partitioning.xml:91
#, no-c-format
msgid "boot"
msgstr "boot"

#. Tag: entry
#: partitioning.xml:92
#, no-c-format
msgid "Static files of the boot loader"
msgstr "boot loader的靜態鏈結檔案"

#. Tag: filename
#: partitioning.xml:94
#, no-c-format
msgid "<filename>dev</filename>"
msgstr "<filename>dev</filename>"

#. Tag: entry
#: partitioning.xml:95
#, no-c-format
msgid "Device files"
msgstr "裝置檔案"

#. Tag: filename
#: partitioning.xml:97
#, no-c-format
msgid "<filename>etc</filename>"
msgstr "<filename>etc</filename>"

#. Tag: entry
#: partitioning.xml:98
#, no-c-format
msgid "Host-specific system configuration"
msgstr "主機特定的系統設定"

#. Tag: filename
#: partitioning.xml:100
#, no-c-format
msgid "home"
msgstr "home"

#. Tag: entry
#: partitioning.xml:101
#, no-c-format
msgid "User home directories"
msgstr "使用者家目錄"

#. Tag: filename
#: partitioning.xml:103
#, no-c-format
msgid "<filename>lib</filename>"
msgstr "<filename>lib</filename>"

#. Tag: entry
#: partitioning.xml:104
#, no-c-format
msgid "Essential shared libraries and kernel modules"
msgstr "基本共享程式庫以及核心單元"

#. Tag: filename
#: partitioning.xml:106
#, no-c-format
msgid "media"
msgstr "media"

#. Tag: entry
#: partitioning.xml:107
#, no-c-format
msgid "Contains mount points for replaceable media"
msgstr "包含移動媒介的掛載點"

#. Tag: filename
#: partitioning.xml:109
#, no-c-format
msgid "<filename>mnt</filename>"
msgstr "<filename>mnt</filename>"

#. Tag: entry
#: partitioning.xml:110
#, no-c-format
msgid "Mount point for mounting a file system temporarily"
msgstr "暫時掛載檔案系統的掛載點"

#. Tag: filename
#: partitioning.xml:112
#, no-c-format
msgid "proc"
msgstr "proc"

#. Tag: entry
#: partitioning.xml:113
#, no-c-format
msgid "Virtual directory for system information (2.4 and 2.6 kernels)"
msgstr "系統資訊的虛擬目錄(2.4 和 2.6 內核)"

#. Tag: filename
#: partitioning.xml:115
#, no-c-format
msgid "root"
msgstr "root"

#. Tag: entry
#: partitioning.xml:116
#, no-c-format
msgid "Home directory for the root user"
msgstr "根使用者的家目錄"

#. Tag: filename
#: partitioning.xml:118
#, no-c-format
msgid "sbin"
msgstr "sbin"

#. Tag: entry
#: partitioning.xml:119
#, no-c-format
msgid "Essential system binaries"
msgstr "基本的系統執行檔案"

#. Tag: filename
#: partitioning.xml:121
#, no-c-format
msgid "<filename>sys</filename>"
msgstr "<filename>sys</filename>"

#. Tag: entry
#: partitioning.xml:122
#, no-c-format
msgid "Virtual directory for system information (2.6 kernels)"
msgstr "系統資訊的虛擬目錄(2.6 內核)"

#. Tag: filename
#: partitioning.xml:124
#, no-c-format
msgid "<filename>tmp</filename>"
msgstr "<filename>tmp</filename>"

#. Tag: entry
#: partitioning.xml:125
#, no-c-format
msgid "Temporary files"
msgstr "暫存檔"

#. Tag: filename
#: partitioning.xml:127
#, no-c-format
msgid "<filename>usr</filename>"
msgstr "<filename>usr</filename>"

#. Tag: entry
#: partitioning.xml:128
#, no-c-format
msgid "Secondary hierarchy"
msgstr "第二層次"

#. Tag: filename
#: partitioning.xml:130
#, no-c-format
msgid "<filename>var</filename>"
msgstr "<filename>var</filename>"

#. Tag: entry
#: partitioning.xml:131
#, no-c-format
msgid "Variable data"
msgstr "變動資料"

#. Tag: filename
#: partitioning.xml:133
#, fuzzy, no-c-format
msgid "<filename>srv</filename>"
msgstr "<filename>usr</filename>"

#. Tag: entry
#: partitioning.xml:134
#, no-c-format
msgid "Data for services provided by the system"
msgstr ""

#. Tag: filename
#: partitioning.xml:136
#, no-c-format
msgid "<filename>opt</filename>"
msgstr "<filename>opt</filename>"

#. Tag: entry
#: partitioning.xml:137
#, no-c-format
msgid "Add-on application software packages"
msgstr "附加的應用程式軟體套件"

#. Tag: para
#: partitioning.xml:142
#, no-c-format
msgid ""
"The following is a list of important considerations regarding directories "
"and partitions. Note that disk usage varies widely given system "
"configuration and specific usage patterns. The recommendations here are "
"general guidelines and provide a starting point for partitioning."
msgstr ""
"下面列出關於目錄和分割區的重要考量。要注意硬碟的使用隨系統設定和特定用途有很"
"大變化。這裡的建議是一般導引,提供分割區的基本分割方式。"

#. Tag: para
#: partitioning.xml:152
#, fuzzy, no-c-format
msgid ""
"The root partition <filename>/</filename> must always physically contain "
"<filename>/etc</filename>, <filename>/bin</filename>, <filename>/sbin</"
"filename>, <filename>/lib</filename> and <filename>/dev</filename>, "
"otherwise you won't be able to boot. Typically 150&ndash;250MB is needed for "
"the root partition."
msgstr ""
"根分割區 <filename>/</filename> 必須包含 <filename>/etc</filename>、"
"<filename>/bin</filename>、<filename>/sbin</filename>、<filename>/lib</"
"filename> 以及 <filename>/dev</filename>,否則您將不能開機。 root 分區通常需"
"要 150&ndash;250MB 大小空間。"

#. Tag: para
#: partitioning.xml:161
#, fuzzy, no-c-format
msgid ""
"<filename>/usr</filename>: contains all user programs (<filename>/usr/bin</"
"filename>), libraries (<filename>/usr/lib</filename>), documentation "
"(<filename>/usr/share/doc</filename>), etc. This is the part of the file "
"system that generally takes up most space. You should provide at least 500MB "
"of disk space. This amount should be increased depending on the number and "
"type of packages you plan to install. A generous workstation or server "
"installation should allow 4&ndash;6GB."
msgstr ""
"<filename>/usr</filename>:包含所有的使用者程式(<filename>/usr/bin</"
"filename>)、函式庫(<filename>/usr/lib</filename>)、文件檔案(<filename>/usr/"
"share/doc</filename>),等等。這是檔案系統耗費最多的空間的部分。您至少需要 "
"500MB 磁碟空間。總容量與您要安裝的軟體套件數量和類型成正比。大的工作站或伺服"
"器安裝需要 4-6 GB。"

#. Tag: para
#: partitioning.xml:174
#, fuzzy, no-c-format
msgid ""
"<filename>/var</filename>: variable data like news articles, e-mails, web "
"sites, databases, the packaging system cache, etc. will be placed under this "
"directory. The size of this directory depends greatly on the usage of your "
"system, but for most people will be dictated by the package management "
"tool's overhead. If you are going to do a full installation of just about "
"everything Debian has to offer, all in one session, setting aside 2 or 3 GB "
"of space for <filename>/var</filename> should be sufficient. If you are "
"going to install in pieces (that is to say, install services and utilities, "
"followed by text stuff, then X, ...), you can get away with 300&ndash;500 "
"MB. If hard drive space is at a premium and you don't plan on doing major "
"system updates, you can get by with as little as 30 or 40 MB."
msgstr ""
"<filename>/var</filename>:所有的可變資料,如新的文章,電子郵件,網站,資料"
"庫,套件系統快取等等,將被置入這個目錄下。這個目錄的大小取決於您對系統的使"
"用,但是對大多數人來說主要取決於套件管理工具的額外負擔。如果您準備做完整的安"
"裝,包含 Debian 提供的所有程式,為<filename>/var</filename> 保留 2 或 3GB 的"
"空間應該滿足需求。如果您準備分開安裝(也就是說,安裝服務程式和工具,然後是文本"
"處理工具,接著是 X,...),您可以在 <filename>/var</filename> 下預留 "
"300&mdash;500 MB。如果硬碟空間不足,而且您不打算做主要的系統升級,您甚至可以"
"配置更少的空間,大概約 30-40MB"

#. Tag: para
#: partitioning.xml:190
#, fuzzy, no-c-format
msgid ""
"<filename>/tmp</filename>: temporary data created by programs will most "
"likely go in this directory. 40&ndash;100MB should usually be enough. Some "
"applications &mdash; including archive manipulators, CD/DVD authoring tools, "
"and multimedia software &mdash; may use <filename>/tmp</filename> to "
"temporarily store image files. If you plan to use such applications, you "
"should adjust the space available in <filename>/tmp</filename> accordingly."
msgstr ""
"<filename>/tmp</filename>: 程式製造出的暫存檔大都存到這個目錄,通常 "
"40&ndash;100 MB 便足夠。一些應用程式 &mdash; 包括檔案處理器,CD/DVD 製作工"
"具,和多媒體軟體 &mdash; 可能會使用 <filename>/tmp</filename> 臨時儲存映像"
"檔。如果您要使用這些程式,應該依據需要調整 <filename>/tmp</filename> 目錄的大"
"小。"

#. Tag: para
#: partitioning.xml:201
#, fuzzy, no-c-format
msgid ""
"<filename>/home</filename>: every user will put his personal data into a "
"subdirectory of this directory. Its size depends on how many users will be "
"using the system and what files are to be stored in their directories. "
"Depending on your planned usage you should reserve about 100MB for each "
"user, but adapt this value to your needs. Reserve a lot more space if you "
"plan to save a lot of multimedia files (pictures, MP3, movies) in your home "
"directory."
msgstr ""
"<filename>/home</filename>:每個使用者將他的個人資料放置在這個目錄的子目錄"
"下。其大小取決於有多少使用者將使用系統和有什麼文件放在他們的目錄下。根據您計"
"畫的使用量,您應該為每個使用者預留 100MB 空間,不過這個值應該依照您的需求設"
"定。假如您的家目錄計畫保存大量的多媒體檔案(MP3,電影),您該預留更多的空間。"

#. Tag: title
#: partitioning.xml:222
#, no-c-format
msgid "Recommended Partitioning Scheme"
msgstr "建議的分割方案"

#. Tag: para
#: partitioning.xml:223
#, no-c-format
msgid ""
"For new users, personal Debian boxes, home systems, and other single-user "
"setups, a single <filename>/</filename> partition (plus swap) is probably "
"the easiest, simplest way to go. However, if your partition is larger than "
"around 6GB, choose ext3 as your partition type. Ext2 partitions need "
"periodic file system integrity checking, and this can cause delays during "
"booting when the partition is large."
msgstr ""
"對於新使用者,個人 Debian 系統,家庭系統以及其它單用戶設定來說,一個單一"
"<filename>/</filename> 分割區(加上置換區)可能是最容易簡單的方式。但是如果您的"
"分割區大於6GB,請選擇 ext3 作為您的分割區類型。ext2 分割區需要週期性的檔案系"
"統完整性檢查,而且當分割區很大的時候,這個特性將導致開機的延遲。"

#. Tag: para
#: partitioning.xml:232
#, no-c-format
msgid ""
"For multi-user systems or systems with lots of disk space, it's best to put "
"<filename>/usr</filename>, <filename>/var</filename>, <filename>/tmp</"
"filename>, and <filename>/home</filename> each on their own partitions "
"separate from the <filename>/</filename> partition."
msgstr ""
"對於多使用者系統或者有很多磁碟空間的系統,最好放置 <filename>/usr</"
"filename>, <filename>/var</filename>, <filename>/tmp</filename>, 以及 "
"<filename>/home</filename> 到他們自己的分割區空間以和 <filename>/</filename> "
"分割區區隔開來。"

#. Tag: para
#: partitioning.xml:240
#, fuzzy, no-c-format
msgid ""
"You might need a separate <filename>/usr/local</filename> partition if you "
"plan to install many programs that are not part of the Debian distribution. "
"If your machine will be a mail server, you might need to make <filename>/var/"
"mail</filename> a separate partition. Often, putting <filename>/tmp</"
"filename> on its own partition, for instance 20&ndash;50MB, is a good idea. "
"If you are setting up a server with lots of user accounts, it's generally "
"good to have a separate, large <filename>/home</filename> partition. In "
"general, the partitioning situation varies from computer to computer "
"depending on its uses."
msgstr ""
"若您打算安裝許多不是 Debian 分發版本的程式時,您或許需要另一個獨立的 "
"<filename>/usr/local</filename> 分割區。如果您的機器是一個小的郵件伺服器,您"
"也許需要為 <filename>/var/mail</filename> 建立一個獨立的分割區。通常我們會放"
"置 <filename>/tmp</filename> 至獨立的分割區,大小大約20至 50MB 。如果您配置一"
"個伺服器帶有許多使用者帳戶,通常需要一個獨立、大的 <filename>/home</"
"filename> 分割區。一般來說,每台電腦的分割區狀況都有所不同,這取決於他們的用"
"途。"

#. Tag: para
#: partitioning.xml:252
#, no-c-format
msgid ""
"For very complex systems, you should see the <ulink url=\"&url-multidisk-"
"howto;\"> Multi Disk HOWTO</ulink>. This contains in-depth information, "
"mostly of interest to ISPs and people setting up servers."
msgstr ""
"對於非常複雜的系統來說,您應該閱讀 <ulink url=\"&url-multidisk-howto;\"> "
"Multi Disk HOWTO</ulink>。其中包含了很多對 ISP 以及設定伺服器的用戶來說非常用"
"的深入資訊。"

#. Tag: para
#: partitioning.xml:259
#, no-c-format
msgid ""
"With respect to the issue of swap partition size, there are many views. One "
"rule of thumb which works well is to use as much swap as you have system "
"memory. It also shouldn't be smaller than 16MB, in most cases. Of course, "
"there are exceptions to these rules. If you are trying to solve 10000 "
"simultaneous equations on a machine with 256MB of memory, you may need a "
"gigabyte (or more) of swap."
msgstr ""
"至於在置換分割區大小的問題,不同的人有不同的觀點。我們的建議是使用和系統記憶"
"體大小相同的置換分割區。在大多數情況下它不應該小於 16MB ,當然也有一些例外。"
"如果您正嘗試在 256MB 記憶體的機器上同時解決10000 個聯立方程式,您可能需要 1G "
"(或者更多)的置換分割區。"

#. Tag: para
#: partitioning.xml:268
#, no-c-format
msgid ""
"On 32-bit architectures (i386, m68k, 32-bit SPARC, and PowerPC), the maximum "
"size of a swap partition is 2GB. That should be enough for nearly any "
"installation. However, if your swap requirements are this high, you should "
"probably try to spread the swap across different disks (also called "
"<quote>spindles</quote>) and, if possible, different SCSI or IDE channels. "
"The kernel will balance swap usage between multiple swap partitions, giving "
"better performance."
msgstr ""
"在 32 位元結構(i386, m68k, 32位 SPARC 以及 PowerPC)下,置換分割區的最大尺寸"
"是 2GB。這應該滿足任何安裝情況。但是如果您的置換分割區需求非常大,您應該嘗試"
"將置換分割區分至不同磁碟中(這也叫做 <quote>spindles</quote> ),如果可能的話,"
"甚至是在不同的 SCSI 或者 IDE 通道。核心將在多個置換空間平衡用量來達到更好的性"
"能。"

#. Tag: para
#: partitioning.xml:278
#, fuzzy, no-c-format
msgid ""
"As an example, an older home machine might have 32MB of RAM and a 1.7GB IDE "
"drive on <filename>/dev/hda</filename>. There might be a 500MB partition for "
"another operating system on <filename>/dev/hda1</filename>, a 32MB swap "
"partition on <filename>/dev/hda3</filename> and about 1.2GB on <filename>/"
"dev/hda2</filename> as the Linux partition."
msgstr ""
"例如,一個較老的機器可能具有 32MB 記憶體以及一個在 <filename>/dev/hda</"
"filename>上 1.7GB 的 IDE 磁碟。 其他作業系統寫在 <filename>/dev/hda1</"
"filename> 上,此分區大小為 500MB ,一個 32MB 置換分割區作為 <filename>/dev/"
"hda3</filename>以及一個 1.2GB 分割區 <filename>/dev/hda2</filename>)作為 "
"Linux 分割區。"

#. Tag: para
#: partitioning.xml:287
#, no-c-format
msgid ""
"For an idea of the space taken by tasks you might be interested in adding "
"after your system installation is complete, check <xref linkend=\"tasksel-"
"size-list\"/>."
msgstr ""
"對於不同工作所需要多大的空間的概念,您也許對於系統安裝完畢後加入的安裝感興"
"趣,請參照 <xref linkend=\"tasksel-size-list\"/>。"

#. Tag: title
#: partitioning.xml:303
#, no-c-format
msgid "Device Names in Linux"
msgstr "Linux 裡的裝置名稱"

#. Tag: para
#: partitioning.xml:304
#, no-c-format
msgid ""
"Linux disks and partition names may be different from other operating "
"systems. You need to know the names that Linux uses when you create and "
"mount partitions. Here's the basic naming scheme:"
msgstr ""
"Linux 磁碟以及分割區名稱可能和其它的作業系統有所不同。當您建立以及掛載分割區"
"時,必須先知道 Linux 所使用的設備名稱。以下是基本的命名規則:"

#. Tag: para
#: partitioning.xml:312
#, no-c-format
msgid "The first floppy drive is named <filename>/dev/fd0</filename>."
msgstr "第一個軟碟機被命名為 <filename>/dev/fd0</filename>。"

#. Tag: para
#: partitioning.xml:317
#, no-c-format
msgid "The second floppy drive is named <filename>/dev/fd1</filename>."
msgstr "第二個軟碟機被命名為 <filename>/dev/fd1</filename>。"

#. Tag: para
#: partitioning.xml:322
#, no-c-format
msgid ""
"The first SCSI disk (SCSI ID address-wise) is named <filename>/dev/sda</"
"filename>."
msgstr ""
"第一個 SCSI 磁碟 (SCSI ID 反向地址) 被命名為 <filename>/dev/sda</filename>。"

#. Tag: para
#: partitioning.xml:328
#, no-c-format
msgid ""
"The second SCSI disk (address-wise) is named <filename>/dev/sdb</filename>, "
"and so on."
msgstr ""
"第二個 SCSI 磁碟 (反向地址) 被命名為 <filename>/dev/sdb</filename>,等等。"

#. Tag: para
#: partitioning.xml:334
#, no-c-format
msgid ""
"The first SCSI CD-ROM is named <filename>/dev/scd0</filename>, also known as "
"<filename>/dev/sr0</filename>."
msgstr ""
"第一個 SCSI 光碟機被命名為 <filename>/dev/scd0</filename>,也叫 <filename>/"
"dev/sr0</filename>。"

#. Tag: para
#: partitioning.xml:340
#, no-c-format
msgid ""
"The master disk on IDE primary controller is named <filename>/dev/hda</"
"filename>."
msgstr "主 IDE 控制器下的主磁碟被命名為 <filename>/dev/hda</filename>。"

#. Tag: para
#: partitioning.xml:346
#, no-c-format
msgid ""
"The slave disk on IDE primary controller is named <filename>/dev/hdb</"
"filename>."
msgstr "主 IDE 控制器下的從磁碟被命名為 <filename>/dev/hdb</filename>。"

#. Tag: para
#: partitioning.xml:352
#, no-c-format
msgid ""
"The master and slave disks of the secondary controller can be called "
"<filename>/dev/hdc</filename> and <filename>/dev/hdd</filename>, "
"respectively. Newer IDE controllers can actually have two channels, "
"effectively acting like two controllers."
msgstr ""
"第二個控制器的主磁碟和從磁碟分別被叫做 <filename>/dev/hdc</filename> 以及  "
"<filename>/dev/hdd</filename> ,較新的 IDE 控制器實際上有兩個通道,扮演著兩個"
"控制器的角色。"

#. Tag: para
#: partitioning.xml:363
#, no-c-format
msgid "The first DASD device is named <filename>/dev/dasda</filename>."
msgstr "第一個 DASD 裝置被命名為 <filename>/dev/dasda</filename>。"

#. Tag: para
#: partitioning.xml:369
#, no-c-format
msgid ""
"The second DASD device is named <filename>/dev/dasdb</filename>, and so on."
msgstr "第二個 DASD 裝置被命名為 <filename>/dev/dasdb</filename>,等等。"

#. Tag: para
#: partitioning.xml:377
#, no-c-format
msgid ""
"The partitions on each disk are represented by appending a decimal number to "
"the disk name: <filename>sda1</filename> and <filename>sda2</filename> "
"represent the first and second partitions of the first SCSI disk drive in "
"your system."
msgstr ""
"每個磁碟分割區的名字在磁碟名稱後面附加一個十進制數字: <filename>sda1</"
"filename> 以及 <filename>sda2</filename> 表示系統裡第一個 SCSI 磁碟的第一個及"
"第二個分割區。"

#. Tag: para
#: partitioning.xml:384
#, no-c-format
msgid ""
"Here is a real-life example. Let's assume you have a system with 2 SCSI "
"disks, one at SCSI address 2 and the other at SCSI address 4. The first disk "
"(at address 2) is then named <filename>sda</filename>, and the second "
"<filename>sdb</filename>. If the <filename>sda</filename> drive has 3 "
"partitions on it, these will be named <filename>sda1</filename>, "
"<filename>sda2</filename>, and <filename>sda3</filename>. The same applies "
"to the <filename>sdb</filename> disk and its partitions."
msgstr ""
"這裡有個實際的例子。假設您有一個系統帶有兩個 SCSI 磁碟,一個 SCSI 位址是 2 而"
"另外一個是 4。第一個磁碟(在 2 上)會被命名為 <filename>sda</filename>而第二個"
"是 <filename>sdb</filename>。如果 <filename>sda</filename> 磁碟有 3 個分割"
"區,它們將被命名為 <filename>sda1</filename>,<filename>sda2</filename>,以"
"及 <filename>sda3</filename>。 <filename>sdb</filename> 及其分割區亦是如此。"

#. Tag: para
#: partitioning.xml:395
#, no-c-format
msgid ""
"Note that if you have two SCSI host bus adapters (i.e., controllers), the "
"order of the drives can get confusing. The best solution in this case is to "
"watch the boot messages, assuming you know the drive models and/or "
"capacities."
msgstr ""
"注意如果您有兩個 SCSI 主機匯流排適配器 (控制器),設備的順序可能會比較混亂。假"
"設您知道磁碟模式以及/或者容量,最好的解決方案是觀察開機訊息。"

#. Tag: para
#: partitioning.xml:402
#, no-c-format
msgid ""
"Linux represents the primary partitions as the drive name, plus the numbers "
"1 through 4. For example, the first primary partition on the first IDE drive "
"is <filename>/dev/hda1</filename>. The logical partitions are numbered "
"starting at 5, so the first logical partition on that same drive is "
"<filename>/dev/hda5</filename>. Remember that the extended partition, that "
"is, the primary partition holding the logical partitions, is not usable by "
"itself. This applies to SCSI disks as well as IDE disks."
msgstr ""
"Linux 以主分割區為您的磁碟名稱再加上數字 1 到 4。例如,在第一個 IDE 磁碟上的"
"第一個主分區是 <filename>/dev/hda1</filename>。邏輯分割區將會從數字 5 開始,"
"因此在此磁碟的第一個邏輯分割區是 <filename>/dev/hda5</filename>。記住延伸分割"
"區,意即含有邏輯分割區的主分割區本身將不可用。這個規則同樣適用於 SCSI 。"

#. Tag: para
#: partitioning.xml:413
#, no-c-format
msgid ""
"Sun disk partitions allow for 8 separate partitions (or slices). The third "
"partition is usually (and is preferred to have) the <quote>Whole Disk</"
"quote> partition. This partition references all of the sectors of the disk, "
"and is used by the boot loader (either SILO, or Sun's)."
msgstr ""
"Sun 磁碟分割區允許 8 個獨立的分割區(或者片)。第三個分割區通常(一般也是)"
"<quote>整個磁碟</quote>分割區。這個分割區代表磁碟上所有的磁區,並且將被 boot "
"loader (SILO 或者 SUN 的)使用。"

#. Tag: para
#: partitioning.xml:420
#, no-c-format
msgid ""
"The partitions on each disk are represented by appending a decimal number to "
"the disk name: <filename>dasda1</filename> and <filename>dasda2</filename> "
"represent the first and second partitions of the first DASD device in your "
"system."
msgstr ""
"每個磁碟的分割區名字,是在磁碟名稱後面加一個十進制數字: <filename>dasda1</"
"filename> 以及 <filename>dasda2</filename> 表示您系統上第一個 DASD 裝置的第一"
"個以及第二個分區。"

#. Tag: title
#: partitioning.xml:435
#, no-c-format
msgid "Debian Partitioning Programs"
msgstr "Debian 分割程式"

#. Tag: para
#: partitioning.xml:436
#, no-c-format
msgid ""
"Several varieties of partitioning programs have been adapted by Debian "
"developers to work on various types of hard disks and computer "
"architectures. Following is a list of the program(s) applicable for your "
"architecture."
msgstr ""
"Debian 開發人員配置了幾種在不同硬碟及電腦架構上的分割區程式。下面是一個適合您"
"的架構的程式列表。"

#. Tag: command
#: partitioning.xml:448
#, no-c-format
msgid "partman"
msgstr "partman"

#. Tag: para
#: partitioning.xml:449
#, fuzzy, no-c-format
msgid ""
"Recommended partitioning tool in Debian. This Swiss army knife can also "
"resize partitions, create filesystems <phrase arch=\"x86\"> (<quote>format</"
"quote> in Windows speak)</phrase> and assign them to the mountpoints."
msgstr ""
"這是我們建議的 Debian 分割區工具。這個小而全的工具可以修改分區大小,建立檔案"
"系統 <phrase arch=\"i386\">(在 Windows 下的說法是 <quote>format</quote>)</"
"phrase> 並將分區連結至掛載點。"

#. Tag: command
#: partitioning.xml:460
#, no-c-format
msgid "fdisk"
msgstr "fdisk"

#. Tag: para
#: partitioning.xml:461
#, no-c-format
msgid "The original Linux disk partitioner, good for gurus."
msgstr "最早的 Linux 磁碟分割區工具,對高手來說很好用。"

#. Tag: para
#: partitioning.xml:465
#, fuzzy, no-c-format
msgid ""
"Be careful if you have existing FreeBSD partitions on your machine. The "
"installation kernels include support for these partitions, but the way that "
"<command>fdisk</command> represents them (or not) can make the device names "
"differ. See the <ulink url=\"&url-linux-freebsd;\">Linux+FreeBSD HOWTO</"
"ulink>."
msgstr ""
"請注意如果您的機器上有一個既存 FreeBSD 分區。安裝核心將包括對這些分割區的支"
"援,但是 <command>fdisk</command> 裝置名稱的表示方式可能有所不同(也可能不"
"是)。請參照 <ulink url=\"&url-linux-freebsd;\">Linux+FreeBSD HOWTO</ulink>"

#. Tag: command
#: partitioning.xml:477
#, no-c-format
msgid "cfdisk"
msgstr "cfdisk"

#. Tag: para
#: partitioning.xml:478
#, no-c-format
msgid "A simple-to-use, full-screen disk partitioner for the rest of us."
msgstr "一個簡單易用,給其它人使用的是全螢幕磁碟分割區程式。"

#. Tag: para
#: partitioning.xml:482
#, no-c-format
msgid ""
"Note that <command>cfdisk</command> doesn't understand FreeBSD partitions at "
"all, and, again, device names may differ as a result."
msgstr ""
"請注意 <command>cfdisk</command> 完全不瞭解 FreeBSD 的分割區,而且裝置名稱也"
"可能有所不同。"

#. Tag: command
#: partitioning.xml:491
#, no-c-format
msgid "atari-fdisk"
msgstr "atari-fdisk"

#. Tag: para
#: partitioning.xml:492
#, no-c-format
msgid "Atari-aware version of <command>fdisk</command>."
msgstr "Atari-aware 版本的 <command>fdisk</command>。"

#. Tag: command
#: partitioning.xml:500
#, no-c-format
msgid "amiga-fdisk"
msgstr "amiga-fdisk"

#. Tag: para
#: partitioning.xml:501
#, no-c-format
msgid "Amiga-aware version of <command>fdisk</command>."
msgstr "Amiga-aware 版本的 <command>fdisk</command>。"

#. Tag: command
#: partitioning.xml:509
#, no-c-format
msgid "mac-fdisk"
msgstr "mac-fdisk"

#. Tag: para
#: partitioning.xml:510
#, no-c-format
msgid "Mac-aware version of <command>fdisk</command>."
msgstr "Mac-aware 版本的 <command>fdisk</command>。"

#. Tag: command
#: partitioning.xml:518
#, no-c-format
msgid "pmac-fdisk"
msgstr "pmac-fdisk"

#. Tag: para
#: partitioning.xml:519
#, no-c-format
msgid ""
"PowerMac-aware version of <command>fdisk</command>, also used by BVM and "
"Motorola VMEbus systems."
msgstr ""
"PowerMac版本的 <command>fdisk</command>,同時也用於 BVM 以及 Motorola VMEbus "
"系統。"

#. Tag: command
#: partitioning.xml:528
#, no-c-format
msgid "fdasd"
msgstr "fdasd"

#. Tag: para
#: partitioning.xml:529
#, no-c-format
msgid ""
"&arch-title; version of <command>fdisk</command>; Please read the fdasd "
"manual page or chapter 13 in <ulink url=\"http://oss.software.ibm.com/"
"developerworks/opensource/linux390/docu/l390dd08.pdf\"> Device Drivers and "
"Installation Commands</ulink> for details."
msgstr ""
"&arch-title; <command>fdisk</command> 的版本; 請閱讀 <ulink url=\"fdasd.txt"
"\">fdasd 手冊</ulink>或者 <ulink url=\"http://oss.software.ibm.com/"
"developerworks/opensource/linux390/docu/l390dd08.pdf\"> Device Drivers and "
"\"\n"
"\"Installation Commands</ulink> 的第 13 章獲得詳細資訊。"

#. Tag: para
#: partitioning.xml:540
#, no-c-format
msgid ""
"One of these programs will be run by default when you select "
"<guimenuitem>Partition disks</guimenuitem> (or similar). It may be possible "
"to use a different partitioning tool from the command line on VT2, but this "
"is not recommended."
msgstr ""

#. Tag: para
#: partitioning.xml:547
#, no-c-format
msgid "Remember to mark your boot partition as <quote>Bootable</quote>."
msgstr ""

#. Tag: para
#: partitioning.xml:550
#, no-c-format
msgid ""
"One key point when partitioning for Mac type disks is that the swap "
"partition is identified by its name; it must be named <quote>swap</quote>. "
"All Mac linux partitions are the same partition type, Apple_UNIX_SRV2. "
"Please read the fine manual. We also suggest reading the <ulink url=\"&url-"
"mac-fdisk-tutorial;\">mac-fdisk Tutorial</ulink>, which includes steps you "
"should take if you are sharing your disk with MacOS."
msgstr ""
"重點是當分割 Mac 類型磁碟時,置換分割區根據它的名字做確認﹔它必須被命名為 "
"<quote>swap</quote>。所有的 Mac  Linux 分割區的類型都是 Apple_UNIX_SRV2 。請"
"閱讀合適的手冊。我們通常建議閱讀 <ulink url=\"&url-mac-fdisk-tutorial;\">mac-"
"fdisk 使用指南</ulink>,其中包括了如何同 MacOS 共享磁碟的步驟。"

# index.docbook:612, index.docbook:672, index.docbook:696, index.docbook:793, index.docbook:912, index.docbook:989
#. Tag: title
#: partitioning.xml:566 partitioning.xml:590 partitioning.xml:687
#: partitioning.xml:801 partitioning.xml:878
#, no-c-format
msgid "Partitioning for &arch-title;"
msgstr "為 &arch-title; 分割"

#. Tag: para
#: partitioning.xml:567
#, fuzzy, no-c-format
msgid ""
"PALO, the HPPA boot loader, requires a partition of type <quote>F0</quote> "
"somewhere in the first 2GB. This is where the boot loader and an optional "
"kernel and RAMdisk will be stored, so make it big enough for that &mdash; at "
"least 4Mb (I like 8&ndash;16MB). An additional requirement of the firmware "
"is that the Linux kernel must reside within the first 2GB of the disk. This "
"is typically achieved by making the root ext2 partition fit entirely within "
"the first 2GB of the disk. Alternatively you can create a small ext2 "
"partition near the start of the disk and mount that on <filename>/boot</"
"filename>, since that is the directory where the Linux kernel(s) will be "
"stored. <filename>/boot</filename> needs to be big enough to hold whatever "
"kernels (and backups) you might wish to load; 25&ndash;50MB is generally "
"sufficient."
msgstr ""
"PALO 是一個 HPPA 的 boot loader ,需要在磁碟前 2GB 中建立一個 <quote>F0</"
"quote> 的分割區。這個分割區裡面放有 boot loader 以及可選的核心和 RAMdisk ,因"
"此這個分區的大小最好夠大 &mdash; 至少需要 4 MB (我個人傾向於 8&mdash;16MB)。"
"軔體的附加需求是 Linux 核心必須放在磁碟的前 2 GB 內,我們可以把根 ext2 分割區"
"整個放在磁碟的前 2GB 內。或者您可以在磁碟前面建立一個小分割區,並且掛載到 "
"<filename>/boot</filename>,因為這個目錄下面放置了 Linux 核心。<filename>/"
"boot</filename> 必須夠大以便能放置任何你想載入的核心﹔一般來說 8&mdash;16MB "
"應該足夠。"

#. Tag: para
#: partitioning.xml:591
#, fuzzy, no-c-format
msgid ""
"If you have an existing other operating system such as DOS or Windows and "
"you want to preserve that operating system while installing Debian, you may "
"need to resize its partition to free up space for the Debian installation. "
"The installer supports resizing of both FAT and NTFS filesystems; when you "
"get to the installer's partitioning step, select the option "
"<guimenuitem>Manual</guimenuitem> and then simply select an existing "
"partition and change its size."
msgstr ""
"如果您已經有其他作業系統存在,像是 DOS 或 Windows,而且想在安裝 Debian 時保留"
"它們,您需要重新設置分割區大小,以釋放更多的空間給 Debian 安裝。安裝程式支援"
"重新修改 FAT 和 NTFS 檔案系統的大小﹔當您進行到安裝程式的分割區步驟,選擇手動"
"分割後只需選擇該分割區,即可更改其大小。"

#. Tag: para
#: partitioning.xml:601
#, no-c-format
msgid ""
"The PC BIOS generally adds additional constraints for disk partitioning. "
"There is a limit to how many <quote>primary</quote> and <quote>logical</"
"quote> partitions a drive can contain. Additionally, with pre 1994&ndash;98 "
"BIOSes, there are limits to where on the drive the BIOS can boot from. More "
"information can be found in the <ulink url=\"&url-partition-howto;\">Linux "
"Partition HOWTO</ulink> and the <ulink url=\"&url-phoenix-bios-faq-large-"
"disk;\">Phoenix BIOS FAQ</ulink>, but this section will include a brief "
"overview to help you plan most situations."
msgstr ""
"PC BIOS 一般會對磁碟分割區加入一些限制。比如說一個磁碟可以包含多少個 <quote>"
"主 (primry)</quote> 和 <quote>邏輯</quote>分割區。在 1994&mdash;1998 年的 "
"BIOS 裡, BIOS 能夠從什麼地方開機還受到限制。詳細資訊可以在 <ulink url="
"\"&url-partition-howto;\">Linux Partition HOWTO</ulink> 以及 <ulink url="
"\"&url-phoenix-bios-faq-large-disk;\">Phoenix BIOS 常見問答集</ulink>中找到。"
"但是這一節會有一個簡單的介紹,來幫助在大部分情況下進行規劃。"

#. Tag: para
#: partitioning.xml:612
#, no-c-format
msgid ""
"<quote>Primary</quote> partitions are the original partitioning scheme for "
"PC disks. However, there can only be four of them. To get past this "
"limitation, <quote>extended</quote> and <quote>logical</quote> partitions "
"were invented. By setting one of your primary partitions as an extended "
"partition, you can subdivide all the space allocated to that partition into "
"logical partitions. You can create up to 60 logical partitions per extended "
"partition; however, you can only have one extended partition per drive."
msgstr ""
"<quote>主</quote> 分割區是 PC 磁碟上最原始的分割區方式。但是,每個磁碟只能有"
"四個主分區。為了突破這個限制,發明了 <quote>延伸 (extended)</quote> 以及 "
"<quote> 邏輯 </quote> 分割區。將一個主分割區設定為延伸分割區,您可以將之分成"
"許多邏輯分割區。每個延伸分割區最多可切割成 60 個邏輯分割區﹔但是每個磁碟只能"
"有一個延伸分割區。"

#. Tag: para
#: partitioning.xml:623
#, no-c-format
msgid ""
"Linux limits the partitions per drive to 15 partitions for SCSI disks (3 "
"usable primary partitions, 12 logical partitions), and 63 partitions on an "
"IDE drive (3 usable primary partitions, 60 logical partitions). However the "
"normal &debian; system provides only 20 devices for partitions, so you may "
"not install on partitions higher than 20 unless you first manually create "
"devices for those partitions."
msgstr ""
"對於 SCSI 來說,Linux 限制每個磁碟最多有 15 個分割區( 3 個可用的主分割區,12 "
"個邏輯分割區)。對於 IDE 來說可以有 63 個分割區( 3 個可用的主分割區, 60 個邏"
"輯分割區)。但是通常 &debian; 系統只支持 20 個分割區裝置,因此您不能安裝超過 "
"20 個的分割區,除非您先為這些分割區手動建立裝置檔案。"

#. Tag: para
#: partitioning.xml:633
#, no-c-format
msgid ""
"If you have a large IDE disk, and are using neither LBA addressing, nor "
"overlay drivers (sometimes provided by hard disk manufacturers), then the "
"boot partition (the partition containing your kernel image) must be placed "
"within the first 1024 cylinders of your hard drive (usually around 524 "
"megabytes, without BIOS translation)."
msgstr ""
"如果您有一個很大的 IDE 磁碟,既沒有使用 LBA 定址,也沒有 overlay 驅動程式 (硬"
"碟製造商有時候提供此功能),那麼開機分割區 (含有您核心映像的分割區) 必須放置在"
"硬碟第一個 1024 磁柱內。(在沒有 BIOS 轉換的情況下,大約有 524MB)。"

#. Tag: para
#: partitioning.xml:641
#, no-c-format
msgid ""
"This restriction doesn't apply if you have a BIOS newer than around "
"1995&ndash;98 (depending on the manufacturer) that supports the "
"<quote>Enhanced Disk Drive Support Specification</quote>. Both Lilo, the "
"Linux loader, and Debian's alternative <command>mbr</command> must use the "
"BIOS to read the kernel from the disk into RAM. If the BIOS int 0x13 large "
"disk access extensions are found to be present, they will be utilized. "
"Otherwise, the legacy disk access interface is used as a fall-back, and it "
"cannot be used to address any location on the disk higher than the 1023rd "
"cylinder. Once Linux is booted, no matter what BIOS your computer has, these "
"restrictions no longer apply, since Linux does not use the BIOS for disk "
"access."
msgstr ""
"如果您的 BIOS 在 1995&mdash;1998 年之後出產(取決於製造商)且支援 "
"<quote>Enhanced Disk Drive Support Specification</quote> 則不受限。 Lilo , "
"Linux Loader 以及 Debian 的替代方案 <command>mbr</command> 必須使用 BIOS 從磁"
"碟讀取核心至記憶體。如果開啟 BIOS int 0x13 高容量硬碟的存取功能,則將被使用,"
"否則合法的磁碟存取界面會拿來當備用方式,而且它不能定址任何大於 1023rd 磁柱的"
"位置。一旦 Linux 啟動後,不管電腦的 BIOS 哪一種,這些限制將不再起任何作用,因"
"為 Linux 不使用 BIOS 來存取硬碟。"

#. Tag: para
#: partitioning.xml:655
#, no-c-format
msgid ""
"If you have a large disk, you might have to use cylinder translation "
"techniques, which you can set from your BIOS setup program, such as LBA "
"(Logical Block Addressing) or CHS translation mode (<quote>Large</quote>). "
"More information about issues with large disks can be found in the <ulink "
"url=\"&url-large-disk-howto;\">Large Disk HOWTO</ulink>. If you are using a "
"cylinder translation scheme, and the BIOS does not support the large disk "
"access extensions, then your boot partition has to fit within the "
"<emphasis>translated</emphasis> representation of the 1024th cylinder."
msgstr ""
"如果您有一個大硬碟,您也許必須使用磁柱轉換(cylinder translation)技術。它可以"
"透過 BIOS 設定程式中設定,比如 LBA (Logical Block Addressing) 或者 CHS 轉換模"
"式(<quote>Large</quote>)。關於大硬碟的各種議題討論可以在 <ulink url=\"&url-"
"large-disk-howto;\">Large Disk HOWTO</ulink> 下找到。如果您正在使用一個磁柱轉"
"換方案,而 BIOS 不支援高容量硬碟的存取,您的開機分割區必須放置在 <emphasis>轉"
"換後</emphasis> 的 1024 磁柱內。"

#. Tag: para
#: partitioning.xml:667
#, fuzzy, no-c-format
msgid ""
"The recommended way of accomplishing this is to create a small "
"(25&ndash;50MB should suffice) partition at the beginning of the disk to be "
"used as the boot partition, and then create whatever other partitions you "
"wish to have, in the remaining area. This boot partition <emphasis>must</"
"emphasis> be mounted on <filename>/boot</filename>, since that is the "
"directory where the Linux kernel(s) will be stored. This configuration will "
"work on any system, regardless of whether LBA or large disk CHS translation "
"is used, and regardless of whether your BIOS supports the large disk access "
"extensions."
msgstr ""
"解決這個問題的推薦方法,是在磁碟開始處建立一個小的( 5&mdash;10MB 就夠了)分割"
"區來作為開機分割區。並且在其它地方建立其它的分區。這個開機分割區 <emphasis>必"
"須</emphasis> 掛載至<filename>/boot</filename> 下,這是因為這是 Linux 核心放"
"置的地方。這樣的設定可以在任意系統上運作正常,不管是使用 LBA 或者大硬碟 CHS "
"轉換,甚至也不管您的 BIOS 是否支援高容量硬碟的存取。"

#. Tag: para
#: partitioning.xml:688
#, fuzzy, no-c-format
msgid ""
"The <command>partman</command> disk partitioner is the default partitioning "
"tool for the installer. It manages the set of partitions and their mount "
"points to ensure that the disks and filesystems are properly configured for "
"a successful installation. It actually uses <command>parted</command> to do "
"the on-disk partitioning."
msgstr ""
"<command>partman</command> 是安裝程式的預設分割工具。它管理一系列分割區以及掛"
"載點,來保証磁碟和檔案系統的設定正確,才能安裝成功。實際上它式使用 "
"<command>parted</command> 來進行磁碟分割的。"

#. Tag: title
#: partitioning.xml:700
#, no-c-format
msgid "EFI Recognized Formats"
msgstr "EFI 能夠識別的格式"

#. Tag: para
#: partitioning.xml:701
#, fuzzy, no-c-format
msgid ""
"The IA-64 EFI firmware supports two partition table (or disk label) formats, "
"GPT and MS-DOS. MS-DOS, the format typically used on i386 PCs, is no longer "
"recommended for IA-64 systems. Although the installer also provides "
"<command>cfdisk</command>, you should only use <ulink url=\"parted.txt\"> "
"<command>parted</command></ulink> because only it can manage both GPT and MS-"
"DOS tables correctly."
msgstr ""
"IA64 EFI 軔體支援 GPT 和 MS-DOS 兩種分割區表(或者磁碟標籤)格式。MS-DOS 格式通"
"常用在 i386 PC 上,並且不適用在 IA64 系統上。儘管安裝程式提供了 "
"<command>cfdisk</command>,您只需用 <ulink url=\"parted.txt\"> "
"<command>parted</command></ulink>,因為只有它能夠同時正確地管理 GPT 和 MS-"
"DOS 分區表。"

#. Tag: para
#: partitioning.xml:713
#, no-c-format
msgid ""
"The automatic partitioning recipes for <command>partman</command> allocate "
"an EFI partition as the first partition on the disk. You can also set up the "
"partition under the <guimenuitem>Guided partitioning</guimenuitem> from the "
"main menu in a manner similar to setting up a <emphasis>swap</emphasis> "
"partition."
msgstr ""
"<command>partman</command> 自動分割區方案會分配一個 EFI 分割區作為磁碟上的第"
"一個分割區。您也可以在主選單下選擇 <guimenuitem>Guided partitioning</"
"guimenuitem> 建立分割區。其方法類似建立一個 <emphasis>置換</emphasis> 分割"
"區。"

#. Tag: para
#: partitioning.xml:721
#, no-c-format
msgid ""
"The <command>partman</command> partitioner will handle most disk layouts. "
"For those rare cases where it is necessary to manually set up a disk, you "
"can use the shell as described above and run the <command>parted</command> "
"utility directly using its command line interface. Assuming that you want to "
"erase your whole disk and create a GPT table and some partitions, then "
"something similar to the following command sequence could be used: "
"<informalexample><screen>\n"
"      mklabel gpt\n"
"      mkpartfs primary fat 0 50\n"
"      mkpartfs primary linux-swap 51 1000\n"
"      mkpartfs primary ext2 1001 3000\n"
"      set 1 boot on\n"
"      print\n"
"      quit\n"
"</screen></informalexample> This creates a new partition table, and three "
"partitions to be used as an EFI boot partition, swap space, and a root file "
"system. Finally it sets the boot flag on the EFI partition. Partitions are "
"specified in Megabytes, with start and end offsets from the beginning of the "
"disk. So, for example, above we created a 1999MB ext2 file system starting "
"at offset 1001MB from the start of the disk. Note that formatting swap space "
"with <command>parted</command> can take a few minutes to complete, as it "
"scans the partition for bad blocks."
msgstr ""
"<command>partman</command> 分割區工具將處理大部分的磁碟排列方式。對於那些需要"
"手動設置磁碟的罕見例子,您可以按照上面方法採用 shell 並且直接執行 "
"<command>parted</command> 工具下的命令列界面。若您想清除整個硬碟並且建立一個 "
"GPT 分割區表以及一些分割區,可使用下面命令: <informalexample><screen>\n"
"      mklabel gpt\n"
"      mkpartfs primary fat 0 50\n"
"      mkpartfs primary linux-swap 51 1000\n"
"      mkpartfs primary ext2 1001 3000\n"
"      set 1 boot on\n"
"      print\n"
"      quit\n"
"</screen></informalexample> 一個新的分割區表及三個分割區建立後,分別用做 EFI "
"開機分割區,置換空間以及一個根檔案系統。最後它建立了 EFI 分割區的開機標記。分"
"割區以百萬位元組為單位,表示從磁碟開始起始和結束位置的偏移量。舉個例子,我們"
"在磁碟開始處偏移量為 1001MB 的地方開始建立了一個 1999MB ext2 檔案系統。注意"
"用 <command>parted</command> 格式化置換分割區可能要花一些時間來完成,因為它要"
"掃瞄壞磁區。"

#. Tag: title
#: partitioning.xml:746
#, no-c-format
msgid "Boot Loader Partition Requirements"
msgstr " boot loader 分割區需求"

#. Tag: para
#: partitioning.xml:747
#, fuzzy, no-c-format
msgid ""
"ELILO, the IA-64 boot loader, requires a partition containing a FAT file "
"system with the <userinput>boot</userinput> flag set. The partition must be "
"big enough to hold the boot loader and any kernels or RAMdisks you may wish "
"to boot. A minimum size would be about 20MB, but if you expect to run with "
"multiple kernels, then 128MB might be a better size."
msgstr ""
"ELILO 是一種 ia64 boot loader 需要一個 FAT 檔案系統的分割區,且此分割區標記"
"為 <userinput>boot</userinput>。分割區必須夠大以便能夠放入 boot loader,以及"
"其他想啟動的核心以及 RAMdisks 。最小需要 20MB,但是如果您想執行多個核心的話,"
"最好是 128MB 。"

#. Tag: para
#: partitioning.xml:756
#, no-c-format
msgid ""
"The EFI Boot Manager and the EFI Shell fully support the GPT table so the "
"boot partition does not necessarily have to be the first partition or even "
"on the same disk. This is convenient if you should forget to allocate the "
"partition and only find out after you have formatted the other partitions on "
"your disk(s). The <command>partman</command> partitioner checks for an EFI "
"partition at the same time it checks for a properly set up <emphasis>root</"
"emphasis> partition. This gives you an opportunity to correct the disk "
"layout before the package install begins. The easiest way to correct this "
"omission is to shrink the last partition of the disk to make enough free "
"space for adding an EFI partition."
msgstr ""
"因為 EFI Boot Manager 以及 EFI Shell 完全支援 GPT 表格所以開機分割區不一定需"
"要是第一個分割區,甚至可以不在同個磁碟上。若你之前忘了分配分割區,這樣方便您"
"在格式化磁碟上的其它分割區後再決定。<command>partman</command> 分割區程式將在"
"設置 <emphasis>root</emphasis> 分割區時會同時檢查一個 EFI 分割區。這樣您就有"
"機會在開始安裝套件之前檢查磁碟的排列方式。糾正這個問題的最簡單的方法,是在最"
"後一個分割區末尾留下足夠的磁盤空間,來加入一個 EFI 分區。"

#. Tag: para
#: partitioning.xml:771
#, no-c-format
msgid ""
"It is strongly recommended that you allocate the EFI boot partition on the "
"same disk as the <emphasis>root</emphasis> filesystem."
msgstr ""
"強烈建議您把 EFI 開機分割區和 <emphasis>root</emphasis> 檔案系統裝在同一個磁"
"碟上。"

#. Tag: title
#: partitioning.xml:779
#, no-c-format
msgid "EFI Diagnostic Partitions"
msgstr "EFI 診斷分割區"

#. Tag: para
#: partitioning.xml:780
#, no-c-format
msgid ""
"The EFI firmware is significantly more sophisticated than the usual BIOS "
"seen on most x86 PCs. Some system vendors take advantage of the ability of "
"the EFI to access files and run programs from a hard disk filesystem to "
"store diagnostics and EFI based system management utilities on the hard "
"disk. This is a separate FAT format filesystem on the system disk. Consult "
"the system documentation and accessories that come with the system for "
"details. The easiest time to set up a diagnostics partition is at the same "
"time you set up the EFI boot partition."
msgstr ""
"大多數 x86 PCs 上常見的 BIOS 來說,EFI 軔體明顯地複雜得多。一些系統製造商利"
"用 EFI 的優點從硬碟檔案系統來存取檔案以及執行程式以儲存一些診斷訊息和 EFI 的"
"系統管理工具。 在系統磁碟上存在一個另外 FAT 格式的檔案系統,請查閱相關的系統"
"文檔和附件以獲得細節。建立一個診斷分割區的最容易的時刻是在設置 EFI 開機分割區"
"的時候。"

#. Tag: para
#: partitioning.xml:802
#, fuzzy, no-c-format
msgid ""
"SGI machines require an SGI disk label in order to make the system bootable "
"from hard disk. It can be created in the fdisk expert menu. The thereby "
"created volume header (partition number 9) should be at least 3MB large. If "
"the volume header created is too small, you can simply delete partition "
"number 9 and re-add it with a different size. Note that the volume header "
"must start at sector 0."
msgstr ""
"SGI Indys 需要一個 SGI 磁碟標籤來確保系統能夠從硬碟上開機。它能夠在 fdisk "
"expert menu 下建立。因此建立的 volume header (分割區號 9)至少要有 3MB 大。如"
"果 volume header 建立的太小,您可以簡單的刪除分割區號 9 並且重新加入另外不同"
"的尺寸。注意 volume header 必須從 0 號磁區開始。"

#. Tag: title
#: partitioning.xml:819
#, no-c-format
msgid "Partitioning Newer PowerMacs"
msgstr "較新的 PowerMacs 分割區"

#. Tag: para
#: partitioning.xml:820
#, fuzzy, no-c-format
msgid ""
"If you are installing onto a NewWorld PowerMac you must create a special "
"bootstrap partition to hold the boot loader. The size of this partition must "
"have at least 819200 bytes and its partition type must be "
"<emphasis>Apple_Bootstrap</emphasis>. If the bootstrap partition is not "
"created with the <emphasis>Apple_Bootstrap</emphasis> type your machine "
"cannot be made bootable from the hard disk. This partition can easily be "
"created by creating a new partition in <command>partman</command> and "
"telling it to use it as a <quote>NewWorld boot partition</quote>, or in "
"<command>mac-fdisk</command> using the <userinput>b</userinput> command."
msgstr ""
"如果您在 NewWorld PowerMac 上安裝,您必須建立一個特殊的啟動分割區來存放 boot "
"loader 。這個分割區大小必須是 800KB ,而且它的分割區類型必須是"
"<emphasis>Apple_Bootstrap</emphasis>。如果啟動分割區的類型並非"
"<emphasis>Apple_Bootstrap</emphasis>,則您的機器無法從硬碟開機。可以採用 "
"<command>partman</command> 並將它用作 <quote>NewWorld boot partition</"
"quote>,或在 <command>mac-fdisk</command> 使用 <userinput>b</userinput> 命"
"令。"

#. Tag: para
#: partitioning.xml:833
#, no-c-format
msgid ""
"The special partition type Apple_Bootstrap is required to prevent MacOS from "
"mounting and damaging the bootstrap partition, as there are special "
"modifications made to it in order for OpenFirmware to boot it automatically."
msgstr ""
"特殊的分割區類型 Apple_Bootstrap 用來避免 MacOS 掛載並且毀壞此開機磁區,這是"
"因為要使 OpenFirmware 能夠自動啟動 MacOS 需要對分割區做一些特殊修改。"

#. Tag: para
#: partitioning.xml:840
#, no-c-format
msgid ""
"Note that the bootstrap partition is only meant to hold 3 very small files: "
"the <command>yaboot</command> binary, its configuration <filename>yaboot."
"conf</filename>, and a first stage OpenFirmware loader <command>ofboot.b</"
"command>. It need not and must not be mounted on your file system nor have "
"kernels or anything else copied to it. The <command>ybin</command> and "
"<command>mkofboot</command> utilities are used to manipulate this partition."
msgstr ""
"注意開機磁區只能存放三個非常小的檔案:<command>yaboot</command> 可執行檔,它"
"的設定檔 <filename>yaboot.conf</filename>,以及第一級 OpenFirmware loader "
"<command>ofboot.b</command>。它不需要且不能被您的檔案系統掛載,或者把核心或其"
"它檔案複製到其中。<command>ybin</command> 和 <command>mkofboot</command> 工具"
"可以用來管理這個分割區。"

#. Tag: para
#: partitioning.xml:850
#, no-c-format
msgid ""
"In order for OpenFirmware to automatically boot &debian; the bootstrap "
"partition should appear before other boot partitions on the disk, especially "
"MacOS boot partitions. The bootstrap partition should be the first one you "
"create. However, if you add a bootstrap partition later, you can use "
"<command>mac-fdisk</command>'s <userinput>r</userinput> command to reorder "
"the partition map so the bootstrap partition comes right after the map "
"(which is always partition 1). It's the logical map order, not the physical "
"address order, that counts."
msgstr ""
"為了確保 OpenFirmware 能夠自動啟動 &debian;,開機磁區必須位於硬碟上其他開機磁"
"區之前,特別是 MacOS 開機磁區。開機分割區應該是您第一個建立的分割區。但是,如"
"果您在之後新加入開機磁區,您可以使用 <command>mac-fdisk</command> 的 "
"<userinput>r</userinput> 命令來重新調整分割區順序,如此一來開機磁區就可以在此"
"之後順利使用(位於 1 號分割區)。請注意,這是邏輯順序而不是實際位址順序。"

#. Tag: para
#: partitioning.xml:862
#, no-c-format
msgid ""
"Apple disks normally have several small driver partitions. If you intend to "
"dual boot your machine with MacOSX, you should retain these partitions and a "
"small HFS partition (800k is the minimum size). That is because MacOSX, on "
"every boot, offers to initialize any disks which do not have active MacOS "
"partitions and driver partitions."
msgstr ""
"Apple 磁碟通常有一些小的驅動分割區。如果您想同時使用 MacOSX 而採用雙開機方"
"式,您應該保持這些分割區以及一個小的 HFS 分割區 (大小至少 800k)。這是因為 "
"MacOSX 在每次啟動時,會初始化沒有任何啟用中的 MacOS 分割區及驅動分割區的磁"
"盤。"

#. Tag: para
#: partitioning.xml:879
#, no-c-format
msgid ""
"Make sure you create a <quote>Sun disk label</quote> on your boot disk. This "
"is the only kind of partition scheme that the OpenBoot PROM understands, and "
"so it's the only scheme from which you can boot. The <keycap>s</keycap> key "
"is used in <command>fdisk</command> to create Sun disk labels."
msgstr ""
"確保在您的開機磁碟上建立了 <quote>Sun 磁碟標籤</quote> 。這是 OpenBoot PROM "
"唯一懂得的分割區方式,而且它是唯一能夠被開機分割區類型。可以在 "
"<command>fdisk</command> 中使用<keycap>s</keycap> 鍵來建立 Sun 磁碟標籤。"

#. Tag: para
#: partitioning.xml:887
#, no-c-format
msgid ""
"Furthermore, on &arch-title; disks, make sure your first partition on your "
"boot disk starts at cylinder 0. While this is required, it also means that "
"the first partition will contain the partition table and the boot block, "
"which are the first two sectors of the disk. You must <emphasis>not</"
"emphasis> put swap on the first partition of the boot drive, since swap "
"partitions do not preserve the first few sectors of the partition. You can "
"put Ext2 or UFS partitions there; these will leave the partition table and "
"the boot block alone."
msgstr ""
"進一步來說,在 &arch-title; 磁碟裡,請確認您的開機磁碟的第一分割區是從 "
"cylinder 0 開始。這是必須的,這意味著第一個分割區將含有分割區表以及開機區,它"
"們通常在磁碟的前兩個磁區內。您一定 <emphasis>不能</emphasis> 設置開機磁碟的第"
"一分割區為置換分割區,因為置換分割區並不能保留分割區前幾個磁區。您可以在那裡"
"放置 Ext2 或者 UFS 分割區,它們將分割區表和開機磁區隔離開來。"

#. Tag: para
#: partitioning.xml:898
#, no-c-format
msgid ""
"It is also advised that the third partition should be of type <quote>Whole "
"disk</quote> (type 5), and contain the entire disk (from the first cylinder "
"to the last). This is simply a convention of Sun disk labels, and helps the "
"<command>SILO</command> boot loader keep its bearings."
msgstr ""
"我們建議第三個分割區的類型應該是 <quote>Whole disk</quote>(type 5),並且包含"
"整個磁碟(從第一個磁柱至最後一個),這是 Sun 磁碟標籤的慣例, 並且確保 "
"<command>SILO</command> boot loader 工作良好。"

#, fuzzy
#~ msgid ""
#~ "Booting Debian from the SRM console (the only disk boot method supported "
#~ "by &releasename;) requires you to have a BSD disk label, not a DOS "
#~ "partition table, on your boot disk. (Remember, the SRM boot block is "
#~ "incompatible with MS-DOS partition tables &mdash; see <xref linkend="
#~ "\"alpha-firmware\"/>.) As a result, <command>partman</command> creates "
#~ "BSD disk labels when running on &architecture;, but if your disk has an "
#~ "existing DOS partition table the existing partitions will need to be "
#~ "deleted before <command>partman</command> can convert it to use a disk "
#~ "label."
#~ msgstr ""
#~ "從 SRM 控制台啟動 Debian (唯一 &releasename; 支援的啟動方法)要求您的開機磁"
#~ "碟上有 BSD 磁碟標籤,而不是 MS-DOS 分割區。(注意, SRM 開機區塊不與 MS-"
#~ "DOS 分割區相容 &mdash; 請參閱 <xref linkend=\"alpha-firmware\"/>。)因此,"
#~ "<command>partman</command> 在 &architecture; 上使用時會建立 BSD 磁碟標籤,"
#~ "如果您的磁碟上已經存在一個 DOS 分割區表,在 partman 將之轉換到磁碟標籤前需"
#~ "要將此分割區刪除。"

#~ msgid ""
#~ "If you have chosen to use <command>fdisk</command> to partition your "
#~ "disk, and the disk that you have selected for partitioning does not "
#~ "already contain a BSD disk label, you must use the <quote>b</quote> "
#~ "command to enter disk label mode."
#~ msgstr ""
#~ "如果您選擇使用 <command>fdisk</command> 來分割您的磁碟,並且該磁碟上沒有 "
#~ "BSD 磁碟標籤,您必須使用 <quote>b</quote> 命令進入磁碟標籤模式。"

#, fuzzy
#~ msgid ""
#~ "Unless you wish to use the disk you are partitioning from Tru64 Unix or "
#~ "one of the free 4.4BSD-Lite derived operating systems (FreeBSD, OpenBSD, "
#~ "or NetBSD), you should <emphasis>not</emphasis> create the third "
#~ "partition as a <quote>whole disk</quote> partition (i.e. with start and "
#~ "end sectors to span the whole disk), as this renders the disk "
#~ "incompatible with the tools used to make it bootable with aboot. This "
#~ "means that the disk configured by the installer for use as the Debian "
#~ "boot disk will be inaccessible to the operating systems mentioned earlier."
#~ msgstr ""
#~ "除非您想在 Tru64 Unix 或者一個 free 4.4BSD-Lite 衍生的作業系統下(FreeBSD, "
#~ "OpenBSD 或 NetBSD)使用這個磁碟,請 <emphasis>不要</emphasis> 建立包含整個"
#~ "磁碟的第三分割區。<command>aboot</command> 並不需要做這個動作,而且它可能"
#~ "導致一些麻煩,這是因為當用 <command>swriteboot</command> 工具在開機區段下"
#~ "安裝 <command>aboot</command> 時,分割區會被一個開機區塊覆蓋。"

#~ msgid ""
#~ "Also, because <command>aboot</command> is written to the first few "
#~ "sectors of the disk (currently it occupies about 70 kilobytes, or 150 "
#~ "sectors), you <emphasis>must</emphasis> leave enough empty space at the "
#~ "beginning of the disk for it. In the past, it was suggested that you make "
#~ "a small partition at the beginning of the disk, to be left unformatted. "
#~ "For the same reason mentioned above, we now suggest that you do not do "
#~ "this on disks that will only be used by GNU/Linux. When using "
#~ "<command>partman</command>, a small partition will still be created for "
#~ "<command>aboot</command> for convenience reasons."
#~ msgstr ""
#~ "同時因為 <command>aboot</command> 將被寫到磁碟前面的幾個區段(目前它佔用大"
#~ "約 70 KB 空間,或者 150 個區段)。您 <emphasis>必須</emphasis> 在磁碟一開始"
#~ "的地方留下足夠的空間。過去我們建議您在磁碟的開始處分出一個較小且未格式化的"
#~ "分割區。基於以上的理由,我們現在建議您這塊磁碟專門用於 GNU/Linux。當使用 "
#~ "<command>partman</command>,仍會建立一個小的分割區給 <command>aboot</"
#~ "command>,這樣一來較為方便。"

#~ msgid ""
#~ "For ARC installations, you should make a small FAT partition at the "
#~ "beginning of the disk to contain <command>MILO</command> and "
#~ "<command>linload.exe</command> &mdash; 5 megabytes should be sufficient, "
#~ "see <xref linkend=\"non-debian-partitioning\"/>. Unfortunately, making "
#~ "FAT file systems from the menu is not yet supported, so you'll have to do "
#~ "it manually from the shell using <command>mkdosfs</command> before "
#~ "attempting to install the boot loader."
#~ msgstr ""
#~ "對於 ARC 的安裝來說,您應該在磁碟開始處建立一個小的 FAT 分區以放入 "
#~ "<command>MILO</command> 以及 <command>linload.exe</command> &mdash; 這至少"
#~ "需要 5 MB 空間,請參見 <xref linkend=\"non-debian-partitioning\"/>。不幸地"
#~ "是,尚未支援從選單建立 FAT 檔案系統的方法,因此您必須在 Shell 下面手動使"
#~ "用 <command>mkdosfs</command> ,然後再嘗試安裝 boot loader 。"

#~ msgid ""
#~ "On the other hand, Atari Falcons and Macs feel pain when swapping, so "
#~ "instead of making a large swap partition, get as much RAM as possible."
#~ msgstr ""
#~ "另外一個方面,Atari Falcons 以及 Macs 對置換感到很痛苦,因此建立一個大的置"
#~ "換分割區不如盡可能獲得更多的 RAM 。"

#~ msgid ""
#~ "The first ACSI device is named <filename>/dev/ada</filename>, the second "
#~ "is named <filename>/dev/adb</filename>."
#~ msgstr ""
#~ "第一個 ACSI 裝置被命名為 <filename>/dev/ada</filename> ,第二個則是 "
#~ "<filename>/dev/adb</filename>。"

#~ msgid ""
#~ "VMEbus systems using the TEAC FC-1 SCSI floppy drive will see it as "
#~ "normal SCSI disk. To make identification of the drive simpler the "
#~ "installation software will create a symbolic link to the appropriate "
#~ "device and name it <filename>/dev/sfd0</filename>."
#~ msgstr ""
#~ "VMEbus 系統使用的 TEAC FC-1 SCSI 軟碟將被看成正常的 SCSI 磁碟。為了讓磁碟"
#~ "辨認更容易,安裝軟體將建立一個符號連結至合適的裝置並且稱為 <filename>/dev/"
#~ "sfd0</filename>。"

#~ msgid "The first XT disk is named <filename>/dev/xda</filename>."
#~ msgstr "第一個 XT 磁碟會被命名為 <filename>/dev/xda</filename>。"

#~ msgid "The second XT disk is named <filename>/dev/xdb</filename>."
#~ msgstr "第二個 XT 磁碟會被命名為 <filename>/dev/xdb</filename>。"

#, fuzzy
#~ msgid ""
#~ "If you will be working with more than 20 partitions on your ide disk, you "
#~ "will need to create devices for partitions 21 and beyond. The next step "
#~ "of initializing the partition will fail unless a proper device is "
#~ "present. As an example, here are commands you can use in <userinput>tty2</"
#~ "userinput> or under <guimenuitem>Execute a shell</guimenuitem> to add a "
#~ "device so the 21st partition can be initialized: "
#~ "<informalexample><screen>\n"
#~ "# cd /dev\n"
#~ "# mknod hda21 b 3 21\n"
#~ "# chgrp disk hda21\n"
#~ "# chmod 660 hda21\n"
#~ "</screen></informalexample> Booting into the new system will fail unless "
#~ "proper devices are present on the target system. After installing the "
#~ "kernel and modules, execute: <informalexample><screen>\n"
#~ "# cd /target/dev\n"
#~ "# mknod hda21 b 3 21\n"
#~ "# chgrp disk hda21\n"
#~ "# chmod 660 hda21\n"
#~ "</screen></informalexample> <phrase arch=\"x86\">Remember to mark your "
#~ "boot partition as <quote>Bootable</quote>.</phrase>"
#~ msgstr ""
#~ "如果您的 ide 磁碟上會超過 20 個分割區,您需要為 21 以上的分割區建立裝置檔"
#~ "案。除非有適當的裝置,否則下一步初始化分割區將失敗。比如說,這裡列舉了相關"
#~ "的命令,讓您可以在 <userinput>tty2</userinput> 中使用或者在執行一個介殼之"
#~ "後加入一個裝置檔案,令第 21 個分割區能夠被初始化。 "
#~ "<informalexample><screen>\n"
#~ "# cd /dev\n"
#~ "# mknod hda21 b 3 21 \n"
#~ "# chgrp disk hda21\n"
#~ "# chmod 660 hda21\n"
#~ "</screen></informalexample> 除非在目標系統上有合適的裝置名稱,否則啟動一個"
#~ "新安裝的系統將會失敗。在安裝完核心及模塊後,執行: "
#~ "<informalexample><screen>\n"
#~ "# cd /target/dev\n"
#~ "# mknod hda21 b 3 21 \n"
#~ "# chgrp disk hda21\n"
#~ "# chmod 660 hda21\n"
#~ "</screen></informalexample> <phrase arch=\"i386\">記住將您的開機分割區標籤"
#~ "為 <quote>Bootable</quote>。</phrase>"

#~ msgid ""
#~ "One of these programs will be run by default when you select "
#~ "<guimenuitem>Partition a Hard Disk</guimenuitem>. If the one which is run "
#~ "by default isn't the one you want, quit the partitioner, go to the shell "
#~ "(<userinput>tty2</userinput>) by pressing <keycap>Alt</keycap> and "
#~ "<keycap>F2</keycap> keys together, and manually type in the name of the "
#~ "program you want to use (and arguments, if any). Then skip the "
#~ "<guimenuitem>Partition a Hard Disk</guimenuitem> step in <command>debian-"
#~ "installer</command> and continue to the next step."
#~ msgstr ""
#~ "當您選擇 <guimenuitem>對硬碟進行分割</guimenuitem> 時,有一程式預設會啟"
#~ "動。如果預設啟動的那個不是您所想要的,退出分割區程式,在 shell "
#~ "(<userinput>tty2</userinput>) 下按下 <keycap>Alt</keycap> 以及 "
#~ "<keycap>F2</keycap>,並且手動輸入您想使用的程式名稱(以及可能的參數)。然後"
#~ "跳過 <guimenuitem>對硬碟進行分割</guimenuitem> 步驟至 <command>debian-"
#~ "installer</command> ,並繼續進行下一步。"

#~ msgid ""
#~ "The following is a list of important considerations regarding directories "
#~ "and partitions."
#~ msgstr "file:///home/jungle/doc/localstart.html"

#~ msgid ""
#~ "<filename>/tmp</filename>: if a program creates temporary data it will "
#~ "most likely go in <filename>/tmp</filename>. 20-50 MB should usually be "
#~ "enough."
#~ msgstr ""
#~ "<filename>/tmp</filename>:如果一個程式建立暫存檔它很可能會放在 "
#~ "<filename>/tmp</filename> 中。一般來說 20-50 MB 應該足夠使用。"

#~ msgid ""
#~ "Atari-aware version of <command>fdisk</command>; read the <ulink url="
#~ "\"atari-fdisk.txt\">atari-fdisk manual page</ulink>."
#~ msgstr ""
#~ "Atari-aware 的 <command>fdisk</command>版本﹔請閱讀 <ulink url=\"atari-"
#~ "fdisk.txt\">atari-fdisk 手冊</ulink>。"

#~ msgid ""
#~ "Amiga-aware version of <command>fdisk</command>; read the <ulink url="
#~ "\"amiga-fdisk.txt\">amiga-fdisk manual page</ulink>."
#~ msgstr ""
#~ "Amiga-aware 的 <command>fdisk</command>版本﹔請閱讀 <ulink url=\"amiga-"
#~ "fdisk.txt\">amiga-fdisk 手冊</ulink>。"

#~ msgid ""
#~ "Mac-aware version of <command>fdisk</command>; read the <ulink url=\"mac-"
#~ "fdisk.txt\">mac-fdisk manual page</ulink>."
#~ msgstr ""
#~ "Mac-aware 的 <command>fdisk</command>版本﹔請閱讀 <ulink url=\"mac-fdisk."
#~ "txt\">mac-fdisk 手冊</ulink>。"