Ubuntu Firefox está dizendo que ele já está rodando mas não está respondendo

5

No Ubuntu, ao tentar abrir o Firefox está dizendo que ele já está rodando, mas não está respondendo. Eu estou em um sistema onde eu não tenho acesso para ver a raiz. Eu tive esse problema antes e corrigi-lo, mas eu não lembro como. Eu sei antes de apagar um arquivo, mas não lembro o que ou onde.

    
por Josh Curren 04.12.2009 / 19:03

4 respostas

8

Provavelmente, seu perfil está bloqueado; acontece no desligamento impuro, às vezes.

Veja esta página de suporte em Mozilla.com, especificamente:

  • pkill firefox (ou reinicie o seu computador). Não tente iniciar o Firefox.
  • Acesse a pasta do seu perfil do Firefox - consulte Como encontrar seu perfil .
  • Excluir o arquivo de bloqueio parent.lock

Seu perfil está em ~ / .mozilla / firefox / *. default / (o * será uma seqüência aleatória de 8 letras)

rm parent.lock e tente novamente.

    
por 04.12.2009 / 19:19
2

Abra a janela do terminal. tipo:

sudo killall firefox

Tente abrir o Firefox novamente

    
por 04.12.2009 / 19:10
2

Esta postagem pode ser a solução @ link

If you need to kill firefox, you can try going under System->Adminstration->System Monitor and select the processes tab. Look for firefox and right click on it. It should give you an option to kill the process. If that does not work, you might try going into the Terminal and type:
ps -ef|grep firefox

If firefox is running, it should show up as a process and have a number attached to it. It will be the first number after the username. For example:

jayhawk@jayhawk:/$ ps -ef|grep firefox
jayhawk 8137 26283 0 14:21 pts/0 00:00:00 grep firefox
jayhawk 24213 1 0 07:22 ? 00:00:00 /bin/sh /usr/bin/firefox-granparadiso

In this scenario, the process number is 24213 for firefox (I am running the alpha version of firefox so your firefox name will be different). Just type:
kill 24213

Then check again by using the ps -ef grep firefox command. If it is still there, you can use:
sudo kill -9 24213

And that should kill it.

    
por 04.12.2009 / 19:23
0

Sim, ou simplesmente abra seu terminal e ...

1) go to firefox directory by typing:   cd .mozilla/firefox
2) type: ls  (..now you should see file profiles.ini)
3) remove profiles.ini file by typing:  rm profiles.ini

é isso, inicie o Firefox novamente:)

    
por 08.06.2013 / 10:05