로메오의 블로그

맥에서 pem 에서 ppk 로 변경하기 본문

Frontend/ETC

맥에서 pem 에서 ppk 로 변경하기

romeoh 2022. 4. 11. 11:17
반응형

brew 로 putty 설치

## homebrew 설치
$ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

## brew 최신 버전 갱신하기
$ brew update-reset
$ brew --version
Homebrew 3.4.5-51-g5641532

## putty 설치
$ brew install putty

## 설치 목록 확인
$ brew list
==> Formulae
autoconf	docker		libtool		pkg-config	sqlite
automake	gdbm		libyaml		putty		xz
cocoapods	libgpg-error	openssl		python		zlib
coreutils	libksba		openssl@1.1	readline

==> Casks
android-platform-tools

## pem 파일 권한 부여
$ chmod 600 file_name.pem

## ppk 파일 생성
$ puttygen file_name.pem -o file_name.ppk

 

 

homebrew-core is a shallow clone. 오류 해결하기

$ git -C /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core fetch --unshallow
$ git -C /usr/local/Homebrew/Library/Taps/homebrew/homebrew-cask fetch --unshallow



 

반응형
Comments