2012년 2월 23일 목요일

프로선수와 직장인의 차이

프로선수와 직장인의 차이

프로 운동선수들은 자기 시간 중 20%를 시합에, 80%를 훈련에 투자한다.
한 조사에 의하면 대부분의 직장인들은
자기 시간의 99%를 일에, 1%를 자기계발에 투자한다.
운동선수로 치자면 거의 연습도 하지 않고,
시합에 임하는 것과 마찬가지다.
- 혼다 나오유키, [레버리지 씽킹]에서

시합에 이기려면 연습을 해야 합니다.
독서와 자기계발을 하지 않고 일만 하는 사람은
연습을 하지 않고 시합에 나가는 운동선수와 같습니다.
경영사상가 톰 피터스는
“비즈니스맨이 훈련에 게으른 것은 망신스러운 일이다.
하지만 더 중요한 것은 조만간 남에게 따라잡히게 된다는 사실이다.”고 경고합니다.

| 제1888호 | 2012.02.22
(출처 : 행복한 경영이야기 http://www.happyceo.co.kr/)

2012년 2월 8일 수요일

2012년 2월 6일 월요일

Linux kernel log buffer

Buffer of printk strings => static char __log_buf[__LOG_BUF_LEN]; of printk.c

[kernel/printk.c]
printk(~) -> vprintk(~) -> emit_log_char(c) -> log_buf -> __log_buf

2012년 2월 3일 금요일

Linux Kernel Mailling List

http://vger.kernel.org/

  • http://marc.info/?l=linux-kernel
        Text search function is good.
        We can download RAW mail text.
  • http://www.ussg.iu.edu/hypermail/linux/kernel/
        Good for listing of mail.
  • Time setting in Linux, Unix


    [Time server list in South Korea]
    1. NTP Primary Time Server
        - time.kriss.re.kr
        - time2.kriss.re.kr
        - ntp.kornet.net
        - ntp.postech.ac.kr
        - time.bora.net

    2. NTP Secondary Time Server
        - ntp.ewha.net
        - ticktock.ewha.net
        - time.bora.net

    [rdate]
    $ sudo rdate - s time-server-name

    [ntpdate]
    $ sudo ntpdate -b time-server-name

    You should not repeat the time request in short time (seconds).
    You can be added to black list and blocked.

    [Time zone setting in Ubuntu]
    $ sudo ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime
    $ date
    Mon Feb 13 16:13:21 KST 2012

    "KST" means Korea time zone.