Skip to content

Linux Mint Tips#

Install Softwares And Tools#

Postman#

  • Download Postman
1
wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz
  • Extract archive
1
 sudo tar -xzf postman.tar.gz -C /opt
  • Make symlink
1
sudo ln -s /opt/Postman/Postman /usr/bin/postman
  • Remove downloaded file
1
rm postman.tar.gz
  • Make Desktop icon:
  • Firstly, create desktop file using command below
1
sudo gedit /usr/share/applications/postman.desktop
  • Then paste the content below into that file and save it.
1
2
3
4
5
6
7
[Desktop Entry]
Type=Application
Name=Postman
Icon=/opt/Postman/app/resources/app/assets/icon.png
Exec="/opt/Postman/Postman"
Comment=Postman Desktop App
Categories=Development;Code;

Install SSH#

  • Install ssh server and client.
1
sudo apt install ssh