Thomas Goirand | 1 Apr 2009 03:06
Picon

Re: Access control for the xm command

Keith Coleman wrote:
> Xen Shell - http://www.xen-tools.org/software/xen-shell/
> 
> 
> Keith Coleman

If you do use that, make sure that you disable port forwarding in your
ssh, otherwise it's very unsecure. I haven't seen anything in the
documentation of that software that talks about it (let me know if I'm
wrong), and to me, that is a big flow and security threat.

Thomas
Andrew Kilham | 1 Apr 2009 05:53
Picon

Re: AW: DomU freezes during boot

Hi Boris,

I apologise for ignoring your previous comments!

I attempted your instructions and ran virt-install like this:

virt-install -n test5  -r 1024 -p -f /vm/images/CentOS5-2.img -l nfs:localhost:/test1 --nographics


I received no errors or anything until the CentOS installer was running (right after I configured my IP address etc), I got this error:

+-----------+ Error +------------+
                       |                                |
                       | That directory could not be    |
                       | mounted from the server.       |
                       |                                |
                       |            +----+              |
                       |            | OK |              |
                       |            +----+              |
                       |                                |
                       |                                |
                       +--------------------------------+

I hit OK and it just confirms my details (I tried /mnt/tmp, same problem, and I also tried localhost, same problem):
 +----------------------+ NFS Setup +----------------------+
          |                                                         |
          | Please enter the following information:                 |
          |                                                         |
          |     o the name or IP number of your NFS server          |
          |     o the directory on that server containing           |
          |       CentOS for your architecture                      |
          |                                                         |
          |       NFS server name:  10.0.0.81_______________        |
          |       CentOS directory: /test1__________________        |
          |                                                         |
          |          +----+                     +------+            |
          |          | OK |                     | Back |            |
          |          +----+                     +------+            |
          |                                                         |
          |                                                         |
          +---------------------------------------------------------+

Cheers,

Andrew


Boris Derzhavets wrote:
Andrew,

  As i have noticed two times your mistake when creating PV DomU via virt-install is well known:-

************************************************************************************
--location <-l>  should point to NFS shared directory with loop mounted ISO image of
CentOS 5. 2 , NOT to path to ISO image itself.
************************************************************************************

That is what Red Hat Inc. and Sun Inc. taught customers to do for several years already.

I've also twice wrote to you how to do that. You can also view it third time:-

Insert your CentOS 5 DVD in the drive. Run "df -h" to find out what mount point is.  Suppose, it is /dev/hde

# dd if=/dev/hde of=/etc/xen/disks/CentOS5.iso
# dd if=/dev/zero of=/etc/xen/images/CentOS5.img  bs=1024k count=12000
# mkdir  -p /mnt/tmp
# mount -o loop,ro   /etc/xen/disks/CentOS5.iso    /mnt/tmp

Edit /etc/exports and add the line:-
/mnt/tmp
Restart Service "nfsd"

In other words make /mnt/tmp NFS shared directory at your local machine.
Run :-
# ifconfig
to find out your IP address (IP-Dom0) and run

# virt-install -n CentOS5PV -r 1024  -p  -f /etc/xen/images/CentOS5.img \
      -l   nfs:IP-Dom0:/mnt/tmp

However with Xen Hypervisor 3.3 you might have reissue
# vncviewer localhost:0
several times during installation procedure, to get reconnected
Be sure it's there on display 0 ( port 5900 ) .

Virt-install option <--nographics>  will allow you to get text mode install.

When graphical install gets done:-
# xm start CentOS5PV
# vncviewer localhost:0

When text mode install gets done :-
# xm start -c CentOS5PV

Personally, i have never suggested  you to run rinse & xen-tools on system
with virt-install ready to go.
The other person did. Keep track of your threads

Regards.
B.

