WIne32 dependency libxml2:i386
Moderator: fredx181
WIne32 dependency libxml2:i386
I have installed wine on stretchdog64 but wine is refusing to run programs because wine32 is not installed. Trying to install wine32 produces an error that I need to install libxml2:i386. My problem is, where do I get libxml2:i386?
gabtech
- rockedge
- Site Admin
- Posts: 6827
- Joined: Mon Dec 02, 2019 1:38 am
- Location: Connecticut,U.S.A.
- Has thanked: 2972 times
- Been thanked: 2797 times
- Contact:
Re: WIne32 dependency libxml2:i386
StretchDog uses apt package manager? Then for 64-bit Debian or Ubuntu , or StretchDog use in a terminal
Code: Select all
apt-get install libxml2:i386
- fredx181
- Posts: 3279
- Joined: Tue Dec 03, 2019 1:49 pm
- Location: holland
- Has thanked: 411 times
- Been thanked: 1421 times
- Contact:
Re: WIne32 dependency libxml2:i386
It may be needed first to add the architecture i386 and update the package lists, so then:rockedge wrote: Mon Jul 20, 2020 4:14 pm StretchDog uses apt package manager? Then for 64-bit Debian or Ubuntu , or StretchDog use in a terminalCode: Select all
apt-get install libxml2:i386
Code: Select all
dpkg --add-architecture i386
apt update
apt-get install libxml2:i386
Re: WIne32 dependency libxml2:i386
Hi fred,
I already done your suggestion and I get the errors in attachment.
I already done your suggestion and I get the errors in attachment.
gabtech
- rockedge
- Site Admin
- Posts: 6827
- Joined: Mon Dec 02, 2019 1:38 am
- Location: Connecticut,U.S.A.
- Has thanked: 2972 times
- Been thanked: 2797 times
- Contact:
Re: WIne32 dependency libxml2:i386
there is always the way of installing a package that has it as a dependency like the Adobe reader...some where I read about a problem missing this same lib and solved it by installing a package that used it.
Re: WIne32 dependency libxml2:i386
Hi rockedge,
I tried installing Adobe Reader, but its not in their repo. Any other app I can install?
I tried installing Adobe Reader, but its not in their repo. Any other app I can install?
gabtech
- fredx181
- Posts: 3279
- Joined: Tue Dec 03, 2019 1:49 pm
- Location: holland
- Has thanked: 411 times
- Been thanked: 1421 times
- Contact:
Re: WIne32 dependency libxml2:i386
Hi gabtech, sorry, I forgot that the pinned entry of libxml2 in /etc/apt/preferences prevents installing the i386 version, so it's wrong and it should be disabled by moving it to /etc/apt/preferences.bak, see in below code.
So this should do it to install wine32:
Fred
So this should do it to install wine32:
Code: Select all
dpkg --add-architecture i386
apt-get update
mv -f /etc/apt/preferences /etc/apt/preferences.bak # must do this, otherwise errors
apt install wine32
Re: WIne32 dependency libxml2:i386
Hi fred,
Thanks for the solution. Wine now works just fine.
Thanks for the solution. Wine now works just fine.
gabtech