Hey Alexey,

Thank you for the response. I may have worded my question poorly. I think I
understand that VBoxManage is a single user process, but I don't see why
that would prevent someone from writing a utility that would help a system
administrator to manage multiple VirtualBox users on a network. For
example, if I'm not mistaken, something like the following bash script
should list all of the virtual machines registered by users on a single
host:

#!/bin/bash

for user in /home/*; do
    user=$(basename ${user})
    echo "${user}:"
    sudo -u "${user}" bash -c '/usr/bin/vboxmanage list vms'
    echo
done

Moreover I know that there are, for example, web based interfaces which are
used for remote systems administration (although I haven't used any); I was
thinking that it might be the case that similar tools exist for VirtualBox.
I apologize if my question is naive; I'm fairly new to this.

Cheers,
Itamar

On Wed, Apr 22, 2015 at 10:25 AM, Alexey Eromenko <al4...@gmail.com> wrote:

> Nope. VBoxManage (and it's backend, VBoxSVC) - are single-user processes.
>
> On Wed, Apr 22, 2015 at 6:14 PM, Itamar Gal <itamarg...@gmail.com> wrote:
> > Hey vbox-users,
> >
> > Are there any interfaces which can manage and/or monitor the virtualbox
> > usage of multiple accounts on a single host machine or possibly even
> > multiple hosts on a network? For example, it'd be nice to be able to type
> > 'vboxmanage list vms' and get a list of all the virtual machines for each
> > user on the host. Any suggestions would be greatly appreciated.
> >
> > Cheers,
> > Itamar
> >
> >
> ------------------------------------------------------------------------------
> > BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
> > Develop your own process in accordance with the BPMN 2 standard
> > Learn Process modeling best practices with Bonita BPM through live
> exercises
> > http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual-
> event?utm_
> > source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
> > _______________________________________________
> > VBox-users-community mailing list
> > VBox-users-community@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/vbox-users-community
> > _______________________________________________
> > Unsubscribe:
> > mailto:vbox-users-community-requ...@lists.sourceforge.net
> ?subject=unsubscribe
> >
>
>
>
> --
> -Alexey Eromenko "Technologov"
>
>
> ------------------------------------------------------------------------------
> BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
> Develop your own process in accordance with the BPMN 2 standard
> Learn Process modeling best practices with Bonita BPM through live
> exercises
> http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual-
> event?utm_
> source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
> _______________________________________________
> VBox-users-community mailing list
> VBox-users-community@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/vbox-users-community
> _______________________________________________
> Unsubscribe:  mailto:vbox-users-community-requ...@lists.sourceforge.net
> ?subject=unsubscribe
>
------------------------------------------------------------------------------
BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
Develop your own process in accordance with the BPMN 2 standard
Learn Process modeling best practices with Bonita BPM through live exercises
http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_
source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
_______________________________________________
VBox-users-community mailing list
VBox-users-community@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/vbox-users-community
_______________________________________________
Unsubscribe:  
mailto:vbox-users-community-requ...@lists.sourceforge.net?subject=unsubscribe

Reply via email to