18 lines
487 B
Markdown
18 lines
487 B
Markdown
# host_browser
|
|
|
|
Un canal de communication existe entre la machine virtuelle et le navigateur afin que la VM puisse interagir avec le navigateur.
|
|
La virtio_console est utilisée via le périphérique /dev/hvc0.
|
|
|
|
```
|
|
Usage: host_browser [-h]
|
|
A tool that interacts with the JavaScript engine of the host browser.
|
|
Evaluate JavaScript code from standard input and return the result.
|
|
|
|
ARGUMENTS
|
|
-h | --help: Print help and exit
|
|
|
|
EXAMPLE
|
|
echo "alert('Hello from VM')" | host_browser
|
|
|
|
```
|