instalando o git no ubuntu 12.10 [duplicado]

0

Eu não consigo instalar o git no meu sistema Ubuntu 12,10. Eu segui -

sudo add-apt-repository ppa:git-core/ppa
sudo apt-get update
sudo apt-get install git-core

sudo apt-get update me dá o erro -

Err http://security.ubuntu.com quantal-security/main amd64 Packages
  404  Not Found
Err http://security.ubuntu.com quantal-security/restricted amd64 Packages
  404  Not Found
Err http://security.ubuntu.com quantal-security/universe amd64 Packages
  404  Not Found
Err http://security.ubuntu.com quantal-security/multiverse amd64 Packages
  404  Not Found

Err http://archive.ubuntu.com quantal-updates/main amd64 Packages
  404  Not Found
Err http://archive.ubuntu.com quantal-updates/restricted amd64 Packages
  404  Not Found
Err http://archive.ubuntu.com quantal-updates/universe amd64 Packages
  404  Not Found
Err http://archive.ubuntu.com quantal-updates/multiverse amd64 Packages
  404  Not Found

Err http://archive.ubuntu.com quantal/main amd64 Packages
  404  Not Found
Err http://archive.ubuntu.com quantal/restricted amd64 Packages
  404  Not Found
Err http://archive.ubuntu.com quantal/universe amd64 Packages
  404  Not Found
Err http://archive.ubuntu.com quantal/multiverse amd64 Packages
  404  Not Found

Então alguns não conseguiram buscar erros e finalmente -

E: Some index files failed to download. They have been ignored, or old ones used instead.

Quando executo sudo apt-get install git , obtenho -

Building dependency tree       
Reading state information... Done
The following extra packages will be installed:
  git-man liberror-perl
Suggested packages:
  git-daemon-run git-daemon-sysvinit git-doc git-el git-arch git-cvs git-svn
  git-email git-gui gitk gitweb
The following NEW packages will be installed:
  git git-man liberror-perl
0 upgraded, 3 newly installed, 0 to remove and 0 not upgraded.
Need to get 6,800 kB/6,824 kB of archives.
After this operation, 15.3 MB of additional disk space will be used.
Do you want to continue [Y/n]? y
WARNING: The following packages cannot be authenticated!
  liberror-perl git-man git
Install these packages without verification [y/N]? y
Err http://archive.ubuntu.com/ubuntu/ quantal/main git-man all 1:1.7.10.4-1ubuntu1
  404  Not Found
Err http://archive.ubuntu.com/ubuntu/ quantal/main git amd64 1:1.7.10.4-1ubuntu1
  404  Not Found
Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/g/git/git-man_1.7.10.4-1ubuntu1_all.deb  404  Not Found
Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/g/git/git_1.7.10.4-1ubuntu1_amd64.deb  404  Not Found
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?

Acabei de configurar o Ubuntu e este é o primeiro que eu tentei instalar. Por favor ajude.

    
por user2715898 09.12.2014 / 08:21

1 resposta

0

O Ubuntu 12.10 chegou ao fim da vida útil e não é mais suportado.

Você usa espelhos digitalocean,

edite seu /etc/apt/source.list para:

deb http://archive.ubuntu.com/ubuntu precise main 

deb http://archive.ubuntu.com/ubuntu precise-updates main 

deb http://security.ubuntu.com/ubuntu precise-security main universe 

deb http://archive.ubuntu.com/ubuntu precise universe 

deb http://archive.ubuntu.com/ubuntu precise-updates universe   

e depois executar

do-release-upgrade

Esta é apenas uma solução temporária para quem ainda não atualizou, mas ainda recomenda que o sistema seja atualizado para a versão mais recente o mais rápido possível, para aproveitar todas as atualizações de segurança.

    
por vembutech 09.12.2014 / 09:27