How do I overcome this "group 'libvirtd' does not exist" issue in installing juju?

8,631

You don't need to run this command. The guide states:

pre v0.6 users only Then you need to add yourself to the libvirtd group:

sudo usermod -a -G libvirtd <YOUR_USER>

As Ubuntu 12.10 provides juju version 0.6, this does not apply.


To explain a bit more on the error you got, the libvirt-bin package (the base of Libvirt basically) will create this system user group for you. Because you don't need to install this for 0.6 version of Juju, it's not installed and you'll get the error about the group specified not being a valid existent group. The command is listed for pre-0.6 versions and the guide also lists this package to the lists of packages to install for these older versions.

Share:
8,631
lomsansnom
Author by

lomsansnom

Updated on September 18, 2022

Comments

  • lomsansnom
    lomsansnom almost 2 years

    I'm trying to install juju on local environment. For that I installed Ubuntu Server 12.10 and I followed this juju Getting Started tutorial. At the step where I run the following command:

    sudo usermod -a -G libvirtd <YOUR_USER>
    

    The error is reported:

    usermod : group 'libvirtd' does not exist
    

    Does someone have ever had this problem and can help me?

    • gertvdijk
      gertvdijk over 11 years
      Welcome to Ask Ubuntu! Do you have Libvirt installed? This system group is being created by the package libvirt-bin if I recall correctly. The steps just above that command will have you install this...
    • lomsansnom
      lomsansnom over 11 years
      No I haven't install libvirt-bin maybe it's the problem. Edit : It works ! Thanks for you quick answer
    • gertvdijk
      gertvdijk over 11 years
      I was reading the guide too quickly for my previous comment. See my answer.
  • David Foerster
    David Foerster over 7 years
    adduser libvirtd won't help with a missing group libvirtd because adduser doesn't create user groups. -1