arm64 아키텍처에 Podman을 설치할 수 없습니다

arm64 아키텍처에 Podman을 설치할 수 없습니다

나는 Podman의 arm64 버전을 말하는 이 페이지를 찾았습니다. https://launchpad.net/~projectatomic/+archive/ubuntu/ppa/+build/16688612

그래서 나는 우분투의 단계를 따르고있었습니다.https://podman.io/getting-started/installation.html

. /etc/os-release
echo "deb https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xUbuntu_${VERSION_ID}/ /" | sudo tee /etc/apt/sources.list.d/devel:kubic:libcontainers:stable.list
curl -L https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xUbuntu_${VERSION_ID}/Release.key | sudo apt-key add -
sudo apt-get update

로그apt-get update

Hit:1 http://ports.ubuntu.com/ubuntu-ports bionic InRelease
Hit:2 http://ppa.launchpad.net/certbot/certbot/ubuntu bionic InRelease
Get:3 http://ports.ubuntu.com/ubuntu-ports bionic-updates InRelease [88.7 kB]       
Hit:4 http://repo.linaro.org/ubuntu/linaro-overlay stretch InRelease                
Get:5 http://ports.ubuntu.com/ubuntu-ports bionic-backports InRelease [74.6 kB]     
Get:6 http://ports.ubuntu.com/ubuntu-ports bionic-security InRelease [88.7 kB]      
Hit:7 https://download.docker.com/linux/ubuntu bionic InRelease                     
Hit:9 https://repos.influxdata.com/ubuntu bionic InRelease                          
Hit:10 https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xUbuntu_18.04  InRelease
Hit:11 https://deb.nodesource.com/node_10.x bionic InRelease                        
Hit:8 https://packages.cloud.google.com/apt kubernetes-xenial InRelease         
Hit:12 http://apt.radxa.com/bionic bionic InRelease       
Get:13 http://ports.ubuntu.com/ubuntu-ports bionic-updates/main arm64 DEP-11 Metadata [289 kB]
Get:14 http://ports.ubuntu.com/ubuntu-ports bionic-updates/universe arm64 DEP-11 Metadata [280 kB]
Get:15 http://ports.ubuntu.com/ubuntu-ports bionic-backports/universe arm64 DEP-11 Metadata [9284 B]
Get:16 http://ports.ubuntu.com/ubuntu-ports bionic-security/main arm64 DEP-11 Metadata [42.7 kB]
Get:17 http://ports.ubuntu.com/ubuntu-ports bionic-security/universe arm64 DEP-11 Metadata [50.9 kB]
Fetched 925 kB in 5s (173 kB/s)                                                     
Reading package lists... Done
Building dependency tree       
Reading state information... Done
All packages are up to date.

그 후 업그레이드를 시도했습니다.

sudo apt-get -y upgrade 
sudo apt-get -y install podman

그런데 계속 패키지를 찾을 수 없다는 메시지가 나타납니다.

$ sudo apt -y install podman
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package podman

arm64에 podman을 설치하는 데 도움을 주세요.

답변1

추가한 소스의 패키지 파일은 다음과 같습니다. Hit:10https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xUbuntu_18.04

(그렇습니다. 일반적인 URL이므로 브라우저에서 열 수 있습니다.)

Package: podman
Version: 2.0.4~1
Architecture: amd64
Maintainer: Lokesh Mandvekar <[email protected]>
Installed-Size: 73417
Depends: libseccomp2, libdevmapper1.02.1, libgpgme11, catatonit, conmon (>= 2.0.18~1), containers-common (>= 1.0.0~2), containernetworking-plugins (>= 0.8.6~1), runc | cri-o-runc, iptables, podman-plugins
Recommends: crun, slirp4netns, uidmap, varlink
Conflicts: podman-rootless
Filename: ./amd64/podman_2.0.4~1_amd64.deb
Size: 18709272
MD5sum: de24c24e4a2d990f244d41326e4afbce
SHA1: 22a610027770313e290f34a18f43a31b0f377810
SHA256: 7b7a579b4c77a6adde51235a6c77a3431d10323b4dd7378e52edf499bc709b27
Section: devel
Priority: optional
Homepage: https://github.com/containers/libpod.git
Description: Manage pods, containers and container images.

나쁜 소식: "Architecture:" 필드에는 "arm64" 또는 "armhf" 대신 "amd64"만 있습니다. 이 소스는 귀하에게 아무런 도움이 되지 않습니다. 제거하세요.

이제 좋은 소식을 전해드리겠습니다:

$ rmadison podman
 podman | 2.0.4+dfsg2-1ubuntu1 | groovy/universe | amd64, arm64, armhf, ppc64el, riscv64, s390x

arm64 및 armhf용 Podman이 일반 Ubuntu 저장소에 추가되었습니다. 현재 20.10에 대한 사전 출시 테스트 중입니다. 테스트에 도움을 주시기 바랍니다.

관련 정보