I have just installed ubuntu 16 along with window 7 and also new for ubuntu. I have downloaded some software with .zip, .tar and .exe format which are in downloads folder. Kindly suggest me how to install them from command line.
Asked
Active
Viewed 1,958 times
-4
1 Answers
0
That's how you used to install stuff when using windows but not how software is typically installed on most linux systems.
Similar to android or osx, software is typically installed using the Ubuntu Software Center (equivalent: google play) or use apt-get
on the command line. Software is not typically downloaded and then installed unless completely unavailable through the Ubuntu Software Center or apt-get
Also, these commands help:
sudo apt-get update
apt list
apt-cache search somesearchterm
Replace somesearchterm with an actual search term.

mchid
- 43,546
- 8
- 97
- 150
.exe
files, you need to use Wine. See http://askubuntu.com/questions/988/how-can-i-install-windows-software-or-games. – edwinksl Aug 17 '16 at 06:08