bin
-
크롬bin/MS 2009. 9. 9. 11:51
* 확장프로그램 Google Dictionary (by Google): 옵션에서 language korean 수정 IE Tab 유튜브 다운: YouTube Video Download Greasemonkey script http://userscripts.org/scripts/show/62634 js 파일 다른이름으로 저장한 후 크롬 도구 - 설정 - 확장프로그램 페이지에 js 파일을 드래깅 자바스크립트 펌해제1: 오른쪽 마우스 해제 스크립트를 복사한후 북마크 형식으로 추가하신다음 북마크를 클릭하면 해제가 됩니다. 크롬 확장프로그램 펌해제2: 유저스크립트 다운 http://userscripts.org/scripts/show/90149 함수설명 http://windowsforum.kr/index.php?doc..
-
fontbin/MS 2009. 7. 29. 17:02
나눔고딕코딩 2.0 크롬에서는 글꼴 스타일 무시하기가 없어서 http://ko.wikipedia.org 처럼 브라우저 셋팅을 따라가는 사이트는 "나눔고딕코딩" 로 보이지만, 대부분의 사이트는 돋움체로 보인다 OTF까지 지원하는데 공짜네요. 다운받으시려면 요기로. http://www.print.or.kr/%EB%B0%94%EB%A5%B8%EB%B0%94%ED%83%95%EC%B2%B43%EC%A2%85.zip 1.압축해제 2.바른바탕체3종\WinTTF_한글프로그램적용/* 을 windows\fonts 에 복사
-
mountbin/Linux 2008. 8. 7. 09:52
man mount Since Linux 2.4.0 it is possible to remount part of the file hierarchy somewhere else. The call is mount --bind olddir newdir After this call the same contents is accessible in two places. One can also remount a single file (on a single file). This call attaches only (part of) a single filesystem, not possible submounts. The entire file hierarchy including submounts is attached a secon..
-
gpt 와 partedbin/Linux 2008. 7. 10. 12:35
* gpt 로 만든 런은 fdisk 에서 에러메시지 발생(정상임) WARNING: GPT (GUID Partition Table) detected on '/dev/sde'! The util fdisk doesn't support GPT. Use GNU Parted. * gpt 제거: mkfs.ext3 로 제거할수도 있음. 1) dd 로 안됨. dd if=/dev/zero of=/dev/sde bs=10240 count=10240 2) mkfs.ext3 로는 제거됨. 그 후에 fdisk 로 파티셔닝 하면됨. parted 유틸에서는 제거하는 방법을 못찾았음. mkfs.ext3 를 사용하는 꽁수. # mkfs.ext3 /dev/sde mke2fs 1.39 (29-May-2006) /dev/sde is enti..
-
splicebin/Linux 2008. 4. 24. 14:41
http://lwn.net/Articles/178199/ long splice(int fd_in, loff_t *off_in, int fd_out, loff_t *off_out, size_t len, unsigned int flags); fd_in 에서 fd_out 으로 len 바이트를 이동한다. 데이타는 커널영역에서만 이동한다. 최소한으로 카피가 일어난다. 현재는 fd 둘 중에 하나는 반드시 pipe device 여야 한다. 미래에는 없어질 수도 있다. off_in, off_out - 데이타 전송을 시작하기 전에 먼저 flags - 카피방법 SPLICE_F_NONBLOCK: non-blocking 그러나 fd 둘중에 하나라도 non-blocking I/O 설정되지 않으면 splice() 는 블록될수 있..
-
리눅스 설치bin/Linux 2008. 4. 24. 14:39
[ nfs 서비스 설정 ] # cd /home/product/kernel/ISO/CentOS4.6-i386 # mkdir nfs iso iso 파일 모두 마운트해서 복사 # mount -o loop CentOS-4.6-i386-bin1of4.iso ./iso/ # cp -a ./iso/* /centos # umount ./iso 복사한 rpm 디렉토리를 nfs 서비스한다. # vi /etc/exports /home/product/kernel/ISO/CentOS4.6-i386/nfs *(ro) # /etc/init.d/nfs restart # /usr/sbin/exportfs -v [ nfs 설치 설정 ] 1. 배포판 1번 시디를 집어넣는다. 2. boot : 화면에 linux askmethod 3. NF..