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
- grep
- JavaScript
- resource
- ssh
- find
- port
- VirtualBox
- 줄바꿈 문자
- netsh
- bash
- 단축키
- context
- plugin
- lsof
- Quartz
- 네트워크
- Windows
- GIT
- import
- tomcat
- maVen
- Eclipse
- Windows 10
- Mac
- profile
- IntelliJ
- xargs
- web.xml
- vscode
- Source
Archives
- Today
- Total
목록OS & Shell (146)
develog
[linux] nfs 자동 마운트
[root@dev01 ~] vi /etc/fstab 파일 열어서 해당 항목 추가 127.0.0.1:/mnt/data /data nfs rw 0 0
OS & Shell/Linux
2012. 6. 18. 11:45
두 개 명령 동시 실행
date && hwclock
OS & Shell/Linux
2012. 4. 19. 10:59
[bash] find & rm, 용량 0인 파일 찾아서 삭제
find . -size 0 -exec rm -rf {} \;
OS & Shell/Linux
2012. 4. 16. 13:38
해당 경로에서 파일만 리턴
find 경로 -type f
OS & Shell/Linux
2012. 4. 16. 13:38
날짜/시간 리턴
date +"%Y-%m-%d %H:%M:%S"
OS & Shell/Linux
2012. 4. 16. 13:38
시간서버와 시간 동기화
rdate -s time.bora.net && hwclock -w
OS & Shell/Linux
2012. 4. 13. 18:29