The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "X Window System/pt-br"
(Created page with "Em seguida, vem a instalação de fato: {{console|body= # ##i##emerge xorg-x11 }}") |
(Created page with "Agora precisamos testar para garantir que o X.Org esteja funcionando corretamente. Para testá-lo, instalaremos o TWM, um gerenciador de janelas simples que tradicionalmente s...") |
||
Line 29: | Line 29: | ||
}} | }} | ||
Agora precisamos testar para garantir que o X.Org esteja funcionando corretamente. Para testá-lo, instalaremos o TWM, um gerenciador de janelas simples que tradicionalmente serviu como o gerenciador de janelas padrão do X.Org. No Funtoo Linux, ele está incluído no metapacote principal do X.Org <code>x11-apps/xinit</code>, mas não é instalado por padrão. | |||
It is possible to install twm directly by merging <code>x11-wm/twm</code> but for the sake of this tutorial we will install the meta-package, which includes a few extra utilities which may come in handy. There are two ways to do this depending on whether you want it to be installed temporarily or permanently. If you just want it to test X.Org use the following command: | It is possible to install twm directly by merging <code>x11-wm/twm</code> but for the sake of this tutorial we will install the meta-package, which includes a few extra utilities which may come in handy. There are two ways to do this depending on whether you want it to be installed temporarily or permanently. If you just want it to test X.Org use the following command: |
Revision as of 21:02, July 11, 2020
X.Org Kits
O Funtoo Linux atualmente (a partir da versão 1.3) possui o xorg-server 1.20.
X.Org
Para usar um ambiente gráfico, é necessário instalar o X.Org, que é uma implementação do sistema de janelas X.
Antes que comecemos é uma boa ideia certifica-se de que seu sistema está configurado corretamente. Se você instalou seu kernel usando a USE flag binary
, é provável que sua placa de vídeo já seja suportada. Veja Vídeo para mais informações sobre isso.
Você também deve encontrar seu endereço IP, porque se o X congelar e você precisar sair dele, a maneira mais segura é fazer o SSH a partir de outro computador/smartphone/tablet e emitir
root # killall X
Para que o Portage saiba qual quais placas de video você deseja suportar, você precisará adicionar uma linha ao seu make.conf
.
root # nano -w /etc/portage/make.conf ... VIDEO_CARDS="intel"
No exemplo acima, estamos usando drivers de gráficos integrados da Intel. Exemplos de entradas válidas incluem radeon
para placas AMD Radeon e nouveau
ou nvidia
para placas NVIDIA e virtualbox
se a instalação é feita através da máquina virtual Virtualbox. Se você ainda não mudou para o perfil desktop
, é uma boa ideia fazê-lo agora.
Em seguida, vem a instalação de fato:
root # emerge xorg-x11
Agora precisamos testar para garantir que o X.Org esteja funcionando corretamente. Para testá-lo, instalaremos o TWM, um gerenciador de janelas simples que tradicionalmente serviu como o gerenciador de janelas padrão do X.Org. No Funtoo Linux, ele está incluído no metapacote principal do X.Org x11-apps/xinit
, mas não é instalado por padrão.
It is possible to install twm directly by merging x11-wm/twm
but for the sake of this tutorial we will install the meta-package, which includes a few extra utilities which may come in handy. There are two ways to do this depending on whether you want it to be installed temporarily or permanently. If you just want it to test X.Org use the following command:
root # USE="-minimal" emerge -1 xinit
The minimal
USE flag is used in some ebuilds to install the bare minimum needed to get a working system. By passing USE="-minimal"
to the command line before emerge
, we are telling Portage to disable the flag and install the complete package. The -1
(--oneshot
) following emerge
tells Portage not to add the package to world
. This is useful when installing packages which are automatically pulled in as dependencies by other packages.
If you want the package installed permanently you will need to add a line to package.use
:
root # echo 'x11-apps/xinit -minimal' >> /etc/portage/package.use
Next we reinstall x11-apps/xinit
:
root # emerge -1N xinit
Once that's done, we're able to finally test X.Org:
root # startx
If everything is well, a simple GUI along with an analog clock and a terminal will appear.
Keyboard/Mouse
If you have no keyboard/mouse input in x11, check if your kernel supports dev
root # zgrep EVDEV /proc/config.gz
if your output is:
CONFIG_INPUT_EVDEV=y
Install xf86-input-evdev
root # emerge xf86-input-evdev