목록ssh (10)
준호씨의 블로그
MacOS 터미널에서 CentOS로 ssh로 접속하니 뭔가 경고가 뜹니다. $ ssh user@some.server.com -t zsh /etc/profile.d/lang.sh: line 19: warning: setlocale: LC_CTYPE: cannot change locale (UTF-8): No such file or directory 예전에는 안 떴는데 왜 갑자기 나타나는 걸까요. 이 상태에서 vi 등의 편집기로 한글을 입력하면 다음과 같이 깨져버립니다. /etc/profile.d/lang.sh 19번째 줄에 뭐가 있는지 궁금해서 열어 봅니다. 1 # /etc/profile.d/lang.sh - set i18n stuff 2 3 sourced=0 4 5 if [ -n "$LANG" ]; th..
오랜 기간 맥에서 개발환경을 세팅하다 보니 윈도우 OS환경에서 세팅하려니 익숙하지 않네요. 하나씩 정리해 보려 합니다. WSL2를 먼저 세팅하면 우분투 리눅스 커맨드로 좀 더 손쉽게 할 수 있을 거 같긴 한데 일단은 그냥 모드로 설치해봅니다. Visual Studio Code 설치 일단 개발용 에디터가 필요합니다. 회사에서는 Jetbrain Tools (IntelliJ, WebStorm 등)을 사용하지만 개인용 라이선스는 없어서 Visual Studio Code에 적응해 보려고 합니다. Download Visual Studio Code - Mac, Linux, Windows Download Visual Studio Code - Mac, Linux, Windows Visual Studio Code is f..
확인 sudo systemsetup -getremotelogin $ sudo systemsetup -getremotelogin Password: Remote Login: Off 활성화 sudo systemsetup -setremotelogin on 끄기 sudo systemsetup -setremotelogin off 참고 How to Enable SSH on a Mac from the Command Line 2016.08.16
authorized_key 모듈을 이용해서 배포 할 수 있다. 참고 authorized_key - Adds or removes an SSH authorized key
simple rsync rsync src_files junho85@junho85.pe.kr:/somewhere/ use ssh instead of rsh rsync -e ssh src_files junho85@junho85.pe.kr:/somewhere/ change ssh port rsync -e 'ssh -p src_files junho85@junho85.pe.kr:/somewhere/ references https://explainshell.com/explain?cmd=rsync+-p+--chmod%3D%2Brwx+-e+%22ssh+-i+userserver.pem%22+--copy-unsafe-links+-rz+user%40server%3A~%2F+%2Fdb_backups%2Fwww%2F h..