O Rhythmbox não está sendo lançado

3

Estou usando o Rhythmbox 2.99 no Ubuntu 13.10, e quando eu inicio o aplicativo, ele procura por música e funciona como um encanto, mas se eu tentar lançá-lo mais tarde, nada acontece. Quando eu corro no terminal eu entendo isso:

$ rhythmbox
(rhythmbox:8860): GLib-GObject-CRITICAL **: Custom constructor for class SoupServer returned NULL (which is invalid).  Unable to remove object from construction_objects list, so memory was probably just leaked.  Please use GInitable instead. 

Segmentation fault

Alguma idéia de como fazer isso funcionar novamente?

A saída de sudo dpkg -l | grep rhythmbox :

ii  gir1.2-rb-3.0                          2.99.1-0ubuntu1                         amd64        GObject introspection data for the rhythmbox music player
ii  librhythmbox-core7                     2.99.1-0ubuntu1                         amd64        support library for the rhythmbox music player
ii  rhythmbox                              2.99.1-0ubuntu1                         amd64   music player and organizer for GNOME
ii  rhythmbox-data                         2.99.1-0ubuntu1                         all           data files for rhythmbox
ii  rhythmbox-mozilla                      2.99.1-0ubuntu1                         amd64         Rhythmbox Mozilla plugin
ii  rhythmbox-plugin-cdrecorder            2.99.1-0ubuntu1                         amd64        burning plugin for rhythmbox music player
ii  rhythmbox-plugin-equalizer             0.3-2                                   all          rhythmbox sound equalizer
ii  rhythmbox-plugin-zeitgeist             2.99.1-0ubuntu1                         all          zeitgeist plugin for rhythmbox music player
ii  rhythmbox-plugins                      2.99.1-0ubuntu1                         amd64        plugins for rhythmbox music player
    
por Slaci 22.10.2013 / 12:01

2 respostas

3

Tente estas uma vez

  1. Primeiro tente reconfigurá-lo, se não ajudar, siga o passo 2.

    sudo pkill rhythmbox
    sudo dpkg-reconfigure rhythmbox
    

    Verifique após Logout / Reiniciar.

  2. Se primeiro não ajudar, reinstale o rhythmbox após remover todo o arquivo de configuração:

    sudo apt-get autoremove rhythmbox
    sudo apt-get --purge remove rhythmbox
    sudo find / | grep rhythmbox | sudo xargs rm -rf
    sudo apt-get update && sudo apt-get -f install rhythmbox
    

    Verifique após Logout / Reiniciar.

Responda se você receber algum erro em qualquer comando em particular.

    
por Saurav Kumar 22.10.2013 / 15:00
4

Basta remover o arquivo db .local / share / rhythmbox / rhythmdb.xml. Provavelmente está corrompido e impedindo que o Rhythmbox seja iniciado. Ele será recriado automaticamente, você perderá apenas alguns dados, como classificações de músicas (dados não incluídos nos metadados do arquivo, principalmente). Você não perderá suas playlists. Dê ao Rhythmbox alguns segundos para iniciar a criação de pastas de música e preencher o banco de dados.

    
por Turi 28.10.2013 / 00:56