반응형 SMALL 전체 글51 MobaXterm 연결 오류 해결 - No supported authentication methods available 1. ssh 설치 apt-get update apt-get install openssh-server apt-get install ssh /* ufw enable ufw allow 22 ufw reload service ssh start */ 2. /etc/ssh/sshd_config 파일 접속 3. PasswordAuthentication no 부분 PasswordAuthentication yes로 수정 roadrunner.tistory.com/486 [Linux] Disconnected: No supported authentication methods available (server sent: publickey) Putty 같은 접속 툴을 이용해서 리눅스 서버에 원격접속하려다 보면 다음과 같은 오류가 .. 2021. 2. 15. sshd: no hostkeys available -- exiting 에러 해결 sudo ssh-keygen -A 명령어를 통해 해결 가능하다 2021. 2. 15. 물방울 2021. 2. 6. 노을 2021. 2. 3. 저녁 안개, 가로등 2021. 1. 26. [백준알고리즘] 문제 1002번 - 터렛 1002번 문제 터렛입니다. #Baekjoon algorithm #1002 - Turret #210113 Joyonclear test_cases_number = int(input()) for i in range(test_cases_number): x1,y1,r1,x2,y2,r2 = map(int,input().split(" ")) dis = ((x1-x2)**2 + (y1-y2)**2)**0.5 if x1==x2 and y1==y2 and r1==r2: print(-1) elif dis>r1+r2: print(0) elif dis==r1+r2: print(1) else: if dis 2021. 1. 13. 이전 1 ··· 4 5 6 7 8 9 다음 반응형 LIST