|
|
|
|
|
|
|
|
|
|
xen-users
Re: [Xen-users] Problems starting xend on Squeeze
Depending on your distribution and kernel you should extend /etc/init.d/xend to
load some additional XEN kernel modules.
modules_setup()
{
modprobe xenfs 2>/dev/null
modprobe xen-evtchn 2>/dev/null
modprobe xen-pciback 2>/dev/null
modprobe xen-blkback 2>/dev/null
modprobe xen-netback 2>/dev/null
}
This helped me on Debian. Maybe this will help one of you too.
Am 10.09.2011 um 11:55 schrieb Rudi Ahlers:
> On Thu, Mar 31, 2011 at 2:08 PM, Sergio Charpinel Jr.
> <sergiocharpinel@xxxxxxxxx> wrote:
>> Hi Sebastian,
>> Make sure your xenfs partition is mounted:
>> mount
>> or:
>> grep -q xenfs /etc/fstab
>> if not:
>> echo "xenfs /proc/xen xenfs defaults 0 0" >> /etc/fstab
>> mount -a
>> And xen-evtchn module is loaded.
>> Also, start xencommons.
>> Hope this helps
>>
>
>
>
> Hi,
>
> Sorry to hijack this thread, but I have the exact same problem as the OP:
>
>
> newusaxen:~# /etc/init.d/xend start
> Starting Xen daemons: xenstored xenconsoled xend failed!
>
>
>
>
> xenfs is already mounted:
> xenfs on /proc/xen type xenfs (rw)
>
>
>
> What else can I do to fix this?
> --
> Kind Regards
> Rudi Ahlers
> SoftDux
>
> Website: http://www.SoftDux.com
> Technical Blog: http://Blog.SoftDux.com
> Office: 087 805 9573
> Cell: 082 554 7532
>
> _______________________________________________
> Xen-users mailing list
> Xen-users@xxxxxxxxxxxxxxxxxxx
> http://lists.xensource.com/xen-users
_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users
|
|
|
|
|