How to install a clean 32 bit WineHQ into a 64 bit Ubuntu
I use UbuntuStudio 18.04.1 LTS and I still use three 32 bit days Windows Software through WineHQ 3.0.4.
Even the fact that 64 bit WineHQ can run those programs almost fine... There is some issues (audio noise, stuttering, etc).
I guess, only guess, it is due because WineHQ is always installed to work as 64 bit mode Windows, but those apps were made in the age of 32 bit, so...
I've been looking for some easy instructions to install, from the scratch, a clean 32 bit mode WineHQ, but... The "instructions" are not enough clear to me.
Can somebody teach me how to get that 32 bit clean installation, please?
wine 32-bit
add a comment |
I use UbuntuStudio 18.04.1 LTS and I still use three 32 bit days Windows Software through WineHQ 3.0.4.
Even the fact that 64 bit WineHQ can run those programs almost fine... There is some issues (audio noise, stuttering, etc).
I guess, only guess, it is due because WineHQ is always installed to work as 64 bit mode Windows, but those apps were made in the age of 32 bit, so...
I've been looking for some easy instructions to install, from the scratch, a clean 32 bit mode WineHQ, but... The "instructions" are not enough clear to me.
Can somebody teach me how to get that 32 bit clean installation, please?
wine 32-bit
add a comment |
I use UbuntuStudio 18.04.1 LTS and I still use three 32 bit days Windows Software through WineHQ 3.0.4.
Even the fact that 64 bit WineHQ can run those programs almost fine... There is some issues (audio noise, stuttering, etc).
I guess, only guess, it is due because WineHQ is always installed to work as 64 bit mode Windows, but those apps were made in the age of 32 bit, so...
I've been looking for some easy instructions to install, from the scratch, a clean 32 bit mode WineHQ, but... The "instructions" are not enough clear to me.
Can somebody teach me how to get that 32 bit clean installation, please?
wine 32-bit
I use UbuntuStudio 18.04.1 LTS and I still use three 32 bit days Windows Software through WineHQ 3.0.4.
Even the fact that 64 bit WineHQ can run those programs almost fine... There is some issues (audio noise, stuttering, etc).
I guess, only guess, it is due because WineHQ is always installed to work as 64 bit mode Windows, but those apps were made in the age of 32 bit, so...
I've been looking for some easy instructions to install, from the scratch, a clean 32 bit mode WineHQ, but... The "instructions" are not enough clear to me.
Can somebody teach me how to get that 32 bit clean installation, please?
wine 32-bit
wine 32-bit
asked Jan 7 at 19:55
JuanJuan
5224826
5224826
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Wine will start an 64-bit environment by default. You can change this behavior using the WINEARCH
environment variable. Rename your ~/.wine
directory and create a new Wine environment by running $ WINEARCH=win32 winecfg
. This will get you a 32-bit Wine environment. Not setting WINEARCH
will get you a 64-bit one.
You can combine this with WINEPREFIX
to make a separate win32 and win64 environment:
$ WINEARCH=win32 WINEPREFIX=~/win32 winecfg
$ WINEPREFIX=~/win64 winecfg
Additional info you can find, for example, here: Wine ArchWiki
I will test your idea. But.. I wonder... Why the user has to do this??? Shouldn't Wine to detect which software needs 32 bit and which needs 64 bits automatically, and perform the mode "switch" in a silent ,invisible way?
– Juan
Jan 9 at 22:35
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1107806%2fhow-to-install-a-clean-32-bit-winehq-into-a-64-bit-ubuntu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Wine will start an 64-bit environment by default. You can change this behavior using the WINEARCH
environment variable. Rename your ~/.wine
directory and create a new Wine environment by running $ WINEARCH=win32 winecfg
. This will get you a 32-bit Wine environment. Not setting WINEARCH
will get you a 64-bit one.
You can combine this with WINEPREFIX
to make a separate win32 and win64 environment:
$ WINEARCH=win32 WINEPREFIX=~/win32 winecfg
$ WINEPREFIX=~/win64 winecfg
Additional info you can find, for example, here: Wine ArchWiki
I will test your idea. But.. I wonder... Why the user has to do this??? Shouldn't Wine to detect which software needs 32 bit and which needs 64 bits automatically, and perform the mode "switch" in a silent ,invisible way?
– Juan
Jan 9 at 22:35
add a comment |
Wine will start an 64-bit environment by default. You can change this behavior using the WINEARCH
environment variable. Rename your ~/.wine
directory and create a new Wine environment by running $ WINEARCH=win32 winecfg
. This will get you a 32-bit Wine environment. Not setting WINEARCH
will get you a 64-bit one.
You can combine this with WINEPREFIX
to make a separate win32 and win64 environment:
$ WINEARCH=win32 WINEPREFIX=~/win32 winecfg
$ WINEPREFIX=~/win64 winecfg
Additional info you can find, for example, here: Wine ArchWiki
I will test your idea. But.. I wonder... Why the user has to do this??? Shouldn't Wine to detect which software needs 32 bit and which needs 64 bits automatically, and perform the mode "switch" in a silent ,invisible way?
– Juan
Jan 9 at 22:35
add a comment |
Wine will start an 64-bit environment by default. You can change this behavior using the WINEARCH
environment variable. Rename your ~/.wine
directory and create a new Wine environment by running $ WINEARCH=win32 winecfg
. This will get you a 32-bit Wine environment. Not setting WINEARCH
will get you a 64-bit one.
You can combine this with WINEPREFIX
to make a separate win32 and win64 environment:
$ WINEARCH=win32 WINEPREFIX=~/win32 winecfg
$ WINEPREFIX=~/win64 winecfg
Additional info you can find, for example, here: Wine ArchWiki
Wine will start an 64-bit environment by default. You can change this behavior using the WINEARCH
environment variable. Rename your ~/.wine
directory and create a new Wine environment by running $ WINEARCH=win32 winecfg
. This will get you a 32-bit Wine environment. Not setting WINEARCH
will get you a 64-bit one.
You can combine this with WINEPREFIX
to make a separate win32 and win64 environment:
$ WINEARCH=win32 WINEPREFIX=~/win32 winecfg
$ WINEPREFIX=~/win64 winecfg
Additional info you can find, for example, here: Wine ArchWiki
answered Jan 7 at 22:43
GannetGannet
1177
1177
I will test your idea. But.. I wonder... Why the user has to do this??? Shouldn't Wine to detect which software needs 32 bit and which needs 64 bits automatically, and perform the mode "switch" in a silent ,invisible way?
– Juan
Jan 9 at 22:35
add a comment |
I will test your idea. But.. I wonder... Why the user has to do this??? Shouldn't Wine to detect which software needs 32 bit and which needs 64 bits automatically, and perform the mode "switch" in a silent ,invisible way?
– Juan
Jan 9 at 22:35
I will test your idea. But.. I wonder... Why the user has to do this??? Shouldn't Wine to detect which software needs 32 bit and which needs 64 bits automatically, and perform the mode "switch" in a silent ,invisible way?
– Juan
Jan 9 at 22:35
I will test your idea. But.. I wonder... Why the user has to do this??? Shouldn't Wine to detect which software needs 32 bit and which needs 64 bits automatically, and perform the mode "switch" in a silent ,invisible way?
– Juan
Jan 9 at 22:35
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1107806%2fhow-to-install-a-clean-32-bit-winehq-into-a-64-bit-ubuntu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown