본문 바로가기
DevOps/Terraform

packer 설치

by Rainbound-IT 2022. 10. 5.
반응형

윈도우 powershell에서 실행하려고 했는데

 

hashcorp사가 대체적으로  linux 기반을 좋아하는것 같아 일찌감치 포기하고

wsl을 이용하기로했다.

(환경설정이 잘안된다.)

 

 

아래 공식홈페이지에 굉장히 친절하게 설명이 되어있다.

https://learn.hashicorp.com/tutorials/packer/get-started-install-cli

 

Install Packer | Packer - HashiCorp Learn

Packer must first be installed on the machine you want to run it on.

learn.hashicorp.com

gpg key 등록

curl -fsSL https://apt.releases.hashicorp.com/gpg | sudo apt-key add -

 

 

 

 

repository 추가

sudo apt-add-repository "deb [arch=amd64] https://apt.releases.hashicorp.com $(lsb_release -cs) main"

 

이상하게 경로가 곂친다고 하면서 패키지를 읽어 오지 못했다.

업데이트와 설치

sudo apt-get update && sudo apt-get install packer

 

 

 

 


apt install packer

 

 

그래서 그냥 apt install packer로 설치 진행하면 될것같다.

 

 

pakcer를 그냥 치면

위와 같이 명령어 설명이 나오면 제대로 설치가 된것이다.

 

 

 

 

 

반응형

댓글