Skip to content

Instantly share code, notes, and snippets.

@yasoob
Last active December 28, 2015 19:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yasoob/bb374278db24a4d58d7b to your computer and use it in GitHub Desktop.
Save yasoob/bb374278db24a4d58d7b to your computer and use it in GitHub Desktop.

Installing Wine 1.8 on Ubuntu 14.04

Wine is a Compatibility layer for running windows applications on Linux and Mac OSX. Instead of simulating internal Windows logic like a virtual machine or emulator, Wine translates Windows API calls into POSIX calls on-the-fly.

In this post I will show you how you can install Wine on Ubuntu 14.04. It is really easy to install it. We will be doing most of our work on the command-line using apt. It is the best and easiest way to add ppas and install pakages in linux.

Adding the PPA:

The first step is to add the ppa to your system. You can easily do this by running the following command:

sudo add-apt-repository ppa:ubuntu-wine/ppa

adding the ppa

Update the packages list:

Now we need to update the packages list. We can do that easily as well. Just type in the following command in the terminal:

sudo apt-get update

updating

Installing Wine:

Now we are on the last step. In this step we will install wine itself. Just type the following commands in the terminal:

sudo apt-get install wine1.8

Checkout this Asciinema cast which I recently made to showcase the whole installation procedure:

img

There you go! Wine is installed! :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment