ARCH 32 vs 64 confusion

Questions about Wine on Linux
Locked
WallyZ
Level 1
Level 1
Posts: 8
Joined: Fri Nov 01, 2013 3:10 am

ARCH 32 vs 64 confusion

Post by WallyZ »

Unbuntu 12.04 LTS, WINE 1.7.4 Wintricks

I'm trying to install LABSIM which requires dotnet35.

I have performed my dotnet install using:

$ env WINEARCH=~/.win32 WINEPREFIX=~/.win32 winetricks dotnet35

I then attempt to install LABSIM client

$ ENV WINEPREFIX=~/.win32 wine LabsimClientSetup.exe

I get the not enough disk space error (believe me I have plenty).

$ df -h ~/.win32
Filesystem Size Used Avail Use% Mounted on
/dev/sda1 145G 25G 113G 18% /

I have tried setting the ~/.win32 bit winecfg to Windows98 but this did not change anything!

If I try to install the labsim client to a 64 bit ARCH the install works, however there 64 bit install does not support dotnet35 so the app doesn't run!

So I can't install LABSIM to 32 bit and I can't install dotnet35 to 64! Never the two shall meet!!!

I guess I'm stuck!!!

Any ideas.
WallyZ
Level 1
Level 1
Posts: 8
Joined: Fri Nov 01, 2013 3:10 am

Re: ARCH 32 vs 64 confusion

Post by WallyZ »

Disregard. I got LABSIM to install. I installed another application (All Free DVD to MP4 convertor) to see if it was a general problem but that worked and after that when I retested LABSIM that behaved as well.

I must have made a typo or something!
User avatar
dimesio
Moderator
Moderator
Posts: 13208
Joined: Tue Mar 25, 2008 10:30 pm

Re: ARCH 32 vs 64 confusion

Post by dimesio »

WINEARCH is an environment variable, not a directory. Your command line should read

Code: Select all

WINEARCH=win32
not

Code: Select all

WINEARCH=~/.win32
Locked