어떤 이유로 .deb 파일에서 libpng12-0을 설치하려고 하면 이상한 오류가 발생합니다.
주문하다:
dpkg -i libpng12-0_1.2.50-2+deb8u3_amd64.deb; apt-get install -f
실수:
Setting up apache2 (2.4.25-3+deb9u2) ...
info: Executing deferred 'a2enconf apache2-doc' for package apache2-doc
ERROR: Conf apache2-doc does not exist!
dpkg: error processing package apache2 (--configure): subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing: apache2
E: Sub-process /usr/bin/dpkg returned an error code (1)
apache2-doc가 설치되었습니다(확인 apt policy apache2-doc
:)
설치하려는 .deb 파일:https://packages.debian.org/jessie/amd64/libpng12-0/download
답변1
패키지를 청소하고 다시 설치하면 설치가 손상될 수 있습니다.
apt-get purge apache2-doc
apt-get install apache2-doc
dpkg -i libpng12-0_1.2.50-2+deb8u3_amd64.deb; apt-get install -f