1. SSH 초기설정 vi /etc/ssh/sshd_config PasswordAuthentication yes #PermitRootLogin yes ## 요거는 root 로그인 허가 하는 행인데 권장하지 않음 systemctl restart sshd.service 2. USER 생성 adduser username passwd username userdel -r username # 유저 삭제 / root 권한 필요 3. 일반계정에서 루트권한 획득 sudo su - sudoers 설정파일에 없습니다. 메시지 뜨는경우, /etc/sudoers 에 아래 행 추가. visudo -f /etc/sudoers user ALL=(ALL) ALL 4. 파이썬3 설치 및 PIP3 에러 관련 yum install pyth..