I tried to install wine from terminal i this is what i got:
liquid@liquid-desktop:~$ sudo apt-get install wine
[sudo] password for liquid:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
wine : Depends: wine1.6 but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
sudo apt-get install -f
should force the software to install its dependancies. – Simon Jun 26 '13 at 15:03sudo apt-get clean && sudo apt-get update && sudo apt-get upgrade
before trying to install Wine, see if it solves the problem. – edwin Jun 26 '13 at 15:20