FortiClient 더 이상 쓸 필요가 없을 것 같아서 지우려고 했더니 안 지워진다. 항목이 잠겨있다고.. 당연히 자연스럽게 Iterm 열고 rm 으로 지우려고했는데 rm results in "operation not permitted" 이번엔 다른 에러.. 이렇게 해주면 된다. 잠금상태 풀어주는 명령어 $ cd /Applications $ sudo chflags -hv noschg FortiClient.app $ rm -rf FortiClient.app
Homebrew Homebrew 는 맥스 호웰이 만든 Mac OS 패키지 관리 애플리케이션 https://brew.sh/index_ko Homebrew The Missing Package Manager for macOS (or Linux). brew.sh (1) homebrew install /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" (2) Next steps 문구 확인 ==> Next steps: - Run these two commands in your terminal to add Homebrew to your PATH: echo 'eval "$(/opt/homebrew/b..
ssh-keygen 을 통해 비밀번호를 설정 안했거나, 변경하고 싶을 때 설정 방법 (참고 ssh-keygen 설정방법 2022.09.17 - [Server/Mac] - [Mac] SSH keygen) 1) ssh key 가 저장되어있는 경로 이동 $ cd ~/.ssh 2) 설정 및 변경 (설정 및 변경은 password 를 입력하면 되고, 해제 하려면 enter 입력) $ ssh-keygen -f id_rsa -p Key has comment '_' Enter new passphrase (empty for no passphrase): Enter same passphrase again: Your identification has been saved with the new passphrase.
다른서버에 원격으로 접속 할 때, ssh 를 사용 할 때가 있어서 Mac OS 일때의 ssh key 생성 방법 기록 1) ssh 가 존재하는지 확인 $ cat ~/.ssh/id_rsa.pub $ /.ssh/id_rsa.pub: No such file or directory 2) 생성 (passphrase 는 비밀번호로 설정하는 편이 좋긴하다) $ ssh-keygen Generating public/private rsa key pair. Enter file in which to save the key (/.../.../.ssh/id_rsa): Enter passphrase (empty for no passphrase): Enter same passphrase again: Your identification..