尝试将一些参数传递到MacOS VirtualBox VM上的终端(来自Windows 10主机)。我可以让终端正确启动,但参数不起作用。
"C:\Program Files\Oracle\VirtualBox\VBoxManage.exe" guestcontrol "MacOS High Sierra New" run "/Applications/Utilities/Terminal.app/Contents/MacOS/Terminal" --username justin --password password --wait-stdout --"/c echo test"
我错过了一面旗帜吗?另外,如果有更好的方法在VM中运行shell命令,我会全力以赴。谢谢!
经过大约8个小时尝试不同的事情后,终于让它工作了:
VBoxManage guestcontrol "vmname" run /bin/sh --username usr --password pass --verbose --wait-stdout --wait-stderr -- -c "echo test"