맥 초기화 이후 세팅하기 brew 설치 xcode 설치하지 않고 brew 설치를 위해.. $ xcode-select --install brew 설치 $ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" zsh 설치 sudo apt install zsh -y && chsh -s `which zsh` iterm2 iterm2 폰트는 D2Coding iterm2 설치 $ brew cask install iterm2 iterm2 preference Appearance > Windows > Hide scrollbars : 사용함 Appearance > Windows > Show line under title ba.. 취미&여가/낙서장 5년 전
screen 명령어 (Linux, Mac) ssh 연결 끊어도 계속해서 프로그램을 돌리고 싶음. 또한 나중에 재접속해서 확인할 수 있도록... 그래서 screen 을 깔았다... ㅎ linux server에서 sudo apt-get install screen 세션 생성하기 screen -S [session name] 세션 끊기. (나가기, detach) Ctrl + a, d (컨트롤 누른채로 a와 d를 순서대로 누르면 됨) 세션 리스트 확인 screen -ls 세션 다시 연결하기 screen -r [session name] 세션이 하나만 있는 경우 screen -r 세션 없애기 (세션 자체를 제거) screen -X -S [session name] quit 이미 attatched 된 screen 불러오기 There is no screen to b.. 취미&여가/낙서장 5년 전