LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 01-09-2021, 01:57 AM   #1
Tigger@39
LQ Newbie
 
Registered: Jun 2020
Posts: 6

Rep: Reputation: Disabled
How to change Linux Mint 20 from 1386 back to 64 bit


How do I change Linux Mint Cinnamon ver. 20 from 1386 back to 64 bit. It was originally installed as 64 bit, but changed to I386 as instructed in order to work with Wine. Now Win 10 64 bit programs will not work. Is this a catch 22 issue or must I reinstall a new 64 bit Linux OS and if so, where do I get a 64 bit Wine program? Is there a terminal command to reverse the process and go back to a 64 bit OS with a 64 bit Wine?

This is quite a learning process for an old "T" Rex. Have to get off Windows as it is driving me crazy with all the updates that cause older programs to stop working.

Thanks for any help.

Hardtimes
 
Old 01-09-2021, 04:28 AM   #2
hazel
LQ Guru
 
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 7,609
Blog Entries: 19

Rep: Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458
As far as I know, you do not need an i386 installation to run wine; you just need some of the i386 libraries. 64-bit Linux is backwards compatible with 32-bit programs and all modern 64-bit kernels are configured to work with both. A 64-bit Linux with additional 32-bit libraries is called multilib and that's what you need. My advice is to reinstall the 64-bit system and check up on how to make it multilib.

64-bit Debian-based distros used to have a transitional package with a name something like ia32 for installing the basic 32-bit libraries but it's probably changed its name since I used Debian. And don't worry about being old. There are quite a few of us mature citizens around in this forum.

Last edited by hazel; 01-09-2021 at 04:30 AM.
 
1 members found this post helpful.
Old 01-09-2021, 04:45 AM   #3
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,923

Rep: Reputation: 7319Reputation: 7319Reputation: 7319Reputation: 7319Reputation: 7319Reputation: 7319Reputation: 7319Reputation: 7319Reputation: 7319Reputation: 7319Reputation: 7319
would be nice to know how did you switch to i386. I guess you need to install wine64 [only], but without details hard to say more.
 
Old 01-09-2021, 05:11 AM   #4
heathcliff36
Member
 
Registered: Jun 2019
Location: West Coast, USA
Distribution: Debian
Posts: 90

Rep: Reputation: Disabled
Quote:
Originally Posted by Tigger@39 View Post
How do I change Linux Mint Cinnamon ver. 20 from 1386 back to 64 bit. It was originally installed as 64 bit, but changed to I386 as instructed in order to work with Wine. Now Win 10 64 bit programs will not work. Is this a catch 22 issue or must I reinstall a new 64 bit Linux OS and if so, where do I get a 64 bit Wine program?
So if I understand you correctly, you have Linux Mint 20 64bit installed.
How did you change the OS to i386?

Anyhow wine64 for Linux is available for Windows 64bit games.
Here is the link:https://pkgs.org/download/wine64

I find the site rather confusing as there is nothing to download.
However on this page if you scroll all the way to the bottom it simply says do this from terminal:
Code:
# sudo apt-get update
# sudo apt-get install winehq-stable

Quote:
Is there a terminal command to reverse the process and go back to a 64 bit OS with a 64 bit Wine?
Hopefully you won't have to do any of that after installing wine64 from your Mint repo.
 
Old 01-09-2021, 05:31 AM   #5
yancek
LQ Guru
 
Registered: Apr 2008
Distribution: Slackware, Ubuntu, PCLinux,
Posts: 10,534

Rep: Reputation: 2495Reputation: 2495Reputation: 2495Reputation: 2495Reputation: 2495Reputation: 2495Reputation: 2495Reputation: 2495Reputation: 2495Reputation: 2495Reputation: 2495
Quote:
How did you change the OS to i386?
That's the first thing that came to mind when read the post by the OP. He said he changed from 64 to 32 bit 'as instructed' so, where are the instructions? Reverse the process,
 
1 members found this post helpful.
Old 01-09-2021, 06:14 AM   #6
obobskivich
Member
 
Registered: Jun 2020
Posts: 596

