I have a question concerning vboxshell.py(supplied with the SDK), when I try to change network attachment type to Host-Only, I always get an error. Although I was able to change it into Bridged/NAT/Null/Internal
For HostOnly:
Code: Select all
vbox> nic Ubuntu_VM 0 attachment HostOnly "VirtualBox Host-Only Ethernet Adapater"Code: Select all
dict() -> new empty dictionary
dict(mapping) -> new dictionary initialized from a mapping object's
(key, value) pairs
dict(iterable) -> new dictionary initialized as if via:
d = {}
for k, v in iterable:
d[k] = v
dict(**kwargs) -> new dictionary initialized with the name=value pairs
in the keyword argument list. For example: dict(one=1, two=2)Windows 7(32-bit)
Python 2.7.3 (& PyWin32 installed)
Any suggestion on how to overcome that error?
Thanks!