summaryrefslogtreecommitdiff
blob: 0872d855813bb32017c82be5d6c6e9e4a0a2ccf1 (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
# 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-18 18:40+0600\n"
"Last-Translator: Azamat H. Hackimov <azamat.hackimov@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.2\n"

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

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(date):12
#, fuzzy
msgid "2011-10-17"
msgstr "2011-08-22"

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

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(title):22
msgid "Slices"
msgstr "Слайсы"

# Не переведено значение slice. Есть перевод, у FreeBSD.
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):25
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 Alpha "
"systems, these are called <e>slices</e>."
msgstr ""
"Не смотря на то, что теоретически возможно использовать весь диск для "
"размещения вашей Linux-системы, этого почти никогда не случается на "
"практике. Вместо этого всё блочное устройство разбивается на меньшие, более "
"удобные для обращения блочные устройства. В Alpha-системах они называются "
"<e>slices</e>."

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

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

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):41
msgid "As an example we use the following slice layout:"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(th):47
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(th):141
msgid "Slice"
msgstr "Слайс"

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

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(ti):52
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(ti):146
msgid "Swap slice"
msgstr "Слайс подкачки"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(ti):56
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(ti):150
msgid "Root slice"
msgstr "Корневой слайс"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(ti):60
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(ti):154
msgid "Full disk (required)"
msgstr ""

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

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

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

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(li):102
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-alpha-disk.xml(li):106
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-alpha-disk.xml(li):111
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-alpha-disk.xml(p):117
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-alpha-disk.xml(title):130
msgid "Using fdisk to Partition your Disk (SRM only)"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):134
msgid ""
"The following parts explain how to create the example slice layout described "
"previously, namely:"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):158
msgid "Change your slice layout according to your own preference."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(title):166
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(title):402
msgid "Identifying Available Disks"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):169
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):405
msgid "To figure out what disks you have running, use the following commands:"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(pre:caption):173
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(pre:caption):409
msgid "Identifying available disks"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(pre):173
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(pre):409
#, no-wrap
msgid ""
"\n"
"# <i>dmesg | grep 'drive$'</i>        <comment>(For IDE disks)</comment>\n"
"# <i>dmesg | grep 'scsi'</i>          <comment>(For SCSI disks)</comment>\n"
msgstr ""
"\n"
"# <i>dmesg | grep 'drive$'</i>        <comment>(Для IDE-дисков)</comment>\n"
"# <i>dmesg | grep 'scsi'</i>          <comment>(Для SCSI-дисков)</comment>\n"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):178
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):414
msgid ""
"From this output you should be able to see what disks were detected and "
"their respective <path>/dev</path> entry. In the following parts we assume "
"that the disk is a SCSI disk on <path>/dev/sda</path>."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):184
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):420
msgid "Now fire up <c>fdisk</c>:"
msgstr ""

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

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(pre):188
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(pre):424
#, 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-alpha-disk.xml(title):195
msgid "Deleting All Slices"
msgstr "Удаление всех слайсов"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):198
msgid ""
"If your hard drive is completely blank, then you'll have to first create a "
"BSD disklabel."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(pre:caption):203
msgid "Creating a BSD disklabel"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(pre):203
#, no-wrap
msgid ""
"\n"
"Command (m for help): <i>b</i>\n"
"/dev/sda contains no disklabel.\n"
"Do you want to create a disklabel? (y/n) <i>y</i>\n"
"<comment>A bunch of drive-specific info will show here</comment>\n"
"3 partitions:\n"
"#       start       end      size     fstype   [fsize bsize   cpg]                                    \n"
"  c:        1      5290*     5289*    unused        0     0\n"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):213
msgid ""
"We start with deleting all slices <e>except</e> the 'c'-slice (a requirement "
"for using BSD disklabels). The following shows how to delete a slice (in the "
"example we use 'a'). Repeat the process to delete all other slices (again, "
"except the 'c'-slice)."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):220
msgid ""
"Use <c>p</c> to view all existing slices. <c>d</c> is used to delete a slice."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(pre:caption):224
msgid "Deleting a slice"
msgstr "Удаление слайса"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(pre):224
#, no-wrap
msgid ""
"\n"
"BSD disklabel command (m for help): <i>p</i>\n"
"\n"
"8 partitions:\n"
"#       start       end      size     fstype   [fsize bsize   cpg]                                    \n"
"  a:        1       235*      234*    4.2BSD     1024  8192    16\n"
"  b:      235*      469*      234*      swap\n"
"  c:        1      5290*     5289*    unused        0     0\n"
"  d:      469*     2076*     1607*    unused        0     0\n"
"  e:     2076*     3683*     1607*    unused        0     0\n"
"  f:     3683*     5290*     1607*    unused        0     0\n"
"  g:      469*     1749*     1280     4.2BSD     1024  8192    16\n"
"  h:     1749*     5290*     3541*    unused        0     0\n"
"\n"
"BSD disklabel command (m for help): <i>d</i>\n"
"Partition (a-h): <i>a</i>\n"
msgstr ""
"\n"
"BSD disklabel command (m for help): <i>p</i>\n"
"\n"
"8 partitions:\n"
"#       start       end      size     fstype   [fsize bsize   cpg]                                    \n"
"  a:        1       235*      234*    4.2BSD     1024  8192    16\n"
"  b:      235*      469*      234*      swap\n"
"  c:        1      5290*     5289*    unused        0     0\n"
"  d:      469*     2076*     1607*    unused        0     0\n"
"  e:     2076*     3683*     1607*    unused        0     0\n"
"  f:     3683*     5290*     1607*    unused        0     0\n"
"  g:      469*     1749*     1280     4.2BSD     1024  8192    16\n"
"  h:     1749*     5290*     3541*    unused        0     0\n"
"\n"
"BSD disklabel command (m for help): <i>d</i>\n"
"Partition (a-h): <i>a</i>\n"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):242
msgid ""
"After repeating this process for all slices, a listing should show you "
"something similar to this:"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(pre:caption):247
msgid "Viewing an empty scheme"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(pre):247
#, no-wrap
msgid ""
"\n"
"BSD disklabel command (m for help): <i>p</i>\n"
"\n"
"3 partitions:\n"
"#       start       end      size     fstype   [fsize bsize   cpg]                                    \n"
"  c:        1      5290*     5289*    unused        0     0\n"
msgstr ""
"\n"
"BSD disklabel command (m for help): <i>p</i>\n"
"\n"
"3 partitions:\n"
"#       start       end      size     fstype   [fsize bsize   cpg]                                    \n"
"  c:        1      5290*     5289*    unused        0     0\n"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(title):258
msgid "Creating the Swap Slice"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):261
msgid ""
"On Alpha based systems you don't need a separate boot slice. However, the "
"first cylinder cannot be used as the <c>aboot</c> image will be placed there."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):266
msgid ""
"We will create a swap slice starting at the third cylinder, with a total "
"size of 1 GB. Use <c>n</c> to create a new slice. After creating the slice, "
"we will change its type to <c>1</c> (one), meaning <e>swap</e>."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(pre:caption):272
msgid "Creating the swap slice"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(pre):272
#, no-wrap
msgid ""
"\n"
"BSD disklabel command (m for help): <i>n</i>\n"
"Partition (a-p): <i>a</i>\n"
"First cylinder (1-5290, default 1): <i>3</i>\n"
"Last cylinder or +size or +sizeM or +sizeK (3-5290, default 5290): <i>+1024M</i>\n"
"\n"
"BSD disklabel command (m for help): <i>t</i>\n"
"Partition (a-c): <i>a</i>\n"
"Hex code (type L to list codes): <i>1</i>\n"
msgstr ""
"\n"
"BSD disklabel command (m for help): <i>n</i>\n"
"Partition (a-p): <i>a</i>\n"
"First cylinder (1-5290, default 1): <i>3</i>\n"
"Last cylinder or +size or +sizeM or +sizeK (3-5290, default 5290): <i>+1024M</i>\n"
"\n"
"BSD disklabel command (m for help): <i>t</i>\n"
"Partition (a-c): <i>a</i>\n"
"Hex code (type L to list codes): <i>1</i>\n"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):283
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):527
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):564
msgid "After these steps you should see a layout similar to the following:"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(pre:caption):287
msgid "Slice layout after creating the swap slice"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(pre):287
#, no-wrap
msgid ""
"\n"
"BSD disklabel command (m for help): <i>p</i>\n"
"\n"
"3 partitions:\n"
"#       start       end      size     fstype   [fsize bsize   cpg]                                    \n"
"  a:        3      1003      1001       swap\n"
"  c:        1      5290*     5289*    unused        0     0\n"
msgstr ""
"\n"
"BSD disklabel command (m for help): <i>p</i>\n"
"\n"
"3 partitions:\n"
"#       start       end      size     fstype   [fsize bsize   cpg]                                    \n"
"  a:        3      1003      1001       swap\n"
"  c:        1      5290*     5289*    unused        0     0\n"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(title):299
msgid "Create the Root Slice"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):302
msgid ""
"We will now create the root slice, starting from the first cylinder "
"<e>after</e> the swap slice. Use the <c>p</c> command to view where the swap "
"slice ends. In our example, this is at 1003, making the root slice start at "
"1004."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):308
msgid ""
"Another problem is that there is currently a bug in <c>fdisk</c> making it "
"think the number of available cylinders is one above the real number of "
"cylinders. In other words, when you are asked for the last cylinder, "
"decrease the cylinder number (in this example: 5290) with one."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):315
msgid ""
"When the slice is created, we change the type to <c>8</c>, for <e>ext2</e>."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(pre:caption):319
msgid "Creating the root slice"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(pre):319
#, no-wrap
msgid ""
"\n"
"D disklabel command (m for help): <i>n</i>\n"
"Partition (a-p): <i>b</i>\n"
"First cylinder (1-5290, default 1): <i>1004</i>\n"
"Last cylinder or +size or +sizeM or +sizeK (1004-5290, default 5290): <i>5289</i>\n"
"\n"
"BSD disklabel command (m for help): <i>t</i>\n"
"Partition (a-c): <i>b</i>\n"
"Hex code (type L to list codes): <i>8</i>\n"
msgstr ""
"\n"
"D disklabel command (m for help): <i>n</i>\n"
"Partition (a-p): <i>b</i>\n"
"First cylinder (1-5290, default 1): <i>1004</i>\n"
"Last cylinder or +size or +sizeM or +sizeK (1004-5290, default 5290): <i>5289</i>\n"
"\n"
"BSD disklabel command (m for help): <i>t</i>\n"
"Partition (a-c): <i>b</i>\n"
"Hex code (type L to list codes): <i>8</i>\n"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):330
msgid "Your slice layout should now be similar to this:"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(pre:caption):334
msgid "Viewing the slice layout"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(pre):334
#, no-wrap
msgid ""
"\n"
"BSD disklabel command (m for help): <i>p</i>\n"
"\n"
"3 partitions:\n"
"#       start       end      size     fstype   [fsize bsize   cpg]                                    \n"
"  a:        3      1003      1001       swap\n"
"  b:     1004      5289      4286       ext2\n"
"  c:        1      5290*     5289*    unused        0     0\n"
msgstr ""
"\n"
"BSD disklabel command (m for help): <i>p</i>\n"
"\n"
"3 partitions:\n"
"#       start       end      size     fstype   [fsize bsize   cpg]                                    \n"
"  a:        3      1003      1001       swap\n"
"  b:     1004      5289      4286       ext2\n"
"  c:        1      5290*     5289*    unused        0     0\n"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(title):347
msgid "Save the Slice Layout and Exit"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):350
msgid ""
"Save <c>fdisk</c> by typing <c>w</c>. This will also save your slice layout."
msgstr ""

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

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(pre):354
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(pre):591
#, 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-alpha-disk.xml(p):358
msgid ""
"Now that your slices are created, you can continue with <uri link="
"\"#filesystems\">Creating Filesystems</uri>."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(title):367
msgid "Using fdisk to Partition your Disk (ARC/AlphaBIOS only)"
msgstr "Использование fdisk для создания разделов (только для ARC/AlphaBIOS)"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):371
msgid ""
"The following parts explain how to partition the disk with a layout similar "
"to the one described previously, namely:"
msgstr ""

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

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

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

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

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

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

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):434
msgid ""
"If your hard drive is completely blank, then you'll have to first create a "
"DOS disklabel."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(pre:caption):439
msgid "Creating a DOS disklabel"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(pre):439
#, no-wrap
msgid ""
"\n"
"Command (m for help): <i>o</i>\n"
"Building a new DOS disklabel.\n"
msgstr ""
"\n"
"Command (m for help): <i>o</i>\n"
"Building a new DOS disklabel.\n"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):444
msgid ""
"We start with deleting all partitions. The following shows how to delete a "
"partition (in the example we use '1'). Repeat the process to delete all "
"other partitions."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):450
msgid ""
"Use <c>p</c> to view all existing partitions. <c>d</c> is used to delete a "
"partition."
msgstr ""

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

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(pre):455
#, no-wrap
msgid ""
"\n"
"command (m for help): <i>p</i>\n"
"\n"
"Disk /dev/sda: 9150 MB, 9150996480 bytes\n"
"64 heads, 32 sectors/track, 8727 cylinders\n"
"Units = cylinders of 2048 * 512 = 1048576 bytes\n"
"\n"
"   Device Boot      Start         End      Blocks   Id  System\n"
"/dev/sda1               1         478      489456   83  Linux\n"
"/dev/sda2             479        8727     8446976    5  Extended\n"
"/dev/sda5             479        1433      977904   83  Linux Swap\n"
"/dev/sda6            1434        8727     7469040   83  Linux\n"
"\n"
"command (m for help): <i>d</i>\n"
"Partition number (1-6): <i>1</i>\n"
msgstr ""
"\n"
"command (m for help): <i>p</i>\n"
"\n"
"Disk /dev/sda: 9150 MB, 9150996480 bytes\n"
"64 heads, 32 sectors/track, 8727 cylinders\n"
"Units = cylinders of 2048 * 512 = 1048576 bytes\n"
"\n"
"   Device Boot      Start         End      Blocks   Id  System\n"
"/dev/sda1               1         478      489456   83  Linux\n"
"/dev/sda2             479        8727     8446976    5  Extended\n"
"/dev/sda5             479        1433      977904   83  Linux Swap\n"
"/dev/sda6            1434        8727     7469040   83  Linux\n"
"\n"
"command (m for help): <i>d</i>\n"
"Partition number (1-6): <i>1</i>\n"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(title):476
msgid "Creating the Boot Partition"
msgstr "Создание загрузочного раздела"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):479
msgid ""
"On Alpha systems which use MILO to boot, we have to create a small vfat boot "
"partition."
msgstr ""

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

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(pre):484
#, no-wrap
msgid ""
"\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-8727, default 1): <i>1</i>\n"
"Last cylinder or +size or +sizeM or +sizeK (1-8727, default 8727): <i>+16M</i>\n"
"\n"
"Command (m for help): <i>t</i>\n"
"Selected partition 1\n"
"Hex code (type L to list codes): <i>6</i>\n"
"Changed system type of partition 1 to 6 (FAT16)\n"
msgstr ""
"\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-8727, default 1): <i>1</i>\n"
"Last cylinder or +size or +sizeM or +sizeK (1-8727, default 8727): <i>+16M</i>\n"
"\n"
"Command (m for help): <i>t</i>\n"
"Selected partition 1\n"
"Hex code (type L to list codes): <i>6</i>\n"
"Changed system type of partition 1 to 6 (FAT16)\n"

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

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):506
msgid ""
"We will create a swap partition with a total size of 1 GB. Use <c>n</c> to "
"create a new partition."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(pre:caption):511
msgid "Creating the swap partition"
msgstr "Создание раздела подкачки"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(pre):511
#, no-wrap
msgid ""
"\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>2</i>\n"
"First cylinder (17-8727, default 17): <i>17</i>\n"
"Last cylinder or +size or +sizeM or +sizeK (17-8727, default 8727): <i>+1000M</i>\n"
"\n"
"Command (m for help): <i>t</i>\n"
"Partition number (1-4): <i>2</i>\n"
"Hex code (type L to list codes): <i>82</i>\n"
"Changed system type of partition 2 to 82 (Linux swap)\n"
msgstr ""
"\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>2</i>\n"
"First cylinder (17-8727, default 17): <i>17</i>\n"
"Last cylinder or +size or +sizeM or +sizeK (17-8727, default 8727): <i>+1000M</i>\n"
"\n"
"Command (m for help): <i>t</i>\n"
"Partition number (1-4): <i>2</i>\n"
"Hex code (type L to list codes): <i>82</i>\n"
"Changed system type of partition 2 to 82 (Linux swap)\n"

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

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(pre):531
#, no-wrap
msgid ""
"\n"
"Command (m for help): <i>p</i>\n"
"\n"
"Disk /dev/sda: 9150 MB, 9150996480 bytes\n"
"64 heads, 32 sectors/track, 8727 cylinders\n"
"Units = cylinders of 2048 * 512 = 1048576 bytes\n"
"\n"
"   Device Boot      Start         End      Blocks   Id  System\n"
"/dev/sda1               1          16       16368    6  FAT16\n"
"/dev/sda2              17         971      977920   82  Linux swap\n"
msgstr ""
"\n"
"Command (m for help): <i>p</i>\n"
"\n"
"Disk /dev/sda: 9150 MB, 9150996480 bytes\n"
"64 heads, 32 sectors/track, 8727 cylinders\n"
"Units = cylinders of 2048 * 512 = 1048576 bytes\n"
"\n"
"   Device Boot      Start         End      Blocks   Id  System\n"
"/dev/sda1               1          16       16368    6  FAT16\n"
"/dev/sda2              17         971      977920   82  Linux swap\n"

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

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):549
msgid ""
"We will now create the root partition. Again, just use the <c>n</c> command."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(pre:caption):553
msgid "Creating the root partition"
msgstr "Создание корневого раздела"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(pre):553
#, no-wrap
msgid ""
"\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>3</i>\n"
"First cylinder (972-8727, default 972): <i>972</i>\n"
"Last cylinder or +size or +sizeM or +sizeK (972-8727, default 8727): <i>8727</i>\n"
msgstr ""
"\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>3</i>\n"
"First cylinder (972-8727, default 972): <i>972</i>\n"
"Last cylinder or +size or +sizeM or +sizeK (972-8727, default 8727): <i>8727</i>\n"

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

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(pre):568
#, no-wrap
msgid ""
"\n"
"Command (m for help): <i>p</i>\n"
"\n"
"Disk /dev/sda: 9150 MB, 9150996480 bytes\n"
"64 heads, 32 sectors/track, 8727 cylinders\n"
"Units = cylinders of 2048 * 512 = 1048576 bytes\n"
"\n"
"   Device Boot      Start         End      Blocks   Id  System\n"
"/dev/sda1               1          16       16368    6  FAT16\n"
"/dev/sda2              17         971      977920   82  Linux swap\n"
"/dev/sda3             972        8727     7942144   83  Linux\n"
msgstr ""
"\n"
"Command (m for help): <i>p</i>\n"
"\n"
"Disk /dev/sda: 9150 MB, 9150996480 bytes\n"
"64 heads, 32 sectors/track, 8727 cylinders\n"
"Units = cylinders of 2048 * 512 = 1048576 bytes\n"
"\n"
"   Device Boot      Start         End      Blocks   Id  System\n"
"/dev/sda1               1          16       16368    6  FAT16\n"
"/dev/sda2              17         971      977920   82  Linux swap\n"
"/dev/sda3             972        8727     7942144   83  Linux\n"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(title):584
msgid "Save the Partition Layout and Exit"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):587
msgid ""
"Save <c>fdisk</c> by typing <c>w</c>. This will also save your partition "
"layout."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):595
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-alpha-disk.xml(title):604
msgid "Creating Filesystems"
msgstr "Создание файловых систем"

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

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):609
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-alpha-disk.xml(title):625
msgid "Applying a Filesystem to a Partition"
msgstr "Размещение файловой системы на разделе"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):628
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-alpha-disk.xml(th):635
msgid "Filesystem"
msgstr "Файловая система"

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

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

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

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(ti):647
msgid "ext4"
msgstr ""

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

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

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

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

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

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(pre):669
#, fuzzy, no-wrap
msgid ""
"\n"
"# <i>mkfs.ext3 /dev/sda2</i>\n"
msgstr ""
"\n"
"# <i>mke2fs -j /dev/sda2</i>\n"

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

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

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):684
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-alpha-disk.xml(pre:caption):688
msgid "Creating a Swap signature"
msgstr "Создание сигнатуры раздела подкачки"

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

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

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

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

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

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

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):711
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 mount the root partition:"
msgstr ""
"Теперь, когда разделы созданы и файловые системы размещены, настало время "
"смонтировать эти разделы. Используйте команду <c>mount</c>. Не забудьте "
"предварительно создать необходимые каталоги для монтирования каждого "
"раздела. В этом примере мы монтируем корневой раздел:"

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

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

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(note):722
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-alpha-disk.xml(p):728
msgid ""
"We will also have to mount the proc filesystem (a virtual interface with the "
"kernel) on <path>/proc</path>. But first we will need to place our files on "
"the partitions."
msgstr ""
"Нам также необходимо будет смонтировать файловую систему proc (виртуальный "
"интерфейс ядра) в каталог <path>/proc</path>. Но для начала надо разместить "
"необходимые нам файлы на разделах."

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-alpha-disk.xml(p):733
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-alpha-disk.xml(None):0
msgid "translator-credits"
msgstr ""
"Азамат Хакимов; переводчик, редактор перевода; azamat.hackimov@gmail.com"