Problemas com GLIB + Iceweasel + apt-get

0

Eu causei o bug, mas gostaria de corrigi-lo sem fazer a instalação "nova" amadora.

COMO: copiei vários comandos e os executei.

SO: Debian 8

Quando executo o Iceweasel, os seguintes serviços travam o navegador

-gmail

-facebook

Além disso, meu navegador trava depois que eu insiro palavras de um certo tamanho na barra de pesquisa, o problema não se reproduz hoje e não salvei nenhum registro.

espo@EVA-00:~$ sudo iceweasel [sudo] password for espo:

(process:2060): GLib-CRITICAL **: g_slice_set_config: assertion >'sys_page_size == 0' failed console.error: [CustomizableUI] Custom widget with id loop-button does not return a valid node console.error: [CustomizableUI] Custom widget with id loop-button does not return a valid node

(gst-plugin-scanner:2146): GStreamer-CRITICAL **: gst_structure_new_empty: >assertion 'gst_structure_validate_name (name)' failed espo@EVA-00:~$ sudo iceweasel

(process:2161): GLib-CRITICAL **: g_slice_set_config: assertion >'sys_page_size == 0' failed console.error: [CustomizableUI] Custom widget with id loop-button does not return a valid node console.error: [CustomizableUI] Custom widget with id loop-button does not return a valid node WARNING: content window passed to PrivateBrowsingUtils.isWindowPrivate. Use isContentWindowPrivate instead (but only for frame scripts). pbu_isWindowPrivate@resource://gre/modules/PrivateBrowsingUtils.jsm:25:14 nsBrowserAccess.prototype.openURI@chrome://browser/content/browser.js:15030:21 espo@EVA-00:~$ iceweasel

(process:2256): GLib-CRITICAL **: g_slice_set_config: assertion >'sys_page_size == 0' failed

Meu problema com o apt-get é mais direto.

espo@EVA-00:~$ sudo apt-get install vlc

Reading package lists... Done

Building dependency tree

Reading state information... Done

Some packages could not be installed.

This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming.

The following information may help to resolve the situation:

The following packages have unmet dependencies:

vlc : Depends: vlc-nox (= 1:2.2.1-dmo12) but it is not going to be installed

  Depends: libavcodec56 (>= 10:2.8.4) but 6:11.4-1~deb8u1 is to be installed

  Depends: libstdc++6 (>= 5.2) but 4.9.2-10 is to be installed

  Depends: libvlccore8 but it is not going to be installed

  Depends: libvncclient1 (>= 0.9.10) but it is not installable

  Recommends: vlc-plugin-notify (= 1:2.2.1-dmo12) but it is not going >to be installed

E: Unable to correct problems, you have held broken packages.

espo@EVA-00:~$

    
por ingueni 25.01.2016 / 21:09

1 resposta

0

O Apt reclama que realizou pacotes quebrados , então comece com

$ dpkg --get-selections | grep hold$

e remova o status suspenso de cada PACKAGE na lista resultante com

$ echo PACKAGE install | sudo dpkg --set-selections

Em seguida, tente

$ sudo apt-get install -f

Se houver muitos pacotes quebrados

$ sudo apt-get install -f --ignore-hold

pode ser mais rápido, mas não sei se o status mantido será mantido posteriormente.

    
por 26.01.2016 / 09:48