-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfuntooInstall.html
1075 lines (961 loc) · 49.5 KB
/
funtooInstall.html
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
<!--
_______ ____
/MMMMMMM/ /MMMM| _____ _____
__/M.MMM.M/_____________|M.MMM|/MMMMM\/MMMMM\
|MMMMMM'MMMMMMMMMMMMMMMMMMMMMMMMM.MMMM..MMMM.MM\
|MMMMMMMMM/mMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM|
|MMMMMMMMMMMMMMMMMMMMMMMM\MMMMMMMMMMMMMMMMMMMMMM|
|MMMMMMMMMMMMMMMMMMMMMMMMMMMMMM'MMMM''MMMM'MM/
|MMMMMMMMMMMMMMMMMMMMMMMMMMMMM\MMMMM/\MMMMM/
|MMMMMMMMMMMMMMMMMMMMMMMMMMMM'M|
|MMMMMMMMMMMMMMMMMMMMMMMM MM'M/
|MMMMMMMMMMMMMMMMMMMMMMMMMMMM/
-->
<!DOCTYPE html>
<html>
<head>
<style>
.redtext {
color: red;
}
.orangetext {
color: blue;
}
.greentext {
color: green;
}
.whitetext {
color: white;
}
.lawngreen {
color: LawnGreen;
}
.yellowtext {
color: yellow;
}
.orangetext {
color: orange;
}
type="text/css">
.myTableStyle
{
/* position:absolute;
top:50%;
left:50%;
*/
/*Alternatively you could use: */
position: fixed;
bottom: 50%;
right: 50%;
}
</style>
<title>
Funtoo Instalação
</title>
<!-- <link rel="icon" href="https://www.funtoo.org/images/thumb/f/ff/Fwiki.png/120px-Fwiki.png" type="image/x-icon" /> -->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body bgcolor= 6600ff>
<!-- "A901DB"> "ECCEF5"> -->
<table border="0" bgcolor="#ff66ff" width="100%">
<tr>
<td>
<center><font size="13" face="Lucida Console, Dejavu Sans Mono" color="#ff0066">GUIA RAPIDO</font></center>
<center><font size="23" face="Lucida Console, Dejavu Sans Mono" color="#ff0066">INSTALAR♡FUNTOO!</font></center>
</td>
</tr>
</table>
<center><br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#000000">00.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Baixando instalador SYSTEM RESCUE CD.</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono" color="white" size="3">http://www.system-rescue-cd.org/Download/</font></td>
</tr>
</table></center>
<center><br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#000000">01.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Mostrar a interface da rede.</strong></font><br><br></center>
<center><table border="0" bgcolor="black" width="80%"></center>
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono"size="3" color="#ffffff">
# <font color="#00ff00"><strong>ip</strong></font> -s -c -h a<br>
</h3></td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#000000">02.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Carregar teclado.</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono"size="3" color="#ffffff"># <font color="#00ff00"><strong>loadkeys</strong></font> br-abnt2</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#000000">03.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Configurar rede</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td>
<font face="Lucida Console, Dejavu Sans Mono"size="3" color="#ffffff"># <font color="#00ff00"><strong>net-setup</strong></font> nomePlacaRede<br>
<font face="Lucida Console, Dejavu Sans Mono"size="3" color="gray">ou</font><br>
<font face="Lucida Console, Dejavu Sans Mono"size="3" color="#ffffff"># <font color="#00ff00"><strong>nmtui</strong></font>
</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#000000">04.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Se for preciso levante a placa de rede com:</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono"size="3" color="#ffffff"># <font color="#00ff00"><strong>ifconfig</strong></font> nomePlacaRede up</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#000000">05.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Verifique se a internet esta funcionado.</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono"size="3" color="#ffffff"># <font color="#00ff00"><strong>ping</strong></font> -c3 gentoo.org
</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#000000">06.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Configurar data MÊS DIA HORA MINUTO ANO com:</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono"size="3" color="#ffffff"># <font color="#00ff00"><strong>date</strong></font> MMDDHHMMAAAA</font><br>
<font face="Lucida Console, Dejavu Sans Mono" color="ffffff" size="3"># <font color="#00ff00"><strong>hwclock</strong></font> --systohc</font></td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#000000">07.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Formatar HD.<br></strong></font><br><br>
<font size="3" face="Lucida Console, Dejavu Sans Mono" color="red"><mark>BOOT <i>BIOS</i> Então use o modelo old-school</mark></font><br>
<font size="3" face="Lucida Console, Dejavu Sans Mono" color="blue"><mark>BOOT <i>UEFI</i> Então use o modelo new-school</mark></font><br>
<br>
<table border="0" bgcolor="#002b36" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono"size="3" color="#ffffff"><font color="red">Old School</font><br><br>
<font face="Lucida Console, Dejavu Sans Mono" size="3" color="#ffff00">
# <font color="#00ff00"><strong>sgdisk --zap-all</strong></font> /dev/sda<br>
# <font color="#00ff00"><strong>fdisk</strong></font> /dev/sda<br><br>
</font>
<font face="Lucida Console, Dejavu Sans Mono" size="3" color="red">
<font color="#ffffff">Partição 1 (boot)</font><br>
Command (m for help):<font color="orange"> o ↵</font><br>
Command (m for help):<font color="orange"> n ↵ </font><br>
Partition type (default p):<font color="orange"> ↵ </font><br>
Partition number (1-4, default 1):<font color="orange"> ↵ </font><br>
First sector:<font color="orange"> ↵ </font><br>
Last sector:<font color="orange"> +500M ↵ </font><br><br>
</font>
<font face="Lucida Console, Dejavu Sans Mono" size="3" color="blue">
<font color="#ffffff">Partição 2 (swap)</font><br>
Command (m for help):<font color="orange"> n ↵</font><br>
Partition type (default p):<font color="orange"> ↵</font><br>
Partition number (2-4, default 2):<font color="orange"> ↵</font><br>
First sector:<font color="orange"> ↵</font><br>
Last sector:<font color="orange"> +4G ↵</font><br>
Command (m for help):<font color="orange"> t ↵ </font><br>
Partition number (1,2, default 2):<font color="orange"> ↵</font><br>
Hex code (type L to list all codes):<font color="orange"> 82 ↵</font><br><br>
</font>
<font face="Lucida Console, Dejavu Sans Mono" size="3" color="green">
<font color="#ffffff">Root partition</font><br>
Command (m for help):<font color="orange"> n ↵</font><br>
Partition type (default p):<font color="orange"> ↵</font><br>
Partition number (3,4, default 3):<font color="orange"> ↵</font><br>
First sector:<font color="orange"> ↵</font><br>
Last sector:<font color="orange"> ↵</font><br><br>
</font>
<font face="Lucida Console, Dejavu Sans Mono" size="3" color="#ffffff">
<font color="hotpink">Verificando</font><br>
Command (m for help):<font color="orange"> p</font><br><br>
Disk /dev/sda: 298.1 GiB, 320072933376 bytes, 625142448 sectors<br>
Units: sectors of 1 * 512 = 512 bytes<br>
Sector size (logical/physical): 512 bytes / 512 bytes<br>
I/O size (minimum/optimal): 512 bytes / 512 bytes<br>
Disklabel type: dos<br>
Disk identifier: 0x82abc9a6<br><br>
Device Boot Start End Blocks Id System<br>
/dev/sda1 2048 264191 131072 83 Linux<br>
/dev/sda2 264192 4458495 2097152 82 Linux swap / Solaris<br>
/dev/sda3 4458496 625142447 310341976 83 Linux<br><br>
<font color="hotpink">Gravando</font><br>
Command (m for help):<font color="orange"> w ↵</font><br>
</font>
</font>
</td>
</tr>
</table>
<br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono"size="3" color="#ffffff">
<font color="blue">New School</font><br><br>
# <font color="#00ff00"><strong>gdisk</strong></font> /dev/sda<br><br>
<font color="yellow">Criar uma nova tabela de partição vazia</font><br>
<font face="Lucida Console, Dejavu Sans Mono" size="3" color="#ff33cc">
Command:<font color="orange"> o ↵</font><br>
This option deletes all partitions and creates a new protective MBR.<br>
Proceed? (Y/N):<font color="orange"> y ↵</font><br><br>
</font>
<font color="yellow">Criar Partição 1 (boot)</font><br>
<font face="Lucida Console, Dejavu Sans Mono" size="3" color="red">
Command:<font color="orange"> n ↵</font><br>
Partition Number:<font color="orange"> 1 ↵</font><br>
First sector:<font color="orange"> ↵</font><br>
Last sector:<font color="orange"> +500M ↵</font><br>
Hex Code:<font color="orange"> EF00 ↵</font><br><br>
</font>
<font face="Lucida Console, Dejavu Sans Mono" size="3" color="blue">
<font color="yellow">Criar Partição 2 (swap)</font><br>
Command:<font color="orange"> n ↵</font><br>
Partition Number:<font color="orange"> 2 ↵</font><br>
First sector:<font color="orange"> ↵</font><br>
Last sector:<font color="orange"> +4G ↵</font><br>
Hex Code:<font color="orange"> 8200 ↵</font><br><br>
</font>
<font color="yellow">Criar Partição 3 (root)</font><br>
<font face="Lucida Console, Dejavu Sans Mono" size="3" color="green">
Command:<font color="orange"> n ↵</font><br>
Partition Number:<font color="orange"> 3 ↵</font><br>
First sector:<font color="orange"> ↵</font><br>
Last sector:<font color="orange"> ↵ (for rest of disk)</font><br>
Hex Code:<font color="orange"> ↵</font><br><br>
<font color="yellow">Gravar a Tabela de Partição no Disco</font><br>
</font>
Command:<font color="orange"> w ↵</font><br>
Do you want to proceed? (Y/N):<font color="orange"> Y ↵</font><br>
</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#000000">08.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Formantando partição 1 do boot em formato ext2</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono"size="3" color="#ffffff"><font color="red">Modo BIOS </font># <font color="#00ff00"><strong>mkfs.ext2</strong></font> /dev/sda1<br>
<font color="blue">Modo UEFI </font># <font color="#3399ff"><strong>mkfs.fat</strong></font> -F 32 /dev/sda1</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#000000">09.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Formantando partição 3 do root em formato ext4 ou xfs</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono"size="3" color="#ffffff"># <font color="#00ff00"><strong>mkfs.ext4</strong></font> /dev/sda3<br>
<font color="gray"># mkfs.xfs /dev/sda3</font>
</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#000000">10.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Formantando partição 2 do swap em formato swap</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono"size="3" color="#ffffff"># <font color="#00ff00"><strong>mkswap</strong></font> /dev/sda2</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#000000">11.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Ligando swap</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono"size="3" color="#ffffff"># <font color="#00ff00"><strong>swapon</strong></font> /dev/sda2</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#000000">12.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Montando sistemas de arquivos</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono"size="3" color="#ffffff">
# <font color="#3399ff"><b>mkdir</b></font> /mnt/funtoo<br><br>
# <font color="#00ff00"><b>mount</b></font> /dev/sda3 /mnt/funtoo<br><br>
# <font color="#3399ff"><b>mkdir</b></font> /mnt/funtoo/boot<br><br>
# <font color="#00ff00"><b>mount</b></font> /dev/sda1 /mnt/funtoo/boot<br>
</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#000000">13.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Identificando tipo de processador.</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono"size="3" color="#ffffff"># <font color="#00ff00"><strong>gcc</strong></font> -march=native -Q --help=target | grep march</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#000000">14.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Baixando stage3.tar.xz para instalação.</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td>
<font face="Lucida Console, Dejavu Sans Mono"size="3" color="#ffffff">
# <font color="#00ff00"><strong>cd</strong></font> <font color="#3399ff"><strong>/mnt/funtoo</strong></font><br>
<font color="gray">procure o stage3 de acordo com o seu processador</font><br>
# <font color="#00ff00"><strong>elinks</strong></font> http://build.funtoo.org/funtoo-current/x86-64bit/
</font>
</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#000000">15.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Descompactar, use o nome completo.</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono"size="3" color="#ffffff"># <font color="#00ff00"><strong>tar xpf</strong></font> stage3-*.tar.{bz2,xz} --xattrs-include='*.*' --numeric-owner</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#000000">16.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Copiando DNS.</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono"size="3" color="#ffffff">
# <font color="#00ff00"><strong>cp <!-- -L --></strong></font> /etc/resolv.conf /mnt/funtoo/etc/
</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#000000">17.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Montando pastas de instalação e configuração "não coloque / <br>no final.</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td>
<font face="Lucida Console, Dejavu Sans Mono" size="3" color="#ffffff">
# <font color="#00ff00"><strong>cd</strong></font> /mnt/funtoo<br><br>
# <font color="#00ff00"><strong>mount</strong></font> -t proc none proc<br><br>
# <font color="#3399ff"><strong>mount</strong></font> --rbind /sys sys<br><br>
# <font color="#00ff00"><strong>mount</strong></font> --rbind /dev dev<br>
<!--
# <font color="#00ff00"><strong>mount</strong></font> --types proc /proc /mnt/funtoo/proc <br><br>
# <font color="#00ff00"><strong>mount</strong></font> --rbind /sys /mnt/funtoo/sys<br><br>
# <font color="#00ff00"><strong>mount</strong></font> --make-rslave /mnt/gentoo/sys <br><br>
# <font color="#00ff00"><strong>mount</strong></font> --rbind /dev /mnt/funtoo/dev <br><br>
# <font color="#00ff00"><strong>mount</strong></font> --make-rslave /mnt/gentoo/dev <br>
-->
</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#000000">18.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Entrando no novo ambiente.</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono" size="3" color="#ffffff">
# <font color="#00ff00"><strong>cd</strong></font> /mnt/funtoo <font color="gray">é importante esta destro da pasta /mnt/funtoo</font><br><br>
# <font color="#00ff00">env</font> -i HOME=/root TERM=$TERM /bin/chroot . bash -l <br>
<!-- # <font color="#00ff00"><strong>chroot</strong></font> /mnt/funtoo /bin/bash<br>
# <font color="red">livecd</font> # <font color="#00ff00">source</font> /etc/profile <br> -->
# <font color="red">livecd</font> # <font color="#00ff00"><strong>export</strong></font> PS1="<font color="red">(chroot)</font> $PS1"<br>
</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#000000">19.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>fstab.</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td>
<font face="Lucida Console, Dejavu Sans Mono" size="3" color="#ffffff"><font color="red">(chroot)</font> # <font color="#00ff00"><strong>nano -w</strong></font> /etc/fstab<br>
<font face="Lucida Console, Dejavu Sans Mono" size="3" color="#ffffff"><font color="red">(chroot)</font> # <font color="#00ff00"><strong>ego</strong></font> sync<br>
</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#ffffff">20.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#ffffff"><ins>Editar flag's no "make.conf"<ins>.</strong></font><br>
</table><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono" size="3" color="black"><font color="white"><font color="red">(chroot)</font> # <font color="#00ff00"><strong>nano -w</strong></font> /etc/portage/make.confi</font><br>
<br>
<table bgcolor="white" width="100%">
<tr>
<td>
<font>CFLAGS=</font><font color="green">"-march=westmere -O2 -pipe"<br>
</font>
<font>CXXFLAGS=</font><font color="green">"${CFLAGS}"<br>
</font>
<font color="red">#</font>USE="<font color="green">X opengl acpi dbus ffmpeg git jpeg jpeg2k mp3 mp4 mpeg png sound"<br>
</font>
LINGUAS="<font color="orange">pt_BR.UTF-8</font> <font color="purple">pt_BR.ISO-8859-1</font> <font color="blue">pt_BR pt-BR</font>"<br>
L10N="<font color="orange">pt-BR</font>"<br>
<font color="red">#</font>EMERGE_DEFAULT_OPTS="<font color="orange">--quiet-build=y --ask --load-average=2 --autounmask-write=y --with-bdeps=y</font>"<br>
FEATURES="<font color="orange">preserve-libs collision-protect candy</font>" <br>
MAKEOPTS="<font color="red">-j4"</font> <br>
INPUT_DEVICES="<font color="orange">evdev keyboard mouse synaptics libinput</font>" <br>
ACCEPT_LICENSE="<font color="blue">*</font>" <br>
PYTHON_TARGETS="</font><font color="blue">python2_7 python3_4 python3_5 python3_6</font>" <br>
</td>
</tr>
</table>
</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#000000">21.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Hora local.</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono" size="3" color="#ffffff"><font color="red">(chroot)</font> # <font color="#00ff00"><strong>ln -sf</strong></font> /usr/share/zoneinfo/America/Belem /etc/localtime</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#000000">22.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Verificando se o kernel foi instalado.</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono" size="3" color="#ffffff">
<font color="red">(chroot)</font> # <font color="#00ff00"><strong>emerge</strong></font> -s debian-sources</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#000000">23.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Configurando locais</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono" size="3" color="#ffffff"><font color="red">(chroot)</font> # <font color="#00ff00"><strong>nano -w</strong></font> /etc/locale.gen<br><br>
<table bgcolor="white" width="100%">
<tr>
<td>
<font color="#000000">en_US.UTF-8 UTF-8</font> <font color="gray">deixe esta linha intaquita</font><br>
<font color="red"><i>pt_BR.UTF-8 UTF-8</i></font><br>
</td>
</tr>
</table>
<br>
<font color="red">(chroot)</font> # <font color="#00ff00"><strong>locale-gen</strong></font><br>
<font color="red">(chroot)</font> # <font color="#00ff00"><strong>locale</strong></font> -a<br>
<font color="red">(chroot)</font> # <font color="#00ff00"><strong>eselect</strong></font> locale list<br>
<font color="red">(chroot)</font> # <font color="#00ff00"><strong>eselect</strong></font> locale set X<br><br>
<p2 class="orangetext">Sendo X a coluna que contenha pt_BR.utf8 <p1 class="redtext">Muito
importante escolher UTF-8 para evitar erros de caracteres no terminal.</p1></p2><br>
<!-- <font color="red">(chroot)</font> # <font color="#00ff00"><strong>env-update</strong></font> && source /etc/profile && export PS1="(chroot) $PS1" -->
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#000000">24.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Configuração <!--boot/-->keymaps.</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
</font>
<!--
<font size="3" face="Lucida Console, Dejavu Sans Mono">Gentoo (ao menos quando usa OpenRC) usa /etc/rc.conf para configurar os<br> serviços, início, desligamento do sistema.<br> Abra
/etc/rc.conf e aproveite todos os comentários no arquivo.<br> Reveja as configurações e mude onde for necessário.</font><br></font>
-->
<tr>
<td>
<font face="Lucida Console, Dejavu Sans Mono" color="white" size="3">
<!--
<font color="red">(chroot)</font> # <font color="#00ff00"><strong>nano -w</strong></font> /etc/conf.d/hwclock <br>
<font color="red">(chroot)</font> # <font color="#00ff00"><strong>nano -w</strong></font> /etc/rc.conf <br>
-->
<font color="red">(chroot)</font> # <font color="#00ff00"><strong>nano -w</strong></font> /etc/conf.d/keymaps
</font><br><br>
<table bgcolor="white" width="100%">
<tr>
<td>
<font face="Lucida Console, Dejavu Sans Mono">keymap="<font face="Lucida Console, Dejavu Sans Mono" color="red" ><i>br-abnt2</i></font>"
</font><br>
</td>
</tr>
</table>
</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#000000">25.</font>
<font color="black" size="5" face="Lucida Console, Dejavu Sans Mono"><strong>Informação de host e domínio.</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font color="white" face="Lucida Console, Dejavu Sans Mono"><font color="red">(chroot)</font> # <font color="#00ff00"><strong>nano -w</strong></font> /etc/conf.d/hostname</font><br><br>
<table bgcolor="white" width="100%">
<tr>
<td>
<font face="Lucida Console, Dejavu Sans Mono" color="black">hostname="<font face="Lucida Console, Dejavu Sans Mono" color="red"><i>nomeDaRede</i></font>"</font></td>
</td>
</tr>
</table>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#000000">26.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Instalando CPUFlags.</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono" color="white" size="3">
<font color="red">(chroot)</font><font size="3" color="yellow"> emerge -aq app-portage/<font color="#3399ff"><strong>cpuid2cpuflags</strong></font><br>
</font><br>
<font color="red">(chroot)</font> <font color="#00ff00"><strong>cpuid2cpuflags</strong></font><br>
<font color="red">(chroot)</font> <font color="#3399ff"><strong>cpuid2cpuflags</strong></font> >> <font color="#00ff00">/etc/portage/make.conf</font><br>
<font color="red">(chroot)</font> <font color="#00ff00"><strong>cat</strong></font> /etc/portage/make.conf</td>
</font>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#000000">27.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Configurando Internet.</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td>
<font face="Lucida Console, Dejavu Sans Mono" size="3" color="#ffffff">
<!--
<font color="red">(chroot)</font> # emerge -aq linux-firmware<br>
<font color="red">(chroot)</font> # emerge -aq net-misc/wicd<br>
<font color="red">(chroot)</font> # rc-update add wicd default<br>
<font color="red">(chroot)</font> # rc-update del net.eth0<br>
<font color="red">(chroot)</font> # service wicd start<br>
<font color="red">(chroot)</font> # nano -w /etc/rc.conf<br><br>
<font color="gray">Adicione a linha</font><br>
rc_hotplug="font color="red">!net.eth0</font>"<br>
<font color="gray">Alguns comandos:<br>
wicd-cli -S "Procurar por redes wifi"<br>
wicd-cli -y "Interface wifi"<br>
wicd-cli -z "Interface com cabo"<br>
wicd-cli -c "Conectar a rede selecionada (com rede/sem rede)"</font><br><br>
wicd-curces (gerenciador wifi com janela via terminal)
<font color="red">(chroot)</font> # rc-update add dhcpcd default
-->
<font color="yellow">
<!-- <font color="red">(chroot)</font> # emerge -an net-misc/netifrc<br> -->
<font color="red">(chroot)</font> # emerge -aq app-laptop/laptop-mode-tools<br>
<font color="red">(chroot)</font> # emerge -aq sys-kernel/linux-firmware<br><br>
</font>
<font color="yellow">
<font color="red">(chroot)</font> # emerge -aq net-misc/networkmanager<br>
</font>
<!-- <font color="red">(chroot)</font> # <font color="#00ff00"><strong>dispatch-conf</strong></font><br> -->
<font color="red">(chroot)</font> # <font color="#00ff00"><strong>rc-update</strong></font> add NetworkManager default<br>
<font color="red">(chroot)</font> # <font color="#00ff00"><strong>rc-service</strong></font> NetworkManager start<br><br>
<font color="yellow">
<font color="red">(chroot)</font> # emerge -aqn net-misc/dhcpcd<br>
</font>
<font color="red">(chroot)</font> # <font color="#00ff00"><strong>rc-update</strong></font> add dhcpcd default<br>
<font color="red">(chroot)</font> # <font color="#00ff00"><strong>nmtui</strong></font>
</h3>
</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#000000">28.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Sicronizando e atualizando.</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td>
<font face="Lucida Console, Dejavu Sans Mono" color="white">
<font color="red">(chroot)</font> # <font color="00ff00"><strong>ego</font></strong> sync<br>
<font color="red">(chroot)</font> <font color="#ffffff">#</font> <font color="00ff00"><strong>emerge</strong></font> <font color="#ffffff">-auqDN</font><font color="#3399ff"> @world</font><br>
</font>
</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#000000">29.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Bootloader.</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono" size="3" color="#ffffff"><font color="red">(chroot)</font> # <font color="#00ff00"><strong>emerge</strong></font> boot-update</font></td>
</tr>
</table>
<br>
<table border="0" bgcolor="black" width="80%">
<font face="Lucida Console, Dejavu Sans Mono" size="3" color="white">Adicione: genkernel depois de: default "Funtoo Linux <font color="red">########</font>"</font><br><br>
<tr>
<td>
<font face="Lucida Console, Dejavu Sans Mono" color="#ffffff"><font color="red">(chroot)</font> # <font color="#00ff00"><strong>nano -w</strong></font> /etc/boot.conf</font><br><br>
<table bgcolor="white" width="100%">
<tr>
<td>
<font face="Lucida Console, Dejavu Sans Mono" color="#000000">
boot {<br>
generate grub<br>
default "Funtoo Linux <font color="red"><i>genkernel</i></font>". <br>
timeout <font color="red"><i>1</i></font> <br>
}<br>
<br>
"Funtoo Linux" {<br>
kernel bzImage[-v]<br>
}<br>
<br>
"Funtoo Linux genkernel" {<br>
kernel kernel[-v]<br>
initrd initramfs[-v]<br>
params += real_root=auto <br>
} <br>
<br>
"Funtoo Linux better-initramfs" {<br>
kernel vmlinuz[-v]<br>
initrd /initramfs.cpio.gz<br>
}<br>
</font>
</td>
</tr>
</table>
</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#000000">30.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Grub</strong></font><br><br>
<table border="0" bgcolor="#002b36" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono" size="3" color="#ffffff">
<font color="red">Old School (BIOS) MBR</font><br><br>
<font color="red">(chroot)</font> # <font color="#00ff00"><strong>grub-install</strong></font> --target=i386-pc --no-floppy <font color="#00ff00"><strong>/dev/sda</strong></font><br>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="3" color="#ffffff"><strong><font color="red">(chroot)</font> # boot-update</strong></font><br><br>
</td>
</tr>
</table>
<br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td>
<font face="Lucida Console, Dejavu Sans Mono" size="3" color="#ffffff">
<font color="blue">New School (UEFI) Boot</font><br><br>
<font color="red">(chroot)</font> # <font color="#00ff00"><strong>grub-install</strong></font> --target=x86_64-efi --efi-directory=/boot --bootloader-id="Funtoo Linux [GRUB]" --recheck<br>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="3" color="white"><strong><font color="red">(chroot)</font> # boot-update</strong></font><br><br>
</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#000000">31.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Pacote logs boot.
</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td>
<font face="Lucida Console, Dejavu Sans Mono" color="#ffffff">
<font color="red">(chroot)</font> # <font color="yellow">emerge -a app-admin/metalog</font><br>
<font color="red">(chroot)</font> # <font color="#00ff00"><strong>rc-update</strong></font> add metalog default<br>
</font>
</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5">32.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Adicionando senha para o root.</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono" size="3" color="#ffffff"><font color="red">(chroot)</font> # <font color="#00ff00"><strong>passwd</strong></font></td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5">33.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Adicionando um usuário e senha.</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono" size="3" color="#ffffff"><font color="red">(chroot)</font> # <font color="#00ff00"><strong>useradd</strong></font> -m -G <font color="#00ff00"><strong>users</strong></font>,<font color="#ffff00"><strong>wheel</strong></font>,<font color="#00ff00"><strong>audio</strong></font>,<font color="#ffff00"><strong>lp</strong></font>,<font color="#00ff00"><strong>cdrom</strong></font>,<font color="#00ffff"><strong>portage</strong></font>,<font color="#00ff00"><strong>usb</strong></font>,<font color="red">plugdev</font>,<font color="#ffff00"><strong>video</strong></font>,<font color="#ff1100"><strong>cdrw</strong></font>,<font color="#aaddff"><strong>games</strong></font> -s /bin/bash <font color="#ff9900"><strong>nomeUsuario</strong></font><br>
<font color="red">(chroot)</font> # <font color="#00ff00"><strong>passwd</strong></font> nomeUsuario</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5">34.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Saindo do sistema.</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono"size="3" color="#ffffff">
<font color="red">(chroot)</font> # exit<br>
# cd /mnt<br>
# <font color="#00ff00"><strong>umount</strong></font> -lR /funtoo<br>
# reboot<br>
</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5">35.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Instalar sudo<br>
</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td>
<font face="Lucida Console, Dejavu Sans Mono" color="white">
# <font color="#00ff00"><strong>emerge</strong></font> -aq app-admin/sudo<br><br>
# <font color="yellow"><font color="00ff00"><strong>nano -w</strong></font> /etc/sudoers</font>
<font color="gray">Entre no arquivo sudoers e descomente a linha</font><br><br>
<table bgcolor="white" width="100%">
<tr>
<td>
<p2 class="redtext">#</p2> <font color="black">%wheel ALL=(ALL) ALL</font><br>
<font color="gray">ou logo abaixo de <font color="black">"root ALL=(ALL) ALL"</font> adicione;</font><br></p1>
<font color="black"><i><font color="red">nomeUsuário</font></i> ALL=(ALL) ALL</font></table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5">36.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Entre no arquivo issue e apage os digitos <p2 class="redtext">.\0</p2></strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono"size="3" color="#ffffff"># <font color="#00ff00"><strong>nano -w</strong></font> /etc/issue</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#ffffff">37.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#ffffff"><ins>Editar flag's no "make.conf"<ins>.</strong></font><br><br>
<font face="Lucida Console, Dejavu Sans Mono" size="3" ><strong>Use o comando abaixo para obter o modelo da GPU:</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td>
<font face="Lucida Console, Dejavu Sans Mono" size="3" color="white">
# <font color="#00ff00"><strong>lspci</strong></font> | grep -i VGA</font><br>
</td>
</tr>
</table><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono" size="3" color="black"><font color="white"> # <font color="#00ff00"><strong>nano -w</strong></font> /etc/portage/make.confi</font><br>
<br>
<table bgcolor="white" width="100%">
<tr>
<td>
VIDEO_CARDS="<font color="gray">vesa</font>/<font color="blue">intel i915</font>/<font color="red">radeon</font>/<font color="green">nvidia</font>/<font color="orange">virtualbox</font>"<br>
<!-- USE="<font color="green"><mark>X opengl dbus ffmpeg git jpeg jpeg2k mp3 mp4 mpeg png sound ncurses clipboard imlib alsa gif java mozilla <font color="#ff0066">-modemmanager</font> pdf pulseaudio python ruby truetype udev upower usb wifi xft haskell</mark>"<br>
</font>
LINGUAS="<font color="orange">pt_BR.UTF-8</font> <font color="purple">pt_BR.ISO-8859-1</font> <font color="blue">pt_BR pt-BR</font>"<br>
L10N="<font color="orange">pt-BR</font>"<br>
EMERGE_DEFAULT_OPTS="<font color="orange">--autounmask-write=y --with-bdeps=y</font>"<br>
MAKEOPTS="<font color="red">-j4"</font> <br>
ACCEPT_LICENSE="<font color="blue">*</font>" <br> -->
</td>
</tr>
</table>
</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5" color="#000000">38.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Configurando com epro.</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td>
<font face="Lucida Console, Dejavu Sans Mono" color="#ffffff">
# <font color="#00ff00"><strong>epro</strong></font> list<br>
# <font color="#00ff00"><strong>epro</strong></font> flavor <font color="#9933ff"><strong>workstation</strong></font><br>
# <font color="#00ff00"><strong>epro</strong></font> mix-ins<br><br>
<table border="0" bgcolor"#c1c1c1" width="100%">
<tr>
<td>
=== Enabled Profiles: ===<br>
<br>
arch: x86-64bit<br>
build: current<br>
subarch: intel64-haswell<br>
flavor: desktop<br>
mix-ins: gnome<br>
<br>
<br>
=== All inherited flavors from desktop flavor: ===<br>
<br>
workstation (from desktop flavor)<br>
core (from workstation flavor)<br>
minimal (from core flavor)<br>
<br>
=== All inherited mix-ins from desktop flavor: ===<br>
<br>
X (from workstation flavor)<br>
audio (from workstation flavor)<br>
dvd (from workstation flavor)<br>
media (from workstation flavor)<br>
mediadevice-audio-consumer (from media mix-in)<br>
mediadevice-base (from mediadevice-audio-consumer mix-in)<br>
mediadevice-video-consumer (from media mix-in)<br>
mediadevice-base (from mediadevice-video-consumer mix-in)<br>
mediaformat-audio-common (from media mix-in)<br>
mediaformat-gfx-common (from media mix-in)<br>
mediaformat-video-common (from media mix-in)<br>
console-extras (from workstation flavor)<br>
print (from desktop flavor)<br>
</td>
</tr>
</table>
</font>
</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5">39.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Atualizando.</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono" color="yellow"># emerge -auDN @world</font></td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5">40.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Aplicativos úteis.</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono"size="3" color="#ffffff"><p1 class="yellowtext">
# emerge -aq
# x11-terms/{rxvt-unicode,xfce4-terminal}<br>
# app-editors/mousepad<br>
# www-client/google-chrome<br>
# dev-vcs/git<br>
# net-misc/wget<br>
<!--app-i18n/ibus-->
</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5">41.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Controladores de som.</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono"size="3" color="#ffffff">
# <font color="#00ff00"><strong>nano -w</strong></font> /etc/portage/make.conf <font color="gray">adicionar em USE="<font color="blue">alsa pulseaudio"</font></font><br><br>
<font color="yellow"># emerge -aq media-sound/{pulseaudio,alsa-utils}<br>
</font>
<!-- media-plugins/gst-plugins-alsa<br>
media-plugins/alsa-plugins<br>
<!-- media-libs/alsa-lib<br> -->
# /etc/init.d/alsasound status<br>
# /etc/init.d/alsasound start<br>
# <font color="#00ff00"><strong>rc-update</strong></font> add alsasound boot<br><br>
# <font color="#00ff00"><strong>amixer</strong></font> sset Master unmute<br>
# <font color="#00ff00"><strong>amixer</strong></font> sset Master 100%
<!--
<font color="#00ff00"><strong>alsamixe</strong></font> <font color="gray">Com o alsamixer aberto ative o som tirando-o do Mute com a tecla "M"</font><br>
-->
</td>
</tr>
</table>
<br>
<font face="Lucida Console, Dejavu Sans Mono" size="5">42.</font>
<font face="Lucida Console, Dejavu Sans Mono" size="5"><strong>Setando e adicionando ao boot.</strong></font><br><br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono"size="3" color="#ffffff">
# /etc/init.d/dbus status<br>
# /etc/init.d/dbus start<br>
# <font color="#00ff00"><strong>rc-update</strong></font> add dbus default<br><br>
# /etc/init.d/consolekit status<br>
# /etc/init.d/consolekit start<br>
# <font color="#00ff00"><strong>rc-update</strong></font> add consolekit default<br><br>
# <font color="#00ff00"><strong>shutdown</strong></font> -r now
</td>
</tr>
</table>
<br><br>
<!-- dicas extras ----------------- -->
<font color="#00ff00" size="6">DICAS EXTRAS</font>
<!-- novas linas -->
<!-- configurando teclado -->
<center><h2 style="font-family:Dejavu sans mono, verdana">Configurando teclado Xorg.</strong></font><br><br></center>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono"size="3" color="#ffffff"># nano /etc/X11/xorg.conf.d/30-keyboard.conf<br><br>
<font color="ffff00">Section "InputClass"</font><br>
        <font color="66ffcc">Identifier</font><font color="cc66ff"> "keyboard-all"</font><br>
        <font color="66ffcc">Driver</font><font color="cc66ff"> "evdev"</font><br>
        <font color="66ffcc">Option</font><font color="cc66ff"> "XkbLayout" "br"</font><br>
        <font color="66ffcc">Option</font><font color="cc66ff"> "XkbVariant" ",abnt2"</font><br>
        <font color="66ffcc">Option</font><font color="cc66ff"> "XkbOptions" "grp:shift_toggle,grp_led:scroll"</font><br>
