Questions about Wine on Linux
4joey1
Level 1
Posts: 7 Joined: Thu Jul 23, 2020 5:57 am
Post
by 4joey1 » Wed Mar 16, 2022 10:51 am
I have Debian 11 64 bit on my machine and have been using Windows apps on wine.
My wine version are as per below command
Code: Select all
dpkg -l | grep wine
ii wine-stable 7.0.0.0~bullseye-1 amd64 WINE Is Not An Emulator - runs MS Windows programs
ii wine-stable-amd64 7.0.0.0~bullseye-1 amd64 WINE Is Not An Emulator - runs MS Windows programs
ii wine-stable-i386:i386 7.0.0.0~bullseye-1 i386 WINE Is Not An Emulator - runs MS Windows programs
ii winehq-stable 7.0.0.0~bullseye-1 amd64 WINE Is Not An Emulator - runs MS Windows programs
ii winetricks 0.0+20210206-2 all simple tool to work around common problems in Wine
For the last few days I am unable to launch any windows apps and when I type winefile or winecfg on terminal I get "Bus error" message.
Please assist
jkfloris
Level 12
Posts: 3201 Joined: Thu Aug 14, 2014 10:10 am
Post
by jkfloris » Wed Mar 16, 2022 11:40 am
To rule out an error in the Wine installation, is it possible to start
winecfg in a clean
wineprefix ?
Code: Select all
WINEPREFIX=${HOME}/wine-test wine winecfg
4joey1
Level 1
Posts: 7 Joined: Thu Jul 23, 2020 5:57 am
Post
by 4joey1 » Wed Mar 16, 2022 11:53 am
jkfloris wrote: ↑ Wed Mar 16, 2022 11:40 am
To rule out an error in the Wine installation, is it possible to start
winecfg in a clean
wineprefix ?
Code: Select all
WINEPREFIX=${HOME}/wine-test wine winecfg
Same error persists as shown below
Code: Select all
$ WINEPREFIX=${HOME}/wine-test wine winecfg
Bus error
jkfloris
Level 12
Posts: 3201 Joined: Thu Aug 14, 2014 10:10 am
Post
by jkfloris » Wed Mar 16, 2022 12:21 pm
Can you tell us more about your computer? Is it a real or a virtual computer?
Does the development version of Wine work?
Code: Select all
sudo apt install wine-devel wine-devel-amd64 wine-devel-i386:i386
WINEPREFIX=${HOME}/wine-test /opt/wine-devel/bin/wine winecfg
4joey1
Level 1
Posts: 7 Joined: Thu Jul 23, 2020 5:57 am
Post
by 4joey1 » Wed Mar 16, 2022 1:05 pm
jkfloris wrote: ↑ Wed Mar 16, 2022 12:21 pm
Can you tell us more about your computer? Is it a real or a virtual computer?
Does the development version of Wine work?
Code: Select all
sudo apt install wine-devel wine-devel-amd64 wine-devel-i386:i386
WINEPREFIX=${HOME}/wine-test /opt/wine-devel/bin/wine winecfg
Its a real computer.The development version works after installing wine-devel and its winecfg launched the mono installer dialog box
jkfloris
Level 12
Posts: 3201 Joined: Thu Aug 14, 2014 10:10 am
Post
by jkfloris » Thu Mar 17, 2022 7:43 am
Does Wine stable work if you use the full path name?
Code: Select all
WINEPREFIX=${HOME}/wine-test /opt/wine-stable/bin/wine winecfg
Does a reinstallation bring any improvement?
Code: Select all
sudo apt install --reinstall winehq-stable wine-stable wine-stable-amd64 wine-stable-i386:i386
4joey1
Level 1
Posts: 7 Joined: Thu Jul 23, 2020 5:57 am
Post
by 4joey1 » Thu Mar 17, 2022 10:39 am
jkfloris wrote: ↑ Thu Mar 17, 2022 7:43 am
Does Wine stable work if you use the full path name?
Code: Select all
WINEPREFIX=${HOME}/wine-test /opt/wine-stable/bin/wine winecfg
Does a reinstallation bring any improvement?
Code: Select all
sudo apt install --reinstall winehq-stable wine-stable wine-stable-amd64 wine-stable-i386:i386
Thanks the reinstallation works.Now I can launch apps
jkfloris
Level 12
Posts: 3201 Joined: Thu Aug 14, 2014 10:10 am
Post
by jkfloris » Thu Mar 17, 2022 11:22 am
If you want, you can remove the Wine-devel packages, but it is not a problem to have several Wine versions installed side by side.