전체 글
-
-
HOWTO: snort컴퓨터/*nix 2006. 3. 24. 22:23
Gentoo 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:23
gentoo 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..
-
공용체로 레지스트 표현;;컴퓨터/C/C++ 2006. 3. 24. 22:18
#include struct hregs{ char al; char ah; }; union regs{ struct hregs h; int ax; }; int main() { union regs reg; reg.h.ah = 0x1A; reg.h.al = 0x2B; printf("ah:%X\n", reg.h.ah); printf("al:%X\n", reg.h.al); printf("ax:%hX\n", reg.ax); return 0; } Microsoft C에 있어서의 레지스터 표현 /* word registers */ struct WORDREGS { unsigned int ax; unsigned int bx; unsigned int cx; unsigned int dx; unsigned int si; unsi..
-
-
X 설치 in x-note 3ta-2컴퓨터/*nix 2006. 3. 24. 22:12
젠투 설치 하고 Gnome을 설치. 링크만 모았군 -_ -;; HOWTO Gnome for End-user http://gentoo-wiki.com/HOWTO_Gnome_Desktop_for_the_End-User HOWTO gnome-volume-manager http://gentoo-wiki.com/HOWTO_gnome-volume-manager HOWTO ATI drivers - need to kernel config http://gentoo-wiki.com/HOWTO_ATI_Drivers HOWTO Xorg http://gentoo-wiki.com/HOWTO_Xorg /opt/ati/bin/fglrxconfig http://kin.naver.com/db/detail.php?d1id=1&dir_id..
-
자주 잊어먹는 것들... 바보.컴퓨터/*nix 2006. 3. 24. 22:11
젠투 기준;; 텔넷 접속시 보여지는 메시지 /etc/issue.net /etc/issue.logo Message Of The Day /etc/moth Mysql 계정 생성 및 삭제 mysql> grant all on DB.* to USER@localhost identified by 'ppp373' with grant option; mysql> revoke all on DB.* from USER@localhost; vimrc keymap map v]}zf map zo nnoremap :Tlist nnoremap :TlistUpdate map [i map :! gcc % -o %