Desde ayer he intentado correr
apt-get update
sin éxito en instancias de Ubuntu que estoy creando en el EC2.
En específico he estado recibiendo estos errores:
Ign http://security.ubuntu.com maverick-security/main amd64 Packages
Ign http://security.ubuntu.com maverick-security/universe amd64 Packages
Ign http://security.ubuntu.com maverick-security/multiverse amd64 Packages
Err http://security.ubuntu.com maverick-security/main Sources
404 Not Found [IP: 91.189.92.190 80]
Err http://security.ubuntu.com maverick-security/universe Sources
404 Not Found [IP: 91.189.92.190 80]
Err http://security.ubuntu.com maverick-security/main amd64 Packages
404 Not Found [IP: 91.189.92.190 80]
Err http://security.ubuntu.com maverick-security/universe amd64 Packages
404 Not Found [IP: 91.189.92.190 80]
Err http://security.ubuntu.com maverick-security/multiverse amd64 Packages
404 Not Found [IP: 91.189.92.190 80]
W: Failed to fetch http://security.ubuntu.com/ubuntu/dists/maverick-security/main/source/Sources.gz 404 Not Found [IP: 91.189.92.190 80]
W: Failed to fetch http://security.ubuntu.com/ubuntu/dists/maverick-security/universe/source/Sources.gz 404 Not Found [IP: 91.189.92.190 80]
W: Failed to fetch http://security.ubuntu.com/ubuntu/dists/maverick-security/main/binary-amd64/Packages.gz 404 Not Found [IP: 91.189.92.190 80]
W: Failed to fetch http://security.ubuntu.com/ubuntu/dists/maverick-security/universe/binary-amd64/Packages.gz 404 Not Found [IP: 91.189.92.190 80]
W: Failed to fetch http://security.ubuntu.com/ubuntu/dists/maverick-security/multiverse/binary-amd64/Packages.gz 404 Not Found [IP: 91.189.92.190 80]
E: Some index files failed to download, they have been ignored, or old ones used instead.
root@ip-10-168-230-63:/etc/apt#
También tratando de instalar mysql-server, he estado recibiendo errores:
root@ip-10-168-230-63:/etc/apt# apt-get install mysql-server
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
libhtml-template-perl mysql-server-5.1 mysql-server-core-5.1
Suggested packages:
libipc-sharedcache-perl tinyca mailx
The following NEW packages will be installed:
libhtml-template-perl mysql-server mysql-server-5.1 mysql-server-core-5.1
0 upgraded, 4 newly installed, 0 to remove and 81 not upgraded.
Need to get 12.1MB/12.2MB of archives.
After this operation, 29.5MB of additional disk space will be used.
Do you want to continue [Y/n]? Y
Err http://us-west-1.ec2.archive.ubuntu.com/ubuntu/ maverick-updates/main mysql-server-core-5.1 amd64 5.1.61-0ubuntu0.10.10.1
403 Forbidden
Err http://us-west-1.ec2.archive.ubuntu.com/ubuntu/ maverick-updates/main mysql-server-5.1 amd64 5.1.61-0ubuntu0.10.10.1
403 Forbidden
Err http://us-west-1.ec2.archive.ubuntu.com/ubuntu/ maverick-updates/main mysql-server all 5.1.61-0ubuntu0.10.10.1
403 Forbidden
Failed to fetch http://us-west-1.ec2.archive.ubuntu.com/ubuntu/pool/main/m/mysql-5.1/mysql-server-core-5.1_5.1.61-0ubuntu0.10.10.1_amd64.deb 403 Forbidden
Failed to fetch http://us-west-1.ec2.archive.ubuntu.com/ubuntu/pool/main/m/mysql-5.1/mysql-server-5.1_5.1.61-0ubuntu0.10.10.1_amd64.deb 403 Forbidden
Failed to fetch http://us-west-1.ec2.archive.ubuntu.com/ubuntu/pool/main/m/mysql-5.1/mysql-server_5.1.61-0ubuntu0.10.10.1_all.deb 403 Forbidden
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
root@ip-10-168-230-63:/etc/apt#
Corrí
apt-get update --fix-missing
Sin suerte.
¿Algunas ideas?
He realizado estas tareas muchas veces en instancias de Ubuntu Linux que se ejecutan en AWS EC2 sin ningún problema. ¡Gracias de antemano por tu ayuda!
apt
aptitude
amazon-ec2
carlos
fuente
fuente
Respuestas:
Este era un error conocido con Amazon S3. Para arreglar esto, solo ejecuta
sudo apt-get update
fuente
apt-get update
para ejecutar, ¿ su solución recomendada es ejecutarapt-get update
?La solución fue agregar estas líneas a sources.list:
Gracias por las respuestas
fuente
Ubuntu 10.10 Maverick Meerkat ha llegado al final de su vida útil (EOL) a partir del 10 de abril de 2012, lo que significa que no hay más actualizaciones (ni siquiera soluciones de seguridad) y los archivos del paquete se trasladan
archive.ubuntu.com
aold-releases.ubuntu.com
, que es la razón del error que está viendo. .Edite
/etc/apt/sources.list
y repare las fuentes de su paquete . Tenga en cuenta que también debe eliminar elus-west-1.ec2
prefijo: no hay servidores de paquetes EC2 dedicados para las versiones de EOL.fuente
Con este consejo, y otras notas que mencionaron que "archivo" cambió a "versiones anteriores", el siguiente fragmento me ayudó a avanzar.
luego pude instalar el paquete que necesitaba (en mi caso php5-sqlite)
fuente
intenta agregar una fuente adicional
o instalar LAMP a través de taskel
fuente
Grupos de seguridad -> Saliente
Permita Outbound, si desea conectarse a servidores externos como google.com o incluso desea actualizar- sudo apt-get update
Puede permitir la salida utilizando AWS front-end goto Security Groups -> Outbound
Asegúrese de seleccionar el grupo correcto para su instancia de AWS
fuente