summaryrefslogtreecommitdiff
blob: 6be0a749359e107082b0e4350bc591381e1d9e9d (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
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2010-10-22 00:40+0600\n"
"PO-Revision-Date: 2010-10-22 00:40+0600\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: el\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(abstract):11
msgid ""
"You can install Gentoo in many ways. In this chapter we explain how to "
"install Gentoo using the MIPS Netboot images."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(version):16
msgid "10.0"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(date):17
msgid "2010-07-27"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(title):20
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(title):33
msgid "Hardware Requirements"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(title):22
msgid "Introduction"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):25
msgid ""
"Before we start, we first list what hardware requirements you need to "
"successfully install Gentoo on your box."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(th):38
msgid "CPU <e>(Big Endian port)</e>"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):39
msgid "MIPS3, MIPS4, MIPS5 or MIPS64-class CPU"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(th):42
msgid "CPU <e>(Little Endian port)</e>"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):43
msgid "MIPS4, MIPS5 or MIPS64-class CPU"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(th):46
msgid "Memory"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):47
msgid "128 MB"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(th):50
msgid "Diskspace"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):51
msgid "3.0 GB (excluding swap space)"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(th):54
msgid "Swap space"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):55
msgid "At least 256 MB"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):59
msgid ""
"You should also check the <uri link=\"/doc/en/mips-requirements.xml\">MIPS "
"Hardware Requirements</uri> document available from our website."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(title):69
msgid "Installation Notes"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(title):71
msgid "A note about Processor Architectures"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):74
msgid ""
"On many architectures, the processor has gone through several generations, "
"each newer generation builds on the foundation of the previous one. MIPS is "
"no exception. There are several generations of CPU covered under the MIPS "
"architecture. In order to choose your netboot image stage tarball and "
"<c>CFLAGS</c> appropriately, you need to be aware of which family your "
"system's CPU belongs in. These families are referred to as the <b>I</"
"b>nstruction <b>S</b>et <b>A</b>rchitecture."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(th):86
msgid "MIPS ISA"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(th):87
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(th):182
msgid "32/64-bit"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(th):88
msgid "CPUs Covered"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):91
msgid "MIPS 1"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):92
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):100
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):139
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):188
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):194
msgid "32-bit"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):93
msgid ""
"<uri link=\"http://www.linux-mips.org/wiki/index.php/R2000\">R2000</uri>, "
"<uri link=\"http://www.linux-mips.org/wiki/index.php/R2000\">R3000</uri>"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):99
msgid "MIPS 2"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(uri:link):102
msgid "http://www.linux-mips.org/wiki/index.php/R6000"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(uri):102
msgid "R6000"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):106
msgid "MIPS 3"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):107
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):117
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):132
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):147
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):200
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):206
msgid "64-bit"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):108
msgid ""
"<uri link=\"http://www.linux-mips.org/wiki/index.php/R4000\">R4000</uri>, "
"<uri link=\"http://www.linux-mips.org/wiki/index.php/R4000\">R4400</uri>, "
"<uri link=\"http://www.linux-mips.org/wiki/index.php/R4000\">R4600</uri>, "
"<uri link=\"http://www.linux-mips.org/wiki/index.php/R4000\">R4700</uri>"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):116
msgid "MIPS 4"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):118
msgid ""
"<uri link=\"http://www.linux-mips.org/wiki/index.php/R5000\">R5000</uri>, "
"<uri link=\"http://www.linux-mips.org/wiki/index.php/R5000\">RM5000</uri>, "
"<uri link=\"http://www.linux-mips.org/wiki/index.php/RM7000\">RM7000</"
"uri><uri link=\"http://www.linux-mips.org/wiki/index.php/R8000\">R8000</"
"uri>, R9000, <uri link=\"http://www.linux-mips.org/wiki/index.php/"
"R10000\">R10000</uri>, <uri link=\"http://www.linux-mips.org/wiki/index.php/"
"R10000\">R12000</uri>, <uri link=\"http://www.linux-mips.org/wiki/index.php/"
"R10000\">R14000</uri>, <uri link=\"http://www.linux-mips.org/wiki/index.php/"
"R10000\">R16000</uri>"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):131
msgid "MIPS 5"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):133
msgid "None As Yet"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):138
msgid "MIPS32"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):140
msgid ""
"AMD Alchemy series, 4kc, 4km, many others... There are a few revisions in "
"the MIPS32 ISA."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):146
msgid "MIPS64"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):148
msgid ""
"Broadcom SiByte SB1, 5kc ... etc... There are a few revisions in the MIPS64 "
"ISA."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(note):155
msgid ""
"The <c>MIPS5</c> ISA level was designed by Silicon Graphics back in 1994, "
"but never actually got used in a real life CPU. It lives on as part of the "
"<c>MIPS64</c> ISA."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(note):161
msgid ""
"The <c>MIPS32</c> and <c>MIPS64</c> ISAs are a common source of confusion. "
"The <c>MIPS64</c> ISA level is actually a superset of the <c>MIPS5</c> ISA, "
"so it includes all instructions from <c>MIPS5</c> and earlier ISAs. "
"<c>MIPS32</c> is the 32-bit subset of <c>MIPS64</c>, it exists because most "
"applications only require 32-bit processing."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):169
msgid ""
"Also, another important concept to grasp is the concept of <b>endianness</"
"b>. Endianness refers to the way that a CPU reads words from main memory. A "
"word can be read as either <e>big</e> endian (most significant byte first), "
"or <e>little</e> endian (least significant byte first). Intel x86 machines "
"are generally Little endian, whilst Apple and Sparc machines are Big Endian. "
"On MIPS, they can be either. To separate them apart, we append <c>el</c> to "
"the architecture name to denote little endian."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(th):181
msgid "Architecture"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(th):183
msgid "Endianness"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(th):184
msgid "Machines covered"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):189
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):201
msgid "Big Endian"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):190
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):202
msgid "Silicon Graphics"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):195
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):207
msgid "Little Endian"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):196
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):208
msgid "Cobalt Servers"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):212
msgid ""
"For those willing to learn more about ISAs, the following websites may be of "
"assistance."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(uri:link):219
msgid "http://www.linux-mips.org/wiki/index.php/Instruction_Set_Architecture"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(uri):219
msgid "Linux/MIPS Website: MIPS ISA"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(uri:link):224
msgid "http://www.linux-mips.org/wiki/index.php/Endianess"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(uri):224
msgid "Linux/MIPS Website: Endianness"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(uri:link):229
msgid "http://www.linux-mips.org/wiki/index.php/Processors"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(uri):229
msgid "Linux/MIPS Website: Processors"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(uri:link):234
msgid "http://en.wikipedia.org/wiki/Instruction_set"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(uri):234
msgid "Wikipedia: Instruction Set"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(title):243
msgid "The Stage3 Tarball"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):246
msgid ""
"A stage3 tarball is an archive containing a minimal Gentoo environment, "
"suitable to continue the Gentoo installation using the instructions in this "
"manual. Previously, the Gentoo Handbook described the installation using one "
"of three stage tarballs. While Gentoo still offers stage1 and stage2 "
"tarballs, the official installation method uses the stage3 tarball. If you "
"are interested in performing a Gentoo installation using a stage1 or stage2 "
"tarball, please read the Gentoo FAQ on <uri link=\"/doc/en/faq."
"xml#stage12\">How do I Install Gentoo Using a Stage1 or Stage2 Tarball?</uri>"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(title):262
msgid "Netbooting Overview"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):266
msgid ""
"In this section, we'll cover what you need in order to successfully network "
"boot a Silicon Graphics workstation or Cobalt Server appliance. This is just "
"a brief guide, it is not intended to be thorough, for more information, it "
"is recommended that you read the <uri link=\"/doc/en/diskless-howto.xml"
"\">Diskless HOWTO</uri>."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):274
msgid ""
"What You Need: Depending on the machine, there is a certain amount of "
"hardware that you'll need in order to successfully netboot and install Linux."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(li):283
msgid ""
"DHCP/BOAMD Alchemy series, 4kc, 4km, many others... There are a few "
"revisions in the MIPS32 ISA.OTP server (ISC DHCPd recommended)"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(li):285
msgid "Patience -- and lots of it"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(li):280
msgid "In General: <placeholder-1/>"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(li):291
msgid "TFTP server (tftp-hpa recommended)"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(li):295
msgid ""
"MiniDIN8 --&gt; RS-232 serial cable (only needed for IP22 and IP28 systems)"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(li):299
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(li):309
msgid "Null-modem cable"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(li):300
msgid "VT100 or ANSI compatible terminal capable of 9600 baud"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(li):292
msgid "If you want/need to use serial console: <placeholder-1/>"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(li):288
msgid "For Silicon Graphics workstations: <placeholder-1/>"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(li):308
msgid "NFS server"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(li):310
msgid "VT100 or ANSI compatible terminal capable of 115200 baud"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(li):305
msgid "For Cobalt Servers (NOT the original Qube): <placeholder-1/>"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(note):315
msgid ""
"SGI machines use a MiniDIN 8 connector for the serial ports. Apparently "
"Apple modem cables work just fine as serial cables, but with Apple machines "
"being equipped with USB &amp; internal modems, these are getting harder to "
"find. One wiring diagram is available from the <uri link=\"http://www.linux-"
"mips.org/wiki/Serial_Cable\">Linux/MIPS Wiki</uri>, and most electronics "
"stores should stock the plugs required."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(note):324
msgid ""
"For the terminal, this could be a real VT100/ANSI terminal, or it could be a "
"PC running terminal emulation software (such as HyperTerminal, Minicom, "
"seyon, Telex, xc, screen -- whatever your preference). It doesn't matter "
"what platform this machine runs -- just so long as it has one RS-232 serial "
"port you can use, and appropriate software."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(note):332
msgid ""
"Note that this guide does NOT cover the original Qube. The original Qube "
"server appliance lacks a serial port in its default configuration, and "
"therefore it is not possible to install Gentoo onto it without the aid of a "
"screwdriver and a surrogate machine to do the installation. The following "
"site has a guide for installing Gentoo on these machines. <uri link=\"http://"
"www.metzner.org/projects/qube/\"> http://www.metzner.org/projects/qube/</uri>"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(title):344
msgid "Setting up TFTP and DHCP -- a brief guide"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):347
msgid ""
"Okay, so you've got your bits and pieces together, now to set everything up. "
"As mentioned earlier -- this is not a complete guide, this is a bare-bones "
"config that will just get things rolling. You can either use this when "
"starting a setup from scratch, or use the suggestions to amend your existing "
"setup to support netbooting."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):355
msgid ""
"It is worth noting that the servers used need not be running Gentoo Linux, "
"you could quite reasonably use FreeBSD or any Unix-like platform. However, "
"this guide will assume you are running Gentoo Linux. You also may run TFTP/"
"NFS on a separate machine to the DHCP server if desired."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(warn):362
msgid ""
"The Gentoo/MIPS Team cannot help you with setting up other operating systems "
"as netboot servers. If you choose a different OS, it is assumed you know "
"what you're doing."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):368
msgid ""
"First Step -- configuring DHCP. In order for the ISC DHCP daemon to respond "
"to BOOTP requests (as required by the SGI &amp; Cobalt BOOTROM) you need to "
"first enable dynamic BOOTP on the address range in use; then set up an entry "
"for each client with pointers to the boot image."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre:caption):375
msgid "Installing ISCs DHCP"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre):375
#, no-wrap
msgid ""
"\n"
"# <i>emerge dhcp</i>\n"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):379
msgid ""
"Once installed you need to create the <path>/etc/dhcp/dhcpd.conf</path>. "
"Here's a bare-bones config to get you started."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre:caption):384
msgid "Bare Bones dhcpd.conf"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre):384
#, no-wrap
msgid ""
"\n"
"<comment># Tell dhcpd to disable dynamic DNS.</comment>\n"
"<comment># dhcpd will refuse to start without this.</comment>\n"
"ddns-update-style none;\n"
"\n"
"<comment># Create a subnet:</comment>\n"
"subnet <i>192.168.10.0</i> netmask <i>255.255.255.0</i> {\n"
"  <comment># Address pool for our booting clients. Don't forget the 'dynamic-bootp' bit!</comment>\n"
"  pool {\n"
"    range dynamic-bootp <i>192.168.10.1 192.168.10.254</i>;\n"
"  }\n"
"\n"
"  <comment># DNS servers and default gateway -- substitute as appropriate</comment>\n"
"  option domain-name-servers <i>203.1.72.96</i>, <i>202.47.56.17</i>;\n"
"  option routers <i>192.168.10.1</i>;\n"
"\n"
"  <comment># Tell the DHCP server it's authoritative for this subnet.</comment>\n"
"  authoritative;\n"
"\n"
"  <comment># Allow BOOTP to be used on this subnet.</comment>\n"
"  allow bootp;\n"
"}\n"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):408
msgid ""
"With that setup, one can then add any number of clients within the subnet "
"clause. We will cover what you need to put in later in this guide."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):413
msgid ""
"Next Step -- Setting up TFTP server. It is recommended that you use <c>tftp-"
"hpa</c> as it is the only TFTP daemon known to work correctly. Proceed by "
"installing it as shown below."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre:caption):419
msgid "Installing tftp-hpa"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre):419
#, no-wrap
msgid ""
"\n"
"# <i>emerge net-ftp/tftp-hpa</i>\n"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):423
msgid ""
"This will create <path>/tftproot</path> for you to store the netboot images. "
"You may move this elsewhere if you wish. For the purposes of this guide, it "
"is assumed that you have left it in the default location."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(title):433
msgid "Netbooting on SGI Workstations"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(title):435
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(title):785
msgid "Downloading a Netboot image"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):438
msgid ""
"Depending on the system you're installing for, there are several possible "
"images available for download. These are all labelled according to the "
"system type and CPU they are compiled for. The machine types are as follows:"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(th):446
msgid "Codename"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(th):447
msgid "Machines"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):450
msgid "IP22"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):451
msgid "Indy, *Indigo 2, Challenge S"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):454
msgid "IP26"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):455
msgid "*Indigo 2 Power"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):458
msgid "IP27"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):459
msgid "Origin 200, Origin 2000"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):462
msgid "IP28"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):463
msgid "*Indigo 2 Impact"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):466
msgid "IP30"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):467
msgid "Octane"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):470
msgid "IP32"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(ti):471
msgid "O2"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(note):475
msgid ""
"* It is a common mistake to mix up the IRIS Indigo (IP12 w/ R3000 CPU or "
"IP20 w/ R4000 CPU, neither of which run Linux), the Indigo 2 (IP22, which "
"runs Linux fine), the R8000-based Indigo 2 Power (which doesn't run Linux at "
"all) and the R10000-based Indigo 2 Impact (IP28, which is highly "
"experimental). Please bear in mind that these are different machines."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):483
msgid ""
"Also in the filename, r4k refers to R4000-series processors, r5k for R5000, "
"rm5k for the RM5200 and r10k for R10000. You will find the images available "
"on the Gentoo <uri link=\"/main/en/mirrors.xml\">mirrors</uri>."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(title):493
msgid "DHCP Configuration for an SGI Client"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):496
msgid ""
"Once you have downloaded the file, place the decompressed image file in your "
"<path>/tftproot</path> directory. (Use <c>bzip2 -d</c> to decompress) Then "
"edit your <path>/etc/dhcp/dhcpd.conf</path> and add the entry for your SGI "
"client."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre:caption):502
msgid "dhcpd.conf snippet for SGI Workstation"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre):502
#, no-wrap
msgid ""
"\n"
"subnet xxx.xxx.xxx.xxx netmask xxx.xxx.xxx.xxx {\n"
"  <comment># ... usual stuff here ...</comment>\n"
"\n"
"  <comment># SGI Workstation... change 'sgi' to your SGI machine's hostname.</comment>\n"
"  host <i>sgi</i> {\n"
"  \n"
"    <comment># MAC Address of SGI Machine. Normally this is written on the back</comment>\n"
"    <comment># or base of the machine.</comment>\n"
"    hardware ethernet <i>08:00:69:08:db:77</i>;\n"
"\n"
"    <comment># TFTP Server to download from (by default, same as DHCP server)</comment>\n"
"    next-server <i>192.168.10.1</i>;\n"
"\n"
"    <comment># IP address to give to the SGI machine</comment>\n"
"    fixed-address <i>192.168.10.3</i>;\n"
"\n"
"    <comment># Filename for the PROM to download and boot</comment>\n"
"    filename \"<i>/gentoo-r4k.img</i>\";\n"
"  }\n"
"}\n"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(title):528
msgid "Kernel Options"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):530
msgid ""
"We're almost done, but there's a couple of little tweaks still to be done. "
"Pull up a console with root privileges, and enter the following commands."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre:caption):535
msgid "Some fixes to SGI machines to have TFTP work properly"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre):535
#, no-wrap
msgid ""
"\n"
"<comment>(Disable \"Path Maximum Transfer Unit\", otherwise SGI Prom won't find the kernel)</comment>\n"
"# <i>echo 1 &gt; /proc/sys/net/ipv4/ip_no_pmtu_disc</i>\n"
"\n"
"<comment>(Set the port range usable by the SGI PROM)</comment>\n"
"# <i>echo \"2048 32767\" &gt; /proc/sys/net/ipv4/ip_local_port_range</i>\n"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):543
msgid ""
"This should be sufficient to allow the Linux server to play nice with SGI's "
"PROM."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(title):551
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(title):888
msgid "Start Your Daemons..."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):553
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):891
msgid ""
"At this point, you should be ready to start the daemons. Enter the following:"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre:caption):557
msgid "Starting the DHCP and TFTP daemons"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre):557
#, no-wrap
msgid ""
"\n"
"# <i>/etc/init.d/dhcp start</i>\n"
"# <i>/etc/init.d/in.tftpd start</i>\n"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):562
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):900
msgid ""
"If nothing went wrong in that last step you should be all set to power on "
"the workstation and proceed with the guide. If the DHCP server isn't firing "
"up for whatever reason, try running 'dhcpd' on the command line and see what "
"it tells you -- if all is well, it should just fork into the background, "
"otherwise you'll see 'exiting.' just below its complaint."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):570
msgid ""
"An easy way to verify if the tftp daemon is running is to type the following "
"command -- if you see something like the output mentioned below -- "
"everything is fine."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre:caption):576
msgid "Checking TFTPd is running"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre):576
#, no-wrap
msgid ""
"\n"
"# <i>netstat -al | grep ^udp</i>\n"
"udp        0      0 *:bootpc                *:*\n"
"udp        0      0 *:631                   *:*\n"
"udp        0      0 *:xdmcp                 *:*\n"
"udp        0      0 *:tftp                  *:* <comment>&lt;-- (look for this line)</comment>\n"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(title):587
msgid "Netbooting the SGI machine"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):590
msgid ""
"Okay, everything is set, DHCP is running as is TFTP. Now it is time to fire "
"up the SGI machine. Power the unit on -- when you see \"Running power-on "
"diagnostics\" on the screen, either click \"Stop For Maintenance\" or press "
"ESCAPE. You'll be presented with a menu like the following. Enter the "
"commands as shown below."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre:caption):598
msgid "SGI PROM Maintenance Menu"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre):598
#, no-wrap
msgid ""
"\n"
"        Running power-on diagnostics\n"
"\n"
"System Maintenance Menu\n"
"\n"
"1) Start System\n"
"2) Install System Software\n"
"3) Run Diagnostics\n"
"4) Recover System\n"
"5) Enter Command Monitor\n"
"\n"
"Option? <i>5</i>\n"
"Command Monitor. Type \"exit\" to return to the menu.\n"
"&gt;&gt; <i>bootp(): root=/dev/ram0</i>\n"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):614
msgid ""
"From this point, the machine should start downloading the image, then, "
"roughly 20 seconds later, start booting Linux. If all is well, you should be "
"dropped at the Busybox <c>ash</c> shell as shown below, where you can move "
"on to <uri link=\"?part=1&amp;chap=3\">Configuring Your Network</uri>."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre:caption):621
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre:caption):957
msgid "When things are going right..."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre):621
#, no-wrap
msgid ""
"\n"
"init started:  BusyBox v1.00-pre10 (2004.04.27-02:55+0000) multi-call binary\n"
"\n"
"Gentoo Linux; http://www.gentoo.org/\n"
" Copyright 2001-2004 Gentoo Technologies, Inc.; Distributed under the GPL\n"
"\n"
" Gentoo/MIPS Netboot for Silicon Graphics Machines\n"
" Build Date: April 26th, 2004\n"
"\n"
" * To configure networking, do the following:\n"
"\n"
" * For Static IP:\n"
" * /bin/net-setup &lt;IP Address&gt; &lt;Gateway Address&gt; [telnet]\n"
"\n"
" * For Dynamic IP:\n"
" * /bin/net-setup dhcp [telnet]\n"
"\n"
" * If you would like a telnetd daemon loaded as well, pass \"telnet\"\n"
" * As the final argument to /bin/net-setup.\n"
"\n"
"Please press Enter to activate this console.\n"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(title):647
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(title):986
msgid "Troubleshooting."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):650
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):989
msgid ""
"If the machine is being stubborn and refusing to download its image, it can "
"be one of two things, (1) you've made a blunder somewhere, or (2) it needs a "
"little gentle persuasion. (No, put that sledge hammer down!) Here's a list "
"of things you can check:"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(li):658
msgid ""
"<c>dhcpd</c> is giving the SGI Machine an IP Address. You should see some "
"messages about a BOOTP request in the system logs. <c>tcpdump</c> is also "
"useful here."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(li):663
msgid ""
"Permissions are set properly in your tftp folder (typically <path>/tftproot</"
"path> -- should be world readable)"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(li):667
msgid ""
"Check system logs to see what the tftp server is reporting (errors perhaps)"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):672
msgid ""
"If you've checked everything on the server, and you're getting timeouts, etc "
"on the SGI machine, try typing this into the console."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre:caption):677
msgid "Coaxing the SGI PROM to work"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre):677
#, no-wrap
msgid ""
"\n"
"&gt;&gt; <i>resetenv</i>\n"
"&gt;&gt; <i>unsetenv netaddr</i>\n"
"&gt;&gt; <i>unsetenv dlserver</i>\n"
"&gt;&gt; <i>init</i>\n"
"&gt;&gt; <i>bootp(): root=/dev/ram0</i>\n"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(title):690
msgid "Alternative Method: Gentoo/MIPS SGI LiveCD"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(title):692
msgid "Overview"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):695
msgid ""
"On Silicon Graphics machines, it is possible to boot from a CD in order to "
"install operating systems. (This is how one installs IRIX for instance) "
"Recently, images for such bootable CDs to install Gentoo have been made "
"possible. These CDs are designed to work in the same way."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):702
msgid ""
"At the moment the Gentoo/MIPS Live CD will only work on the SGI Indy, Indigo "
"2 and O2 workstations equipped with R4000 and R5000-series CPUs, however "
"other platforms may be possible in future."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):708
msgid ""
"You can find the Live CD images for download on your favourite Gentoo Mirror "
"under the <path>experimental/mips/livecd</path> directory."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(warn):713
msgid ""
"These CDs are highly experimental at this time. They may or may not work at "
"this time. You can report success or failures either on <uri link=\"http://"
"bugs.gentoo.org\">Bugzilla</uri>, <uri link=\"http://forums.gentoo.org/"
"viewtopic.php?t=242518\">this forum thread</uri> or in the <c>#gentoo-mips</"
"c><uri link=\"/main/en/irc.xml\">IRC channel</uri>. We would love to hear "
"from you."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(title):727
msgid "Burning a Live CD"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):730
msgid ""
"An important thing to note, the SGI PROM does not understand the ISO9660 "
"format, nor does it know anything about the El Torito boot standard. These "
"CD images are constructed as a SGI disklabel with the boot image in the "
"volume header like a hard drive. Therefore, care must be taken when burning "
"the CD image."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):738
msgid ""
"Below is an example command that assumes 24x burning speed on an IDE burner. "
"If you have a SCSI burner for instance, you may want to adjust the <c>dev</"
"c> statement as appropriate. Likewise with the <c>speed</c> option - if you "
"strike troubles, you might want to try dropping the speed."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre:caption):745
msgid "Burning using cdrecord"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre):745
#, no-wrap
msgid ""
"\n"
"# <i>bzip2 -d mips-livecd-prototype-rc2-20041027.img.bz2</i>\n"
"# <i>cdrecord -vv -pad speed=24 dev=ATAPI:0,0,0 -tao mips-livecd-prototype-rc2-20041027.img</i>\n"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(note):750
msgid ""
"It may be possible to burn these CDs under Windows, assuming your burning "
"program just blindly burns the image as is. However, no one has succeeded in "
"making a working CD this way to date."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(note):756
msgid ""
"If you don't know what to put as your <c>dev</c> argument, run <c>cdrecord -"
"scanbus</c> as root - this will tell you where your burner is located."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(title):766
msgid "Netbooting on Cobalt Servers"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(title):768
msgid "Overview of the netboot procedure"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):771
msgid ""
"Unlike the SGI machines, Cobalt servers use NFS to transfer their kernel for "
"booting. You boot the machine by holding down the left &amp; right arrow "
"buttons whilst powering the unit on. The machine will then attempt to obtain "
"an IP number via BOOTP, mount the <path>/nfsroot</path> directory from the "
"server via NFS, then try to download and boot the file "
"<path>vmlinux_raq-2800.gz</path> (depending on the model) which it assumes "
"to be a standard ELF binary."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):788
msgid ""
"Inside <uri link=\"http://dev.gentoo.org/~redhatter/mips/cobalt/netboots/\"> "
"http://dev.gentoo.org/~redhatter/mips/cobalt/netboots/</uri> you'll find the "
"necessary boot images for getting a Cobalt up and running. The files you "
"need will have the name <path>nfsroot-KERNEL-COLO-DATE-cobalt.tar</path> -- "
"select the most recent one and unpack it to <path>/</path> as shown below:"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre:caption):798
msgid "Unpacking the nfsroot image"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre):798
#, no-wrap
msgid ""
"\n"
"# <i>tar -C / -xvf nfsroot-2.6.13.4-1.19-20051122-cobalt.tar</i>\n"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(title):806
msgid "NFS Server configuration"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):809
msgid ""
"Since this machine uses NFS to download its image, you need to export <path>/"
"nfsroot</path> on your server. If you have not already done so, you'll need "
"to install the net-fs/nfs-utils package."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre:caption):814
msgid "Installing nfs-utils"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre):814
#, no-wrap
msgid ""
"\n"
"# <i>emerge net-fs/nfs-utils</i>\n"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):818
msgid ""
"Once that is done, place the following in your <path>/etc/exports</path> "
"file. You may set tighter restrictions if you wish."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre:caption):823
msgid "Exporting the /nfsroot directory"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre):823
#, no-wrap
msgid ""
"\n"
"/nfsroot      *(ro,sync)\n"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):827
msgid "Now, once that is done, you may start the NFS server:"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre:caption):831
msgid "Starting the NFS server"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre):831
#, no-wrap
msgid ""
"\n"
"# <i>/etc/init.d/nfs start</i>\n"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):835
msgid ""
"If the NFS server was already running at the time, you can tell it to take "
"another look at its <c>exports</c> file using <c>exportfs</c>."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre:caption):840
msgid "Exporting a new filesystem"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre):840
#, no-wrap
msgid ""
"\n"
"# <i>exportfs -av</i>\n"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(title):848
msgid "DHCP Configuration for a Cobalt machine"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):851
msgid ""
"Now, the DHCP side of things is relatively straightforward. Add the "
"following to your <path>/etc/dhcp/dhcpd.conf</path> file."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre:caption):856
msgid "dhcpd.conf snippet for Cobalt server"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre):856
#, no-wrap
msgid ""
"\n"
"subnet xxx.xxx.xxx.xxx netmask xxx.xxx.xxx.xxx {\n"
"  <comment># ... usual stuff here ...</comment>\n"
"\n"
"  <comment># Configuration for a Cobalt Server</comment>\n"
"  <comment># Set the hostname here:</comment>\n"
"  host <i>qube</i> {\n"
"    <comment># Path to the nfsroot directory.</comment>\n"
"    <comment># This is mainly for when using the TFTP boot option on CoLo</comment>\n"
"    <comment># You shouldn't need to change this.</comment>\n"
"    option root-path \"/nfsroot\";\n"
"\n"
"    <comment># Cobalt server's ethernet MAC address</comment>\n"
"    hardware ethernet <i>00:10:e0:00:86:3d</i>;\n"
"\n"
"    <comment># Server to download image from</comment>\n"
"    next-server <i>192.168.10.1</i>;\n"
"\n"
"    <comment># IP address of cobalt server</comment>\n"
"    fixed-address <i>192.168.10.2</i>;\n"
"\n"
"    <comment># Location of the default.colo file relative to /nfsroot</comment>\n"
"    <comment># You shouldn't need to change this.</comment>\n"
"    filename \"default.colo\";\n"
"  }\n"
"}\n"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre:caption):895
msgid "Starting the DHCP and NFS daemons"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre):895
#, no-wrap
msgid ""
"\n"
"# <i>/etc/init.d/dhcp start</i>\n"
"# <i>/etc/init.d/nfs start</i>\n"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(title):912
msgid "Netbooting the Cobalt machine"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):915
msgid ""
"Okay, everything is set, DHCP is running as is NFS. Now it is time to fire "
"up the Cobalt machine. Hook up your null modem cable, and set the serial "
"terminal to use 115200 baud, 8 bits, no parity, 1 stop bit, VT100 emulation. "
"Once that is done, hold down the left &amp; right arrow buttons whilst "
"powering the unit on."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):923
msgid ""
"If all is well, the back panel should display \"Net Booting\", you should "
"see some network activity, closely followed by CoLo kicking in. On the rear "
"panel, scroll down the menu until you see \"Network (NFS)\" then press "
"ENTER. You should notice the machine starts booting on the serial console."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre:caption):930
msgid "Booting the kernel"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre):930
#, no-wrap
msgid ""
"\n"
"elf: 80080000 &lt;-- 00001000 6586368t + 192624t\n"
"elf: entry 80328040\n"
"net: interface down\n"
"CPU revision is: 000028a0\n"
"FPU revision is: 000028a0\n"
"Primary instruction cache 32kB, physically tagged, 2-way, linesize 32 bytes.\n"
"Primary data cache 32kB 2-way, linesize 32 bytes.\n"
"Linux version 2.4.26-mipscvs-20040415 (root@khazad-dum) (gcc version 3.3.3...\n"
"Determined physical RAM map:\n"
" memory: 08000000 @ 00000000 (usable)\n"
"Initial ramdisk at: 0x80392000 (3366912 bytes)\n"
"On node 0 totalpages: 32768\n"
"zone(0): 32768 pages.\n"
"zone(1): 0 pages.\n"
"zone(2): 0 pages.\n"
"Kernel command line: console=ttyS0,115200 root=/dev/ram0\n"
"Calibrating delay loop... 249.85 BogoMIPS\n"
"Memory: 122512k/131072k available (2708k kernel code, 8560k reserved, 3424k dat)\n"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(p):951
msgid ""
"If all is well, you should be dropped at the Busybox <c>ash</c> shell as "
"shown below, where you can go onto <uri link=\"?part=1&amp;"
"chap=3\">Configuring Your Network</uri>."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(pre):957
#, no-wrap
msgid ""
"\n"
"VFS: Mounted root (ext2 filesystem) readonly.\n"
"Freeing unused kernel memory: 280k freed\n"
"init started:  BusyBox v1.00-pre10 (2004.04.27-02:55+0000) multi-call binary\n"
"\n"
"Gentoo Linux; http://www.gentoo.org/\n"
" Copyright 2001-2004 Gentoo Technologies, Inc.; Distributed under the GPL\n"
"\n"
" Gentoo/MIPS Netboot for Cobalt Microserver Machines\n"
" Build Date: April 26th, 2004\n"
"\n"
" * To configure networking, do the following:\n"
"\n"
" * For Static IP:\n"
" * /bin/net-setup &lt;IP Address&gt; &lt;Gateway Address&gt; [telnet]\n"
"\n"
" * For Dynamic IP:\n"
" * /bin/net-setup dhcp [telnet]\n"
"\n"
" * If you would like a telnetd daemon loaded as well, pass \"telnet\"\n"
" * As the final argument to /bin/net-setup.\n"
"\n"
"Please press Enter to activate this console.\n"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(li):997
msgid ""
"<c>dhcpd</c> is giving the Cobalt Machine an IP Address. You should see some "
"messages about a BOOTP request in the system logs. <c>tcpdump</c> is also "
"useful here."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(li):1002
msgid ""
"Permissions are set properly in your <path>/nfsroot</path> folder. (should "
"be world readable)"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(li):1006
msgid ""
"Make sure the NFS server is running and exporting the <path>/nfsroot</path> "
"directory. Check this using <c>exportfs -v</c> on the server."
msgstr ""

#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
#: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-mips-medium.xml(None):0
msgid "translator-credits"
msgstr ""