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
- resource
- Source
- Windows 10
- bash
- plugin
- VirtualBox
- ssh
- 네트워크
- Windows
- Eclipse
- lsof
- Quartz
- IntelliJ
- 줄바꿈 문자
- GIT
- port
- vscode
- JavaScript
- Mac
- web.xml
- find
- grep
- 단축키
- xargs
- profile
- netsh
- maVen
- import
- context
- tomcat
Archives
- Today
- Total
목록OS & Shell/Linux (83)
develog
Linux 64 bit 확인
[dev@dev01 ~] getconf LONG_BIT32 [dev@dev01 ~] getconf LONG_BIT64
OS & Shell/Linux
2014. 7. 17. 10:33
현재 디렉토리 용량 확인
du -sh .
OS & Shell/Linux
2013. 12. 9. 13:17
[Linux] 오래된 파일 검색, 삭제
# 오래된 파일 검색 (14일 이전 파일)find . -mtime +14 -exec ls -lt --time-style=long-iso {} \; # 오래된 파일 삭제 (14일 이전 파일)find . -mtime +14 -exec rm {} \;
OS & Shell/Linux
2013. 12. 9. 13:14
명령어
디렉토리 용량 확인du . -h --max-depth=1 | sort -n -r
OS & Shell/Linux
2013. 9. 3. 23:27
[linux] iptables
▶명령문 구성iptables [command] [INPUT|OUTPUT|FORWARD] [option] -j [ACCEPT|DROP|REJECT] ▶변경내용 저장service iptables save ▶시작, 종료, 재시작service iptables startservice iptables stopservice iptables restart ▶기타DROP - 무응답 (응답을 보내지 않음)REJECT - 거절응답 (거절응답을 보냄) 정책 초기화 iptables -F INPUT 기본정책 설정 iptables -P INPUT ACCEPT 방화벽 설정 확인 iptables -L 정책 추가 # 체인 가장 상단에 등록iptables -I INPUT -p tcp --dport http -j ACCEPT # 체인 가장..
OS & Shell/Linux
2013. 9. 2. 00:44