Skip to content

Instantly share code, notes, and snippets.

View bpradipt's full-sized avatar

Pradipta Banerjee bpradipt

View GitHub Profile
@bpradipt
bpradipt / time-buildah-build.sh
Last active June 29, 2023 14:14 — forked from philpoore/time-docker-build.sh
Generate JSON output of buildah build step timing, useful for profiling
#!/bin/bash
# script: time-buildah-build.sh
#
# All command line arguments are passed to buildah build command.
#
# usage: ./time-buildah-build.sh
#
# Acknowledgement: https://gist.github.com/philpoore/05eca572f3aadf70f529c470ac679147
DATE_FORMAT="+%s"
@bpradipt
bpradipt / qemu-qmp.md
Created June 22, 2020 09:59 — forked from rgl/qemu-qmp.md
qemu qmp

QEMU Machine Protocol (QMP) socket

Start QEMU with QMP UNIX socket and connect:

qemu-system-x86_64 -qmp unix:test.socket,server,nowait ...
nc -U test.socket
qmp-shell test.socket    # use the raw qmp interface. see https://github.com/0xef53/qmp-shell
qmp-shell -H test.socket # use the human interface.   see https://github.com/0xef53/qmp-shell