본문 바로가기
728x90

Research/Linux101

.vimrc set fileencodings=ucs-bom,utf-8,euc-kr set tabstop=4 set nu set title set autoindent set cindent set shiftwidth=4 "set textwidth=80 set ls=2 set ruler set showmatch set bg=dark behave xterm " ============================================================================= " 엔터를 치거나 O, o 로 줄을 삽입 할때 자동으로 indentition 하는 가에 대한 " 옵션이다. " ==================================================================.. 2005. 11. 7.
프로세스 관리 http://www.tiptech.net/lecture/linux/start/process.html프로세스 관리 리눅스는 유닉스와 같이 멀티테스킹 운영체제이이다. 윈도우에서 음악을 들으면서 인터넷을 할 수 있는 것과 같은 것을 멀티테스킹이라고 한다. 즉 동시에 둘 이상의 프로그램을 실행시키는 것을 의미한다. 따라서 리눅스에서는 프로세스관리가 매우 중요하다. 13.1 포그라운드와 백그라운드 리눅스에서 지원하는 프로세스 생성방법에는 두가지가 있다. 쉘에서 단순히 명령을 실행시키는 것은 대부분 포그라운드에서 프로세스를 띄우는 것이다. 포그라운드는 기본 실행 모드로 표준입력(키보드)와 표준출력을 지원한다. 포그라운드로 실행을 하면 쉘은 그 프로세스가 종료되기를 기다렸다가 종료가 되면 다시 쉘 프롬프트를 띄워주게.. 2005. 10. 25.
kernel thread 사용하기 http://linuxkernel.net/faq/index.php?cmd=read§ion=kernelprog-advanced2&num=3 kernel thread 사용하기 Writer: 이호 (flyduck@linuxkernel.net) Date & Time: 2003-03-26 15:23:58 Q : 모듈에서 커널 쓰레드를 만들고, 다른 프로세스를 실행하려면 어떻게 합니까? A : 커널 쓰레드를 만드는 데에는 kernel_thread() 함수를 사용합니다. 이 함수의 prototype은 include/asm/processor.h에 정의되어 있습니다. int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags); 이 함수의 사용법은 첫번째 인.. 2005. 10. 25.
Ipsysctl tutorial 1.0.4 http://ipsysctl-tutorial.frozentux.net/ipsysctl-tutorial.html Ipsysctl tutorial 1.0.4 Oskar Andreasson oan@frozentux.net Copyright © 2002 by Oskar Andreasson Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1; with the Invariant Sections being "Introduction" and all sub-sections, with the Front-Cover Texts bein.. 2005. 10. 24.
728x90