Changes between Version 2 and Version 3 of Xen_Lab1


Ignore:
Timestamp:
Sep 8, 2009, 3:21:26 PM (15 years ago)
Author:
rock
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Xen_Lab1

    v2 v3  
    2828----
    2929= 【Step 2: 安裝 Xen Kernel 和 Xen】 =
    30  * 下載已經 patch 好的 Kernel
     30 * 下載已經 patch 好的 Kernel (因 Xen 需有 Kernel 的 support,所以下載已經 patch 好的 kernel 版本 2.6.22.9)
    3131{{{
    3232$ wget https://trac.nchc.org.tw/grid/export/101/xen/xen_lustre_patch/linux-xen0-2.6.22.9-rock_r01_amd64.deb --no-check-certificate
     
    4343----
    4444= 【Step 3: 安裝 Xen】 =
    45  * 下載 Xen source
     45 * 下載 Xen source (下載目前最新版本的 Xen 3.4.1 版本)
    4646{{{
    4747$ cd /usr/src/
     
    5555$ sudo make install-xen && install-tools
    5656}}}
    57  *
     57 * 編輯 Grub Memu/開機選單 (將剛才新安裝的 Kernel 和 Xen 加上,)
     58{{{
     59$ sudo vim /boot/grub/menu.lst
     60}}}
     61{{{
     62#!sh
     63title           Xen 3.4.1 , kernel 2.6.22.9-rock
     64root            (hd0,0)
     65kernel          /boot/xen-3.4.1.gz
     66module          /boot/vmlinuz-2.6.22.9-rock root=/dev/sda1 ro nosplash     
     67module          /boot/initrd.img-2.6.22.9-rock
     68}}}
    5869