Commit ef96a6fd by devttys0

Updated INSTALL

parent 34a78a9c
...@@ -36,18 +36,22 @@ INSTALLING DEPENDENCIES ...@@ -36,18 +36,22 @@ INSTALLING DEPENDENCIES
Most binwalk features will work out of the box without any additional dependencies. However, to take full advantage Most binwalk features will work out of the box without any additional dependencies. However, to take full advantage
of binwalk's capabilities, you need to install: of binwalk's capabilities, you need to install:
o pyqtgraph o libmagic
o libfuzzy o libfuzzy
o pyqtgraph
You'll need to install the dependencies for pyqtgraph (you may also need to install OpenGL drivers for your video card):
$ sudo apt-get install libqt4-opengl python-opengl python-qt4 python-qt4-gl python-numpy python-scipy Most Unix systems will already have libmagic installed (it is used by the Unix 'file' utility). If not, you can install
it via your system's package manager:
Most distros don't have pyqtgraph in their default repositories, so it's best to install it from source: $ sudo apt-get install libmagic1
Or install it from source:
$ wget ftp://ftp.astron.com/pub/file/file-5.14.tar.gz
$ tar -zxvf file-5.14.tar.gz
$ cd file-5.14 && ./configure && make && sudo make install
$ wget http://www.pyqtgraph.org/downloads/pyqtgraph-0.9.8.tar.gz
$ tar -zxvf pyqtgraph-0.9.8.tar.gz
$ cd pyqtgraph-0.9.8 && sudo ./setup.py install
For most Debian based distros, libfuzzy can be installed via apt-get: For most Debian based distros, libfuzzy can be installed via apt-get:
...@@ -59,6 +63,17 @@ To install libfuzzy from source, download the gzipped tarball from http://ssdeep ...@@ -59,6 +63,17 @@ To install libfuzzy from source, download the gzipped tarball from http://ssdeep
$ cd ssdeep-2.10 && ./configure && make && sudo make install $ cd ssdeep-2.10 && ./configure && make && sudo make install
You'll need to install the dependencies for pyqtgraph (you may also need to install OpenGL drivers for your video card):
$ sudo apt-get install libqt4-opengl python-opengl python-qt4 python-qt4-gl python-numpy python-scipy
Most distros don't have pyqtgraph in their default repositories, so it's best to install it from source:
$ wget http://www.pyqtgraph.org/downloads/pyqtgraph-0.9.8.tar.gz
$ tar -zxvf pyqtgraph-0.9.8.tar.gz
$ cd pyqtgraph-0.9.8 && sudo ./setup.py install
INSTALLING EXTRACTION UTILITIES INSTALLING EXTRACTION UTILITIES
---------------------------------- ----------------------------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment