Add debugging tools and enable core dumps.

This commit is contained in:
Taylor Hornby 2019-10-08 13:33:36 -06:00
parent 1cb522e4d3
commit de5ce9fc9c
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