Changes between Version 2 and Version 3 of Xen_Lab1
- Timestamp:
- Sep 8, 2009, 3:21:26 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Xen_Lab1
v2 v3 28 28 ---- 29 29 = 【Step 2: 安裝 Xen Kernel 和 Xen】 = 30 * 下載已經 patch 好的 Kernel 30 * 下載已經 patch 好的 Kernel (因 Xen 需有 Kernel 的 support,所以下載已經 patch 好的 kernel 版本 2.6.22.9) 31 31 {{{ 32 32 $ 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 … … 43 43 ---- 44 44 = 【Step 3: 安裝 Xen】 = 45 * 下載 Xen source 45 * 下載 Xen source (下載目前最新版本的 Xen 3.4.1 版本) 46 46 {{{ 47 47 $ cd /usr/src/ … … 55 55 $ sudo make install-xen && install-tools 56 56 }}} 57 * 57 * 編輯 Grub Memu/開機選單 (將剛才新安裝的 Kernel 和 Xen 加上,) 58 {{{ 59 $ sudo vim /boot/grub/menu.lst 60 }}} 61 {{{ 62 #!sh 63 title Xen 3.4.1 , kernel 2.6.22.9-rock 64 root (hd0,0) 65 kernel /boot/xen-3.4.1.gz 66 module /boot/vmlinuz-2.6.22.9-rock root=/dev/sda1 ro nosplash 67 module /boot/initrd.img-2.6.22.9-rock 68 }}} 58 69