Installing tar.* apps
  1. Copy .tar.* to /opt/
cd Downloads
sudo cp PROGRAM.TAR.* /opt/
  1. Extract and remove compressed file
cd /opt/
sudo tar -xvf PROGRAM.TAR.*
sudo rm -rf PROGRAM.TAR.*
  1. Change mode
sudo chmod 777 PROGRAM(EXTRACT)
  1. To open apps in launcher create link to /usr/bin/
sudo ln -s /opt/PROGRAM(EXT)/ /usr/bin/PROGRAM-NAME