태그>kernel(총 197개의 글)
'kernel' 관련 최근글
-
- Kernel Locking Techniques

-
Always as First by shad0w|2009/04/20 14:57
커널 락킹에 대한 좋은 문서입니다. 리눅스 저널에 기고된 기사이며, 2002년에 작성되었는데 내용이 좋아 많은 이들에게 좋은 공부자료로 사용되고 있는 거 같습니다. http://www.linuxjournal.com/article/5833 written by Robert Love (rml@tech9.net) is a Computer S..
- Kernel Locking Techniques
-
- 리눅스 2.6.X커널에서 커널 컴파일 하기 + 시스템..

-
정상인 출입통제구역 by Otacomm|2009/03/20 16:56
OS 과제로 제출한 내용을 적당히 편집한 물건이다. 후에 누군가 참고하려나. 리눅스 배포판 설치 스크린샷을 찍거나 삽질하는데의 편의성을 위해서 가상머신의 일종인 VirtualBox에 리눅스를 설치하기로 했다...
- 리눅스 2.6.X커널에서 커널 컴파일 하기 + 시스템..
-
- LiveKd를 이용하는 방법

-
荷花(hehua) by hehua|2009/03/13 17:48
헤매고 있었는데 이에 대해 잘 설명해 놓은 블로그가 있었다. 어찌나 감사한지 ㅜㅜ Reo's Programming world 블로그 : LiveKd를 이용한 Kernel 훔쳐보기
- LiveKd를 이용하는 방법
-
- 페도라, 우분투, FreeBSD....

-
So far so Good...... by Nitro|2009/03/10 17:06
리눅스 자료실. 페도라코어 6
- 페도라, 우분투, FreeBSD....
-
- [Kernel]Vista 에서 커널 디버깅 설정하기.

-
미친감자의 BLOG by 미친감자|2009/03/04 20:25
다음과 같이 간단하게 Vista Kernel Debugging 을 설정할 수 있다. c:> bcdedit /debug on [COM1 사용시] c:> bcdedit /dbgsettings serial debugport:1 baudrate:115200 [1394 사용시] c:..
- [Kernel]Vista 에서 커널 디버깅 설정하기.
-
- 리눅스 커널 API Reference

-
Always as First by shad0w|2009/02/24 17:19
실제 리눅스 커널 프로그래밍을 하다보면 이 함수가 어떤 역할을 하는지 잘 모르는 경우도 있고, 커널에서 지원하는 API는 어떤 게 있는지 궁금한 경우가 있습니다. 이 경우 아래 문서들을 참고하시면 편하겠습니다. http://www.kernel-api.org/content/view/15/30/
- 리눅스 커널 API Reference
-
- Understanding the Linux Kernel 3rd Ed (12..

-
머루 생각 by 참머루|2009/02/22 21:34
+ The Role of the Virtual Filesystem (VFS) The root directory is contained in the root filesystem. All other filesystems can be "mounted" on subdirectories of the r..
- Understanding the Linux Kernel 3rd Ed (12..
-
- Understanding the Linux Kernel 3rd Ed (11장)

-
머루 생각 by 참머루|2009/02/01 20:29
+ The Role of Signals A signal is a very short message that may be sent to a process or a group of processes. The only information given to the process is usually a number ..
- Understanding the Linux Kernel 3rd Ed (11장)
-
- Understanding the Linux Kernel 3rd Ed (10장)

-
머루 생각 by 참머루|2009/01/31 17:41
+ Error Codes Most wrapper routines return an integer value, whose meaning depends on the corresponding system call. A return value of -1 usually indicates that the kernel was unable to satisfy the process request. In Linux, th..
- Understanding the Linux Kernel 3rd Ed (10장)
-
- 간략한 malloc(), do_mmap(), sys_brk() 이해

-
머루 생각 by 참머루|2009/01/27 10:07
+ malloc : process address space중 heap의 memory를 할당받는다[1]. malloc() 함수는 C Library에서 brk()로 구현된다[2]. + sys_brk : user process가 heap size를 변경하는 brk() system call을 호출하면 kernel은 sys_brk 함수를 호출하고..
- 간략한 malloc(), do_mmap(), sys_brk() 이해
-
- Runtime PM function

-
머루 생각 by 참머루|2009/01/23 21:24
+ 서론 2006년 9월 26일까지만 해도 Kernel에는 PM_SYSFS 라는 Feature가 있었다. PM_SYSFS는 각 device의 power state를 /sys/devices/./power/state 파일을 통해서 개별적으로 Suspend하고 Resume시킬 수 있도록 하는 Kernel의 General mechanism으로 ..
- Runtime PM function
-
- ARM Linux(2.6.26)에서의 정상적인 page fault 처리과정

-
머루 생각 by 참머루|2009/01/10 17:19
_dabt_svcdo_DataAbortdo_page_fault = inf->fntsk = current;mm = tsk->mm;_do_page_faultvma = find_vma(mm, addr);/* * Ok, we have a good vm_area for this * memory access, so we can handle it. */good_area:survive..
- ARM Linux(2.6.26)에서의 정상적인 page fault 처리과정
-
- process의 memory regions 정보 알아내기

-
머루 생각 by 참머루|2009/01/04 23:07
다음 명령어 처럼 # cat /proc/470/maps 00008000-0013d000 r-xp 00000000 1f:05 1889720 /usr/bin/Xm_hans 00145000-00149000 rw-p 00135000 1f:05 1889720 /usr/bin/Xm_hans 00149000-00281000 rwxp 00149000 00:00 0 [heap] 40000000-4001d000 r-xp 00000000 1f:04 1..
- process의 memory regions 정보 알아내기
-
- Understanding the Linux Kernel 3rd Ed (9장)

-
머루 생각 by 참머루|2009/01/03 22:29
+ Process Address Space The kernel represents intervals of linear addresses by means of resources called memory regions which are characterized by an initial linear addr..
- Understanding the Linux Kernel 3rd Ed (9장)
-
- P4 1.5Ghz 시스템 커널 컴파일 (kernel compile)

-
구라핀의 막장을 보여주마~ by peter|2008/11/11 10:15
cd /usr/src/sys/i386/conf cp GENERIC MYKERNEL vi MYKERNEL (kernel 수정) cd ./compile/P4_081027 make depconfig && make config && make all install reboot
- P4 1.5Ghz 시스템 커널 컴파일 (kernel compile)


