WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-users

Re: [Xen-users] Building Vanilla source 2.6.31.4 with XEN hypervisor

To: Ahmad Hassan <ahmad.hassan@xxxxxxxxx>
Subject: Re: [Xen-users] Building Vanilla source 2.6.31.4 with XEN hypervisor
From: Fasiha Ashraf <feehapk@xxxxxxxxxxx>
Date: Thu, 22 Oct 2009 17:27:47 +0530 (IST)
Cc: xen-users@xxxxxxxxxxxxxxxxxxx
Delivery-date: Thu, 22 Oct 2009 04:59:23 -0700
Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.co.in; s=s1024; t=1256212668; bh=Kt+FgQ5trxrwRonwjRyqS4UokE8f6Om8K4yze3uKsn4=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type; b=UUc3Lcqgv+y0O81j60vhmLqSLhoIcsAABBPTcZknd+Hq78EQHU+HNm9rOrx/yN1YgxARlWtpR8V/OnDiQe0ZcfHQ+G3qSBhVBVvXBWCQmDFhDcQCRtccq9quEEFlqAHYXixOAH+a5HVDcJMPpHVQQvzau9slCIX2j8SUOTuJ408=
Domainkey-signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.co.in; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type; b=54CPMJD5Cx8xxBkyeSWvK499WGSDi6enkqT2KYg0iECnlNvVY7ED8uEgHiRgacwjIj633N0uVYy6ELS5pU8NCE/CrC5V9PiQl8bbjdnli5Na6Wu0N3kmX0G/aWmeczUgJjxgMOYenwKSjtdYhkmzNOK5A5TckjrQjnc4m2TY8c0=;
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
In-reply-to: <d47704fc0910220424h6ddb0854q3c2f3e844e894d09@xxxxxxxxxxxxxx>
List-help: <mailto:xen-users-request@lists.xensource.com?subject=help>
List-id: Xen user discussion <xen-users.lists.xensource.com>
List-post: <mailto:xen-users@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-users>, <mailto:xen-users-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-users>, <mailto:xen-users-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-users-bounces@xxxxxxxxxxxxxxxxxxx
This is some sort of patching latest xen3.4.1 with latest pv os kernel is the only way of getting xen with pv kernels. There are many ways of getting xen in debian.
1- by installing through packages
2- compile and build only xen source if you already have a xenokernel running
3- building xen and xenokernel both from source and patch them 2gether in a grub entry which is menu list in ur case.
By the way, is it a srtict requirement to do it in debian and to compile xen from source?
or its just ur choice?

Regards,
Fasiha Ashraf

--- On Thu, 22/10/09, Ahmad Hassan <ahmad.hassan@xxxxxxxxx> wrote:

From: Ahmad Hassan <ahmad.hassan@xxxxxxxxx>
Subject: Re: [Xen-users] Building Vanilla source 2.6.31.4 with XEN hypervisor
To: "Fasiha Ashraf" <feehapk@xxxxxxxxxxx>
Cc: xen-users@xxxxxxxxxxxxxxxxxxx
Date: Thursday, 22 October, 2009, 4:24 PM

Thanks for the prompt reply. I am using Debian(Lenny) on amd64. What I want to do is, I want to take fresh vanilla source and build the kernel according to my hardware specifications with XEN Paravirtualized configurations selected. I can do this stuff pretty easily. But I need help in installing XEN hypervisor on it from source.

I do not really understand how you are patching xen installation with kernel installation in the procedure you mentioned below.

Thanks for the explication and help :)

 --
Best Regards, Hassan
http://cern.ch/ahmadh/portfolio

Erasmus Student
The University of Reading, UK
Aristotle University of Thessaloniki, Greece
The University Of Carlos III, Madrid Spain

On Thu, Oct 22, 2009 at 12:09 PM, Fasiha Ashraf <feehapk@xxxxxxxxxxx> wrote:
Which platform are you using? Fedora or debian? which version? Below are some basic steps of building it with pv os kernel in a fedora11 platform:-
  1. Be certain you have dev tools installed: ‘yum install “Development Tools”‘
  2. You’ll also need: ‘yum install mercurial gitk dev86 vnc-server bridge-utils zlib-devel openssl-devel python-devel libX11-devel ncurses-devel’

Build / Install Xen

  1. cd /usr/src
  2. hg clone http://xenbits.xensource.com/xen-3.4-testing.hg
  3. cd xen-3.4-testing.hg
  4. make xen
  5. make install-xen
  6. make tools
  7. make install-tools

Build PV Ops Kernel

  1. cd /usr/src/kernels
  2. git clone git://git.kernel.org/pub/scm/linux/kernel/git/jeremy/xen.git linux-2.6-xen
  3. cd linux-2.6-xen
  4. git checkout origin/xen-tip/master -b xen-tip/master
  5. make menuconfig (Check the Xen options, I’m too tired to go over them all)
  6. make
  7. make modules_install install

Create a Grub Entry:

title Xen 3.4 / Fedora kernel 2.6.30-rc6-tip
kernel /boot/xen-3.4.gz
module /boot/vmlinuz-2.6.30-rc6-tip root=/dev/mapper/VolGroup01/vg_fedora11 ro
module /boot/initrd-2.6.30-rc6-tip.img

Add Entry to /etc/fstab

none /proc/xen xenfs defaults 0 0

Reboot and there ya go…

I still need to bring up the python tools like virt-install and virsh, maybe after I get a break.


Regards,
Fasiha Ashraf

--- On Thu, 22/10/09, Ahmad Hassan <ahmad.hassan@xxxxxxxxx> wrote:

From: Ahmad Hassan <ahmad.hassan@xxxxxxxxx>
Subject: [Xen-users] Building Vanilla source 2.6.31.4 with XEN hypervisor
To: xen-users@xxxxxxxxxxxxxxxxxxx
Date: Thursday, 22 October, 2009, 3:22 PM


Hi,

I want to build fresh vanilla source 2.6.31.4 with XEN dom0 hypervisor. Can anyone please help me out on this.

Thanks.

--
Best Regards, Hassan
http://cern.ch/ahmadh/portfolio

Erasmus Student
The University of Reading, UK
Aristotle University of Thessaloniki, Greece
The University Of Carlos III, Madrid Spain


-----Inline Attachment Follows-----

_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users


Keep up with people you care about with Yahoo! India Mail. Learn how.



--
Best Regards, Hassan
http://cern.ch/ahmadh/portfolio

Erasmus Student
The University of Reading, UK
Aristotle University of Thessaloniki, Greece
The University Of Carlos III, Madrid Spain


-----Inline Attachment Follows-----

_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users


Keep up with people you care about with Yahoo! India Mail. Learn how.
_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users