summaryrefslogtreecommitdiff
blob: 5c2f1b04087c0ee855a6e0364a4ef6bb89e47200 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
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
# Azamat H. Hackimov <azamat.hackimov@gmail.com>, 2009, 2010, 2011.
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2011-10-28 22:38+0600\n"
"PO-Revision-Date: 2011-09-20 11:34+0500\n"
"Last-Translator: vladimir <vokalashnikov@gmail.com>\n"
"Language-Team: Russian <gentoo-doc-ru@gentoo.org>\n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Lokalize 1.0\n"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(abstract):11
msgid ""
"To be able to install Gentoo, you must create the necessary partitions. This "
"chapter describes how to partition a disk for future usage."
msgstr ""
"Чтобы установить Gentoo, нужно создать подходящие дисковые разделы. В этой "
"главе описывается, как разбить диск для будущего использования."

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(version):16
msgid "11"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(date):17
msgid "2011-10-17"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(title):20
msgid "Introduction to Block Devices"
msgstr "Введение в блочные устройства"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(title):27
msgid "Partitions and Slices"
msgstr "Разделы и слайсы"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):30
msgid ""
"Although it is theoretically possible to use a full disk to house your Linux "
"system, this is almost never done in practice. Instead, full disk block "
"devices are split up in smaller, more manageable block devices. On most "
"systems, these are called <e>partitions</e>. Other architectures use a "
"similar technique, called <e>slices</e>."
msgstr ""
"Хотя теоретически и возможно использовать весь диск для размещения системы "
"Linux, на практике так никогда не делают. Вместо этого дисковое пространство "
"разбивается на несколько малых, более управляемых блочных устройств. Во "
"многих системах эти устройства называются <e>разделами</e>. В других "
"используется похожее понятие под названием <e>слайсы</e>."

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(title):42
msgid "Designing a Partitioning Scheme"
msgstr "Разработка схемы разделения диска"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(title):44
msgid "Default Partitioning Scheme"
msgstr "Схема разделения по умолчанию"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):47
msgid ""
"If you are not interested in drawing up a partitioning scheme for your "
"system, you can use the partitioning scheme we use throughout this book:"
msgstr ""
"Если вы не хотите заниматься разработкой схемы для вашей системы, вы можете "
"воспользоваться схемой, которую мы используем в этой книге:"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(th):54
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(th):254
msgid "Partition"
msgstr "Раздел"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(th):55
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(th):600
msgid "Filesystem"
msgstr "Файловая система"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(th):56
msgid "Size"
msgstr "Размер"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(th):57
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(th):255
msgid "Description"
msgstr "Описание"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(ti):61
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(ti):63
msgid "Partition map"
msgstr "Таблица разделов"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(ti):62
msgid "31.5k"
msgstr "31.5k"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(ti):67
msgid "(bootstrap)"
msgstr "(начальная загрузка)"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(ti):68
msgid "800k"
msgstr "800k"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(ti):69
msgid "Apple_Bootstrap"
msgstr "Apple_Bootstrap"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(ti):73
msgid "(swap)"
msgstr "(swap)"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(ti):74
msgid "512M"
msgstr "512 МБ"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(ti):75
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(ti):263
msgid "Swap partition"
msgstr "Раздел подкачки"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(ti):79
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(ti):608
msgid "ext3"
msgstr "ext3"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(ti):80
msgid "Rest of the disk"
msgstr "Оставшаяся часть диска"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(ti):81
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(ti):267
msgid "Root partition"
msgstr "Корневой раздел"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(note):85
msgid ""
"There are some partitions named like this: <path>Apple_Driver43</path>, "
"<path>Apple_Driver_ATA</path>, <path>Apple_FWDriver</path>, "
"<path>Apple_Driver_IOKit</path>, and <path>Apple_Patches</path>. If you are "
"not planning to use MacOS 9 you can delete them, because MacOS X and Linux "
"don't need them. You might have to use parted in order to delete them, as "
"mac-fdisk can't delete them yet."
msgstr ""
"Есть некоторые разделы названные так: <path>Apple_Driver43</path>, "
"<path>Apple_Driver_ATA</path>, <path>Apple_FWDriver</path>, "
"<path>Apple_Driver_IOKit</path>, и <path>Apple_Patches</path>. Если вы не "
"думаете использовать MacOS 9 вы можете удалить их, ибо MacOS X и Linux не "
"нуждаются в них. Вероятно вам придется использовать разбиение по порядку для "
"их удаления, ибо mac-fdisk не может их удалить."

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):94
msgid ""
"If you are interested in knowing how big a partition should be, or even how "
"many partitions you need, read on. Otherwise continue now with <uri link="
"\"#mac-fdisk\">Apple G5: Using mac-fdisk to Partition your Disk</uri> or "
"<uri link=\"#fdisk\">IBM pSeries: using fdisk to Partition your Disk</uri>"
msgstr ""
"Если вам интересно узнать насколько много может быть разделов, или как много "
"разделов вам необходимо, читайте дальше. В противном случие переходите к "
"<uri link=\"#mac-fdisk\">Apple G5: используем mac-fdisk для  разметки вашего "
"диска</uri> или <uri link=\"#fdisk\">IBM pSeries: используем fdisk для "
"разметки вашего диска</uri>"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(title):105
msgid "How Many and How Big?"
msgstr "Сколько и какого размера?"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):108
msgid ""
"The number of partitions is highly dependent on your environment. For "
"instance, if you have lots of users, you will most likely want to have your "
"<path>/home</path> separate as it increases security and makes backups "
"easier. If you are installing Gentoo to perform as a mailserver, your <path>/"
"var</path> should be separate as all mails are stored inside <path>/var</"
"path>. A good choice of filesystem will then maximise your performance. "
"Gameservers will have a separate <path>/opt</path> as most gaming servers "
"are installed there. The reason is similar for <path>/home</path>: security "
"and backups. You will definitely want to keep <path>/usr</path> big: not "
"only will it contain the majority of applications, the Portage tree alone "
"takes around 500 Mbyte excluding the various sources that are stored in it."
msgstr ""
"Количество разделов очень сильно зависит от вашего окружения. Например, если "
"в вашей системе зарегистрировано большое количество пользователей, вероятно, "
"вы захотите, чтобы в целях увеличения безопасности и упрощения создания "
"резервных копий <path>/home</path> находился отдельно. Если вы "
"устанавливаете Gentoo в качестве почтового сервера, то <path>/var</path> "
"должен находиться на отдельном разделе, так как вся почта хранится в <path>/"
"var</path>. Правильный выбор файловой системы позволит увеличить "
"производительность вашей системы. Игровые серверы должны иметь отдельный "
"раздел с <path>/opt</path>, так как большая часть игровых служб "
"устанавливается в этот каталог. Причина выделения в собственный раздел "
"аналогична <path>/home</path>: безопасность и резервные копии. Для <path>/"
"usr</path> вам определенно понадобится большой раздел — помимо того, что "
"здесь хранится большинство приложений, одно дерево Portage занимает около "
"500 мегабайт, не считая архивов с исходными кодами, размещенных внутри "
"дерева."

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):122
msgid ""
"As you can see, it very much depends on what you want to achieve. Separate "
"partitions or volumes have the following advantages:"
msgstr ""
"Как вы видите, все зависит от ваших целей. Наличие отдельных разделов или "
"томов обладает следующими преимуществами:"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(li):128
msgid ""
"You can choose the best performing filesystem for each partition or volume"
msgstr ""
"Вы можете выбрать наиболее подходящую файловую систему для каждого раздела "
"или тома."

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(li):131
msgid ""
"Your entire system cannot run out of free space if one defunct tool is "
"continuously writing files to a partition or volume"
msgstr ""
"Вы не столкнетесь с нехваткой места на диске для всей системы, если какое-"
"нибудь неправильно работающее приложение постоянно производит запись на "
"раздел или том."

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(li):135
msgid ""
"If necessary, file system checks are reduced in time, as multiple checks can "
"be done in parallel (although this advantage is more with multiple disks "
"than it is with multiple partitions)"
msgstr ""
"В случае необходимости проверка файловой системы займет меньше времени, так "
"как проверка разных разделов может выполняться параллельно (хотя это "
"преимущество более заметно при использовании нескольких дисков, а не "
"разделов)."

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(li):140
msgid ""
"Security can be enhanced by mounting some partitions or volumes read-only, "
"nosuid (setuid bits are ignored), noexec (executable bits are ignored) etc."
msgstr ""
"Безопасность системы может быть улучшена, если некоторые разделы будут "
"смонтированы в режиме read-only (только для чтения), nosuid (бит setuid "
"игнорируется), noexec (бит запуска игнорируется) и так далее."

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):146
msgid ""
"However, multiple partitions have disadvantages as well. If not configured "
"properly, you will have a system with lots of free space on one partition "
"and none on another. Another nuisance is that separate partitions - "
"especially for important mountpoints like <path>/usr</path> or <path>/var</"
"path> - often require the administrator to boot with an initramfs to mount "
"the partition before other boot scripts start. This isn't always the case "
"though, so YMMV."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):155
msgid "There is also a 15-partition limit for SCSI and SATA."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(title):163
msgid "Default: Using mac-fdisk (Apple G5) to Partition your Disk"
msgstr ""
"По умолчанию: Использование mac-fdisk (Apple G5) для разметки вашего диска"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):166
msgid "At this point, create your partitions using <c>mac-fdisk</c>:"
msgstr "Сейчас, создайте ваши разделы используя <c>mac-fdisk</c>:"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre:caption):170
msgid "Starting mac-fdisk"
msgstr "Запуск mac-fdisk"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre):170
#, no-wrap
msgid ""
"\n"
"# <i>mac-fdisk /dev/sda</i>\n"
msgstr ""
"\n"
"# <i>mac-fdisk /dev/sda</i>\n"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):174
msgid ""
"First delete the partitions you have cleared previously to make room for "
"your Linux partitions. Use <c>d</c> in <c>mac-fdisk</c> to delete those "
"partition(s). It will ask for the partition number to delete."
msgstr ""
"Сперва удалите разделы, которые очистили ранее для освабождения места под "
"ваши разделы linux. Используйте <c>d</c> в <c>mac-fdisk</c> для удаления  "
"раздела(ов). Он спросит номер раздела для удаления."

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):180
msgid ""
"Second, create an <e>Apple_Bootstrap</e> partition by using <c>b</c>. It "
"will ask for what block you want to start. Enter the number of your first "
"free partition, followed by a <c>p</c>. For instance this is <c>2p</c>."
msgstr ""
"Далее, создайте раздел <e>Apple_Bootstrap</e> используя <c>b</c>. Он спросит "
"с какого блока вы хотите начать. Введите номер вашего первого свободного "
"раздела, а затем <c>p</c>. Например: <c>2p</c>."

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(note):186
msgid ""
"This partition is <e>not</e> a \"boot\" partition. It is not used by Linux "
"at all; you don't have to place any filesystem on it and you should never "
"mount it. PPC users don't need an extra partition for <path>/boot</path>."
msgstr ""
"Этот раздел <e>не</e> является \"загрузочным\" разделом. Он не используется "
"Linux как все; вы не должны размещать никакую файловую систему на нём и вы "
"должны никогда не монтировать его. PPC пользователи не нуждаются в "
"дополнительном разделе для <path>/boot</path>."

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):192
msgid ""
"Now create a swap partition by pressing <c>c</c>. Again <c>mac-fdisk</c> "
"will ask for what block you want to start this partition from. As we used "
"<c>2</c> before to create the Apple_Bootstrap partition, you now have to "
"enter <c>3p</c>. When you're asked for the size, enter <c>512M</c> (or "
"whatever size you want). When asked for a name, enter <c>swap</c> "
"(mandatory)."
msgstr ""
"Сейчас создайте swap раздел нажав <c>c</c>. Снова <c>mac-fdisk</c> спросит, "
"с какого блока вы хотите начать разметку.  Как мы использовали <c>2</c> "
"перед созданием раздела Apple_Bootstrap, вы должны ввести <c>3p</c>. Когда "
"вас спросят о размере, введите <c>512M</c> (или другой размер,  нужный "
"вам).  Когда спросит имя, введите <c>swap</c> (обязательно)."

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):200
msgid ""
"To create the root partition, enter <c>c</c>, followed by <c>4p</c> to "
"select from what block the root partition should start. When asked for the "
"size, enter <c>4p</c> again. <c>mac-fdisk</c> will interpret this as \"Use "
"all available space\". When asked for the name, enter <c>root</c> "
"(mandatory)."
msgstr ""
"Для создания корневого раздела, введите <c>c</c>, затем <c>4p</c> выбирая из "
"чего блок корневого раздела должен запуститься. Когда спросят размер, "
"введите <c>4p</c> снова. <c>mac-fdisk</c> будет интерпретировать это как "
"\"Использовать все доступное место\". Когда спросят о названии, введите "
"<c>root</c> (обязательно)."

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):207
msgid ""
"To finish up, write the partition to the disk using <c>w</c> and <c>q</c> to "
"quit <c>mac-fdisk</c>."
msgstr ""
"В завершении, запишите разбивку диска используя <c>w</c> и <c>q</c> для "
"выхода <c>mac-fdisk</c>."

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(note):212
msgid ""
"To make sure everything is ok, you should run mac-fdisk once more and check "
"whether all the partitions are there. If you don't see any of the partitions "
"you created, or the changes you made, you should reinitialize your "
"partitions by pressing <c>i</c> in mac-fdisk. Note that this will recreate "
"the partition map and thus remove all your partitions."
msgstr ""
"Попрообуем убедиться что все в порядке, вы должны запустить mac-fdisk еще "
"раз и проверить все ли разделы там. Если вы не видите любые созданные вами "
"разделы, или изменения сделаные вами, вы должны инициализировать разделы "
"ввести <c>i</c> в mac-fdisk. Заметим что это воссоздаст карту разделов и тем "
"самым удалит все ваши разделыы."

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):220
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):560
msgid ""
"Now that your partitions are created, you can continue with <uri link="
"\"#filesystems\">Creating Filesystems</uri>."
msgstr ""
"Теперь, когда все разделы созданы, перейдем к <uri link=\"#filesystems"
"\">Созданию файловых систем</uri>."

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(title):228
msgid "IBM pSeries, iSeries and OpenPower: using fdisk to Partition your Disk"
msgstr ""
"IBM pSeries, iSeries и OpenPower: используют fdisk для разбивки вашего диска"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(note):232
msgid ""
"If you are planning to use a RAID disk array for your Gentoo installation "
"and you are using POWER5-based hardware, you should now run <c>iprconfig</c> "
"to format the disks to Advanced Function format and create the disk array. "
"You should emerge <c>iprutils</c> after your install is complete."
msgstr ""
"Если вы планируете использовать RAID массив на диске для ваше установленной "
"Gentoo и вы используете железо основанное на POWER5, вы должны запустить "
"<c>iprconfig</c>  для форматирования дисков в формате Advanced Function "
"(расширенные функции) и создать дисковый массив. Вы должны установить "
"<c>iprutils</c>  после завершения  вами установки."

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):239
msgid ""
"If you have an ipr-based SCSI adapter, you should start the ipr utilities "
"now."
msgstr ""
"Если вы имеете ipr-based SCSI adapter, вы можете запустить сейчас утилиту "
"ipr."

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre:caption):243
msgid "Starting ipr utilities"
msgstr "Запуск утилиты ipr"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre):243
#, no-wrap
msgid ""
"\n"
"# <i>/etc/init.d/iprinit start</i>\n"
msgstr ""
"\n"
"# <i>/etc/init.d/iprinit start</i>\n"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):247
msgid ""
"The following parts explain how to create the example partition layout "
"described previously, namely:"
msgstr ""
"Следующая часть описывает создание примерной схемы разделения диска, "
"описанной ранее:"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(ti):259
msgid "PPC PReP Boot partition"
msgstr "PPC PReP Загрузочный раздел"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):271
msgid "Change your partition layout according to your own preference."
msgstr "Измените эту схему в соответствии с вашими пожеланиями."

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(title):278
msgid "Viewing the Current Partition Layout"
msgstr "Просмотр текущей схемы разбиения диска"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):281
msgid ""
"<c>fdisk</c> is a popular and powerful tool to split your disk into "
"partitions. Fire up <c>fdisk</c> on your disk (in our example, we use <path>/"
"dev/sda</path>):"
msgstr ""
"<c>fdisk</c> — это популярная и очень мощная утилита для разделение диска на "
"разделы. Запустите <c>fdisk</c> с указанием вашего диска в качестве "
"параметра (в нашем примере используется <path>/dev/sda</path>):"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre:caption):287
msgid "Starting fdisk"
msgstr "Запуск fdisk"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre):287
#, no-wrap
msgid ""
"\n"
"# <i>fdisk /dev/sda</i>\n"
msgstr ""
"\n"
"# <i>fdisk /dev/sda</i>\n"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):291
msgid ""
"Once in <c>fdisk</c>, you'll be greeted with a prompt that looks like this:"
msgstr ""
"Запустив <c>fdisk</c>, вы увидите приветственное сообщение, выглядящее "
"примерно так:"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre:caption):296
msgid "fdisk prompt"
msgstr "Приглашение fdisk"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre):296
#, no-wrap
msgid ""
"\n"
"Command (m for help):\n"
msgstr ""
"\n"
"Command (m for help):\n"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):300
msgid ""
"If you still have an AIX partition layout on your system, you will get the "
"following error message:"
msgstr ""
"Если у вас есть в системе макет AIX раздела, вы   получите следующее "
"сообщение об ошибке:"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre:caption):305
msgid "Error message from fdisk"
msgstr "Сообщение об ошибке от fdisk"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre):305
#, no-wrap
msgid ""
"\n"
"  There is a valid AIX label on this disk.\n"
"  Unfortunately Linux cannot handle these\n"
"  disks at the moment.  Nevertheless some\n"
"  advice:\n"
"  1. fdisk will destroy its contents on write.\n"
"  2. Be sure that this disk is NOT a still vital\n"
"     part of a volume group. (Otherwise you may\n"
"     erase the other disks as well, if unmirrored.)\n"
"  3. Before deleting this physical volume be sure\n"
"     to remove the disk logically from your AIX\n"
"     machine.  (Otherwise you become an AIXpert).\n"
"\n"
"Command (m for help):\n"
msgstr ""
"\n"
"  There is a valid AIX label on this disk.\n"
"  Unfortunately Linux cannot handle these\n"
"  disks at the moment.  Nevertheless some\n"
"  advice:\n"
"  1. fdisk will destroy its contents on write.\n"
"  2. Be sure that this disk is NOT a still vital\n"
"     part of a volume group. (Otherwise you may\n"
"     erase the other disks as well, if unmirrored.)\n"
"  3. Before deleting this physical volume be sure\n"
"     to remove the disk logically from your AIX\n"
"     machine.  (Otherwise you become an AIXpert).\n"
"\n"
"Command (m for help):\n"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):321
msgid ""
"Don't worry, you can create a new empty DOS partition table by pressing "
"<c>o</c>."
msgstr ""
"Не паникуйте, вы можете создать новый пустую таблицу разделов DOS нажав "
"<c>o</c>."

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(warn):326
msgid "This will destroy any installed AIX version!"
msgstr "Это уничтожит любые установленные версии AIX!"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):330
msgid "Type <c>p</c> to display your disk current partition configuration:"
msgstr ""
"Напечатайте <c>p</c> для просмотра текущей настройки разделов вашего диска."

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre:caption):334
msgid "An example partition configuration"
msgstr "Примерная схема диска"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre):334
#, no-wrap
msgid ""
"\n"
"Command (m for help): <i>p</i>\n"
"\n"
"Disk /dev/sda: 30.7 GB, 30750031872 bytes\n"
"141 heads, 63 sectors/track, 6761 cylinders\n"
"Units = cylinders of 8883 * 512 = 4548096 bytes\n"
"\n"
"   Device Boot      Start         End      Blocks   Id  System\n"
"/dev/sda1               1          12       53266+  83  Linux\n"
"/dev/sda2              13         233      981571+  82  Linux swap\n"
"/dev/sda3             234         674     1958701+  83  Linux\n"
"/dev/sda4             675        6761    27035410+   5  Extended\n"
"/dev/sda5             675        2874     9771268+  83  Linux\n"
"/dev/sda6            2875        2919      199836   83  Linux\n"
"/dev/sda7            2920        3008      395262   83  Linux\n"
"/dev/sda8            3009        6761    16668918   83  Linux\n"
"\n"
"Command (m for help):\n"
msgstr ""
"\n"
"Command (m for help): <i>p</i>\n"
"\n"
"Disk /dev/sda: 30.7 GB, 30750031872 bytes\n"
"141 heads, 63 sectors/track, 6761 cylinders\n"
"Units = cylinders of 8883 * 512 = 4548096 bytes\n"
"\n"
"   Device Boot      Start         End      Blocks   Id  System\n"
"/dev/sda1               1          12       53266+  83  Linux\n"
"/dev/sda2              13         233      981571+  82  Linux swap\n"
"/dev/sda3             234         674     1958701+  83  Linux\n"
"/dev/sda4             675        6761    27035410+   5  Extended\n"
"/dev/sda5             675        2874     9771268+  83  Linux\n"
"/dev/sda6            2875        2919      199836   83  Linux\n"
"/dev/sda7            2920        3008      395262   83  Linux\n"
"/dev/sda8            3009        6761    16668918   83  Linux\n"
"\n"
"Command (m for help):\n"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):354
msgid ""
"This particular disk is configured to house six Linux filesystems (each with "
"a corresponding partition listed as \"Linux\") as well as a swap partition "
"(listed as \"Linux swap\")."
msgstr ""
"Данный диск разбит на 6 файловых систем Linux (Кажда из которых имеет "
"соответствующий раздел в списке как \"Linux\") , а также раздел swap (в "
"списке как \"Linux swap\"). "

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(title):363
msgid "Removing all Partitions"
msgstr "Удаление всех разделов"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):366
msgid ""
"We will first remove all existing partitions from the disk. Type <c>d</c> to "
"delete a partition. For instance, to delete an existing <path>/dev/sda1</"
"path>:"
msgstr ""
"Сначала мы удалим все существующие разделы с диска. Введите <c>d</c> для "
"удаления раздела. Например, для удаления существующего раздела <path>/dev/"
"sda1</path>:"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(note):372
msgid ""
"If you don't want to delete all partitions just delete those you want to "
"delete. At this point you should create a backup of your data to avoid "
"losing it."
msgstr ""
"Если вы не хотите удалять все разделы, просто удалите которые вы хотите "
"удалить. На этом этапе вы можете создать резервную копию данных, чтобы не "
"потерять их."

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre:caption):377
msgid "Deleting a partition"
msgstr "Удаление раздела"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre):377
#, no-wrap
msgid ""
"\n"
"Command (m for help): <i>d</i>\n"
"Partition number (1-4): <i>1</i>\n"
msgstr ""
"\n"
"Command (m for help): <i>d</i>\n"
"Partition number (1-4): <i>1</i>\n"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):382
msgid ""
"The partition has been scheduled for deletion. It will no longer show up if "
"you type <c>p</c>, but it will not be erased until your changes have been "
"saved. If you made a mistake and want to abort without saving your changes, "
"type <c>q</c> immediately and hit Enter and your partition will not be "
"deleted."
msgstr ""
"Раздел будет отмечен для удаления. Он больше не будет отображаться, если вы "
"введете <c>p</c>, но фактически он не будет удален до тех пор, пока вы не "
"сохраните сделанные изменения. Если вы ошиблись и хотите прервать работу без "
"сохранения изменений, немедленно введите <c>q</c> и нажмите ввод, и ваш "
"раздел не будет удален."

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):390
msgid ""
"Now, assuming that you do indeed want to wipe out all the partitions on your "
"system, repeatedly type <c>p</c> to print out a partition listing and then "
"type <c>d</c> and the number of the partition to delete it. Eventually, "
"you'll end up with a partition table with nothing in it:"
msgstr ""
"Теперь, подразумевая, что вы действительно хотите удалить все разделы в "
"вашей системе, поочередно наберите <c>p</c> для просмотра списка оставшихся "
"разделов, потом <c>d</c> и номер раздела для удаления. В конечном итоге вы "
"получите пустую таблицу разделов:"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre:caption):397
msgid "An empty partition table"
msgstr "Пустая таблица разделов"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre):397
#, no-wrap
msgid ""
"\n"
"Disk /dev/sda: 30.7 GB, 30750031872 bytes\n"
"141 heads, 63 sectors/track, 6761 cylinders\n"
"Units = cylinders of 8883 * 512 = 4548096 bytes\n"
"\n"
"Device Boot    Start       End    Blocks   Id  System\n"
"\n"
"Command (m for help):\n"
msgstr ""
"\n"
"Disk /dev/sda: 30.7 GB, 30750031872 bytes\n"
"141 heads, 63 sectors/track, 6761 cylinders\n"
"Units = cylinders of 8883 * 512 = 4548096 bytes\n"
"\n"
"Device Boot    Start       End    Blocks   Id  System\n"
"\n"
"Command (m for help):\n"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):407
msgid ""
"Now that the in-memory partition table is empty, we're ready to create the "
"partitions. We will use a default partitioning scheme as discussed "
"previously. Of course, don't follow these instructions to the letter if you "
"don't want the same partitioning scheme!"
msgstr ""
"Теперь, когда мы очистили таблицу разделов, хранящуюся в памяти, настало "
"время создавать разделы. Мы будем использовать схему разделения диска из "
"нашего примера, о чем мы говорили ранее. Естественно, не следуйте этим "
"инструкциям, если не хотите получить таблицу разделов идентичную нашей!"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(title):417
msgid "Creating the PPC PReP boot partition"
msgstr "Создание PPC PReP загрузочного раздела"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):420
msgid ""
"We first create a small PReP boot partition. Type <c>n</c> to create a new "
"partition, then <c>p</c> to select a primary partition, followed by <c>1</c> "
"to select the first primary partition. When prompted for the first cylinder, "
"hit enter. When prompted for the last cylinder, type <c>+7M</c> to create a "
"partition 7 MB in size. After you've done this, type <c>t</c> to set the "
"partition type, <c>1</c> to select the partition you just created and then "
"type in <c>41</c> to set the partition type to \"PPC PReP Boot\". Finally, "
"you'll need to mark the PReP partition as bootable."
msgstr ""
"Мы, сперва, создадим маленький PReP загрузочный раздел. Напечатав <c>n</c> "
"для создания нового раздела, затем <c>p</c> для выбора primary раздела, "
"затем <c>1</c> для выбора первого основного раздела. В ответ на вопрос о "
"первом цилиндре, нажмите enter. В ответ на вопрос о последнем цилиндре, "
"напечатайте <c>+7M</c> для создания раздела размером 7 MB. После проделанных "
"вами махинаций, напечатайте <c>t</c> для установки типа раздела,  <c>1</c>  "
"для выбора раздела созданного вами и затем напечатайте <c>41</c> установив "
"тип раздела как  \"PPC PReP Boot\". В конце, вы должны отметить PReP раздел "
"как загрузочный."

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(note):432
msgid "The PReP partition has to be smaller than 8 MB!"
msgstr "PReP раздел должен быть меньше, чем 8 MB!"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre:caption):436
msgid "Creating the PReP boot partition"
msgstr "Создание PReP загрузочного раздела"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre):436
#, no-wrap
msgid ""
"\n"
"Command (m for help): <i>p</i>\n"
"\n"
"Disk /dev/sda: 30.7 GB, 30750031872 bytes\n"
"141 heads, 63 sectors/track, 6761 cylinders\n"
"Units = cylinders of 8883 * 512 = 4548096 bytes\n"
"\n"
"   Device Boot      Start         End      Blocks   Id  System\n"
"\n"
"Command (m for help): <i>n</i>\n"
"Command action\n"
"      e   extended\n"
"      p   primary partition (1-4)\n"
"<i>p</i>\n"
"Partition number (1-4): <i>1</i>\n"
"First cylinder (1-6761, default 1): \n"
"Using default value 1\n"
"Last cylinder or +size or +sizeM or +sizeK (1-6761, default\n"
"6761): <i>+8M</i>\n"
"\n"
"Command (m for help): <i>t</i>\n"
"Selected partition 1\n"
"Hex code (type L to list codes): <i>41</i>\n"
"Changed system type of partition 1 to 41 (PPC PReP Boot)\n"
"\n"
"Command (m for help): <i>a</i>\n"
"Partition number (1-4): <i>1</i>\n"
"Command (m for help):\n"
msgstr ""
"\n"
"Command (m for help): <i>p</i>\n"
"\n"
"Disk /dev/sda: 30.7 GB, 30750031872 bytes\n"
"141 heads, 63 sectors/track, 6761 cylinders\n"
"Units = cylinders of 8883 * 512 = 4548096 bytes\n"
"\n"
"   Device Boot      Start         End      Blocks   Id  System\n"
"\n"
"Command (m for help): <i>n</i>\n"
"Command action\n"
"      e   extended\n"
"      p   primary partition (1-4)\n"
"<i>p</i>\n"
"Partition number (1-4): <i>1</i>\n"
"First cylinder (1-6761, default 1): \n"
"Using default value 1\n"
"Last cylinder or +size or +sizeM or +sizeK (1-6761, default\n"
"6761): <i>+8M</i>\n"
"\n"
"Command (m for help): <i>t</i>\n"
"Selected partition 1\n"
"Hex code (type L to list codes): <i>41</i>\n"
"Changed system type of partition 1 to 41 (PPC PReP Boot)\n"
"\n"
"Command (m for help): <i>a</i>\n"
"Partition number (1-4): <i>1</i>\n"
"Command (m for help):\n"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):466
msgid ""
"Now, when you type <c>p</c>, you should see the following partition "
"information:"
msgstr ""
"Теперь, когда вы напечатаете <c>p</c>, вы можете увидеть следующую "
"информацию о разбивке:"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre:caption):470
msgid "Created boot partition"
msgstr "Созданный загрузочный раздел"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre):470
#, no-wrap
msgid ""
"\n"
"Command (m for help): <i>p</i>\n"
"\n"
"Disk /dev/sda: 30.7 GB, 30750031872 bytes\n"
"141 heads, 63 sectors/track, 6761 cylinders\n"
"Units = cylinders of 8883 * 512 = 4548096 bytes\n"
"\n"
"   Device Boot      Start         End      Blocks   Id  System\n"
"/dev/sda1  *            1           3       13293   41  PPC PReP Boot\n"
"\n"
"Command (m for help):\n"
msgstr ""
"\n"
"Command (m for help): <i>p</i>\n"
"\n"
"Disk /dev/sda: 30.7 GB, 30750031872 bytes\n"
"141 heads, 63 sectors/track, 6761 cylinders\n"
"Units = cylinders of 8883 * 512 = 4548096 bytes\n"
"\n"
"   Device Boot      Start         End      Blocks   Id  System\n"
"/dev/sda1  *            1           3       13293   41  PPC PReP Boot\n"
"\n"
"Command (m for help):\n"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(title):485
msgid "Creating the Swap Partition"
msgstr "Создание раздела подкачки"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):488
msgid ""
"Let's now create the swap partition. To do this, type <c>n</c> to create a "
"new partition, then <c>p</c> to tell fdisk that you want a primary "
"partition. Then type <c>2</c> to create the second primary partition, <path>/"
"dev/sda2</path> in our case. When prompted for the first cylinder, hit "
"enter. When prompted for the last cylinder, type <c>+512M</c> to create a "
"partition 512MB in size. After you've done this, type <c>t</c> to set the "
"partition type, <c>2</c> to select the partition you just created and then "
"type in <c>82</c> to set the partition type to \"Linux Swap\". After "
"completing these steps, typing <c>p</c> should display a partition table "
"that looks similar to this:"
msgstr ""
"Теперь создадим раздел подкачки. Чтобы сделать это, наберите <c>n</c> для "
"создания нового раздела, затем <c>p</c>, чтобы указать fdisk, что вы хотите "
"создать первичный раздел. После этого наберите <c>2</c>, чтобы создать "
"второй первичный раздел, в нашем случае <path>/dev/hda2</path>. На вопрос о "
"первом цилиндре просто нажмите ввод. По поводу последнего же цилиндра "
"ответьте <c>+512M</c>, чтобы создать раздел размером 512 МБ. После того, как "
"вы все это проделаете, введите <c>t</c> для установки типа раздела, потом "
"<c>2</c> для выбора раздела, который вы только что создали, и после всего "
"введите <c>82</c>, чтобы выбрать для раздела тип «Linux Swap». После "
"окончания этих процедур, если вы наберете <c>p</c>, то таблица разделов "
"должна выглядеть примерно следующим образом:"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre:caption):501
msgid "Partition listing after creating a swap partition"
msgstr "Список разделов после создания раздела подкачки"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre):501
#, no-wrap
msgid ""
"\n"
"Command (m for help): <i>p</i>\n"
"\n"
"Disk /dev/sda: 30.7 GB, 30750031872 bytes\n"
"141 heads, 63 sectors/track, 6761 cylinders\n"
"Units = cylinders of 8883 * 512 = 4548096 bytes\n"
"\n"
"   Device Boot      Start         End      Blocks   Id  System\n"
"/dev/sda1               1           3       13293   41  PPC PReP Boot\n"
"/dev/sda2               4         117      506331   82  Linux swap\n"
"\n"
"Command (m for help):\n"
msgstr ""
"\n"
"Command (m for help): <i>p</i>\n"
"\n"
"Disk /dev/sda: 30.7 GB, 30750031872 bytes\n"
"141 heads, 63 sectors/track, 6761 cylinders\n"
"Units = cylinders of 8883 * 512 = 4548096 bytes\n"
"\n"
"   Device Boot      Start         End      Blocks   Id  System\n"
"/dev/sda1               1           3       13293   41  PPC PReP Boot\n"
"/dev/sda2               4         117      506331   82  Linux swap\n"
"\n"
"Command (m for help):\n"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(title):518
msgid "Creating the Root Partition"
msgstr "Создание корневого раздела"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):521
msgid ""
"Finally, let's create the root partition. To do this, type <c>n</c> to "
"create a new partition, then <c>p</c> to tell fdisk that you want a primary "
"partition. Then type <c>3</c> to create the third primary partition, <path>/"
"dev/sda3</path> in our case. When prompted for the first cylinder, hit "
"enter. When prompted for the last cylinder, hit enter to create a partition "
"that takes up the rest of the remaining space on your disk. After completing "
"these steps, typing <c>p</c> should display a partition table that looks "
"similar to this:"
msgstr ""
"Ни и наконец, создадим корневой раздел. Чтобы сделать это, наберите <c>n</c> "
"для создания нового раздела, затем <c>p</c>, чтобы указать fdisk, что вы "
"хотите создать первичный раздел. После этого наберите <c>3</c>, чтобы "
"создать третий первичный раздел, в нашем случае это <path>/dev/sda3</path>. "
"На вопрос о первом цилиндре просто нажмите ввод. На вопрос о последнем "
"цилиндре также нажимайте ввод, чтобы создать раздел, который займет все "
"оставшееся свободное место на диске. После того, как вы проделаете эти "
"операции и наберете <c>p</c>, будет показана таблица разделов, эквивалентная "
"этой:"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre:caption):532
msgid "Partition listing after creating the root partition"
msgstr "Список разделов после создания корневого раздела"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre):532
#, no-wrap
msgid ""
"\n"
"Command (m for help): <i>p</i>\n"
"\n"
"Disk /dev/sda: 30.7 GB, 30750031872 bytes\n"
"141 heads, 63 sectors/track, 6761 cylinders\n"
"Units = cylinders of 8883 * 512 = 4548096 bytes\n"
"\n"
"   Device Boot      Start         End      Blocks   Id  System\n"
"/dev/sda1               1           3       13293   41  PPC PReP Boot\n"
"/dev/sda2               4         117      506331   82  Linux swap\n"
"/dev/sda3             118        6761    29509326   83  Linux\n"
"\n"
"Command (m for help):\n"
msgstr ""
"\n"
"Command (m for help): <i>p</i>\n"
"\n"
"Disk /dev/sda: 30.7 GB, 30750031872 bytes\n"
"141 heads, 63 sectors/track, 6761 cylinders\n"
"Units = cylinders of 8883 * 512 = 4548096 bytes\n"
"\n"
"   Device Boot      Start         End      Blocks   Id  System\n"
"/dev/sda1               1           3       13293   41  PPC PReP Boot\n"
"/dev/sda2               4         117      506331   82  Linux swap\n"
"/dev/sda3             118        6761    29509326   83  Linux\n"
"\n"
"Command (m for help):\n"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(title):549
msgid "Saving the Partition Layout"
msgstr "Сохранение созданных разделов"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):552
msgid "To save the partition layout and exit <c>fdisk</c>, type <c>w</c>."
msgstr ""
"Чтобы сохранить все сделанные изменения и выйти из <c>fdisk</c>, наберите "
"<c>w</c>."

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre:caption):556
msgid "Save and exit fdisk"
msgstr "Сохранение и выход из fdisk"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre):556
#, no-wrap
msgid ""
"\n"
"Command (m for help): <i>w</i>\n"
msgstr ""
"\n"
"Command (m for help): <i>w</i>\n"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(title):569
msgid "Creating Filesystems"
msgstr "Создание файловых систем"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(title):571
msgid "Introduction"
msgstr "Введение"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):574
msgid ""
"Now that your partitions are created, it is time to place a filesystem on "
"them. If you don't care about what filesystem to choose and are happy with "
"what we use as default in this handbook, continue with <uri link="
"\"#filesystems-apply\">Applying a Filesystem to a Partition</uri>. Otherwise "
"read on to learn about the available filesystems..."
msgstr ""
"Разделы созданы, настало время разместить файловые системы на них. Если вам "
"безразлично, какую файловую систему использовать, и вы вполне довольны "
"файловой системой, используемой нами в этом Руководстве по-умолчанию, вы "
"можете перейти к разделу <uri link=\"#filesystems-apply\">Размещение "
"файловой системы на разделе</uri>. Если нет, то продолжайте чтение и узнайте "
"больше о доступных для использования файловых системах..."

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(title):590
msgid "Applying a Filesystem to a Partition"
msgstr "Размещение файловой системы на разделе"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):593
msgid ""
"To create a filesystem on a partition or volume, there are tools available "
"for each possible filesystem:"
msgstr ""
"Для создания файловой системы на разделе или томе существуют утилиты для "
"каждого доступного типа:"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(th):601
msgid "Creation Command"
msgstr "Команда создания"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(ti):604
msgid "ext2"
msgstr "ext2"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(ti):612
msgid "reiserfs"
msgstr "reiserfs"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(ti):616
msgid "xfs"
msgstr "xfs"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(ti):620
msgid "jfs"
msgstr "jfs"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):625
msgid ""
"For instance, to have the root partition (<path>/dev/sda4</path> in our "
"example) in ext3 (as in our example), you would use:"
msgstr ""
"К примеру, для создания корневого раздела (в нашем примере — <path>/dev/"
"sda4</path>) с файловой системой ext3 (согласно нашему примеру), вам "
"необходимо запустить следующие команды:"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre:caption):630
msgid "Applying a filesystem on a partition"
msgstr "Размещение файловых систем на разделе"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre):630
#, no-wrap
msgid ""
"\n"
"# <i>mke2fs -j /dev/sda4</i>\n"
msgstr ""
"\n"
"# <i>mke2fs -j /dev/sda4</i>\n"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):634
msgid ""
"Now create the filesystems on your newly created partitions (or logical "
"volumes)."
msgstr ""
"Теперь разместите файловые системы на вновь созданных разделах (или "
"логических томах)."

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(impo):639
msgid ""
"If you choose to use ReiserFS for <path>/</path>, do not change its default "
"block size if you will also be using <c>yaboot</c> as your bootloader, as "
"explained in <uri link=\"?part=1&amp;chap=10\">Configuring the Bootloader</"
"uri>."
msgstr ""
"Если вы решите использовать ReiseFS для <path>/</path>, не меняйте размер "
"блока по умолчанию, если вы используете так же <c>yaboot</c> как ваш "
"загрузчик, как описано здесь <uri link=\"?part=1&amp;chap=10\">Настройка "
"загрузчика</uri>."

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(title):648
msgid "Activating the Swap Partition"
msgstr "Активация раздела подкачки"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):651
msgid ""
"<c>mkswap</c> is the command that is used to initialize swap partitions:"
msgstr ""
"<c>mkswap</c> — команда, используемая для инициализации раздела подкачки:"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre:caption):655
msgid "Creating a Swap signature"
msgstr "Создание сигнатуры раздела подкачки"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre):655
#, no-wrap
msgid ""
"\n"
"# <i>mkswap /dev/sda3</i>\n"
msgstr ""
"\n"
"# <i>mkswap /dev/sda3</i>\n"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):659
msgid "To activate the swap partition, use <c>swapon</c>:"
msgstr "Для активации раздела подкачки используйте <c>swapon</c>:"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre:caption):663
msgid "Activating the swap partition"
msgstr "Активация раздела подкачки"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre):663
#, no-wrap
msgid ""
"\n"
"# <i>swapon /dev/sda3</i>\n"
msgstr ""
"\n"
"# <i>swapon /dev/sda3</i>\n"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):667
msgid "Create and activate the swap with the commands mentioned above."
msgstr ""
"Создайте и активируйте раздел подкачки, используя приведенные выше команды."

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(title):675
msgid "Mounting"
msgstr "Монтирование"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):678
msgid ""
"Now that your partitions are initialized and are housing a filesystem, it is "
"time to mount those partitions. Use the <c>mount</c> command. Don't forget "
"to create the necessary mount directories for every partition you created. "
"As an example we create a mount point and mount the root partition:"
msgstr ""
"Теперь, когда разделы созданы и файловые системы размещены, настало время "
"смонтировать эти разделы. Используйте команду <c>mount</c>. Не забудьте "
"предварительно создать необходимые каталоги для монтирования каждого "
"раздела. В этом примере мы создаем точку монтирования и монтируем корневой "
"раздел:"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre:caption):685
msgid "Mounting partitions"
msgstr "Монтирование разделов"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(pre):685
#, no-wrap
msgid ""
"\n"
"# <i>mkdir /mnt/gentoo</i>\n"
"# <i>mount /dev/sda4 /mnt/gentoo</i> \n"
msgstr ""
"\n"
"# <i>mkdir /mnt/gentoo</i>\n"
"# <i>mount /dev/sda4 /mnt/gentoo</i> \n"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(note):690
msgid ""
"If you want your <path>/tmp</path> to reside on a separate partition, be "
"sure to change its permissions after mounting: <c>chmod 1777 /mnt/gentoo/"
"tmp</c>. This also holds for <path>/var/tmp</path>."
msgstr ""
"Если вы хотите разместить <path>/tmp</path> на отдельном разделе, не "
"забудьте изменить права доступа к этому каталогу после монтирования: "
"<c>chmod 1777 /mnt/gentoo/tmp</c>. Это касается также и <path>/var/tmp</"
"path>."

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(p):696
msgid ""
"Continue with <uri link=\"?part=1&amp;chap=5\">Installing the Gentoo "
"Installation Files</uri>."
msgstr ""
"Переходите к разделу <uri link=\"?part=1&amp;chap=5\">Установка установочных "
"файлов Gentoo</uri>."

#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-ppc64-disk.xml(None):0
msgid "translator-credits"
msgstr ""
"Азамат Хакимов; переводчик, редактор перевода; azamat.hackimov@gmail.com\n"
"Владимир Калашников; переводчи, редактор перевода; vokalashnikov@gmail.com"