Ubuntu: Install Windows Application using Winetricks
Ubuntu is surely good for end-user operating system but sometimes we still need to have Windows application more. Using Wine, we can run Windows applications in UNIX/LINUX environment. If you are using Ubuntu, installing Wine is just simple if you are using Ubuntu Software Center. Just search for ‘Wine’ and then install.
In order to run Windows application correctly, we need to install some of the Windows-only requirement like .NET Framework, windows-based fonts and some of Windows libraries (dll) file. We can achieve this by using Winetricks, an extension built for Wine to help installing Windows application in a better way (other than manually download and execute).
Variable that I used is:
OS: Ubuntu 10.04 (Lucid)
User: mikey
Wine location: /home/mikey/.wine or ~/.wine
1. Download and install Winetricks:
$ cd ~/Downloads $ wget http://winetricks.org/winetricks $ chmod +x winetricks $ sudo cp winetricks /usr/local/bin |
2. We can browse around on categories that Winetricks could do for us:
$ winetricks apps list $ winetricks benchmarks list $ winetricks dlls list $ winetricks fonts list $ winetricks games list $ winetricks settings list |
3. In this case, I will start by installing .NET Framework 2.0:
$ winetricks dotnet20 |
4. To install many applications, we can run following command:
$ winetricks corefonts vcrun6 mfc40 vb6run msxml6 |
5. To remove all applications which has been installed by Winetricks and re-initialize Wine:
$ rm -Rf ~/.wine $ wineboot |
Related Posts
- Debian – Update Source List
- Solaris: Setting Up Package Manager and Installer
- ELS: Great Server Administration Tool
- CentOS: Install and Configure MongoDB Sharded Cluster
- CentOS: Install MongoDB – The Simple Way
- CentOS: Install OpenLDAP with Webmin – The Simple Way
- Build Low-cost Call Center using Elastix and Asterisk (Part 2)
- Build Low-cost Call Center using Elastix and Asterisk (Part 1)
- Fix Windows MBR using Ubuntu Live CD (USB)
- Install OpenFiler from USB Drive
Sci/Tech – Google News- Microsoft backtracks on Xbox One sharing policies - CNN 19 June 2013
- Privacy Officials From 7 Nations Question Google On Glass' 'Ubiquitous ... - Huffington Post 19 June 2013
- Microsoft talked with Nokia about buying devices unit - Straits Times 19 June 2013
- Stop bickering over climate and act: World Bank - Brisbane Times 19 June 2013
- Cancer-Resistant Naked Mole Rats Make Tumor Blocking Chemicals - Bloomberg 19 June 2013

