[libvirt-users] Installing libvirt

Hi, I am trying to install new libvirt version on Ubuntu 12.04 LTS. Now I downloaded libvirt 1.0.5 from libvirt.org/sources then I issued three commands: ./autogen.sh make make install This installs the libvirt on my system. But there are some issues, I have to run libvirtd explicitly everytime I reboot my system. And whenever I try to run virt-manager from terminal, it says "No D-Bus daemon running". But when I do "sudo virt-manager", it runs fine. Any idea what am I doing wrong? Thanks. ~Peeyush Gupta

Hi, Do you still have any libvirt-related packages installed in parallel, or just your selfcompiled binaries? On 31.07.2013 07:30, Peeyush Gupta wrote:
Hi,
I am trying to install new libvirt version on Ubuntu 12.04 LTS. Now I downloaded libvirt 1.0.5 from libvirt.org/sources then I issued three commands:
./autogen.sh make make install
This installs the libvirt on my system. But there are some issues, I have to run libvirtd explicitly everytime I reboot my system. And whenever I try to run virt-manager from terminal, it says "No D-Bus daemon running". But when I do "sudo virt-manager", it runs fine. Any idea what am I doing wrong?
Thanks.
~Peeyush Gupta
_______________________________________________ libvirt-users mailing list libvirt-users@redhat.com https://www.redhat.com/mailman/listinfo/libvirt-users
-- Mit freundlichen Grüßen, / Best Regards, Sven SCHWEDAS Systemadministrator TAO Beratungs- und Management GmbH | Lendplatz 45 | A - 8020 Graz Mail/XMPP: sven.schwedas@tao.at | +43 (0)680 301 7167 http://software.tao.at

On 07/30/2013 11:30 PM, Peeyush Gupta wrote:
Hi,
[can you convince your mailer to wrap long lines? Also, it looks like your mailer is not using proper in-reply-to headers, such that you are spawning a new thread every time you reply]
I am trying to install new libvirt version on Ubuntu 12.04 LTS. Now I downloaded libvirt 1.0.5 from libvirt.org/sources then I issued three commands:
Any reason you went with 1.0.5 instead of the just-released 1.1.1?
./autogen.sh
This installs the libvirt on my system. But there are some issues, I have to run libvirtd explicitly everytime
This defaults into installing things into /usr/local, which does not match the paths your distro normally uses. Your problems may stem from the fact that because you didn't install it into distro locations, your distro is unable to run libvirtd as a service. If you run './autogen.sh --system', that helps prepopulate the configure options such as --bindir that are more likely to match your distro layout (I know for sure that ./autogen.sh --system matches Fedora layout, but don't know if Debian-based layout differs, although no one has written a patch complaining otherwise). -- Eric Blake eblake redhat com +1-919-301-3266 Libvirt virtualization library http://libvirt.org

Hi, Sorry, I will keep the instructions in mind. I tried ./autogen.sh with --system but there was a version mismatch. I guess someone should write a patch for debian based system. I tried to install libvirt 1.1.1 with Fedora and when I did make, I got the following error: Making all in src make[2]: Entering directory `/home/peeyush/Downloads/libvirt-1.1.1/src' GEN libvirt_access_lxc.syms /bin/sh: -w: command not found make[2]: *** [libvirt_access_lxc.syms] Error 127 make[2]: Leaving directory `/home/peeyush/Downloads/libvirt-1.1.1/src' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/peeyush/Downloads/libvirt-1.1.1' make: *** [all] Error 2 Any idea why am I getting this? Thanks. ~Peeyush Gupta ________________________________ From: Eric Blake <eblake@redhat.com> To: Peeyush Gupta <gpeeyush@ymail.com> Cc: "libvirt-users@redhat.com" <libvirt-users@redhat.com> Sent: Wednesday, 31 July 2013 6:19 PM Subject: Re: [libvirt-users] Installing libvirt On 07/30/2013 11:30 PM, Peeyush Gupta wrote:
Hi,
[can you convince your mailer to wrap long lines? Also, it looks like your mailer is not using proper in-reply-to headers, such that you are spawning a new thread every time you reply]
I am trying to install new libvirt version on Ubuntu 12.04 LTS. Now I downloaded libvirt 1.0.5 from libvirt.org/sources then I issued three commands:
Any reason you went with 1.0.5 instead of the just-released 1.1.1?
./autogen.sh
This installs the libvirt on my system. But there are some issues, I have to run libvirtd explicitly everytime
This defaults into installing things into /usr/local, which does not match the paths your distro normally uses. Your problems may stem from the fact that because you didn't install it into distro locations, your distro is unable to run libvirtd as a service. If you run './autogen.sh --system', that helps prepopulate the configure options such as --bindir that are more likely to match your distro layout (I know for sure that ./autogen.sh --system matches Fedora layout, but don't know if Debian-based layout differs, although no one has written a patch complaining otherwise). -- Eric Blake eblake redhat com +1-919-301-3266 Libvirt virtualization library http://libvirt.org

On 07/31/2013 11:09 PM, Peeyush Gupta wrote:
Hi,
Sorry, I will keep the instructions in mind.
I tried ./autogen.sh with --system but there was a version mismatch. I guess someone should write a patch for debian based system.
I tried to install libvirt 1.1.1 with Fedora and when I did make, I got the following error:
Making all in src make[2]: Entering directory `/home/peeyush/Downloads/libvirt-1.1.1/src' GEN libvirt_access_lxc.syms /bin/sh: -w: command not found
Can you rerun with 'make V=1' so we can see the full command line that was attempted? I suspect there is a bug in the makefile that expanded to nothing based on your platform and the software you have installed (or not installed). -- Eric Blake eblake redhat com +1-919-301-3266 Libvirt virtualization library http://libvirt.org

Hi, I launched a fresh Fedora 18 VM and did the whole process again and voila, I dont know how, but it's working! There was no error and the installation was successful. Thanks. ~Peeyush Gupta ________________________________ From: Eric Blake <eblake@redhat.com> To: Peeyush Gupta <gpeeyush@ymail.com> Cc: "libvirt-users@redhat.com" <libvirt-users@redhat.com> Sent: Thursday, 1 August 2013 6:29 PM Subject: Re: [libvirt-users] Installing libvirt On 07/31/2013 11:09 PM, Peeyush Gupta wrote:
Hi,
Sorry, I will keep the instructions in mind.
I tried ./autogen.sh with --system but there was a version mismatch. I guess someone should write a patch for debian based system.
I tried to install libvirt 1.1.1 with Fedora and when I did make, I got the following error:
Making all in src make[2]: Entering directory `/home/peeyush/Downloads/libvirt-1.1.1/src' GEN libvirt_access_lxc.syms /bin/sh: -w: command not found
Can you rerun with 'make V=1' so we can see the full command line that was attempted? I suspect there is a bug in the makefile that expanded to nothing based on your platform and the software you have installed (or not installed). -- Eric Blake eblake redhat com +1-919-301-3266 Libvirt virtualization library http://libvirt.org

make: *** [all] Error 2
Any idea why am I getting this?
- possible missing a package - make (verbose++) - try different versions (1.0.3 ...), use this make-howto [1] (comments are welcome as mail) regards Heiko [1] http://www2.fh-lausitz.de/launic/comp/xen/libvirt/130305.xen.make.libvirt
participants (4)
-
Eric Blake
-
Heiko L.
-
Peeyush Gupta
-
Sven Schwedas