Notice
Recent Posts
Recent Comments
Link
목록DevOps/OS (32)
호랑이한테물릴래
rustup 설치 Tip
RUSTUP 설치는 apt-get과 같은 패키지 설침다 아래와 같이 러스트업에서 말하는 방식을 사용해야한다. $ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh 추가로 환경변수 지정이 필요 $ export PATH="$HOME/.cargo/bin:$PATH"
DevOps/OS
2021. 8. 23. 11:35
google authenticator 사용해서 2차 구글 OTP 설정 방법
아주 간단한 방법 설명, ssh 접속 후 아래 과정을 진행하면 됨, 기본적을 ssh가 설치되어있어야함 sudo apt install libpam-google-authenticator google-authenticator sudo nano /etc/ssh/sshd_config ChallengeResponseAuthentication no ChallengeResponseAuthentication yes 'Ctrl + x y Enter' sudo nano /etc/pam.d/sshd 아래 줄 추가 #One-time authentication via Google Authenticator auth required pam_google_authenticator.so sudo systemctl restart ssh
DevOps/OS
2021. 8. 12. 12:12