컴퓨터
- 
          NetCat컴퓨터/miscellaneous 2006. 4. 5. 23:51#nc [Option] [Target_host] [Ports] Option -e command. connection이 이루어졌을 때 file을 실행시킨다. -l 옵션과 같이 사용되면 한 instance 만을 사용하는 inetd와 비슷하다. -g I Gateway. source-routing hop point[s]를 8씩 증가 -G num. source-routing point를 4, 8, 12 .. 4씩 증가 -i seconds. nc는 일반적으로 8K씩 데이터를 보내고 받는데, 그렇게 Standard input의 한 라인씩 interval time 마다 보내게 된다. -l listen. listening 모드이다. -n not DNS. DNS name을 사용하지 않는다. 호스트 네임과 포트를 숫자로만 .. 
- 
          vim + ctags + taglist컴퓨터/windows 2006. 3. 25. 17:15윈도우에서 코딩할 때 IDE를 쓰지만.. 간단한 코딩을 할 때는 vim 만한게 없는 듯.. 우선 VIM을 받자. http://www.vim.org/ 그리고 ctags를 받자 http://ctags.sourceforge.net/ 또 Taglist도 받자. http://www.vim.org/scripts/script.php?script_id=273 Vim 설치후 ctags 압축 풀고 path 걸어주고 Taglist를 vim의 plugin 폴더에 풀면 끝 그리고 vimrc 를 수정해 주면 끝. 단축키로 간단하게!! vimrc ---------------------------------------------------------------------------------------------------- nno.. 
- 
          [Java]chatting server & client.컴퓨터/JAVA 2006. 3. 24. 23:55원문: http://www.javaworld.com/javaworld/jw-01-1997/jw-01-chat_p.html 한글문서: http://www.javastudy.co.kr/docs/jm/jm8.html ChatServer.java import java.net.*; import java.io.*; import java.util.*; public class ChatServer { public ChatServer (int port) throws IOException { ServerSocket server = new ServerSocket (port); while (true) { Socket client = server.accept (); System.out.println ("Accepted from .. 
- 
          HOWTO: snort컴퓨터/*nix 2006. 3. 24. 22:23Gentoo forum COMPLETE guide to Snort, MySQL, and Acid COMPLETE guide to Snort, MySQL, and BASE Gentoo wiki HOWTO Use Snort, Acid, and MySQL Effectively KLDP wiki Snort-Setup for Statistics HOWTO tip. 나의 경우엔 위의 문서를 따라해도 snort가 실행이 안된다. vi /etc/snort/snort.conf var RULE_PATH /etc/snort/rules 라고 되어있지만 정작 rules는 /etc/snort에 있었다.. rules를 옮겨주던지 PATH를 수정해주던지 하자.. 
- 
          mplayer컴퓨터/*nix 2006. 3. 24. 22:23gentoo mplayer 설치 & 한글 설정우선 USE flag를 설정. 그리고 설치 vi /etc/make.conf USE="mmx mmx2 sse sse2" emerege mplayer 한글 폰트를 다운 받자. http://www.mplayerhq.hu/MPlayer/contrib/fonts/korean/ 압출을 풀 위치는 /usr/share/mplayer/fonts/ 그리고 링크를 다시 걸어준다. /usr/share/mplayer/font -> fonts/dotum20 마지막으로 환경 설정 ~/.mpalyer/config를 수정하거나 /etc/mpalyer.conf를 수정 fonts={/usr/share/mplayer/fonts/dotum20}/font.desc vo=xv # option chan..