Git을 설치할 수 없습니다/Kali Linux 도구를 설치할 수 없습니다

Git을 설치할 수 없습니다/Kali Linux 도구를 설치할 수 없습니다

오늘에서야 설치했어요. 저는 주로 칼리를 사용하는데, 한번 사용해 보고 싶습니다. 어떤 도움이라도 대단히 감사하겠습니다!

root@ubuntu:/home/<MY USERNAME># apt-get install git
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 git : Depends: liberror-perl but it is not installable
E: Unable to correct problems, you have held broken packages.

답변1

먼저 apt 자체를 사용하여 손상된 패키지를 복구해 보십시오.

sudo apt install -f

이렇게 하면 종속성 문제가 해결됩니다.

문제가 지속되면 dpkg를 사용하여 패키지를 재구성해 보세요.

sudo dpkg --configure-a

이 dpkg 구성 명령은 손상되거나 불완전한 설치를 방지하는 데 사용됩니다. 일반적인 패키지 문제를 해결하는 데 도움이 됩니다. 아파트는 가면 좋을 것 같아요

관련 정보