From 5c0d210fe6314f01df3a656e3c6974cfcfaa3ce0 Mon Sep 17 00:00:00 2001 From: Taylor Hornby Date: Tue, 8 Oct 2019 13:49:10 -0600 Subject: [PATCH 1/2] Fix package name for perf utility. --- docker/install-basics.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/install-basics.sh b/docker/install-basics.sh index 49f2587..e468e84 100755 --- a/docker/install-basics.sh +++ b/docker/install-basics.sh @@ -8,7 +8,7 @@ apt-get update apt-get -y upgrade apt-get install -y software-properties-common curl git htop man unzip vim wget ack net-tools # Debugging tools -apt-get install -y gdb strace tcpdump linux-perf xxd bsdmainutils +apt-get install -y gdb strace tcpdump linux-tools-common linux-tools-generic xxd bsdmainutils # Shell customizations. # Enable core dumps. From f87c441cd0993c1f4285d321c8fd3a60d8466f50 Mon Sep 17 00:00:00 2001 From: Taylor Hornby Date: Tue, 8 Oct 2019 14:37:03 -0600 Subject: [PATCH 2/2] Remove perf stuff, which won't work since it's docker. --- docker/install-basics.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/install-basics.sh b/docker/install-basics.sh index e468e84..1688338 100755 --- a/docker/install-basics.sh +++ b/docker/install-basics.sh @@ -8,7 +8,7 @@ apt-get update apt-get -y upgrade apt-get install -y software-properties-common curl git htop man unzip vim wget ack net-tools # Debugging tools -apt-get install -y gdb strace tcpdump linux-tools-common linux-tools-generic xxd bsdmainutils +apt-get install -y gdb strace tcpdump xxd bsdmainutils # Shell customizations. # Enable core dumps.