All of lore.kernel.org
 help / color / mirror / Atom feed
* Xen doesn't boot on grub2 or xend doesn't start
@ 2012-04-22 19:21 José Eduardo França
  2012-04-23  6:36 ` Pasi Kärkkäinen
  0 siblings, 1 reply; 7+ messages in thread
From: José Eduardo França @ 2012-04-22 19:21 UTC (permalink / raw)
  To: xen-devel


[-- Attachment #1.1: Type: text/plain, Size: 3986 bytes --]

hi guys,

It's my first time here and in a mailing lists, I only participated in
forums before. Please, If I make a mistake you should advise me. Let's go!

I was reading "xencommons not start" in a Remus Forum in order to install
Remus.
Well… I followed the tutorial <
http://remusha.wikidot.com/configuring-and-installing-remus>, I reboot in
xen_unstable and I had a error message:

error: couldn't open file
error: you need to load the multiboot kernel first

then I redid tutorial after "Adapt Grub" and in a moment I do command:

# /etc/init.d/xend start
xencommons should be started first.

but I had done "/etc/init.d/xencommons start" before and no error message
returned !!!???

I also tried insert modules manually (coz in other mailing list said to put
some modules - see my setups after this mail) but I had:

# modprobe xen-evtchn
FATAL: Module xen_evtchn not found.

Please, help me
Thanks.

PS: I'm sorry to my English, coz I'm brazilian.

My setups are:

- fdisk

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1          32      248832   83  Linux
Partition 1 does not end on cylinder boundary.
/dev/sda2              32       30395   243889153    5  Extended
/dev/sda5              32       30395   243889152   8e  Linux LVM

- blkid

root@debian-02:/home/franca# blkid
/dev/sda5: UUID="RVwX4M-56HI-Tu9q-CLkP-V0jx-Ft7W-b0bPHP" TYPE="LVM2_member"
/dev/sda1: UUID="fcc01979-0cf3-4dbe-863a-ab32d2636fec" TYPE="ext3"
/dev/mapper/debian--02-root: UUID="da8b402b-b224-4552-80df-754339518e4d"
TYPE="ext3"
/dev/mapper/debian--02-swap_1: UUID="d5eb1ff7-b7d8-4b60-95e3-f4bb5ae32932"
TYPE="swap"

My scripts are:

- 08_xen

#!/bin/sh
exec tail -n +3 $0
menuentry "Xen Unstable / Debian Squeeze kernel 2.6.32.40" {
### MY ATTEMPT
    insmod ext2
        set root='(hd0,msdos1)'
        multiboot (hd0,msdos1)/boot/xen-4.2-unstable.gz dummy dom0_mem=512M
        module (hd0,msdos1)/boot/vmlinuz-2.6.32.40 dummy
root=UUID=fcc01979-0cf3-4dbe-863a-ab32d2636fec ro quiet console=tty0
nomodeset
        module (hd0,msdos1)/boot/initrd.img-2.6.32.40

### MODEL Configuring and Installing Remus
        #insmod ext2
        #set root='(hd0,1)'
        #multiboot (hd0,1)/boot/xen-4.2-unstable.gz dummy dom0_mem=512M
        #module (hd0,1)/boot/vmlinuz-2.6.32.40 dummy
root=UUID=8e339522-dab5-4a81-8066-c41cc3908a15 ro quiet console=tty0
nomodeset
        #module (hd0,1)/boot/initrd.img-2.6.32.40

### MODEL UBUNTU FORUM
    #insmod part_msdos
    #insmod ext2
        #set root=(hd0,msdos1)
    #search --no-floppy --fs-uuid --set fcc01979-0cf3-4dbe-863a-ab32d2636fec
        #multiboot /boot/xen-4.2-unstable.gz
        #module /boot/vmlinuz-2.6.32.40 root=/dev/sda1
        #module /boot/initrd.img-2.6.32.40
}

- modules

# /etc/modules: kernel modules to load at boot time.
#
# This file contains the names of kernel modules that should be loaded
# at boot time, one per line. Lines beginning with "#" are ignored.
# Parameters can be specified after the module name.

loop
xen-evtchn
xen-gntdev
xen-netback
xen-blkback
xenfs
blktap2

- fstab

# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
proc            /proc           proc    defaults        0       0
/dev/mapper/debian--02-root /               ext3    errors=remount-ro
0       1
# /boot was on /dev/sda1 during installation
UUID=fcc01979-0cf3-4dbe-863a-ab32d2636fec /boot           ext3
defaults        0       2
/dev/mapper/debian--02-swap_1 none            swap    sw
0       0
/dev/scd0       /media/cdrom0   udf,iso9660 user,noauto     0       0
none /proc/xen xenfs defaults 0 0

[-- Attachment #1.2: Type: text/html, Size: 4547 bytes --]

[-- Attachment #2: Type: text/plain, Size: 126 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Xen doesn't boot on grub2 or xend doesn't start
  2012-04-22 19:21 Xen doesn't boot on grub2 or xend doesn't start José Eduardo França
@ 2012-04-23  6:36 ` Pasi Kärkkäinen
  2012-04-23 16:13   ` José Eduardo França
  0 siblings, 1 reply; 7+ messages in thread
From: Pasi Kärkkäinen @ 2012-04-23  6:36 UTC (permalink / raw)
  To: José Eduardo França; +Cc: xen-devel

On Sun, Apr 22, 2012 at 04:21:10PM -0300, José Eduardo França wrote:
>    hi guys,
> 

Hello,

>    It's my first time here and in a mailing lists, I only participated in
>    forums before. Please, If I make a mistake you should advise me. Let's go!
> 
>    I was reading "xencommons not start" in a Remus Forum in order to install
>    Remus.
>    Well* I followed the tutorial
>    <[1]http://remusha.wikidot.com/configuring-and-installing-remus>, I reboot
>    in xen_unstable and I had a error message:
> 
>    error: couldn't open file
>    error: you need to load the multiboot kernel first
> 
>    then I redid tutorial after "Adapt Grub" and in a moment I do command:
> 
>    # /etc/init.d/xend start
>    xencommons should be started first.
> 
>    but I had done "/etc/init.d/xencommons start" before and no error message
>    returned !!!???
> 
>    I also tried insert modules manually (coz in other mailing list said to
>    put some modules - see my setups after this mail) but I had:
> 
>    # modprobe xen-evtchn
>    FATAL: Module xen_evtchn not found.
> 

So xen event channel support is not compiled as a module? 
is it enabled at all in your dom0 kernel config? 

http://wiki.xen.org/wiki/Xen_Common_Problems#Starting_xend_fails.3F

-- Pasi

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Xen doesn't boot on grub2 or xend doesn't start
  2012-04-23  6:36 ` Pasi Kärkkäinen
