Usé Ubuntu Bionic. Tengo, entre otras, las siguientes fuentes aptas configuradas
deb https://mkvtoolnix.download/ubuntu/bionic/ ./
deb-src https://mkvtoolnix.download/ubuntu/bionic/ ./
cuando lo hago apt-get update
, falla en este repositorio y me dice:
E: The repository 'https://mkvtoolnix.download/ubuntu/bionic ./ Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
Busqué y encontré unsugerenciausar apt-get update --allow-insecure-repositories
, pero eso solo cambió los mensajes de error que recibo y no resolvió el problema.
¿Ayuda?
Respuesta1
Parece que la estructura del repositorio cambió en algún momento. Reemplace esas dos líneas con lo siguiente:
deb https://mkvtoolnix.download/ubuntu/ bionic main
deb-src https://mkvtoolnix.download/ubuntu/ bionic main
y eso debería satisfacerte apt-get
y permitirte actualizar.