将参数传递给VirtualBox MacOS终端

问题描述 投票:0回答:1

尝试将一些参数传递到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命令,我会全力以赴。谢谢!

bash macos shell terminal virtualbox
1个回答
0
投票

经过大约8个小时尝试不同的事情后,终于让它工作了:

VBoxManage guestcontrol "vmname" run /bin/sh --username usr --password pass --verbose --wait-stdout --wait-stderr -- -c "echo test"

© www.soinside.com 2019 - 2024. All rights reserved.