Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- maVen
- Windows
- xargs
- lsof
- find
- Eclipse
- Source
- Quartz
- VirtualBox
- GIT
- JavaScript
- web.xml
- resource
- tomcat
- import
- bash
- plugin
- netsh
- IntelliJ
- 단축키
- port
- profile
- Windows 10
- context
- ssh
- grep
- 줄바꿈 문자
- Mac
- 네트워크
- vscode
Archives
- Today
- Total
목록OS & Shell/Linux (83)
develog
[Linux] 시스템 정보 확인
Linux 종류cat /etc/*-release | uniq 커널 버전 uname -r cpu 정보CPU 정보 cat /proc/cpuinfo 물리 CPU 개수 grep 'physical id' /proc/cpuinfo | sort -u | wc -l CPU당 물리 코어 개수 grep 'cpu cores' /proc/cpuinfo | tail -1 CPU 코어 전체 개수 grep -c processor /proc/cpuinfo memory 정보cat /proc/meminfo | grep MemTotal
OS & Shell/Linux
2017. 10. 18. 11:52
[Linux] rename, 파일명 일괄 변경
rename '(150) ' '' *.out
OS & Shell/Linux
2017. 7. 25. 10:47
[Windows10] Ubuntu locale euc-kr 설치
locale 설치 $ sudo locale-gen ko_KR.EUC-KR$ sudo udpate-locale LANG=ko_KR.EUC-KR재시작 locale 정보 확인$ locale$ echo $LANG http://egloos.zum.com/ssulsamo/v/4261453http://blog.1day1.org/81
OS & Shell/Linux
2017. 6. 5. 11:22
[Linux] vi color scheme
http://www.vimninjas.com/2012/08/26/10-vim-color-schemes-you-need-to-own/
OS & Shell/Linux
2017. 5. 31. 01:00
[Linux] find 검색 결과만 출력
find 검색 결과만 출력 find / -name 'aa.txt' 2>/dev/null
OS & Shell/Linux
2017. 5. 29. 14:10