Cuando intento instalar un nuevo paquete apt-get install
, no funciona. apt-get update
tampoco funciona
¿Sabes cómo reinstalarlo para que funcione nuevamente?
Salida de sudo dpkg --configure -a :
dpkg: dependency problems prevent configuration of tvbrowser:
tvbrowser depends on sun-java6-jre | sun-java5-jre; however:
Package sun-java6-jre is not installed.
Package sun-java5-jre is not installed.
dpkg: error processing tvbrowser (--configure):
dependency problems - leaving unconfigured
Errors were encountered while processing:
tvbrowser
Salida de sudo apt-get install sun-java6-jre
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package sun-java6-jre 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 sun-java6-jre has no installation candidate
Este pastebin tiene la salida de find /etc/apt/ -name '*.list' -ls -exec cat {} \; > repositories.txt
.
LC_ALL=C
antes de un programa establece la variable de entorno LC_ALL
en C
. Esto hace que un comando use el idioma inglés (suponiendo que no esté usando un sistema inglés).
cat /etc/apt/sources.list
no es suficiente, es posible que haya añadido algunas cosas además de/etc/apt/sources.list.d
LC_ALL=C sudo apt-get install [package-name]
(reemplace[package-name]
con el paquete que está intentando instalar) e informe los mensajes de error.