Created
July 21, 2017 15:23
-
-
Save ztgrace/1adc26892cd2b394bb582caa0539532b to your computer and use it in GitHub Desktop.
Install Rekall on Kali Linux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
apt-get install libncurses-dev | |
pip install virtualenv | |
virtualenv ~/.rekall_env | |
source ~/.rekall_env/bin/activate | |
pip install --upgrade setuptools pip wheel | |
pip install rekall | |
echo 'alias rekal="source ~/.rekall_env/bin/activate; rekall"' >> ~/.bash_aliases |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment