Seth Michael Larson

Results 530 comments of Seth Michael Larson

@dr0ndv I'd like to support v6.1.2 still, however `virtualbox/library.py` is generated completely from the upstream API spec so we can only do so much. Any changes we want to do...

Have you tried substituting `IMachine(machine)` for `self.vbox.find_machine(machine)`?

Have you tried installing from a multi-distro package? download.virtualbox.org/virtualbox/6.0.10/VirtualBox-6.0.10-132072-Linux_amd64.run

Are you using a different Virtualbox and Virtualbox SDK versions? Maybe that's the issue, try updating the SDK.

Thanks for submitting this report! Can you maybe set a breakpoint within the `GuestSession.execute()` function and see where it's getting hung up?

Can you try `execute(..., flags=[virtualbox.library.ProcessCreateFlag.wait_for_std_out, virtualbox.library.ProcessCreateFlag.ignore_orphaned_processes])`? Might be waiting for stderr that will never write anything?

I think I ran into this issue a while ago and ended up writing my own `execute()` function. I'll see if I can find the code...

Looks like I can't find it. I would try looking at the `ProcessCreateFlag.wait_for_process_start_only` and try running that process asynchronously.

I'll have to look into this issue, there are currently no fixes available. The best way to handle it would probably be replicating the code within `GuestSession.execute()` with specific flags...

Thanks for opening this issue, I'll take a quick look at the 5.2.4 SDK. Could you describe how you're running these commands (virtualenv, system Python?) and how you installed your...