box-o-sand/lcthw-remnants/ex4.sh
Dan Buch f2380eef05 Add 'lcthw-remnants/' from commit 'e172f73c8297b22a579c94558f0c171ca74a0e5c'
git-subtree-dir: lcthw-remnants
git-subtree-mainline: 4107485591
git-subtree-split: e172f73c82
2013-01-09 23:42:19 -05:00

21 lines
404 B
Bash

# 1) Download it (use wget if you don't have curl)
curl -O http://valgrind.org/downloads/valgrind-3.7.0.tar.bz2
# use md5sum to make sure it matches the one on the site
md5sum valgrind-3.7.0.tar.bz2
# 2) Unpack it.
tar -xjvf valgrind-3.7.0.tar.bz2
# cd into the newly created directory
cd valgrind-3.7.0
# 3) configure it
./configure
# 4) make it
make
# 5) install it (need root)
sudo make install