Changes between Initial Version and Version 1 of Xen_Installation/Xen4


Ignore:
Timestamp:
Jun 2, 2010, 11:08:36 AM (14 years ago)
Author:
rock
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Xen_Installation/Xen4

    v1 v1  
     1[[PageOutline]]
     2{{{
     3#!html
     4<h1 style="text-align: center; color: blue">Xen 4.0 Installation (Debian Lenny)</h1>
     5}}}
     6----
     7= 【安裝基本套件】 =
     8{{{
     9$ sudo aptitude install bcc bin86 gawk bridge-utils iproute libcurl3 \
     10libcurl4-openssl-dev bzip2 module-init-tools transfig tgif texinfo \
     11texlive-latex-base texlive-latex-recommended texlive-fonts-extra \
     12texlive-fonts-recommended pciutils-dev mercurial build-essential \
     13make gcc libc6-dev zlib1g-dev python python-dev python-twisted \
     14libncurses5-dev patch libvncserver-dev libsdl-dev libjpeg62-dev \
     15iasl libbz2-dev e2fslibs-dev git-core uuid-dev
     16
     17\\若是 64bit 系統還需安裝
     18$ sudo aptitude install gcc-multilib
     19}}}
     20----
     21= 【安裝 Xen 4.0】 =
     22== 【法一:從 Debian 的套件庫安裝 Xen】 ==
     23因目前 Debian 官方維護的 Xen 套件版本較舊(Xen 3.2),Kernel 版本也較舊(2.6.26),若想使用最新版的 Xen4.0 和較新的 Kernel 必須從 source 安裝
     24{{{
     25$ sudo aptitude install xen-linux-system-2.6.26-2-xen-amd64 xen-hypervisor-3.2-1-amd64 xen-tools
     26}}}
     27== 【法二:從 Source 安裝 Xen】 ==
     28{{{
     29$ cd /usr/src
     30$ sudo wget http://bits.xensource.com/oss-xen/release/4.0.0/xen-4.0.0.tar.gz
     31$ sudo tar zxvf xen-4.0.0.tar.gz
     32$ cd xen-4.0.0/
     33$ make -j 4 world
     34
     35}}}
     36
     37= 【Reference】 =
     38* [http://www.vpsee.com/2010/04/install-xen-on-debian-from-source/ 在 Debian 上源码安装 Xen]
     39* [http://wiki.xensource.com/xenwiki/Xen4.0 Xen4.0]