LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 09-18-2021, 02:31 AM   #1
Hvlios
Member
 
Registered: Mar 2020
Posts: 32

Rep: Reputation: Disabled
Need help installing WIne


Im trying to install wine and its giving me an error about dependecies.
This is what its saying in terminal, im watching a tutorial and did what he did but I got an error?
https://i.imgur.com/z8cIxuB.png
 
Old 09-18-2021, 05:42 AM   #2
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,252

Rep: Reputation: 2321Reputation: 2321Reputation: 2321Reputation: 2321Reputation: 2321Reputation: 2321Reputation: 2321Reputation: 2321Reputation: 2321Reputation: 2321Reputation: 2321
"You have created an impossible situation…" is the error I see.

Where most people fall down is that in Debian etc wine comes in 32 & 64 bit flavours. Wine translates windows 64 bit library calls to Posix ones and 32 bit lib calls to 32bit posix ones. On slackware64, with 64bit libraries in /usr/lib64 and 32bit in /usr/lib, that's ok, and I can install 32bit compatibility libs. But distros using apt are an awful lot messier, because 32+64 bit libs go in /usr/lib.

There is a lib, symlinked to /lib/ld-linux.so which is used by nearly every program on the system. In slackware64, I have /lib64/ld-linux.so(64bit) and /lib/ld-linux.so(32bit). But you can't do that.

Use file to find out
  • Are your windows programs 32bit or 64 bit?
  • Is your wine 32/64 bit?
  • Is your distro 32/64 bit?

You can install a 32bit distro on a 64bit system if you have space, or consult your distro to see if there's a work around.

Last edited by business_kid; 09-18-2021 at 05:43 AM.
 
Old 09-18-2021, 11:26 AM   #3
DavidMcCann
LQ Veteran
 
Registered: Jul 2006
Location: London
Distribution: PCLinuxOS, Debian
Posts: 6,137

Rep: Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314
The question is, how are you installing Wine and in what distro? If you are using Ubuntu, you should follow these instructions install Wine
 
Old 09-18-2021, 12:03 PM   #4
Hvlios
Member
 
Registered: Mar 2020
Posts: 32

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by DavidMcCann View Post
The question is, how are you installing Wine and in what distro? If you are using Ubuntu, you should follow these instructions install Wine
Im on Linux Mint. I watched a tutorial and just followed what he did
 
Old 09-18-2021, 12:05 PM   #5
Hvlios
Member
 
Registered: Mar 2020
Posts: 32

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by DavidMcCann View Post
The question is, how are you installing Wine and in what distro? If you are using Ubuntu, you should follow these instructions install Wine
is that tutorial for 64 bit or what would i change in the command for 64 bit?
 
Old 09-18-2021, 12:15 PM   #6
Hvlios
Member
 
Registered: Mar 2020
Posts: 32

Original Poster
Rep: Reputation: Disabled
ill follow that link to install it. thanks ill let u know if it worked
 
Old 09-18-2021, 12:24 PM   #7
Hvlios
Member
 
Registered: Mar 2020
Posts: 32

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by Hvlios View Post
ill follow that link to install it. thanks ill let u know if it worked


warning: Architecture i38 not defined in architecture tables, ignored
??
 
Old 09-18-2021, 12:39 PM   #8
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,252

Rep: Reputation: 2321Reputation: 2321Reputation: 2321Reputation: 2321Reputation: 2321Reputation: 2321Reputation: 2321Reputation: 2321Reputation: 2321Reputation: 2321Reputation: 2321
i38 is very probably i386, or 32bit. Sorry for your troubles.

Incidentally, the majority of windows software is still 32bit.
 
Old 09-18-2021, 04:36 PM   #9
boughtonp
Senior Member
 
Registered: Feb 2007
Location: UK
Distribution: Debian
Posts: 3,597

Rep: Reputation: 2545Reputation: 2545Reputation: 2545Reputation: 2545Reputation: 2545Reputation: 2545Reputation: 2545Reputation: 2545Reputation: 2545Reputation: 2545Reputation: 2545
Quote:
Originally Posted by Hvlios View Post
im watching a tutorial and did what he did but I got an error?
Quote:
Originally Posted by Hvlios View Post
Im on Linux Mint. I watched a tutorial and just followed what he did
Saying "I watched a tutorial" doesn't tell anyone anything.

You need to identify which tutorial - i.e. post the URL - and say what stage you got to (and if there are optional steps involved, which ones you performed/skipped).

(Also, whenever possible, copy and paste text instead of posting a screenshot of text.)

 
Old 09-19-2021, 12:10 AM   #10
Hvlios
Member
 
Registered: Mar 2020
Posts: 32

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by boughtonp View Post
Saying "I watched a tutorial" doesn't tell anyone anything.

You need to identify which tutorial - i.e. post the URL - and say what stage you got to (and if there are optional steps involved, which ones you performed/skipped).

(Also, whenever possible, copy and paste text instead of posting a screenshot of text.)

I watched this one so i could do lutris steam and everything else. https://www.youtube.com/watch?v=_CyCQdPhPYU
 
Old 09-19-2021, 08:40 AM   #11
lovemeslk
Member
 
Registered: Feb 2020
Location: Rantoul IL
Distribution: Slackware
Posts: 350

Rep: Reputation: 72
First sync your system with the repo's
Code:
sudo apt update
sudo apt upgrade
It was pretty much to the point all you had to do was copy the commands.
open a terminal
Code:
sudo dpkg --add-architecture i386
sudo apt update
sudo apt install wine64 wine32
after that run.
Code:
winecfg
Note in your picture the error was caused from not
updating and upgrading your software first.

Last edited by lovemeslk; 09-19-2021 at 08:47 AM.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
Wine Wine Wine asumofparts Linux - Software 3 10-02-2010 02:29 PM
WINE - need 'msvcr80.dll' compatible with wine (MS VisualStudio 8.0) r00tb33r Linux - Software 1 06-18-2008 01:01 AM
A wine question: Theming wine or changing wine's colour scheme PatrickMay16 General 8 12-17-2006 06:53 AM
Link targets - problems with Wine (Though not Wine specific - Wine site doesn't help) Kevjml Linux - Newbie 1 01-13-2006 07:53 AM
Wine, Wine, Wine!! Wolf Linux - Software 1 01-20-2003 12:25 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 11:48 AM.

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