Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ This assumes you are running on a Ubuntu system.
Install some host side utilities

```
sudo apt update
sudo apt install -y \
sudo apt-get update
sudo apt-get install -y --no-install-recommends \
iperf3 \
jq \
hwloc-nox
Expand Down
8 changes: 5 additions & 3 deletions prep/qemu/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
FROM ubuntu:18.04

RUN apt update && \
apt install -y \
RUN apt-get update && \
apt-get install -y --no-install-recommends \
apt-utils \
ca-certificates \
build-essential \
git \
libtool \
Expand Down Expand Up @@ -76,7 +78,7 @@ RUN ./configure \

RUN make -j "$(getconf _NPROCESSORS_ONLN)"

RUN apt install -y seabios
RUN apt-get install -y --no-install-recommends seabios

RUN mkdir -p /res/bios && \
cp x86_64-softmmu/qemu-system-x86_64 /res && \
Expand Down