I have recently switched from windows to ubuntu 14.0.1. Since I am a beginner, I have not much idea regarding ubuntu. I want to install some programs that I use in windows. I have the set ups but I am unable to install them in ubuntu. Please help.
Asked
Active
Viewed 1.0k times
0
1 Answers
1
you could not install a windows programs directly. There are some softwares are available like Wine,Crossover Linux etc.. you can download it from Internet as .deb file and you could install it via terminal using the following command.
To install a downloaded .deb file:
sudo dpkg -i packagename.deb
To remove a installed package:
sudo dpkg -r packagename
Or directly you can install wine via terminal by following commands.
sudo add-apt-repository ppa:ubuntu-wine/ppa
sudo apt-get update
sudo apt-get install wine1.6 winetricks

Suresh C
- 116
wine
. Install it usingsudo apt-get install wine
. – g_p Aug 31 '14 at 06:27sudo apt-get install vlc
. for more details read How do I install applications in Ubuntuapt
) rather than using windows software! – Pandya Aug 31 '14 at 11:40