저는 우분투 바이오닉을 사용했습니다. 나는 무엇보다도 다음과 같은 적절한 소스를 구성했습니다
deb https://mkvtoolnix.download/ubuntu/bionic/ ./
deb-src https://mkvtoolnix.download/ubuntu/bionic/ ./
I 하면 apt-get update
이 저장소에서 실패하고 다음과 같이 말합니다.
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.
여기저기 찾아보다가 발견한 곳은제안을 사용하려고 시도 apt-get update --allow-insecure-repositories
했지만 표시되는 오류 메시지가 변경되었을 뿐 문제가 해결되지 않았습니다.
돕다?
답변1
어느 시점에서 저장소의 구조가 변경된 것 같습니다. 해당 두 줄을 다음으로 바꿉니다.
deb https://mkvtoolnix.download/ubuntu/ bionic main
deb-src https://mkvtoolnix.download/ubuntu/ bionic main
그러면 만족스럽고 apt-get
업데이트할 수 있을 것입니다.