32bit lxc container help!

Questions about Wine on Linux
Locked
liamwilt
Newbie
Newbie
Posts: 1
Joined: Fri Jan 02, 2015 5:06 pm

32bit lxc container help!

Post by liamwilt »

In this link: http://wiki.winehq.org/WineOn64bit

Under subheading "lxc container", my problems began with the 6th block of code, shown here:

Code: Select all

sudo apt-get install software-properties-common
sudo add-apt-repository ppa:ubuntu-wine/ppa
sudo apt-get update
sudo apt-get build-dep wine   # or, if that fails, sh install-wine-deps.sh
cd $HOME
mkdir wine32
cd wine32
~/wine-git/configure
make -j4
On the 4th command, neither

Code: Select all

build-dep wine
nor

Code: Select all

sh install-wine-deps.sh
worked. Instead, I used

Code: Select all

sudo apt-get build-dep wine1.6
. This worked nicely. Following that, I created the "wine32" directory, entered it, and then became confused as to the next step. No "/wine-get/configure" directory exists within wine32 at this stage, so I do not know what the

Code: Select all

make -j4
is in reference to.

Could someone please walk me through those final, seemingly small steps? There is no particular error to report. I'm just not sure how to proceed as the previous instructions were quite literal.

Thank you all for your help! (Pardon if the issue seems silly)
spoon0042
Level 6
Level 6
Posts: 572
Joined: Thu Dec 24, 2009 11:00 am

Re: 32bit lxc container help!

Post by spoon0042 »

I think it's assuming you have a git pull of wine in ~/wine-git. (The ~ expands to your home directory.) I don't know why it doesn't mention that, but I copied this from another part of that page:

Code: Select all

apt-get install git
git clone git://source.winehq.org/git/wine ~/wine-git
You'll also want to do a 'sudo apt-get build-dep wine1.7' just in case, 1.6 is getting old at this point and the requirements may have changed.
Then 'make -j4' is the command to actually build wine after configure is finished. (The -j4 tells it to run 4 processes at once, you can change it to whatever is appropriate.)

Hopefully that will get you a bit further. :)
Locked