Rep: Reputation: Disabled
Quote:
Originally Posted by hazel View Post
As far as I know, you do not need an i386 installation to run wine; you just need some of the i386 libraries. 64-bit Linux is backwards compatible with 32-bit programs and all modern 64-bit kernels are configured to work with both. A 64-bit Linux with additional 32-bit libraries is called multilib and that's what you need. My advice is to reinstall the 64-bit system and check up on how to make it multilib.
Agreed. You don't need to be running an i386 kernel for Wine32 (even if most applications you're likely to run require 32-bit support) - just multilib on the OS and create a 32-bit prefix for your application (technically you can throw 32-bit applications into 64-bit prefixes, and yes I've gotten it to work even with games, but I remember it having the potential to be gnarly for some reason or other, and prefer to just use a 32-bit prefix for x86/i386 apps).

I would probably go for a re-install at this point and then configure for multilib as needed - I'm not familiar with Mint but I know Ubuntu ships multilib out of the box, and other operating systems (like Slackware, PC Linux, etc) make it very easy to add via their repos. I would assume Mint fits into one of those two categories.
 
Old 01-09-2021, 06:41 AM   #7
hazel
LQ Guru
 
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 7,609
Blog Entries: 19

Rep: Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458
Quote:
Originally Posted by obobskivich View Post
I'm not familiar with Mint but I know Ubuntu ships multilib out of the box, and other operating systems (like Slackware, PC Linux, etc) make it very easy to add via their repos. I would assume Mint fits into one of those two categories.
Mint is based on Ubuntu, so should behave the same way. But I think, after reading the first post again, that you'll need to be a bit more explanatory about "prefixes". I didn't get that bit myself so I doubt the OP will.

Last edited by hazel; 01-09-2021 at 06:44 AM.
 
Old 01-09-2021, 10:45 AM   #8
DavidMcCann
LQ Veteran
 
Registered: Jul 2006
Location: London
Distribution: PCLinuxOS, Debian
Posts: 6,142

Rep: Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314
You don't need to do any "reconfiguration for multilib", or anything else for that matter. I've used Wine on PCLinuxOS and Xubuntu. It simply copes (when it does, of course) with the software it's managing and uses 32-bit or 64-bit libraries as appropriate.

If you replaced your 64-bit Mint with a 32-bit one, you need to go back to the 64-bit version. As for Wine, just install the version in the Mint repository.
 
Old 01-09-2021, 12:49 PM   #9
uteck
Senior Member
 
Registered: Oct 2003
Location: Elgin,IL,USA
Distribution: Ubuntu based stuff for the most part
Posts: 1,174

Rep: Reputation: 501Reputation: 501Reputation: 501Reputation: 501Reputation: 501Reputation: 501
I think you mean you configured Wine to be 32-bit, is that correct?
If so, you should look into trying Winetricks or PlayonLinux apps to help configure Wine for apps.
 
Old 01-09-2021, 01:59 PM   #10
Tigger@39
LQ Newbie
 
Registered: Jun 2020
Posts: 6

Original Poster
Rep: Reputation: Disabled
You are correct about configuring Wine to be 32-bit and I have tried the two other suggested programs, but still can't get WMC 8.8.4 to install. I use that program on win 10 plus epg 123 and a hauppauge tuner to be able to watch and record over the air TV programs. Any other thoughts?

Thanks,
 
Old 01-09-2021, 02:02 PM   #11
Tigger@39
LQ Newbie
 
Registered: Jun 2020
Posts: 6

Original Poster
Rep: Reputation: Disabled
I only configured Wine as i386 architecture, but can't get WMC 8.8.4 to install.
 
Old 01-09-2021, 02:11 PM   #12
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,923

Rep: Reputation: 7319Reputation: 7319Reputation: 7319Reputation: 7319Reputation: 7319Reputation: 7319Reputation: 7319Reputation: 7319Reputation: 7319Reputation: 7319Reputation: 7319
I told you. That won't work: https://www.linuxquestions.org/quest...-a-4175688279/
Opening a new thread won't solve it. WMC is a windows only software.
 
Old 01-09-2021, 02:39 PM   #13
jmgibson1981
Senior Member
 
Registered: Jun 2015
Location: Tucson, AZ USA
Distribution: Debian
Posts: 1,141

Rep: Reputation: 392Reputation: 392Reputation: 392Reputation: 392
There are plenty of better (usually) alternatives for what you are looking for than WMC.
 
Old 01-09-2021, 04:54 PM   #14
teckk
LQ Guru
 
Registered: Oct 2004
Distribution: Arch
Posts: 5,141
Blog Entries: 6

Rep: Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828
Quote:
a hauppauge tuner to be able to watch and record over the air TV programs.
Isn't there any support in the kernel for that tv tuner? What device is it?
 
Old 01-09-2021, 06:34 PM   #15
obobskivich
Member
 
Registered: Jun 2020
Posts: 596

Rep: Reputation: Disabled
Quote:
Originally Posted by hazel View Post
Mint is based on Ubuntu, so should behave the same way. But I think, after reading the first post again, that you'll need to be a bit more explanatory about "prefixes". I didn't get that bit myself so I doubt the OP will.

Sorry about that - it was late. Guide: https://www.techilife.com/how-to-mak...ixes-on-linux/

The prefix has to be created with
Code:
WINEARCH=win32
Is basically the point. It is possible (and in some cases even encouraged) to have multiple prefixes on the same system, depending on what you are installing. If you're dealing with games it may be worth looking into Lutris or PlayOnLinux which automate some of this with pre-built scripts (which are also FOSS and can be reviewed before you run them, and sometimes just seeing what other folks got working is enough to help you figure out how to get unstuck without running the entire thing).
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Installing 32 bit RPMs on 64 bit Linux conflicts with 64 bit packages gheibia Linux - Server 1 08-18-2011 01:33 AM
Problem Build NAT-PT in Fedora 12 with naptd 0.4-1.1386 Kezma Linux - Newbie 0 07-08-2010 12:40 PM
64-bit or 32-bit Application on 64-bit Linux jjana123 Linux - General 4 05-06-2008 05:27 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 10:44 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration