18.04 perdeu recentemente o toque para o clique no login (gdm)

5

Recentemente, perdi a habilidade de tocar para clicar na tela de login (gdm). Eu originalmente habilitei em 17.10 e ele sobreviveu em 18.04 até alguns dias atrás. Então não tenho certeza do que aconteceu.

Eu segui as instruções aqui fazendo:

sudo -u gdm gsettings set org.gnome.desktop.peripherals.touchpad tap-to-click true

Mas estou recebendo esta mensagem de erro:

(process:26095): dconf-CRITICAL **: 17:43:24.120: unable to create directory '/home/user/.cache/dconf': Permission denied. dconf will not work properly.

(process:26095): dconf-WARNING **: 17:43:24.120: failed to commit changes to dconf: Could not connect: Connection refused

E quando eu corro para tentar corrigir:

sudo -u gdm dbus-launch gsettings set org.gnome.desktop.peripherals.touchpad tap-to-click true

Eu entendo isso:

(process:26477): dconf-WARNING **: 17:52:56.774: failed to commit changes to dconf: GDBus.Error:org.gtk.GDBus.UnmappedGError.Quark._g_2dfile_2derror_2dquark.Code2: Cannot open dconf database: Failed to open file “/home/user/.config/dconf/user”: Permission denied

Eu decidi tentar excluir ~ / .cache / dconf e tentei novamente sem sucesso.

Alguém pode ajudar? Obrigado.

Editado para adicionar mais informações.

    
por vaskark 04.05.2018 / 23:49

1 resposta

2

Tente isto: Ativar 'Toque em para clicar em 'no Ubuntu . Funcionou para mim.

  1. Open terminal via Ctrl+Alt+T, then run command to get root privileges:

    sudo -i
    

    Type in your password (no visual feedback while typing) when it prompts and press Enter.

  2. (Not required in default Wayland session) Allow user gdm to create a connection to the X server:

    xhost +SI:localuser:gdm
    
  3. Switch to user gdm in the terminal:

    su gdm -s /bin/bash
    
  4. Finally enable 'Tap to click' via gdm user:

    gsettings set org.gnome.desktop.peripherals.touchpad tap-to-click true
    

    enter image description here

  5. Restart your computer and done.

    sudo reboot
    

How to Restore:

To restore the setting, open terminal and redo the previous steps except run the following command instead of the command in Step 4:

    gsettings set org.gnome.desktop.peripherals.touchpad tap-to-click false
    
por RoboBoy 09.05.2018 / 17:59