Merge pull request #10 from zcash-hackworks/debug-tools

Add debugging tools and enable core dumps.
This commit is contained in:
Taylor Hornby 2019-10-08 13:35:06 -06:00 committed by GitHub
commit 2dfa3812d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -7,3 +7,9 @@ sed -i 's/# \(.*multiverse$\)/\1/g' /etc/apt/sources.list
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
# Shell customizations.
# Enable core dumps.
echo "ulimit -c unlimited" >> /root/.bashrc