search for: 2b55623

Displaying 1 result from an estimated 1 matches for "2b55623".

Did you mean: 259623
2012 Mar 26
2
Bug#665882: xen-utils-common: Xen console for guest not working, hangs
...What outcome did you expect instead? Xen guests boot and xm console works It appears the cause of this issue is a missing loaded module named xen-gntdev. Patching /etc/init.d/xend to modprobe for xen-gntdev fixes this issue. (Sorry, patch inline) diff --git a/init.d/xend b/init.d/xend index 2b55623..852cfe4 100755 --- a/init.d/xend +++ b/init.d/xend @@ -34,6 +34,7 @@ modules_setup() { modprobe xenfs 2>/dev/null modprobe xen-evtchn 2>/dev/null + modprobe xen-gntdev 2>/dev/null }...