Postman installation in Kali Linux
Postman is the Google chrome app for interacting with HTTP APIs. It give a user friendly interactive environment for creating request and reading responses.
Earlier, this app was an extension for the Google Chrome web browser. But as the popularity of this app increased, and more features were getting introduced in this application, its Google Chrome extension was deprecated for the Native desktop app.
If you are a debian user like us, then the below steps could help you with the installation,
- Open the Terminal
- Download Postman for Kali GNU/Linux
- Extract them to a temp directory,
1
tar xvzf ~/Downloads/Postman*.tar.gz -C /tmp/
- First setup super user as owner,
1
sudo chown -R root:root /tmp/Postman
- Then relocate it,
1
sudo mv /tmp/Postman /opt/
- Make a symlink for easy launching on shell
1
sudo ln -s /opt/Postman/app/Postman /usr/local/bin/Postman
Finally start and enjoy Postman app in Kali Linux. From shell simply type in
Hope this information is helpful !!