Problem involving ubuntu 21.10, amd_64

Questions about Wine on Linux
Locked
GoodDay
Newbie
Newbie
Posts: 1
Joined: Thu Jan 20, 2022 8:50 am

Problem involving ubuntu 21.10, amd_64

Post by GoodDay »

So, I used to use wine to do many things really, play games that weren't available on linux, some programs etc. And everything was going well, I was able to run like, 99% of every game I tried to run. But then this error occurred: https://www.linuxquestions.org/question ... 175706656/, "Segmentation fault (core dumped)", it happens everytime I try to do anything with wine. I tried to find a solution for this on every corner of internet and I found nothing, I don't really know what to do now. As I said in my post before, I already tried:

-downgrading all my mesa drivers to the ubuntu default ones, because this happened after an update from oibaf and I wanted to see if there was any new driver release causing this problem or something like that
-downgrading wine, upgrading wine
-re-booting the system
-purging wine completely, and then re-installing it again
-apt-get install -f to see if there was any broken packages
-downgrading and upgrading the kernel

I am posting this here because this is a dedicated wine forum, so I think I have more chances of getting help here. I really appreciate this project and I would be very happy to see wine functioning again on my system.

Sorry for any grammar mistakes too.
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: Problem involving ubuntu 21.10, amd_64

Post by jkfloris »

It is hard to say what exactly is going on. What you can try is:
- purge all wine packages

Code: Select all

sudo apt purge wine wine64 wine32 libwine libwine:i386
- remove the leftovers

Code: Select all

sudo apt autoremove --purge
- Add the WineHQ repository and install winehq-stable

Code: Select all

sudo dpkg --add-architecture i386 
wget -nc https://dl.winehq.org/wine-builds/winehq.key
sudo apt-key add winehq.key
sudo add-apt-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ impish main'
sudo apt update
sudo apt install --install-recommends winehq-stable
- Backup your ~/.wine directory

Code: Select all

mv ~/.wine ~/.wine-old
- Run Wine

Code: Select all

wine explorer
Locked