Como desativar x window no Fedora 15

3

Como a pergunta acima "Como eu desabilito a janela x no Fedora 15"? Eu pesquiso a pergunta, e eu tenho este artigo

   vi /etc/inittab

   Find out entry that read as follows:
   id:5:initdefault:

   Set the default runlevel to 3 (text mode)
   id:3:initdefault:

Save and close the file
reboot

No entanto, quando eu abro o arquivo "inittab" no meu Fedora 15 Eu só encontrei essas informações no inittab:

inittab is no longer used when using systemd.

 ADDING CONFIGURATION HERE WILL HAVE NO EFFECT ON YOUR SYSTEM.

 Ctrl-Alt-Delete is handled by /etc/systemd/system/ctrl-alt-del.target

 systemd uses 'targets' instead of runlevels. By default, there are two main targets:

 multi-user.target: analogous to runlevel 3
 graphical.target: analogous to runlevel 5

Para definir um destino padrão, execute:

 ln -s /lib/systemd/system/<target name>.target /etc/systemd/system/default.target

Como desabilito o X-Window?

    
por Patrick 03.12.2011 / 17:22

3 respostas

4

Isto é diretamente do wiki do Projeto Fedora:

link

EDITAR

Aqui estão alguns detalhes que ajudarão você a entender o processo.

O Fedora 15 e 16 usam o systemd. Para mudar para o equivalente do runlevel 3 antigo, você deve primeiro remover o alvo padrão, que é o equivalente ao runlevel antigo 5. Para fazer isso, efetue login como root e faça o seguinte:

# cd /etc/systemd/system
system # rm ./default.target
system # 

Agora, os alvos são armazenados no diretório / lib / systemd / system /, e o equivalente do antigo runlevel 3 é multi-user.target. Agora você deve ligar simbolicamente esse arquivo a este local atual com o nome default.target:

system # ln -sf /lib/systemd/system/multi-user.target ./default.target

Reinicie e você deve estar pronto.

    
por 03.12.2011 / 17:39
0

Como root, faça o seguinte:

# remove the default systemd target, which is (probably) the graphical.target
rm /etc/systemd/system/default.target
# now, let's make the SystmV's runlevel 3 to be the default one
ln -sf /lib/systemd/system/multi-user.target /etc/systemd/system/default.target 
# switch back to graphical (SystemV runlevel 5)
ln -sf /lib/systemd/system/graphical.target /etc/systemd/system/default.target 
    
por 03.12.2011 / 18:39
0

A maneira mais fácil de desabilitar o X Window é editando o carregador de inicialização do grub /boot/grub/grub.conf e anexando o nível de execução 3 (multiusuário, rede, sem gui) à sua linha de kernel da sub-rotina usada.

por exemplo. Observe o '3' no final

title Fedora
root (hd0,0)
kernel /vmlinuz-2.6.18-274.7.1 ro root=/dev/VolGroup00/LogVol00 3
initrd ...
    
por 13.12.2011 / 18:18

Tags