패키지 이름이 참조되는 위치를 쉽게 알 수 있습니까?

패키지 이름이 참조되는 위치를 쉽게 알 수 있습니까?

이 오류를 이해하려고 노력 중입니다 Unable to locate package.

내 경우에는 노력 중이야zcash 설치. 종속성을 설치하고 초기 설정을 수행한 후 source.list 파일을 업데이트했습니다.

echo "deb [arch=amd64] https://apt.z.cash/ jessie main" | sudo tee /etc/apt/sources.list.d/zcash.list

그럼 난 달렸어sudo apt-get update

설치된 패키지를 보면 /var/lib/apt/lists다음과 같습니다(이 경우 zcash에서).

/var/lib/apt/lists$ ls
apt.z.cash_dists_jessie_main_binary-amd64_Packages
apt.z.cash_dists_jessie_Release
apt.z.cash_dists_jessie_Release.gpg

그러나 실행하면 sudo apt-get install zcashzcash라는 이름을 인식하지 못하는 것 같습니다.

Reading package lists... Done Building dependency tree        
Reading state information... Done 
E: Unable to locate package zcash

zcash이름 번역 파일(예: 에서 참조된 파일 ) 이 있어야 한다고 생각합니다 /var/lib/apt/lists. 맞나요?

apt 패키지의 이름 참조를 어떤 파일/디렉토리에 저장해야 합니까?이것을 어떻게 확인하고 디버깅합니까?

답변1

이거 보고 테스트해봤는데..

VirtualBox(amd64 netinstall, "Standard System Utilities" 및 "ssh server")에서 Jessie의 기본 설치를 수행할 때 설치하는 데 문제가 없었습니다 zcash. 그러나 제 생각에는 스토리지에 키를 추가하지 않은 것 같습니다. 도서관에서. ..

/etc/apt/sources.list해당 줄을 편집 하고 추가했습니다.

deb https://apt.z.cash/ jessie main

다음에 추가apt-transport-https

apt-get install apt-transport-https

아...잘못된 저장소 GPG 키를 만드세요 apt-get update. 저장소용 키 가져오기/추가 -

wget -qO - https://apt.z.cash/zcash.asc | sudo apt-key add -

apt-get update그때 그랬어apt-get install zcash

root@templatevm:~# apt-get install zcash
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following extra packages will be installed:
  libgomp1
The following NEW packages will be installed:
  libgomp1 zcash
0 upgraded, 2 newly installed, 0 to remove and 55 not upgraded.
Need to get 3,185 kB of archives.
After this operation, 12.6 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://ftp.us.debian.org/debian/ jessie/main libgomp1 amd64 4.9.2-10 [37.8 kB]
Get:2 https://apt.z.cash/ jessie/main zcash amd64 1.0.10+1 [3,147 kB]
Fetched 3,185 kB in 8s (359 kB/s)                                                                                    
Selecting previously unselected package libgomp1:amd64.
(Reading database ... 29996 files and directories currently installed.)
Preparing to unpack .../libgomp1_4.9.2-10_amd64.deb ...
Unpacking libgomp1:amd64 (4.9.2-10) ...
Selecting previously unselected package zcash.
Preparing to unpack .../zcash_1.0.10+1_amd64.deb ...
Unpacking zcash (1.0.10+1) ...
Processing triggers for man-db (2.7.0.2-5) ...
Setting up libgomp1:amd64 (4.9.2-10) ...
Setting up zcash (1.0.10+1) ...
Processing triggers for libc-bin (2.19-18+deb8u7) ...
root@templatevm:~# 

관련 정보