Disable Desktop environment: mudanças entre as edições

De Wiki Clusterlab.com.br
Ir para navegação Ir para pesquisar
(Criou página com 'To disable GUI on boot, run: <sytaxhighlight lang=bash> sudo systemctl set-default multi-user.target </sytaxhighlight> To enable GUI again issue the command: <sytaxhighlight l...')
 
Sem resumo de edição
 
(Uma revisão intermediária pelo mesmo usuário não está sendo mostrada)
Linha 1: Linha 1:
To disable GUI on boot, run:
To disable GUI on boot, run:
<sytaxhighlight lang=bash>
<syntaxhighlight lang=bash>
sudo systemctl set-default multi-user.target
sudo systemctl set-default multi-user.target
</sytaxhighlight>
</syntaxhighlight>
To enable GUI again issue the command:
To enable GUI again issue the command:
<sytaxhighlight lang=bash>
<syntaxhighlight lang=bash>
sudo systemctl set-default graphical.target
sudo systemctl set-default graphical.target
</sytaxhighlight>
</syntaxhighlight>
To start Gnome session on a system without a current GUI just execute:
To start Gnome session on a system without a current GUI just execute:
<sytaxhighlight lang=bash>
<syntaxhighlight lang=bash>
sudo systemctl start gdm3.service
sudo systemctl start gdm3.service
</sytaxhighlight>
</syntaxhighlight>

Edição atual tal como às 16h28min de 22 de maio de 2019

To disable GUI on boot, run:

sudo systemctl set-default multi-user.target

To enable GUI again issue the command:

sudo systemctl set-default graphical.target

To start Gnome session on a system without a current GUI just execute:

sudo systemctl start gdm3.service