Life 85

SSH 연결

테스트 환경 Ubuntu 서버 macOS 클라이언트 1. 접속하고자 하는 하는 머신에 ssh server 설치 apt-get install openssh-server systemctl start ssh or service ssh start // ssh 서버 실행 systemctl start openssh-server or service openssh-server start // 2번째 줄 안되면 실행 netstat -tnlp // 22번 포트에 실행되고 있는 것 확인 vi /etc/ssh/sshd_config // root 계정으로 ssh 접속할 수 있도록 설정 // 아래 두 항목 수정 //PermitRootLogin no로 설정하는 것이 root 로그인 전부를 막는 것은 아니다.(유저로 접속 후 su ..

Linux 2022.07.28

Indentation(Tabs vs Spaces)

Tabs: 쉽게 사용가능, 대부분의 에디터에서 기본 들여쓰기로 되어있음, 에디터에서 space 몇 칸을 tab으로 설정할지 변경할 수 있음 Spaces: 어느 환경에서든 코드가 동일하게 보임(ex. GitHub PRS) 참고 https://www.quora.com/What-is-the-difference-between-tabs-and-spaces-for-indenting What is the difference between tabs and spaces for indenting? Answer (1 of 2): Tabs - They allow for user preference - Tab is the default indentation in many editors when hitting the tab ke..

개발 지식 2022.05.08