apt: E: 패키지를 찾을 수 없습니다.

apt: E: 패키지를 찾을 수 없습니다.

Kali Linux 2016.2에 문제가 있어 컴퓨터에 패키지를 설치할 수 없습니다. 매번 말한다

E: Unable to locate package libasound2-plugins_1.0.28-1+b1_i386.deb
E: Couldn't find any package by glob 'libasound2-plugins_1.0.28-1+b1_i386.deb'
E: Couldn't find any package by regex 'libasound2-plugins_1.0.28-1+b1_i386.deb'

leafpad /etc/apt/sources.listdocs.kali.org에서 소스를 가져와 저장소 문제를 해결하려고 시도했는데 저장소를 업데이트할 때 말했습니다.

N: Ignoring file 'some-ppa.list.save.1' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension

그런데 거기에 파일이 없어요 /etc/apt/sources.list.d

cat /etc/apt/sources.list:

#The Kali Rolling Repository 

deb repo.kali.org/kali kali-rolling main contrib non-free 
# deb-src repo.kali.org/kali kali-rolling main contrib non-free

답변1

달리고 있는 것 같아

sudo apt-get install libasound2-plugins_1.0.28-1+b1_i386.deb

Kali Linux에서는 작동하지 않습니다. 이미 패키지를 다운로드한 경우 다음을 실행해야 합니다.

sudo dpkg -i libasound2-plugins_1.0.28-1+b1_i386.deb

대신, 아직 실행하지 않았다면 다음을 실행하세요.

sudo apt-get install libasound2-plugins

apt-get전체 패키지 파일 이름이 아닌 패키지 이름에 적용됩니다.

이는 sudo dpkg -i누락된 종속성을 처리하지 않으므로 대신 이를 사용하는 것이 더 좋습니다 apt-get. (또는 설치해서 gdebi사용하는 방법도 있지만 계속 사용할 수도 있습니다 apt-get.)

답변2

sudo apt install 및 sudo apt update를 시도한 다음 컴퓨터를 다시 시작해도 작동하지 않으면 Linux를 다시 설치해 보십시오.

관련 정보