1

Help! When I try to install wine from .deb files from Ubuntu Packages I can't because wine1.4-i386.deb and wine1.4-common.deb are cross dependent. One wont install without the other being configured. I have tried installing both at the same time and I get this messsage:

Errors were encountered while processing:

wine1,4-i386.deb

wine1.4-common.deb

gabemai
  • 550

3 Answers3

1

You can try this, First unpack both the packages and then try to configure them:

sudo dpkg --unpack wine1.4-i386.deb wine1.4-common.deb

Then use this command to configure

sudo dpkg --configure -a

Alternatively, you may simply try to setup a local repository with this two package and install them using it.

Hope this answer will help you.

Anwar
  • 76,649
0

Try installing them both at once:

sudo dpkg -i package-a.deb package-b.deb

But why don't you just add the repository it is in? Then use your package manager to install it right out of the repositories resolving all dependencies for you.

gertvdijk
  • 67,947
0

first ake a script file containing the following and place it in a usb drive. (take the quotes out)

#!/bin/sh
wget -c http://ppa.launchpad.net/ubuntu-wine/ppa/ubuntu/pool/main/w/wine-gecko1.7/wine-gecko1.7_1.7-0ubuntu1~ppa1~precise1_i386.deb
wget -c http://ppa.launchpad.net/ubuntu-wine/ppa/ubuntu/pool/main/w/wine-mono0.0.4/wine-mono0.0.4_0.0.4-0ubuntu1~ppa1_all.deb
wget -c http://ppa.launchpad.net/ubuntu-wine/ppa/ubuntu/pool/main/w/wine1.5/wine1.5_1.5.13-0ubuntu1_i386.deb
wget -c http://ppa.launchpad.net/ubuntu-wine/ppa/ubuntu/pool/main/w/wine1.5/wine1.5-i386_1.5.13-0ubuntu1_i386.deb
wget -c http://ppa.launchpad.net/ubuntu-wine/ppa/ubuntu/pool/main/w/winetricks/winetricks_0.0+20120912~precise1~ppa1_i386.deb
wget -c http://gr.archive.ubuntu.com/ubuntu/pool/universe/g/gnome-exe-thumbnailer/gnome-exe-thumbnailer_0.9-0ubuntu1_all.deb
wget -c http://ppa.launchpad.net/ubuntu-wine/ppa/ubuntu/pool/main/w/wine1.5/wine_1.5.13-0ubuntu1_i386.deb

then run the script from the usb of the pc with internet. it will fill it with the required packages. then go the the pc without internet, and open synaptic and then File, Add downloaded packages and select the deb file from your USB.

if you don't have synaptic in the pc without internet, you can install it first

hope it helps, good luck.

Anwar
  • 76,649
bob
  • 1,198