sudo apt-get update를 사용하여 Ubuntu 16.04에서 제대로 업데이트할 수 없습니다. 또한 pgadmin3 또는 oracle-java-8을 설치할 수 없습니다. 당신이 깨진 꾸러미를 가지고 있다고 하더군요

sudo apt-get update를 사용하여 Ubuntu 16.04에서 제대로 업데이트할 수 없습니다. 또한 pgadmin3 또는 oracle-java-8을 설치할 수 없습니다. 당신이 깨진 꾸러미를 가지고 있다고 하더군요

명령을 사용할 때 다음 메시지(꼬리)가 나타납니다.sudo apt-get update

Fetched 280 kB in 6min 15s (744 B/s)
Reading package lists... Done
W: GPG error: http://ftp.fr.debian.org/debian sid InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 8B48AD6246925553  NO_PUBKEY 7638D0442B90D010
W: The repository 'http://ftp.fr.debian.org/debian sid InRelease' is not signed.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
W: The repository 'http://mirrors.linsrv.net/mariadb/repo/10.0/debian wheezy Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
E: Failed to fetch http://mirrors.linsrv.net/mariadb/repo/10.0/debian/dists/wheezy/main/binary-amd64/Packages  Something wicked happened resolving 'mirrors.linsrv.net:http' (-5 - No address associated with hostname)
E: Some index files failed to download. They have been ignored, or old ones used instead.

또한 다음 저장소에서는 시간이 너무 많이 걸립니다.

http://mirrors.linsrv.net/mariadb/repo/10.0/debian wheezy/main

답변1

최소한 첫 번째 경고의 경우 해결책은 다음 명령을 사용하여 새 GPG 키를 추가/개조하는 것입니다.

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 8B48AD6246925553

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 7638D0442B90D010

그리고 mariadb의 오류에 대해서는 해당 저장소가 오래되었습니다. 이전 저장소를 제거해야 합니다. 새 GPG 키와 새 저장소 주소(https://downloads.mariadb.org/mariadb/repositories/#mirror=tedeco&distro=Ubuntu&distro_release=xenial--ubuntu_xenial&version=10.2):

sudo add-apt-repository --remove ppa:http://mirrors.linsrv.net/mariadb/repo/10.0/debian/dists/wheezy/main/binary-amd64/Packages

sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xF1656F24C74CD1D8

sudo add-apt-repository 'deb [arch=amd64,i386,ppc64el]http://tedeco.fi.upm.es/mirror/mariadb/repo/10.0/ubuntu제니얼 메인'

관련 정보