--- On Tue, 3/31/09, Andrew Kilham <andrew <at> estyles.com.au> wrote:
From: Andrew Kilham <andrew <at> estyles.com.au>
Subject: Re: AW: [Xen-users] DomU freezes during boot
To: bderzhavets <at> yahoo.com
Cc: "Fajar A. Nugraha" <fajar <at> fajar.net>, xen-users <at> lists.xensource.com
Date: Tuesday, March 31, 2009, 7:34 AM

Hmm, someone told me the other day that I should be using xen-tools and rinse, and NOT virt-install (see http://lists.xensource.com/archives/html/xen-users/2009-03/msg00742.html).

So which one should I use and why? And if I should be using virt-install, can someone please take a look at my initial problem that I still haven't fixed in the above thread? :p

Cheers,

Andrew


Boris Derzhavets wrote:
Sure,  getting this rinse bug fixed you'll get login to DomU.
I just cannot understand why old fashioned style of PV DomUs
setup ( with all kind of debootstrap's fun) seems so attractive on the system having virt-install ready to go.
Please, advise. Where i am wrong ?

Boris.

--- On Tue, 3/31/09, Fajar A. Nugraha <fajar <at> fajar.net> wrote:
From: Fajar A. Nugraha <fajar <at> fajar.net>
Subject: Re: AW: [Xen-users] DomU freezes during boot
To: "Andrew Kilham" <andrew <at> estyles.com.au>
Cc: "Carsten Schiers" <carsten <at> schiers.de>, xen-users <at> lists.xensource.com
Date: Tuesday, March 31, 2009, 3:00 AM

On Mon, Mar 30, 2009 at 8:00 PM, Andrew Kilham <andrew <at> estyles.com.au> wrote: > Here is my complete /etc/inittab file on domU: > # Run gettys in standard runlevels > 1:2345:respawn:/sbin/mingetty tty1 > Nothing like the line you said. Should I add it in exactly as you typed it? Yup. Put it before the line "1:2345:respawn:" ... I think what happens is your domU boots succesfully, but it does not display any login prompt on console (which is xvc0). Oh and you should also add "xvc0" to /etc/securetty. Regards, Fajar. _______________________________________________ Xen-users mailing list Xen-users <at> lists.xensource.com http://lists.xensource.com/xen-users

_______________________________________________ Xen-users mailing list Xen-users <at> lists.xensource.com http://lists.xensource.com/xen-users No virus found in this incoming message. Checked by AVG - www.avg.com Version: 8.0.238 / Virus Database: 270.11.33/2031 - Release Date: 03/30/09 17:56:00

_______________________________________________ Xen-users mailing list Xen-users <at> lists.xensource.com http://lists.xensource.com/xen-users No virus found in this incoming message. Checked by AVG - www.avg.com Version: 8.0.238 / Virus Database: 270.11.35/2033 - Release Date: 03/31/09 13:05:00
_______________________________________________
Xen-users mailing list
Xen-users <at> lists.xensource.com
http://lists.xensource.com/xen-users
Boris Derzhavets | 1 Apr 2009 07:36
Picon
Favicon
Gravatar

Re: AW: DomU freezes during boot

Andrew ,

 Please , configure IP of your Dom0 and post "ifconfig" report.

1. Goto Services  start "nfsd" and make sure your "libvirtd" daemon"
    is up and runnning.
2. Add entry to /etc/exports:-
/mnt/tmp
Goto Services and restart "nfsd".
3. Try mount and umount IP:/mnt/tmp from remote host to
    make sure you've done a remote share.
4. # mount -o loop,ro /etc/xen/isos/centos.iso  /mnt/tmp
and run
# df -h
make sure it's mounted
5. During virt-install run you must submit exactly IP address of your box
   and  "/mnt/tmp" ( i mean directory, which you did NFS share, and nothing
   else).  At this time issue "ifconfig" in other terminal session to doublecheck
   your IP is in place). Please, post this snaphot as well.

You might experience network problem ussually connected with presence of WI-FI
adapter catching up IP on the fly and making up mess ( my experience)

*****************************
SECOND WAY TO INSTALL.
*****************************

If you see that your IP is good all the time and NFS fails to work.

1. Goto Services and start "httpd" daemon
2. mkdir -p /var/www/html/centos
3. mount -o loop centos.iso   /var/www/html/centos
Launch browser to http://IP/centos and make sure you see a DVD ISO as web page
4. Then try :-
--location http://IP/centos
and select HTTP setup for virt-install
5. Submit your IP and URL -   /centos
At the same time verify ifconfig in other terminal session , verify that browser may launched to http://IP/centos.

You may take a look at :-

  http://lxer.com/module/newswire/view/110642/index.html

Actually, there is no any difference between Xen 3.2 Ubuntu Dom0 and
Xen 3.3 CentOS 5.2 Dom0 in regards of procedure desribed above.

***********************
Worst case scenario:-
***********************

During Gitco's upgrade something went wrong and "libvirt" gets broken
I had some trouble doing Gitco's Hypervisor Upgrades. It works , but
might require some background to complete things properly

You may try reinstall CentOS 5.2 with native Xen 3.1.X. Make sure
"libvirt ","dnsmask" services have been picked up during install.
Then you can run in Xen environment :-
# yum update
# yum upgrade
to install the most recent RH patches (500 MB download).

Then try native virt-install or virt-manager. They should work both.

Boris.

-- On Tue, 3/31/09, Andrew Kilham <andrew <at> estyles.com.au> wrote:
From: Andrew Kilham <andrew <at> estyles.com.au>
Subject: Re: AW: [Xen-users] DomU freezes during boot
To: bderzhavets <at> yahoo.com
Cc: "Fajar A. Nugraha" <fajar <at> fajar.net>, xen-users <at> lists.xensource.com
Date: Tuesday, March 31, 2009, 11:53 PM

Hi Boris,

I apologise for ignoring your previous comments!

I attempted your instructions and ran virt-install like this:

virt-install -n test5  -r 1024 -p -f /vm/images/CentOS5-2.img -l nfs:localhost:/test1 --nographics


I received no errors or anything until the CentOS installer was running (right after I configured my IP address etc), I got this error:

+-----------+ Error +------------+
                       |                                |
                       | That directory could not be    |
                       | mounted from the server.       |
                       |                                |
                       |            +----+              |
                       |            | OK |              |
                       |            +----+              |
                       |                                |
                       |                                |
                       +--------------------------------+

I hit OK and it just confirms my details (I tried /mnt/tmp, same problem, and I also tried localhost, same problem):
 +----------------------+ NFS Setup +----------------------+
          |                                                         |
          | Please enter the following information:                 |
          |                                                         |
          |     o the name or IP number of your NFS server          |
          |     o the directory on that server containing           |
          |       CentOS for your architecture                      |
          |                                                         |
          |       NFS server name:  10.0.0.81_______________        |
          |       CentOS directory: /test1__________________        |
          |                                                         |
          |          +----+                     +------+            |
          |          | OK |                     | Back |            |
          |          +----+                     +------+            |
          |                                                         |
          |                                                         |
          +---------------------------------------------------------+

Cheers,

Andrew


Boris Derzhavets wrote:
Andrew,

  As i have noticed two times your mistake when creating PV DomU via virt-install is well known:-

************************************************************************************
--location <-l>  should point to NFS shared directory with loop mounted ISO image of
CentOS 5. 2 , NOT to path to ISO image itself.
************************************************************************************

That is what Red Hat Inc. and Sun Inc. taught customers to do for several years already.

I've also twice wrote to you how to do that. You can also view it third time:-

Insert your CentOS 5 DVD in the drive. Run "df -h" to find out what mount point is.  Suppose, it is /dev/hde

# dd if=/dev/hde of=/etc/xen/disks/CentOS5.iso
# dd if=/dev/zero of=/etc/xen/images/CentOS5.img  bs=1024k count=12000
# mkdir  -p /mnt/tmp
# mount -o loop,ro   /etc/xen/disks/CentOS5.iso    /mnt/tmp

Edit /etc/exports and add the line:-
/mnt/tmp
Restart Service "nfsd"

In other words make /mnt/tmp NFS shared directory at your local machine.
Run :-
# ifconfig
to find out your IP address (IP-Dom0) and run

# virt-install -n CentOS5PV -r 1024  -p  -f /etc/xen/images/CentOS5.img \
      -l   nfs:IP-Dom0:/mnt/tmp

However with Xen Hypervisor 3.3 you might have reissue
# vncviewer localhost:0
several times during installation procedure, to get reconnected
Be sure it's there on display 0 ( port 5900 ) .

Virt-install option <--nographics>  will allow you to get text mode install.

When graphical install gets done:-
# xm start CentOS5PV
# vncviewer localhost:0

When text mode install gets done :-
# xm start -c CentOS5PV

Personally, i have never suggested  you to run rinse & xen-tools on system
with virt-install ready to go.
The other person did. Keep track of your threads

Regards.
B.

--- On Tue, 3/31/09, Andrew Kilham <andrew <at> estyles.com.au> wrote:
From: Andrew Kilham <andrew <at> estyles.com.au>
Subject: Re: AW: [Xen-users] DomU freezes during boot
To: bderzhavets <at> yahoo.com
Cc: "Fajar A. Nugraha" <fajar <at> fajar.net>, xen-users <at> lists.xensource.com
Date: Tuesday, March 31, 2009, 7:34 AM

Hmm, someone told me the other day that I should be using xen-tools and rinse, and NOT virt-install (see http://lists.xensource.com/archives/html/xen-users/2009-03/msg00742.html).

So which one should I use and why? And if I should be using virt-install, can someone please take a look at my initial problem that I still haven't fixed in the above thread? :p

Cheers,

Andrew


Boris Derzhavets wrote:
Sure,  getting this rinse bug fixed you'll get login to DomU.
I just cannot understand why old fashioned style of PV DomUs
setup ( with all kind of debootstrap's fun) seems so attractive on the system having virt-install ready to go.
Please, advise. Where i am wrong ?

Boris.

--- On Tue, 3/31/09, Fajar A. Nugraha <fajar <at> fajar.net> wrote:
From: Fajar A. Nugraha <fajar <at> fajar.net>
Subject: Re: AW: [Xen-users] DomU freezes during boot
To: "Andrew Kilham" <andrew <at> estyles.com.au>
Cc: "Carsten Schiers" <carsten <at> schiers.de>, xen-users <at> lists.xensource.com
Date: Tuesday, March 31, 2009, 3:00 AM

On Mon, Mar 30, 2009 at 8:00 PM, Andrew Kilham
<andrew <at> estyles.com.au>
wrote:
> Here is my complete /etc/inittab file on domU:

> # Run gettys in standard runlevels
> 1:2345:respawn:/sbin/mingetty tty1

> Nothing like the line you said. Should I add it in exactly as you typed
it?

Yup. Put it before the line "1:2345:respawn:" ...
I think what happens is your domU boots succesfully, but it does not
display any login prompt on console (which is xvc0).

Oh and you should also add "xvc0" to /etc/securetty.

Regards,

Fajar.

_______________________________________________
Xen-users mailing list
Xen-users <at> lists.xensource.com
http://lists.xensource.com/xen-users


_______________________________________________
Xen-users mailing list
Xen-users <at> lists.xensource.com
http://lists.xensource.com/xen-users

No virus found in this incoming message.
Checked by AVG - www.avg.com
Version: 8.0.238 / Virus Database: 270.11.33/2031 - Release Date: 03/30/09 17:56:00



_______________________________________________
Xen-users mailing list
Xen-users <at> lists.xensource.com
http://lists.xensource.com/xen-users

No virus found in this incoming message.
Checked by AVG - www.avg.com
Version: 8.0.238 / Virus Database: 270.11.35/2033 - Release Date: 03/31/09 13:05:00

_______________________________________________
Xen-users mailing list
Xen-users <at> lists.xensource.com
http://lists.xensource.com/xen-users

_______________________________________________
Xen-users mailing list
Xen-users <at> lists.xensource.com
http://lists.xensource.com/xen-users
Angel L. Mateo | 1 Apr 2009 08:18
Picon
Favicon

Re: Dinamically increase memory of linux domU

El mar, 31-03-2009 a las 21:05 +0700, Fajar A. Nugraha escribió:
> On Tue, Mar 31, 2009 at 5:49 PM, Angel L. Mateo <amateo <at> um.es> wrote:
> > xm mem-set galemys4 768   # galemys4 is my domU's name
> >
> >        With a xm list I can see that memory is assigned to it:
> 
> >        but the domU doesn't know that it has now 256MB more.
> 
> What OS you run on domU? Is it PV or HVM?
> 
	I am running debian lenny with kernel 2.6.26-1-xen-amd64 (debian
packages). dom0 is debian lenny with the same kernel too. domU is PV.

--

-- 
Angel L. Mateo Martínez
Sección de Telemática
Área de Tecnologías de la Información       _o)
y las Comunicaciones Aplicadas (ATICA)      / \\
http://www.um.es/atica                    _(___V
Tfo: 968367590
Fax: 968398337
Fajar A. Nugraha | 1 Apr 2009 09:01

Re: Dinamically increase memory of linux domU

On Wed, Apr 1, 2009 at 1:18 PM, Angel L. Mateo <amateo <at> um.es> wrote:
> El mar, 31-03-2009 a las 21:05 +0700, Fajar A. Nugraha escribió:
>> On Tue, Mar 31, 2009 at 5:49 PM, Angel L. Mateo <amateo <at> um.es> wrote:
>> > xm mem-set galemys4 768   # galemys4 is my domU's name
>> >
>> >        With a xm list I can see that memory is assigned to it:
>>
>> >        but the domU doesn't know that it has now 256MB more.
>>
>> What OS you run on domU? Is it PV or HVM?
>>
>        I am running debian lenny with kernel 2.6.26-1-xen-amd64 (debian
> packages). dom0 is debian lenny with the same kernel too. domU is PV.

I'm not familiar with Lenny domU, sorry. My guess is there's a bug in
their kernel that prevents it from ballooning properly. Try adding
"mem=1G" to "extra=" (if booting from dom0 kernel) or domU's grub.conf
(if using pygrub).

Regards,

Fajar
Robert Dunkley | 1 Apr 2009 09:33
Picon
Favicon

Linux PV Drivers - VBD device not loading - Cannot get Major 3/22 for ide

I am trying to get PV drivers running on both Centos 5.1 and Centos 5.3
HVMs, my DomU is Centos 5.2 with Xen 3.31. For 5.1 I install the
kmod-xenpv RPM but for 5.3 the drivers seem to be built-in. 

For the network drivers to work I had to unload the Realtek NIC driver
and renamed its .ko files to stop it loading. Adding the Xen-Vnif alias
to modprobe.conf then got the PV NICs working nicely (Much faster).

The problem is I can't seem to get the PV disk drivers running, I'm
using a standard partition for the VM (phy:), part of the problem may be
that the QEMU emulated disks are loading first but I'm unsure. Below is
what I think are the relevant extracts from the Centos 5.3 HVM log,
anyone have any idea on how to fix this?

ide: Assuming 33MHz system bus speed for PIO modes; override with
idebus=xx
PIIX3: IDE controller at PCI slot 0000:00:01.1
PIIX3: chipset revision 0
PIIX3: not 100% native mode: will probe irqs later
PCI: Setting latency timer of device 0000:00:01.1 to 64
    ide0: BM-DMA at 0xc200-0xc207, BIOS settings: hda:pio, hdb:pio
    ide1: BM-DMA at 0xc208-0xc20f, BIOS settings: hdc:pio, hdd:pio
Probing IDE interface ide0...
hda: QEMU HARDDISK, ATA DISK drive
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
Probing IDE interface ide1...
hdc: QEMU DVD-ROM, ATAPI CD/DVD-ROM drive
ide1 at 0x170-0x177,0x376 on irq 15
hda: max request size: 512KiB
hda: 104854328 sectors (53685 MB) w/256KiB Cache, CHS=16383/255/63,
(U)DMA
hda: cache flushes supported
 hda: hda1 hda2
....<SNIP>......
Xen version 3.3.
Hypercall area is 1 pages.
Grant table initialized
parport: PnPBIOS parport detected.
parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE]
piix4_smbus 0000:00:01.3: Found 0000:00:01.3 device
piix4_smbus 0000:00:01.3: SMB base address uninitialized - upgrade BIOS
or use f
orce_addr=0xaddr
hdc: ATAPI 4X CD-ROM drive, 512kB Cache, (U)DMA
Uniform CD-ROM driver Revision: 3.20
Registering block device major 3
register_blkdev: cannot get major 3 for ide
xen_blk: can't get major 3 with name ide
vbd vbd-768: 19 xlvbd_add at /local/domain/0/backend/vbd/109/768
Registering block device major 3
register_blkdev: cannot get major 3 for ide
xen_blk: can't get major 3 with name ide
vbd vbd-768: 19 xlvbd_add at /local/domain/0/backend/vbd/109/768
Registering block device major 22
register_blkdev: cannot get major 22 for ide
xen_blk: can't get major 22 with name ide
vbd vbd-5632: 19 xlvbd_add at /local/domain/0/backend/vbd/109/5632
xen_mem: Initialising balloon driver.
netfront: Initialising virtual ethernet driver.
netfront: device eth0 has copying receive path.
XENBUS: Timeout connecting to device: device/vbd/768 (state 6)
XENBUS: Timeout connecting to device: device/vbd/5632 (state 6)

The SAQ Group

Registered Office: 18 Chapel Street, Petersfield, Hampshire GU32 3DZ
SAQ is the trading name of SEMTEC Limited. Registered in England & Wales
Company Number: 06481952

http://www.saqnet.co.uk AS29219

SAQ Group Delivers high quality, honestly priced communication and I.T. services to UK Business.

Broadband : Domains : Email : Hosting : CoLo : Servers : Racks : Transit : Backups : Managed Networks : Remote Support.

ISPA Member

Find us in http://www.thebestof.co.uk/petersfield
Fajar A. Nugraha | 1 Apr 2009 09:58

Re: Linux PV Drivers - VBD device not loading - Cannot get Major 3/22 for ide

Robert Dunkley wrote:
> I am trying to get PV drivers running on both Centos 5.1 and Centos 5.3
> HVMs, my DomU is Centos 5.2 with Xen 3.31. For 5.1 I install the
> kmod-xenpv RPM but for 5.3 the drivers seem to be built-in. 
>
> For the network drivers to work I had to unload the Realtek NIC driver
> and renamed its .ko files to stop it loading. Adding the Xen-Vnif alias
> to modprobe.conf then got the PV NICs working nicely (Much faster).
>
>   

Since realtek and xen-vnif each create an eth (with the same MAC), you
could simply set ifcfg-eth*'s "ONBOOT=no" on realtek's NICs. Do a "dmesg
| grep eth" to find which NIC uses which driver.

Problem is I can't get xen-vnif driver to work correctly on RHEL 5.3
(kernel 2.6.18-128.1.1.el5), not sure why.

> The problem is I can't seem to get the PV disk drivers running, I'm
> using a standard partition for the VM (phy:), part of the problem may be
> that the QEMU emulated disks are loading first but I'm unsure. Below is
> what I think are the relevant extracts from the Centos 5.3 HVM log,
> anyone have any idea on how to fix this?
>
>   

On /etc/modprobe.conf :
#alias scsi_hostadapter ata_piix
alias scsi_hostadapter xen-vbd

On grub.conf:
title Red Hat Enterprise Linux Server (2.6.18-128.1.1.el5)
    root (hd0,0)
    kernel /vmlinuz-2.6.18-128.1.1.el5 ro root=/dev/VolGroup00/LogVol00
console=vga console=ttyS0 ide0=noprobe noapic
    initrd /initrd-2.6.18-128.1.1.el5.img

The "ide0=noprobe" should allow xen-vbd to handle hda, and modprobe.conf
ensures it's included on initrd.

Regards,

Fajar
Attachment (smime.p7s): application/x-pkcs7-signature, 3242 bytes
_______________________________________________
Xen-users mailing list
Xen-users <at> lists.xensource.com
http://lists.xensource.com/xen-users
Fajar A. Nugraha | 1 Apr 2009 10:36

Re: Linux PV Drivers - VBD device not loading - Cannot get Major 3/22 for ide

On Wed, Apr 1, 2009 at 3:25 PM, Robert Dunkley <Robert <at> saq.co.uk> wrote:
>
> Method below did not work too well for me, the kernel ends up unbootable
> (Cant mount anything). Was the noapic option important? (I only added
> ide0=noprobe)

ide0=noprobe -> makes ide skips probing ide0 (hda and hdb). If it's
unbootable, chances are you haven't load xen-vbd. That why I told you
to modify modprobe.conf, and you have to recreate initrd afterwards
(you might want to use "-v" to see what drivers are added). If it
still doesn't work, post full startup log (which is easier if you use
text console instead of VNC console)

