diff --git a/INSTALL.md b/INSTALL.md index 171a768..27f2e11 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -71,3 +71,20 @@ Installing the IDA Plugin If IDA is installed on your system, you may optionally install the binwalk IDA plugin by simply copying the `src/scripts/binida.py` file into IDA's `plugins` directory. + +Uninstalling Binwalk +==================== + +If binwalk has been installed to a standard system location (e.g., via `setup.py install`), it can be removed by running: + +```bash +# Python2.7 +$ sudo python setup.py uninstall +``` + +```bash +# Python3 +$ sudo python3 setup.py uninstall +``` + +Note that this does _not_ remove any of the installed dependencies. diff --git a/README.md b/README.md index a4d2778..57c7ae6 100644 --- a/README.md +++ b/README.md @@ -18,9 +18,9 @@ If you're running Python 2.x, you'll also want to install the Python lzma module $ sudo apt-get install python-lzma ``` -For instructions on installing optional dependencies, see `INSTALL.md`. +For instructions on installing optional dependencies, see [INSTALL.md](https://github.com/devttys0/binwalk/blob/master/INSTALL.md). -For advanced installation options, see `INSTALL.md`. +For advanced installation options, see [INSTALL.md](https://github.com/devttys0/binwalk/blob/master/INSTALL.md). Usage ===== @@ -29,6 +29,12 @@ Basic usage is simple: ```bash $ binwalk firmware.bin + +DECIMAL HEXADECIMAL DESCRIPTION +-------------------------------------------------------------------------------- +0 0x0 TRX firmware header, little endian, header size: 28 bytes, image size: 14766080 bytes, CRC32: 0x6980E553 flags: 0x0, version: 1 +28 0x1C LZMA compressed data, properties: 0x5D, dictionary size: 65536 bytes, uncompressed size: 5494368 bytes +2319004 0x23629C Squashfs filesystem, little endian, version 4.0, compression: xz, size: 12442471 bytes, 3158 inodes, blocksize: 131072 bytes, blocksize: 131072 bytes, created: 2014-05-21 22:38:47 ``` For additional examples and descriptions of advanced options, see the [wiki](https://github.com/devttys0/binwalk/wiki).