Spotify provoca o congelamento do sistema (UI)

1

Normalmente, você está trabalhando normalmente no Ubuntu 14.04 / 16.04 com o Spotify instalado (embora isso possa se aplicar a outros programas também) e, de repente, a interface do usuário está congelada.

    
por Sergio 24.07.2016 / 15:49

1 resposta

1

Ir para um terminal:

ctrl + alt + f1 (f1 -> f6 will get a terminal)

Encontrar spotify pid:

ps -ef | grep spotify | more

resultando em algo como:

sergio   19510  1962  2 15:43 ?        00:00:02 /usr/share/spotify/spotify
sergio   19515 19510  0 15:43 ?        00:00:00 /usr/share/spotify/spotify --type=zygote --no-sandbox --lang=en-US --log-file=/usr/share/spotify/debug.log --log-severity=disable --product-version=Spotify/1.0.28.89
sergio   19533 19510  0 15:43 ?        00:00:01 /usr/share/spotify/spotify --type=gpu-process --channel=19510.0.1439192124 --no-sandbox --lang=en-US --log-file=/usr/share/spotify/debug.log --log-severity=disable --product-version=Spotify/1.0.28
.89 --supports-dual-gpus=false --gpu-driver-bug-workarounds=2,51,63 --disable-gl-extensions=GL_ARB_occlusion_query GL_ARB_occlusion_query2 --disable-accelerated-video-decode --gpu-vendor-id=0x8086 --gpu-device-id=0x0a16 --gpu-driver-vendor --gp
u-driver-version --lang=en-US --log-file=/usr/share/spotify/debug.log --log-severity=disable --product-version=Spotify/1.0.28.89 --v8-natives-passed-by-fd --v8-snapshot-passed-by-fd
sergio   19548 19515  4 15:43 ?        00:00:06 /usr/share/spotify/spotify --type=renderer --disable-pinch --no-sandbox --lang=en-US --lang=en-US --log-file=/usr/share/spotify/debug.log --log-severity=disable --product-version=Spotify/1.0.28.89
 --disable-extensions --disable-spell-checking --num-raster-threads=2 --content-image-texture-target=3553,3553,3553,3553,3553,3553,3553,3553,3553,3553,3553,3553,3553 --video-image-texture-target=3553 --disable-accelerated-video-decode --channel
=19510.1.1432446137 --v8-natives-passed-by-fd --v8-snapshot-passed-by-fd
sergio   20233  7137  0 15:46 pts/1    00:00:00 grep --color=auto --exclude-dir=.bzr --exclude-dir=CVS --exclude-dir=.git --exclude-dir=.hg --exclude-dir=.svn spotify

lá você terá o id do processo para eliminá-lo:

kill -9 19510

E volte para a interface do usuário:

ctrl + alt + f7
    
por Sergio 24.07.2016 / 15:49