Synaptic과 같은 회사에서 다음 오류가 발생했습니다. 시스템에 손상된 패키지가 1개 있습니다.
손상된 패키지 복구 옵션을 사용해 보았지만 Synaptic이 충돌했습니다. Firefox 17.0.1이 모든 문제를 일으키는 패키지인 것 같습니다.
그래서 사용하려고했는데 sudo apt-get -f install firefox
이러한 오류가 발생했습니다.
$ sudo apt-get -f install firefox
Reading package lists ... Done
Building dependency ratio
Reading state information ... Done
Suggested packages: latex-xft-fonts
The following packages will be upgraded: firefox
1 upgraded, 0 newly installed, 0 to remove and 16 not upgraded.
1 packages not fully installed or removed.
Must obtain 0 B/22.4 MB of archives.
After this operation, 0 B of additional disk space will be used.
(Reading database ... 161323 files and directories currently installed.)
Preparing to replace firefox 17.0 + build2-0ubuntu0.11.10.1 (using ... / firefox_17.0.1 + build1-0ubuntu0.11.10.1_amd64.deb) ...
Unpacking replacement firefox ...
dpkg: error processing / var/cache/apt/archives/firefox_17.0.1 + build1-0ubuntu0.11.10.1_amd64.deb (- unpack):
trying to overwrite '/ usr / lib / firefox / extensions "that are also present in the package mint-search-addon 2011.08.15
Please restart all running instances of firefox, or you will experience problems.
Processing triggers for man-db ...
Processing triggers for desktop-file-utils ...
Processing triggers for bamfdaemon ...
Rebuilding / usr / share / applications / bamf.index ...
Processing triggers for gnome-menus ...
Errors occurred in the treatment of:
/ Var/cache/apt/archives/firefox_17.0.1 + build1-0ubuntu0.11.10.1_amd64.deb
E: Sub-process / usr / bin / dpkg returned an error code (1)
다음으로 사용해 보았습니다.
sudo apt-get install && sudo-apt get update reinstall firefox
sudo apt-get remove --purge firefox
sudo apt-get update
불행히도 그들은 모두 소용이 없었습니다. 시냅틱 재설치도 시도했지만 실패했습니다. 뭐가 문제 야?
답변1
소프트웨어 인덱스가 손상된 것 같습니다.
시도 sudo apt-get install -f
하고sudo apt-get autoremove
나중에 아파트를 청소하고 업데이트하세요.
답변2
Ubuntu에서 손상된 패키지 문제를 해결하려면 PPA 또는 소프트웨어 소스와 관련된 패키지를 지워야 합니다. 이 문제를 해결하는 방법에는 여러 가지가 있습니다. 이 가이드를 참조하세요:
1. 청소하려면 이 명령을 사용하세요.
% sudo apt-get clean && sudo apt-get update
2. 첫 번째 명령 사용이 실패하면 다음 명령을 사용해 보십시오.
% dpkg --configure -a
삼. 두 번째 명령을 사용하여 손상된 패키지를 제거할 수 없는 경우 다음 명령을 시도해 보십시오.
% apt-get -f install
마지막 명령은 손상된 패키지를 모두 제거하는 데 도움이 됩니다.