“Falha ao buscar liborbit2_2.14.19-0.2_amd64.deb” ao instalar o Java [duplicado]

-1

Quando tento instalar o openjdk-7-jdk , recebo a seguinte mensagem:

Failed to fetch http://in.archive.ubuntu.com/ubuntu/pool/main/o/orbit2/liborbit2_2.14.19-0.2_amd64.deb  
Size mismatch
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?

Como consertar isso?

    
por user279774 09.05.2014 / 15:44

1 resposta

1

Tente executar os seguintes comandos:

sudo apt-get clean
sudo apt-get update
sudo apt-get install openjdk-7-jdk

De man apt-get :

% bl0ck_qu0te%

Portanto, isso excluirá todos os repositórios locais e recuperará os arquivos de empacotamento usando apt-get clean (forçando apt-get update a baixar tudo novamente), baixando-os novamente usando apt-get update (isso consertará a incompatibilidade de tamanho) e instalando openjdk-7-jdk usando apt-get install openjdk-7-jdk .

    
por Louis Matthijssen 09.05.2014 / 15:55