목록2017/11 (22)
준호씨의 블로그
출처: https://dart.fss.or.kr/dsaf001/main.do?rcpNo=20171114002088
터치바 모델 맥북에서는 Keyboard 설정에는 기존 모델이 있었던 "Use all F1, F2, etc. keys as standard function keys" 설정이 없다. 원래 이 설정을 활성화 시키면 펑션키가 일반 펑션키로 동작하게 되는데 말이다. Karabiner-Elements 를 설치 하면 이 옵션을 사용 할 수 있다. Karabiner-Elements 는 https://pqrs.org/osx/karabiner/ 에서 받을 수 있다.
터미널에서 git 자동완성 (tab 으로 자동완성) 하기와 prompt 에 git 정보를 출력하는 방법이다. brew 로 bash-completion 설치 brew install git && brew install bash-completion ~/.bash_profile 에 다음 내용을 추가 한다. if [ -f $(brew --prefix)/etc/bash_completion ]; then . $(brew --prefix)/etc/bash_completion fi GIT_PS1_SHOWDIRTYSTATE=true PS1='\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;33m\]\w\[\033[00m\]\[\033[01;31m\]$(__git_ps1 " {%s}")\[\03..
확인 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
homebrew 를 설치 하면 각종 유용한 패키지를 손쉽게 설치 할 수 있다. homebrew 설치 하기 /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" homebrew 로 wget 설치 하기 $ brew install wget 다른 설치 예apache httpd 설치 하기anaconda 설치 하기php 설치 하기RStudio 설치 하기jenkins 설치 하기dotnet sdk 설치 하기 cleanupcleanup 하기 참고 https://brew.sh/index_ko.html