Shell is a user interface for access to an Operating system's services.
Table of Contents
관련정보 #
- http://explainshell.com : 쉘 명령어를 입력하면 상세한 도움말
- Shell tricks for one-liner bioinformatics
기사 및 포스트 #
- 스타트업 개발자가 리눅스 서버에 들어가면 언제나 하는 작업들
- 부하가 걸리는 명령은 ionice
- 임시저장은 /tmp 활용
- 리눅스로 개발하는 모든 사람들이 꼭 봐야하는 동영상 : 터미널과 친해지기
Useful tools #
- https://github.com/reorx/httpstat : 원격 웹 서버 성능 보기
Useful shell commands #
Refer to this link
- Unix, Linux: http://biohackers.net/wiki/UsefulShellCommands
- NT: http://biohackers.net/wiki/UsefulNtCommands
압축률 조정 #
# tar cvf file_name.tar /home | gzip -9 > file_name.tar.gz
여기서 -9는 느리지만 압출률이 좋고, -1은 빠르지만 압축률이 나쁘다.
Too many open files #
# ulimit -a
# ulimit -Hn 10240
# ulimit -Sn 10240
# ulimit -a
Hard link #
How to find and delete all hard links to a file
sudo로 명령하니 PATH가 안잡힘 #
$ vi .bashrc
alias sudo='sudo env PATH=$PATH'
pip 일괄 업데이트 #
$ vi .zshrc
alias pip-update="pip3 freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U"
시스템 느릴 때 점검 #
$ vmstat -1 # memory, IO, CPU 확인
$ netstat -nap | grep :80 | grep EST | wc -l # 웹 접속 수 확인
MAC iTerm에서 한글 안될 때 #
~/.bash_profile 에 [LC_CTYPE="ko_KR.UTF-8"] 을 추가해주고 bash를 재시작하면 해결된다.
Incoming Links #
Related Articles (Article 0) #
Related Software Applications (SoftwareApplication 1) #
Related Codes (Code 2) #
[Codes] About (Code 3) #
Suggested Pages #
- 0.519 Vim
- 0.116 Gitolite
- 0.069 tumx
- 0.041 대한민국 SNS 이용현황 그림 다시 그리기
- 0.024 Hyuna Kim
- 0.023 Hyungyong Kim/.vimrc
- 0.022 August 21
- 0.019 Unix
- 0.018 C
- 0.017 Ecogwiki
- More suggestions...