Changes between Version 6 and Version 7 of chris


Ignore:
Timestamp:
Sep 3, 2008, 4:07:20 PM (16 years ago)
Author:
chris
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • chris

    v6 v7  
    1 = 2008 預定工作項目 =
    2 == 1. 架設R-MPI生物資訊計算平台 ==
    3  * 2008-03-19 已完成架設 R-MPI 初步環境,測試成功。
    4 == 2. 測試用R撰寫之標誌基因挑選軟體 ==
    5 == 3. 移殖R標誌基因挑選軟體到R-MPI ==
    6 == 4. 撰寫生物資訊計算平台網頁服務 ==
    7 == 5. 建立 BOINC Server 測試平台 ==
    8 == 6. 撰寫BOINC技術文件 ==
    9 == 7. 架設網站 ==
    10 == 8. TDW UI ==
    11  * 2008-03-10 已完成 TDW UI 基本架構。
    12 == 9. DRBL UI 修正 ==
     1= 重新編譯 Linux Kernel 步驟 =
     21.安裝必備工具
     3 1.1 ubuntu、debian
     4{{{
     5apt-get install gcc build-essential libncurses6
     6}}}
     7 1.2 centos、rhel
     8{{{
     9yum install gcc
     10}}}
     11 1.3 suse
     12     沒用過
     132.下載並解壓縮 kernel source code,extract to standard path : /usr/src/linux-<version>
     143.視情況 patch kernel
     15{{{
     16patch -p1 </where_you_put_your_patchfile
     17}}}
     184.若之前有編譯過,請先清除舊設定(這會刪掉.config,若有需要請先備份好)
     19{{{
     20make mrproper
     21}}}
     225.產生 .config ,可以從 /boot/ 目錄底下複製目前運行的 config file 到 /usr/src/linux/.config
     23{{{
     24cp /boot/config-<linux-version>.config /usr/src/linux/
     25}}}
     266.編譯依存關係
     27{{{
     28make dep
     29}}}
     307.編譯印象檔以及模組 modules
     31{{{
     32make bzImage modules modules_install
     33}}}
     348.
     35 
    1336
    14 ----