1.시스템 레벨(Run level)
- 시스템 운영을 위해 시스템의 부팅 단계를 레벨로 표시합니다.
- 구분
0: poweroff
1: Single user mode
2: Multi user mode(CLI) commend line interface, 공유금지
3: Multi user mode(CLI) 공유가능
4: x
5: Xwindow multi user mode
6: Reboot
#init 0
#who -r 상태정보확인
2. man (On-line manual)
...
Data structures - 1. tree :: namecart program(자료구조 - 트리 명함 프로그램)
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <Windows.h>
#include <conio.h>
typedef struct namecard{
struct namecard *left;
char company[30];
char position[20];
char name[20];
char tel[20];
struct namecard *right;
}NC;
int Input(NC *root,...
linux kernel Module programming #2 Device driver (리눅스 커널 모듈 프로그래밍 #2 디바이스 드라이버)
#include<linux/init.h>
#include<linux/kernel.h>
#include<linux/module.h>
#include<linux/fs.h>
#include<asm/uaccess.h>
#include<linux/cdev.h>
#define DEVICE_NAME "Minibuf"
#define BUFFER_LEN 1024
#define DEV_MAJOR 254
#define DEV_MINOR 5
static int s_bDeviceOpen...