저장소 자동 설치

저장소 자동 설치

Amazon Lightsail에서 실행 중인 Ubuntu 20.04 LTS 인스턴스가 있는데 설치하는 데 문제가 있습니다.lsphp74-imagick.

$ sudo apt install lsphp74-imagick

응답:

The following packages have unmet dependencies:
lsphp74-imagick : 
Depends: libmagickcore-6.q16-3 (>= 8:6.9.6.8) but it is not installable               
Depends: libmagickwand-6.q16-3 (>= 8:6.9.6.8) but it is not installable
Recommends: ttf-dejavu-core but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

libmagickcore의 경우 다음을 얻습니다.

$ sudo apt install libmagickcore-6.q16-3
..
E: Package 'libmagickcore-6.q16-3' has no installation candidate

여기서 어디로 가야할지 잘 모르겠습니다. 누구든지 이것에 부딪쳤습니까?

도움을 주시면 감사하겠습니다.

답변1

원본 문제는 저장소 문제처럼 들렸습니다. 그리고 그것은 그랬다.

문제를 해결하려면:

저장소 자동 설치

wget -O - http://rpms.litespeedtech.com/debian/enable_lst_debian_repo.sh | bash

수동으로 수정

다음과 같은 오래된 라인을 찾을 수 있습니다.

grep -Ri litespeedtech /etc/apt/*

GPG 키 및 소스 설치

wget -qO - https://rpms.litespeedtech.com/debian/lst_repo.gpg | sudo apt-key add -
sudo echo "deb http://rpms.litespeedtech.com/debian/ focal main" > /etc/apt/sources.list.d/openlitespeed.list

그런 다음 실행 apt-get update하면 사라져야합니다.

관련 정보