startx falha ao iniciar

6

Eu corri o Gerenciador de Software e agora o startx não inicia mais. Depois de iniciar meu laptop e fazer o login, a tela fica presa na página de login (tentei com o gdm e o lightdm).

Mudando para o console e iniciando startx manualmente, recebo os seguintes erros:

mktemp: failed to create file via template ‘/tmp/serverauth.XXXXXXXXXX’: Permission denied
xauth:  file  does not exist
xauth:  unable to link authority file , use -n
use: X [:<display>] [option]
-a #                   default pointer acceleration (factor)
-ac                    disable access control restrictions
-audit int             set audit trail level
-auth file             select authorization file
...
Initializing built-in extension DRI2
Loading extension GLX
The XKEYBOARD keymap compiler (xkbcomp) reports:
> Error:            Cannot open "/tmp/filegRxhGH" to write keyboard description
>                   Exiting
The XKEYBOARD keymap compiler (xkbcomp) reports:
> Error:            Cannot open "/tmp/fileb9Lgzg" to write keyboard description
>                   Exiting
XKB: Failed to compile keymap
Keyboard initialization failed. This could be a missing or incorrect setup of xkeyboard-config.
(EE) 
Fatal server error:
(EE) Failed to activate core devices.(EE) 
(EE) 
Please consult the The X.Org Foundation support 
         at http://wiki.x.org
 for help. 
(EE) Please also check the log file at "/var/log/Xorg.1.log" for additional information.
(EE) 
(II) AIGLX: Suspending AIGLX clients for VT switch
(EE) Server terminated with error (1). Closing log file.
xinit: giving up
xinit: unable to connect to X server: Connection refused
xinit: unexpected signal 2

Encontrei referências a vários problemas semelhantes e tentei várias coisas.

Certificar-se de que tenho espaço em disco suficiente: aqui está uma saída df , não parece ser o problema.

root@blackbox:~# df -h
Filesystem      Size  Used Avail Use% Mounted on
/dev/sda6        22G   18G  2.9G  87% /
none            4.0K     0  4.0K   0% /sys/fs/cgroup
udev            1.9G  4.0K  1.9G   1% /dev
tmpfs           376M  1.2M  374M   1% /run
none            5.0M     0  5.0M   0% /run/lock
none            1.9G  4.0K  1.9G   1% /run/shm
none            100M  4.0K  100M   1% /run/user

A permissão do meu arquivo .Xauthority está errada na inicialização:

root@blackbox:~# ls /home/florian/.Xauthority -al
-rw------- 1 root root 155 Mar 23 17:10 /home/florian/.Xauthority

No entanto, se eu chown o arquivo e reinicie, ainda tenho o mesmo problema.

Eu desinstalei (com purge ), reinstalei o xserver-xorg e executei o dpkg-reconfigure xserver-xorg , mas não tive sorte.

Atualizar Se eu parar o gerenciador de exibição antes de tentar iniciar o startx , recebo os seguintes erros:

xauth:  timeout in locking authority file /home/florian/.Xauthority
...
Loading extension GLX
The XKEYBOARD keymap compiler (xkbcomp) reports:
> Warning:          Type "ONE_LEVEL" has 1 levels, but <RALT> has 2 symbols
>                   Ignoring extra symbols
Errors from xkbcomp are not fatal to the X server
The XKEYBOARD keymap compiler (xkbcomp) reports:
> Warning:          Type "ONE_LEVEL" has 1 levels, but <RALT> has 2 symbols
>                   Ignoring extra symbols
Errors from xkbcomp are not fatal to the X server
The XKEYBOARD keymap compiler (xkbcomp) reports:
> Warning:          Compat map for group 2 redefined
>                   Using new definition
> Warning:          Compat map for group 3 redefined
>                   Using new definition
> Warning:          Compat map for group 4 redefined
>                   Using new definition
Errors from xkbcomp are not fatal to the X server
The XKEYBOARD keymap compiler (xkbcomp) reports:
> Warning:          Type "ONE_LEVEL" has 1 levels, but <RALT> has 2 symbols
>                   Ignoring extra symbols
Errors from xkbcomp are not fatal to the X server
(II) AIGLX: Suspending AIGLX clients for VT switch
xinit: connection to X server lost
^M
waiting for X server to shut down (EE) Server terminated successfully (0). Closing log file.

xinit: unexpected signal 2
xauth:  timeout in locking authority file /home/florian/.Xauthority

A única solução que encontrei é executar startx como root, então funciona, mas eu não preciso fazer isso!

Update 2 A melhor solução que encontrei até agora é mudar para o terminal virtual, remover o arquivo .Xauthority e executar o 'startt'. Mas eu preciso fazer isso toda vez que eu inicializo.

    
por MasterScrat 23.03.2014 / 17:31

4 respostas

2

Tente remover seu arquivo .Xauthority :

sudo rm /home/florian/.Xauthority

E reinicie seu sistema (com sua conta de usuário normal)

    
por Sylvain Pineau 23.03.2014 / 17:38
2

remova o Xauthority THEN:

alt + ctrl + F1 THEN:

sudo pkill -9 Xorg THEN:

startx

espero que isso ajude

    
por Ahmed Al-attar 23.03.2014 / 20:50
1

Corrigido este problema com:

sudo chmod 1777 /tmp /var/tmp
    
por Rann 16.11.2016 / 10:07
0

Você está recebendo esse erro porque seu usuário não tem permissão para acessar sua pasta / tmp. Altere as permissões da sua pasta / tmp e ela deve funcionar bem.

chmod 755 /tmp -R
    
por rteles 30.05.2016 / 17:50