@ 2012-04-23 16:13   ` José Eduardo França
  2012-04-23 16:23     ` Pasi Kärkkäinen
  0 siblings, 1 reply; 7+ messages in thread
From: José Eduardo França @ 2012-04-23 16:13 UTC (permalink / raw)
  To: Pasi Kärkkäinen; +Cc: xen-devel


[-- Attachment #1.1: Type: text/plain, Size: 2023 bytes --]

Hi Pasi,

thank you for reply.

I'm using Debian Squeeze, and I'm compiling Xen from source (.tar.gz). I
ran "make install-tools PYTHON_PREFIX_ARG=" to install Xen.

Notice: I couldn't run in xen_unstable or dom0 then I returned to install
environment (Debian Squeeze)

My attempt with modules and now with xenstored command (oxenstored command
works) was in Debian Squeeze. In this case I think I can't load these
modules or run this command, but I'm not sure. Then your questions can not
be in this scope. What do you think?

Thanks, Eduardo

Em 23 de abril de 2012 03:36, Pasi Kärkkäinen <pasik@iki.fi> escreveu:

> On Sun, Apr 22, 2012 at 04:21:10PM -0300, José Eduardo França wrote:
> >    hi guys,
> >
>
> Hello,
>
> >    It's my first time here and in a mailing lists, I only participated in
> >    forums before. Please, If I make a mistake you should advise me.
> Let's go!
> >
> >    I was reading "xencommons not start" in a Remus Forum in order to
> install
> >    Remus.
> >    Well* I followed the tutorial
> >    <[1]http://remusha.wikidot.com/configuring-and-installing-remus>, I
> reboot
> >    in xen_unstable and I had a error message:
> >
> >    error: couldn't open file
> >    error: you need to load the multiboot kernel first
> >
> >    then I redid tutorial after "Adapt Grub" and in a moment I do command:
> >
> >    # /etc/init.d/xend start
> >    xencommons should be started first.
> >
> >    but I had done "/etc/init.d/xencommons start" before and no error
> message
> >    returned !!!???
> >
> >    I also tried insert modules manually (coz in other mailing list said
> to
> >    put some modules - see my setups after this mail) but I had:
> >
> >    # modprobe xen-evtchn
> >    FATAL: Module xen_evtchn not found.
> >
>
> So xen event channel support is not compiled as a module?
> is it enabled at all in your dom0 kernel config?
>
> http://wiki.xen.org/wiki/Xen_Common_Problems#Starting_xend_fails.3F
>
> -- Pasi
>
>
>

[-- Attachment #1.2: Type: text/html, Size: 2833 bytes --]

[-- Attachment #2: Type: text/plain, Size: 126 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Xen doesn't boot on grub2 or xend doesn't start
  2012-04-23 16:13   ` José Eduardo França
@ 2012-04-23 16:23     ` Pasi Kärkkäinen
  2012-04-23 16:45       ` José Eduardo França
  0 siblings, 1 reply; 7+ messages in thread
From: Pasi Kärkkäinen @ 2012-04-23 16:23 UTC (permalink / raw)
  To: José Eduardo França; +Cc: xen-devel

On Mon, Apr 23, 2012 at 01:13:49PM -0300, José Eduardo França wrote:
>    Hi Pasi,
> 
>    thank you for reply.
> 
>    I'm using Debian Squeeze, and I'm compiling Xen from source (.tar.gz). I
>    ran "make install-tools PYTHON_PREFIX_ARG=" to install Xen.
> 
>    Notice: I couldn't run in xen_unstable or dom0 then I returned to install
>    environment (Debian Squeeze)
> 
>    My attempt with modules and now with xenstored command (oxenstored command
>    works) was in Debian Squeeze. In this case I think I can't load these
>    modules or run this command, but I'm not sure. Then your questions can not
>    be in this scope. What do you think?
> 

I was talking about dom0 Linux kernel, not about Xen.

-- Pasi


>    Thanks, Eduardo
> 
>    Em 23 de abril de 2012 03:36, Pasi Kärkkäinen <[1]pasik@iki.fi> escreveu:
> 
>      On Sun, Apr 22, 2012 at 04:21:10PM -0300, José Eduardo França wrote:
>      >    hi guys,
>      >
> 
>      Hello,
>      >    It's my first time here and in a mailing lists, I only participated
>      in
>      >    forums before. Please, If I make a mistake you should advise me.
>      Let's go!
>      >
>      >    I was reading "xencommons not start" in a Remus Forum in order to
>      install
>      >    Remus.
>      >    Well* I followed the tutorial
>      >
>       <[1][2]http://remusha.wikidot.com/configuring-and-installing-remus>, I
>      reboot
>      >    in xen_unstable and I had a error message:
>      >
>      >    error: couldn't open file
>      >    error: you need to load the multiboot kernel first
>      >
>      >    then I redid tutorial after "Adapt Grub" and in a moment I do
>      command:
>      >
>      >    # /etc/init.d/xend start
>      >    xencommons should be started first.
>      >
>      >    but I had done "/etc/init.d/xencommons start" before and no error
>      message
>      >    returned !!!???
>      >
>      >    I also tried insert modules manually (coz in other mailing list
>      said to
>      >    put some modules - see my setups after this mail) but I had:
>      >
>      >    # modprobe xen-evtchn
>      >    FATAL: Module xen_evtchn not found.
>      >
> 
>      So xen event channel support is not compiled as a module?
>      is it enabled at all in your dom0 kernel config?
> 
>      [3]http://wiki.xen.org/wiki/Xen_Common_Problems#Starting_xend_fails.3F
>      -- Pasi
> 
> References
> 
>    Visible links
>    1. mailto:pasik@iki.fi
>    2. http://remusha.wikidot.com/configuring-and-installing-remus
>    3. http://wiki.xen.org/wiki/Xen_Common_Problems#Starting_xend_fails.3F

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Xen doesn't boot on grub2 or xend doesn't start
  2012-04-23 16:23     ` Pasi Kärkkäinen
@ 2012-04-23 16:45       ` José Eduardo França
  2012-04-24 12:54         ` José Eduardo França
  0 siblings, 1 reply; 7+ messages in thread
From: José Eduardo França @ 2012-04-23 16:45 UTC (permalink / raw)
  To: Pasi Kärkkäinen; +Cc: xen-devel


[-- Attachment #1.1: Type: text/plain, Size: 3017 bytes --]

Pasi

I didn't think this. I'll be in my job tomorrow an I'll reply there.

Thank you

Em 23 de abril de 2012 13:23, Pasi Kärkkäinen <pasik@iki.fi> escreveu:

> On Mon, Apr 23, 2012 at 01:13:49PM -0300, José Eduardo França wrote:
> >    Hi Pasi,
> >
> >    thank you for reply.
> >
> >    I'm using Debian Squeeze, and I'm compiling Xen from source
> (.tar.gz). I
> >    ran "make install-tools PYTHON_PREFIX_ARG=" to install Xen.
> >
> >    Notice: I couldn't run in xen_unstable or dom0 then I returned to
> install
> >    environment (Debian Squeeze)
> >
> >    My attempt with modules and now with xenstored command (oxenstored
> command
> >    works) was in Debian Squeeze. In this case I think I can't load these
> >    modules or run this command, but I'm not sure. Then your questions
> can not
> >    be in this scope. What do you think?
> >
>
> I was talking about dom0 Linux kernel, not about Xen.
>
> -- Pasi
>
>
> >    Thanks, Eduardo
> >
> >    Em 23 de abril de 2012 03:36, Pasi Kärkkäinen <[1]pasik@iki.fi>
> escreveu:
> >
> >      On Sun, Apr 22, 2012 at 04:21:10PM -0300, José Eduardo França wrote:
> >      >    hi guys,
> >      >
> >
> >      Hello,
> >      >    It's my first time here and in a mailing lists, I only
> participated
> >      in
> >      >    forums before. Please, If I make a mistake you should advise
> me.
> >      Let's go!
> >      >
> >      >    I was reading "xencommons not start" in a Remus Forum in order
> to
> >      install
> >      >    Remus.
> >      >    Well* I followed the tutorial
> >      >
> >       <[1][2]http://remusha.wikidot.com/configuring-and-installing-remus>,
> I
> >      reboot
> >      >    in xen_unstable and I had a error message:
> >      >
> >      >    error: couldn't open file
> >      >    error: you need to load the multiboot kernel first
> >      >
> >      >    then I redid tutorial after "Adapt Grub" and in a moment I do
> >      command:
> >      >
> >      >    # /etc/init.d/xend start
> >      >    xencommons should be started first.
> >      >
> >      >    but I had done "/etc/init.d/xencommons start" before and no
> error
> >      message
> >      >    returned !!!???
> >      >
> >      >    I also tried insert modules manually (coz in other mailing list
> >      said to
> >      >    put some modules - see my setups after this mail) but I had:
> >      >
> >      >    # modprobe xen-evtchn
> >      >    FATAL: Module xen_evtchn not found.
> >      >
> >
> >      So xen event channel support is not compiled as a module?
> >      is it enabled at all in your dom0 kernel config?
> >
> >      [3]
> http://wiki.xen.org/wiki/Xen_Common_Problems#Starting_xend_fails.3F
> >      -- Pasi
> >
> > References
> >
> >    Visible links
> >    1. mailto:pasik@iki.fi
> >    2. http://remusha.wikidot.com/configuring-and-installing-remus
> >    3.
> http://wiki.xen.org/wiki/Xen_Common_Problems#Starting_xend_fails.3F
>

[-- Attachment #1.2: Type: text/html, Size: 4316 bytes --]

[-- Attachment #2: Type: text/plain, Size: 126 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Xen doesn't boot on grub2 or xend doesn't start
  2012-04-23 16:45       ` José Eduardo França
@ 2012-04-24 12:54         ` José Eduardo França
  2012-04-24 12:59           ` Pasi Kärkkäinen
  0 siblings, 1 reply; 7+ messages in thread
From: José Eduardo França @ 2012-04-24 12:54 UTC (permalink / raw)
  To: Pasi Kärkkäinen; +Cc: xen-devel


[-- Attachment #1.1: Type: text/plain, Size: 4242 bytes --]

Pasi,

I didn't really understand when You said "I was talking about dom0 Linux
kernel, not about Xen", coz I understand you must be in xen to access dom0.
Look: in my grub2 I have these options in grub2:

Xen Unstable / Debian Squeeze kernel 2.6.32.40
Debian GNU/Linux, with Linux 2.6.32.40
Debian GNU/Linux, with Linux 2.6.32-5-686

I select first option and the system returns:

error: couldn't open file
error: you need to load the multiboot kernel first

The second option is in graphical environment but keyboard and mouse don't
work there. I thought You said to enter within this option (but I think
this option is not important)

And the third option is my environment where I compiled and installed xen
and Debian GNU/Linux, with Linux 2.6.32.40.
Here I do command "# /etc/init.d/xend start" and the system returns
"xencommons should be started first", but I had done
"/etc/init.d/xencommons start" before and no error message returned !!!???

and then... what do you think?

Eduardo


Em 23 de abril de 2012 13:45, José Eduardo França <jefranca@gmail.com>escreveu:

> Pasi
>
> I didn't think this. I'll be in my job tomorrow an I'll reply there.
>
> Thank you
>
> Em 23 de abril de 2012 13:23, Pasi Kärkkäinen <pasik@iki.fi> escreveu:
>
> On Mon, Apr 23, 2012 at 01:13:49PM -0300, José Eduardo França wrote:
>> >    Hi Pasi,
>> >
>> >    thank you for reply.
>> >
>> >    I'm using Debian Squeeze, and I'm compiling Xen from source
>> (.tar.gz). I
>> >    ran "make install-tools PYTHON_PREFIX_ARG=" to install Xen.
>> >
>> >    Notice: I couldn't run in xen_unstable or dom0 then I returned to
>> install
>> >    environment (Debian Squeeze)
>> >
>> >    My attempt with modules and now with xenstored command (oxenstored
>> command
>> >    works) was in Debian Squeeze. In this case I think I can't load these
>> >    modules or run this command, but I'm not sure. Then your questions
>> can not
>> >    be in this scope. What do you think?
>> >
>>
>> I was talking about dom0 Linux kernel, not about Xen.
>>
>> -- Pasi
>>
>>
>> >    Thanks, Eduardo
>> >
>> >    Em 23 de abril de 2012 03:36, Pasi Kärkkäinen <[1]pasik@iki.fi>
>> escreveu:
>> >
>> >      On Sun, Apr 22, 2012 at 04:21:10PM -0300, José Eduardo França
>> wrote:
>> >      >    hi guys,
>> >      >
>> >
>> >      Hello,
>> >      >    It's my first time here and in a mailing lists, I only
>> participated
>> >      in
>> >      >    forums before. Please, If I make a mistake you should advise
>> me.
>> >      Let's go!
>> >      >
>> >      >    I was reading "xencommons not start" in a Remus Forum in
>> order to
>> >      install
>> >      >    Remus.
>> >      >    Well* I followed the tutorial
>> >      >
>> >       <[1][2]
>> http://remusha.wikidot.com/configuring-and-installing-remus>, I
>> >      reboot
>> >      >    in xen_unstable and I had a error message:
>> >      >
>> >      >    error: couldn't open file
>> >      >    error: you need to load the multiboot kernel first
>> >      >
>> >      >    then I redid tutorial after "Adapt Grub" and in a moment I do
>> >      command:
>> >      >
>> >      >    # /etc/init.d/xend start
>> >      >    xencommons should be started first.
>> >      >
>> >      >    but I had done "/etc/init.d/xencommons start" before and no
>> error
>> >      message
>> >      >    returned !!!???
>> >      >
>> >      >    I also tried insert modules manually (coz in other mailing
>> list
>> >      said to
>> >      >    put some modules - see my setups after this mail) but I had:
>> >      >
>> >      >    # modprobe xen-evtchn
>> >      >    FATAL: Module xen_evtchn not found.
>> >      >
>> >
>> >      So xen event channel support is not compiled as a module?
>> >      is it enabled at all in your dom0 kernel config?
>> >
>> >      [3]
>> http://wiki.xen.org/wiki/Xen_Common_Problems#Starting_xend_fails.3F
>> >      -- Pasi
>> >
>> > References
>> >
>> >    Visible links
>> >    1. mailto:pasik@iki.fi
>> >    2. http://remusha.wikidot.com/configuring-and-installing-remus
>> >    3.
>> http://wiki.xen.org/wiki/Xen_Common_Problems#Starting_xend_fails.3F
>>
>
>

[-- Attachment #1.2: Type: text/html, Size: 5831 bytes --]

[-- Attachment #2: Type: text/plain, Size: 126 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Xen doesn't boot on grub2 or xend doesn't start
  2012-04-24 12:54         ` José Eduardo França
@ 2012-04-24 12:59           ` Pasi Kärkkäinen
  0 siblings, 0 replies; 7+ messages in thread
From: Pasi Kärkkäinen @ 2012-04-24 12:59 UTC (permalink / raw)
  To: José Eduardo França; +Cc: xen-users, xen-devel

On Tue, Apr 24, 2012 at 09:54:26AM -0300, José Eduardo França wrote:
>    Pasi,
> 

This thread really belongs to xen-users mailinglist (added to CC).
So let's drop xen-devel from the CC list in the replies..


>    I didn't really understand when You said "I was talking about dom0 Linux
>    kernel, not about Xen", coz I understand you must be in xen to access
>    dom0.
>    Look: in my grub2 I have these options in grub2:
> 
>    Xen Unstable / Debian Squeeze kernel 2.6.32.40
>    Debian GNU/Linux, with Linux 2.6.32.40
>    Debian GNU/Linux, with Linux 2.6.32-5-686
> 

Please paste the entries from your grub.cfg

>    I select first option and the system returns:
> 
>    error: couldn't open file
>    error: you need to load the multiboot kernel first
> 

So the grub entry is broken. Please fix it.

>    The second option is in graphical environment but keyboard and mouse don't
>    work there. I thought You said to enter within this option (but I think
>    this option is not important)
> 

Of course you need to boot to Xen to be able to use Xen.
I recommend using just the text-only modes.

>    And the third option is my environment where I compiled and installed xen
>    and Debian GNU/Linux, with Linux 2.6.32.40.
>    Here I do command "# /etc/init.d/xend start" and the system returns
>    "xencommons should be started first", but I had done
>    "/etc/init.d/xencommons start" before and no error message returned !!!???
> 

Did you realize Xen is the hypervisor (xen.gz), and in addition to Xen
you also need Xen-enabled Linux dom0 kernel ? 

http://wiki.xen.org/wiki/Xen_Common_Problems#Starting_xend_fails.3F


>    and then... what do you think?
> 


-- Pasi


>    Eduardo
> 
>    Em 23 de abril de 2012 13:45, José Eduardo França <[1]jefranca@gmail.com>
>    escreveu:
> 
>      Pasi
> 
>      I didn't think this. I'll be in my job tomorrow an I'll reply there.
> 
>      Thank you
> 
>      Em 23 de abril de 2012 13:23, Pasi Kärkkäinen <[2]pasik@iki.fi>
>      escreveu:
> 
>        On Mon, Apr 23, 2012 at 01:13:49PM -0300, José Eduardo França wrote:
>        >    Hi Pasi,
>        >
>        >    thank you for reply.
>        >
>        >    I'm using Debian Squeeze, and I'm compiling Xen from source
>        (.tar.gz). I
>        >    ran "make install-tools PYTHON_PREFIX_ARG=" to install Xen.
>        >
>        >    Notice: I couldn't run in xen_unstable or dom0 then I returned to
>        install
>        >    environment (Debian Squeeze)
>        >
>        >    My attempt with modules and now with xenstored command
>        (oxenstored command
>        >    works) was in Debian Squeeze. In this case I think I can't load
>        these
>        >    modules or run this command, but I'm not sure. Then your
>        questions can not
>        >    be in this scope. What do you think?
>        >
> 
>        I was talking about dom0 Linux kernel, not about Xen.
> 
>        -- Pasi
> 
>        >    Thanks, Eduardo
>        >
>        >    Em 23 de abril de 2012 03:36, Pasi Kärkkäinen
>        <[1][3]pasik@iki.fi> escreveu:
>        >
>        >      On Sun, Apr 22, 2012 at 04:21:10PM -0300, José Eduardo França
>        wrote:
>        >      >    hi guys,
>        >      >
>        >
>        >      Hello,
>        >      >    It's my first time here and in a mailing lists, I only
>        participated
>        >      in
>        >      >    forums before. Please, If I make a mistake you should
>        advise me.
>        >      Let's go!
>        >      >
>        >      >    I was reading "xencommons not start" in a Remus Forum in
>        order to
>        >      install
>        >      >    Remus.
>        >      >    Well* I followed the tutorial
>        >      >
>        >
>        <[1][2][4]http://remusha.wikidot.com/configuring-and-installing-remus>,
>        I
>        >      reboot
>        >      >    in xen_unstable and I had a error message:
>        >      >
>        >      >    error: couldn't open file
>        >      >    error: you need to load the multiboot kernel first
>        >      >
>        >      >    then I redid tutorial after "Adapt Grub" and in a moment I
>        do
>        >      command:
>        >      >
>        >      >    # /etc/init.d/xend start
>        >      >    xencommons should be started first.
>        >      >
>        >      >    but I had done "/etc/init.d/xencommons start" before and
>        no error
>        >      message
>        >      >    returned !!!???
>        >      >
>        >      >    I also tried insert modules manually (coz in other mailing
>        list
>        >      said to
>        >      >    put some modules - see my setups after this mail) but I
>        had:
>        >      >
>        >      >    # modprobe xen-evtchn
>        >      >    FATAL: Module xen_evtchn not found.
>        >      >
>        >
>        >      So xen event channel support is not compiled as a module?
>        >      is it enabled at all in your dom0 kernel config?
>        >
>        >
>         [3][5]http://wiki.xen.org/wiki/Xen_Common_Problems#Starting_xend_fails.3F
>        >      -- Pasi
>        >
>        > References
>        >
>        >    Visible links
>        >    1. mailto:[6]pasik@iki.fi
>        >    2. [7]http://remusha.wikidot.com/configuring-and-installing-remus
>        >    3.
>        [8]http://wiki.xen.org/wiki/Xen_Common_Problems#Starting_xend_fails.3F
> 
> References
> 
>    Visible links
>    1. mailto:jefranca@gmail.com
>    2. mailto:pasik@iki.fi
>    3. mailto:pasik@iki.fi
>    4. http://remusha.wikidot.com/configuring-and-installing-remus
>    5. http://wiki.xen.org/wiki/Xen_Common_Problems#Starting_xend_fails.3F
>    6. mailto:pasik@iki.fi
>    7. http://remusha.wikidot.com/configuring-and-installing-remus
>    8. http://wiki.xen.org/wiki/Xen_Common_Problems#Starting_xend_fails.3F

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2012-04-24 12:59 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-04-22 19:21 Xen doesn't boot on grub2 or xend doesn't start José Eduardo França
2012-04-23  6:36 ` Pasi Kärkkäinen
2012-04-23 16:13   ` José Eduardo França
2012-04-23 16:23     ` Pasi Kärkkäinen
2012-04-23 16:45       ` José Eduardo França
2012-04-24 12:54         ` José Eduardo França
2012-04-24 12:59           ` Pasi Kärkkäinen

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.