컴퓨터를 업데이트할 때 컴퓨터가 충돌하여 재부팅해야 했습니다.
충돌이 발생했을 때 새 패키지를 업데이트하고 있었습니다.
사용하려고 하면 패키지 때문에 apt-get
항상 실패합니다.mysql
mysql-server-5.5 : Depends: mysql-server-core-5.5 (= 5.5.32-0ubuntu0.12.04.1) but 5.5.34-0ubuntu0.12.04.1 is to be installed
입력하면 sudo apt-get -f install
다음 오류가 반환됩니다.
dpkg: dependency problems prevent configuration of mysql-server-5.5:
mysql-server-5.5 depends on mysql-server-core-5.5 (= 5.5.32-0ubuntu0.12.04.1); however:
Version of mysql-server-core-5.5 on system is 5.5.34-0ubuntu0.12.04.1.
dpkg: error processing mysql-server-5.5 (--configure):
dependency problems - leaving unconfigured
No apport report written because the error message indicates it's a follow-up error from a previous failure.
dpkg: dependency problems prevent configuration of mysql-server:
mysql-server depends on mysql-server-5.5; however:
Package mysql-server-5.5 is not configured yet.
dpkg: error processing mysql-server (--configure):
dependency problems - leaving unconfigured
No apport report written because the error message indicates it's a follow-up error from a previous failure.
Errors were encountered while processing:
mysql-server-5.5
mysql-server
E: Sub-process /usr/bin/dpkg returned an error code (1)
이 문제를 해결하는 방법을 아는 사람이 있나요?
감사해요
답변1
다운로드 캐시에서 직접 패키지를 설치하여 이 문제를 해결했습니다.
dpkg -i /var/cache/apt/archives/mysql-server-5.5_5.5.34-0ubuntu0.12.04.1_i386.deb
답변2
다음을 사용하여 패키지를 완전히 제거해 보십시오.
apt-get remove --purge package
그런 다음 다시 설치하세요
apt-get install
su
을 사용해야 할 수도 있습니다 .