검색해 보았지만 내 사건과 관련된 구체적인 내용을 찾을 수 없습니다. Kali 2021.4를 실행 중인데 어떤 작업이든 문제가 있습니다 apt
. 누군가 나에게 달려야 한다고 apt --fix-broken install
해서 달려갔고 다음과 같은 결과를 얻었습니다.
The following additional packages will be installed:
libpython3.9 libpython3.9-dev libpython3.9-minimal libpython3.9-stdlib python3.9 python3.9-dev python3.9-minimal
Suggested packages:
python3.9-venv python3.9-doc
The following packages will be upgraded:
libpython3.9 libpython3.9-dev libpython3.9-minimal libpython3.9-stdlib python3.9 python3.9-dev python3.9-minimal
7 upgraded, 0 newly installed, 0 to remove and 2199 not upgraded.
4 not fully installed or removed.
Need to get 0 B/11.3 MB of archives.
After this operation, 73.7 kB disk space will be freed.
Do you want to continue? [Y/n] y
Reading changelogs... Done
dpkg: unrecoverable fatal error, aborting:
files list file for package 'install-info' contains empty filename
E: Sub-process /usr/bin/dpkg returned an error code (2) "
나는 많은 것을 시도했지만 솔직히 내 시스템에 무엇을 하고 있는지 명확하지 않습니다. 현재 파일이 백업되고 있지만 다시 설치하지 않아도 되도록 도움을 주시면 대단히 감사하겠습니다.
답변1
/var/lib/dpkg/info/install-info.list
안전을 위해서는 청소한 후 다시 설치해야 합니다 install-info
.
sudo sed -i '/^$/d' /var/lib/dpkg/info/install-info.list
sudo apt reinstall install-info
완료되면 다른 apt
작업이 정상적으로 작동합니다.