Eu fiz algo realmente idiota. Eu estava criando tarballs de arquivos na minha pasta / var /. O tarball que eu criei foi colocado em /tmp/test.tar
No processo de teste do processo de extração, eu quis excluir /tmp/var/
, mas acabei fazendo um
rm -r on /var
via linha de comando.
Eu sei ... ugh.
A boa notícia é que eu só tinha apache2 / php5
em execução nesta caixa de teste.
Mas eu estou querendo saber se há uma maneira fácil de recuperar meus arquivos? Pelo que li até agora em outros posts, a resposta é não. Estou tentando reinstalar o apache e php5, mas é claro, estou recebendo erros.
Eu tenho outra caixa do Ubuntu com uma configuração semelhante ... então eu copiei a pasta /var/lib/dpkg
que me pegou um pouco mais ...
Mas agora, quando faço um apt-get install apache2
, recebo o seguinte erro:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package apache2 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'apache2' has no installation candidate
Sou relativamente novo no Linux e não sou tão esperto, como você pode ver!
Basta saber se você tinha alguma dica sobre uma recuperação rápida?
Obrigado.
EDIT 1
eu corri
sudo apt-get update
e pareceu funcionar corretamente.
Então eu tentei
$ sudo apt-get install apache2
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:
apache2 :
Depends: apache2-bin (= 2.4.7-1ubuntu4.1) but 2.4.10-1ubuntu1 is to be installed
Depends: apache2-data (= 2.4.7-1ubuntu4.1) but 2.4.10-1ubuntu1 is to be installed
E: Unable to correct problems, you have held broken packages.
Então, tentei fazer o seguinte:
test@testpc:/$ sudo apt-get install apache2-bin
Reading package lists... Done
Building dependency tree
Reading state information... Done
apache2-bin is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 32 not upgraded.
test@testpc:/$ sudo apt-get install apache2-data
Reading package lists... Done
Building dependency tree
Reading state information... Done
apache2-data is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 32 not upgraded.
Como você pode ver, não está atualizando ...
Qualquer outra sugestão seria apreciada.
EDIT 2
Eu chequei a caixa onde eu copiei o / var / lib / dpkg e ele está rodando o ubuntu 14.10 enquanto este está rodando o 14.04.
Isso importa?