Skip to content

Instantly share code, notes, and snippets.

@ericzinnikas
Created October 16, 2018 18:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ericzinnikas/d69e66ac6c81e905926359a56e109794 to your computer and use it in GitHub Desktop.
Save ericzinnikas/d69e66ac6c81e905926359a56e109794 to your computer and use it in GitHub Desktop.
Turbinia Ubuntu 18.04 Setup
1. sudo add-apt-repository ppa:gift/stable
1. https://launchpad.net/~gift/+archive/ubuntu/stable
2. sudo apt update
3. wget https://github.com/log2timeline/plaso/releases/download/20180930/plaso-20180930.tar.gz
4. tar zxvf plaso-20180930.tar.gz
5. cd plaso-20180930
6. pip install .
8. sudo apt install redis libewf libewf-tools liblnk python-virtualenv build-essential liblzma-dev python-dev
9. sudo systemctl disable redis-server
10. sudo systemctl stop redis-server
11. sudo apt upgrade
12. virtualenv ~/venv/
13. source ~/venv/bin/activate
14. wget https://gist.githubusercontent.com/ericzinnikas/2494a2d00da1674c5574c09f869c1172/raw/79f472ec41927e22822eee96c9097f43235de354/turbinia_config.py
15. wget https://gist.githubusercontent.com/ericzinnikas/bd16663f1afca764ae373d6c02905179/raw/3ef5b8dd797e894467d504ea020b7b0741eb9272/turbinia_redis.conf
16. redis-server ./turbinia_redis.conf ← start this in one screen/tmux window
17. git clone https://github.com/ericzinnikas/turbinia.git
18. cd turbinia
19. wget https://raw.githubusercontent.com/log2timeline/plaso/master/requirements.txt
20. pip install -r requirements.txt.1
21. pip install .[worker]
22. pip install .[local]
23. turbiniactl --help ← start any workers / server in their own separate screen/tmux windows (or separate terminal window)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment