From 8b311eafa7f32ebcae67cdf5e16aa1ab3fc77e7f Mon Sep 17 00:00:00 2001 From: Kees Cook Date: Tue, 2 Oct 2018 16:38:40 -0700 Subject: docs: Update package names for modern Ubuntu The package names for perf and qemu are out of date. This updates them. --- docs/linux/setup_ubuntu-host_qemu-vm_x86-64-kernel.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/linux') diff --git a/docs/linux/setup_ubuntu-host_qemu-vm_x86-64-kernel.md b/docs/linux/setup_ubuntu-host_qemu-vm_x86-64-kernel.md index 5ab2a307f..d707905f7 100644 --- a/docs/linux/setup_ubuntu-host_qemu-vm_x86-64-kernel.md +++ b/docs/linux/setup_ubuntu-host_qemu-vm_x86-64-kernel.md @@ -126,7 +126,7 @@ sudo chroot stretch /bin/bash -c "cd ~/trinity-1.5 ; ./configure.sh ; make -j16 To install perf (not required to run syzkaller): ``` bash cp -r $KERNEL stretch/tmp/ -sudo chroot stretch /bin/bash -c "apt-get update; apt-get install -y flex bison python-dev libelf-dev libunwind7-dev libaudit-dev libslang2-dev libperl-dev binutils-dev liblzma-dev libnuma-dev" +sudo chroot stretch /bin/bash -c "apt-get update; apt-get install -y flex bison python-dev libelf-dev libunwind8-dev libaudit-dev libslang2-dev libperl-dev binutils-dev liblzma-dev libnuma-dev" sudo chroot stretch /bin/bash -c "cd /tmp/linux/tools/perf/; make" sudo chroot stretch /bin/bash -c "cp /tmp/linux/tools/perf/perf /usr/bin/" rm -r stretch/tmp/linux @@ -136,7 +136,7 @@ rm -r stretch/tmp/linux Install `QEMU`: ``` bash -sudo apt-get install kvm qemu-kvm +sudo apt-get install qemu-system-x86 ``` Make sure the kernel boots and `sshd` starts: -- cgit mrf-deployment