os 222

MAC iterm split window move

iTerm2 DocumentationiTerm2 Alternatives for Windows General Usage brew cask install iterm2 탭 사이 탐색 Cmd+left arrow, Cmd+right arrow navigates among tabs. So does Cmd-{ and Cmd-}. 탭 번호 이동 Cmd+number navigates directly to a tab. 윈도우 번호 이동 Cmd+Option+Number navigates directly to a window. 분할된 창 탐색 Cmd+Option+Arrow keys navigate among split panes. 분살된 창 순서대로 탐색 Cmd+] and Cmd+[ navigates among split p..

os/MAC 2017.04.27

bash find delete sort

리눅스 날짜 기준으로 파일 삭제하기 How to sort the files according to the time stamp in unix? [closed] Find Delete find 폴더 -name '파일명' -mtime +일수 -delete find 폴더 -name '파일명' -mtime +일수 -exec rm -f {} \; find 폴더 -name '파일명' -mtime +일수 | xargs rm -f ll --time-style full-iso | awk '{print $6" "$9}' | grep 2011-08 ll --time-style full-iso | awk '{print $6" "$9}' | grep 2011-08 | awk '{print $2}' | xargs rm -f Sort..

os/Linux 2017.04.11

ssh-keygen 자동 로그인

SSH Key - 비밀번호 없이 로그인 ssh 자동연결 id_rsa는 유출되면 안된다. !!!!!!!!!!!! #rsa 로 키와 공개키를 만든다. ssh-keygen -t rsa Enter file in which to save the key (/home/username/.ssh/id_rsa): # 기본값 사용 Enter passphrase (empty for no passphrase): # 비밀번호 (자동 로그인은 공백을 입력) Enter same passphrase again: # 비밀번호 확인 # 원격서버에 공개키를 업로드한다. scp id_rsa.pub username@domain.com:id_rsa.pub # scp id_rsa.pub username@domain.com # scp id_rsa...

os/Linux 2017.03.23

Windows10 화면 배율 조정

Windows10 화면 배율조정 방법 바탕화면 > R클릭 > 디스플레이 설정 > "텍스트, 앱 및 다른 항목의 크리를 변경합니다. 100%(권장)" 부분을 조정 작업표시줄 > W아이콘 R클릭 > 제어판(P) > 디스플레이(P) > 사용자 지정 배율 수준을 설정할 수 있습니다 > 배율 수정 작업표시줄 > W아이콘 R클릭 > 제어판(P) > 모양 및 개인설정 > 디스플레이(P) > 사용자 지정 배율 수준을 설정할 수 있습니다 > 배율 수정 Win + R > regedit 입력 > "HKEY_CURRENT_USER > Control Panel > Desktop" > LogPixcels(REG_DWORD 없으면 생성) > 10진수 변경 후 원하는 값 변경

os/Window 2017.02.15

ssh 자동연결

리눅스 SSH 패스워드 없이 자동 로그인 SSH 암호 없이 자동 로그인 종합 안내 authorized_keys와 SSH Config를 이용한 비밀번호 없이 SSH 로그인하기 Can you set passwords in .ssh/config to allow automatic login? Simplify Your Life With an SSH Config File ~/.ssh/config で簡単に複数ホストへのSSH接続を管理する ssh-keygen ssh-keygen 은 다른곳(ssh-keygen 자동 로그인)도 많으니 넘어가고, ... expect #!/usr/bin/expect -f spawn ssh useranme@domain.com expect "assword:" send "password\r" int..

os/Linux 2017.02.10
반응형