Skip to content

Instantly share code, notes, and snippets.

@khale
Last active June 27, 2018 00:42
Show Gist options
  • Save khale/fd5dbb11075265c71fdeec6e42d583e6 to your computer and use it in GitHub Desktop.
Save khale/fd5dbb11075265c71fdeec6e42d583e6 to your computer and use it in GitHub Desktop.
Nautilus tmux qemu run demo
EMU_CMD="qemu-system-x86_64 -cdrom nautilus.iso -m 1G -nographic -serial stdio -monitor telnet:127.0.0.1:1234,server,nowait"
# launch qemu and the monitor in separate panes
tmux new-session -d 'nautilus-demo' \; split-window -c $PWD -h -d $EMU_CMD \; split-window -c $PWD -v -d 'sleep 2; telnet 127.0.0.1 1234' \; attach
##
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment