droidlysis command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
droidlysis: command not found
or when using sudo you get the following error message
sudo: droidlysis: command not found
Solutions to droidlysis: command not found
How To Fix droidlysis: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu droidlysis is provided by droidlysis package.
droidlysis is:
DroidLysis is a property extractor for Android apps. It automatically disassembles the Android application you provide and looks for various properties within the package or its disassembly. DroidLysis can be used over Android packages (apk), Dalvik executables (dex), Zip files (zip), Rar files (rar) or directories of files.
DroidLysis outputs:
- A summary on the console
- The unzipped, pre-processed sample in a subdirectory of your output dir. The subdirectory is named using the sample’s filename and sha256 sum.
- A database (by default, SQLite droidlysis.db) containing properties it noticed.
DroidLysis can optionally use dex2jar to provide more information. It is free software but not currently in Debian, and must be separately downloaded into ~/.local/share/droidlysis.
To fix this problem, we can install more using the command below.
sudo apt-get -y install droidlysis
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install droidlysis.
sudo apt -y install droidlysis
Or if you have aptitude installed you can use the following command.
sudo aptitude install droidlysis
Summary
In this tutorial we learn how to fix droidlysis command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.