<font color="ffff00">EndSection</font></font></td>
</tr>
</table>
<!-- tearing -->
<center><h2 style="font-family:Dejavu sans mono, verdana">Removendo Tearing da placa de video.</strong></font><br><br></center>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono"size="3" color="#ffffff"> <font color="#00ffff">Intel</font><br># nano /usr/share/X11/xorg.conf.d/20-intel.conf<br><br>
<font color="ffff00">Section "Device"</font><br>
        <font color="66ffcc">Identifier</font><font color="cc66ff"> "Intel Graphics"</font><br>
        Driver "intel"<br>
        <font color="66ffcc">Option</font><font color="cc66ff"> "AccelMethod" "sna"</font><br>
        <font color="66ffcc">Option</font><font color="cc66ff"> "TearFree" "on"</font><br>
        <font color="66ffcc">Option</font><font color="cc66ff"> "DRI" "3"</font><br>
<font color="ffff00">EndSection</font></font></td>
</tr>
</table>
<br>
<table border="0" bgcolor="black" width="80%">
<tr>
<td><font face="Lucida Console, Dejavu Sans Mono"size="3" color="#ffffff"> <font color="red">Radeon</font><br># nano /usr/share/X11/xorg.conf.d/50-device.conf<br><br>
<font color="ffff00">Section "Device"</font><br>
        <font color="66ffcc">Identifier</font><font color="cc66ff"> "Default"</font><br>
        Driver "amdgpu"<br>
        <font color="66ffcc">Option</font><font color="cc66ff"> "DRI" "3"</font><br>
        <font color="66ffcc">Option</font><font color="cc66ff"> "TearFree" "True"</font><br>
<font color="ffff00">EndSection</font></font></td>
</tr>
</table>
<center><h2 style="font-family:Dejavu sans mono, verdana">Configurando Touchpad.</strong></font><br><br></center>
<table border="0" bgcolor="black" width="80%">
<tr><td><font face="Lucida Console, Dejavu Sans Mono"size="3" color="#ffffff"> # nano /etc/X11/xorg.conf.d/70-synaptics.conf<br><br>
<font color="ffff00">Section "InputClass"</font><br>
        <font color="66ffcc">Identifier</font><font color="cc66ff"> "touchpad"</font><br>
        <font color="66ffcc">Driver</font><font color="cc66ff"> "synaptics"</font><br>
        MatchIsTouchpad "on"<br>