noapic -> a performance-improvement suggestion from Redhat (can't
remember exactly which URL though)

Regards,

Fajar
Andrew Lyon | 1 Apr 2009 13:24
Picon

2.6.29 Xen Kernel download link

Hi,

For a while now I have been maintaining a Gentoo Xen Kernel ebuild
which I make by rebasing the openSUSE xen patches so that they can be
applied to vanilla kernel source without the hundreds of other patches
that openSUSE usually applies, several Gentoo users have reported
success with these kernels and as pv_ops is still a while away and
http://xenbits.xensource.com/ext/linux-2.6.27-xen.hg is out of date I
decided to post a link to my latest version.

The ebuild and patches are available from
http://code.google.com/p/gentoo-xen-kernel/downloads/list , non Gentoo
users can simply unpack the patches and apply them to 2.6.29 vanilla
in numerical order.

I have tested both 32 and 64 bit dom0 and domU and they appear to work ok.

Andy
Itamar Reis Peixoto | 1 Apr 2009 14:46
Picon

Re: 2.6.29 Xen Kernel download link

there are a sRPMS for fedora here

http://fedorapeople.org/~myoung/dom0/

2.6.29 too


On Wed, Apr 1, 2009 at 8:24 AM, Andrew Lyon <andrew.lyon <at> gmail.com> wrote:
Hi,

For a while now I have been maintaining a Gentoo Xen Kernel ebuild
which I make by rebasing the openSUSE xen patches so that they can be
applied to vanilla kernel source without the hundreds of other patches
that openSUSE usually applies, several Gentoo users have reported
success with these kernels and as pv_ops is still a while away and
http://xenbits.xensource.com/ext/linux-2.6.27-xen.hg is out of date I
decided to post a link to my latest version.

The ebuild and patches are available from
http://code.google.com/p/gentoo-xen-kernel/downloads/list , non Gentoo
users can simply unpack the patches and apply them to 2.6.29 vanilla
in numerical order.

I have tested both 32 and 64 bit dom0 and domU and they appear to work ok.

Andy

_______________________________________________
Xen-users mailing list
Xen-users <at> lists.xensource.com
http://lists.xensource.com/xen-users



--
------------

Itamar Reis Peixoto

e-mail/msn: itamar <at> ispbrasil.com.br
sip: itamar <at> ispbrasil.com.br
skype: itamarjp
icq: 81053601
+55 11 4063 5033
+55 34 3221 8599


_______________________________________________
Xen-users mailing list
Xen-users <at> lists.xensource.com
http://lists.xensource.com/xen-users

Gmane