데비안 10이 어떻게든 apt-get 업데이트/업그레이드가 완전히 중단되었습니다. 작동하지 않습니다. CA 인증서가 작동하지 않습니다. 너무 오랫동안 고치려고 노력했지만 아무것도 작동하지 않습니다. 그렇기 때문에 여기 누군가가 나를 도울 수 있기를 바랍니다. 저는 Linux Debian을 처음 접했고 제가 무슨 짓을 했는지 모르겠습니다._. 이미 감사드립니다 :D
적절한 업데이트 받기
Err:2 https://packages.sury.org/php buster Release
Certificate verification failed: The certificate is NOT trusted. The certifica te issuer is unknown. Could not handshake: Error in the certificate verificatio n. [IP: 172.67.182.150 443]
Reading package lists... Done
W: https://packages.sury.org/php/dists/buster/InRelease: No system certificates available. Try installing ca-certificates.
W: https://packages.sury.org/php/dists/buster/Release: No system certificates av ailable. Try installing ca-certificates.
E: The repository 'https://packages.sury.org/php buster Release' no longer has a Release file.
N: Updating from such a repository can't be done securely, and is therefore disa bled by default.
N: See apt-secure(8) manpage for repository creation and user configuration deta ```
답변1
문제는 데비안이 아닙니다. 와 관련이 있습니다 https://packages.sury.org/php
. 이것은 타사 저장소입니다.
buster
먼저, 설치(PHP 없이)가 양호하고 인증서를 처리할 수 있는지 확인하세요 .
sudo mv /etc/apt/sources.list.d/php.list{,.bak}
sudo apt update
sudo apt install apt-transport-https ca-certificates curl
다음으로, 소스를 신뢰하는 경우에만 되돌리고 php.list
최신 서명을 받으세요.
sudo mv /etc/apt/source.list.d/php.list{.bak,}
sudo wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg
sudo apt update
편집: 주요 데비안 아카이브 소스를 잃어버린 것 같습니다. 다시 만드세요:
echo "deb http://ftp.debian.org/debian/ buster main" | sudo tee -a /etc/apt/sources.list
그럼 다시 시도해보세요