Unable to install source insight

Questions about Wine on Linux
Locked
MahiCoder21
Newbie
Newbie
Posts: 2
Joined: Fri Aug 28, 2020 9:30 pm

Unable to install source insight

Post by MahiCoder21 »

Hello Wine community.

I am trying to install source insight 4 from (https://www.sourceinsight.com/download/).

When I install the official supported package wine-5.0 (Debian 5.0-4) is being installed and when I try to install the Source Insight exe
I am getting the following errors.

wine sourceinsight4099-setup.exe

0110:err:xrandr:xrandr12_init_modes Failed to get primary CRTC info.
0112:err:xrandr:xrandr12_init_modes Failed to get primary CRTC info.
0112:err:mscoree:LoadLibraryShim error reading registry key for installroot
0112:err:mscoree:LoadLibraryShim error reading registry key for installroot
0112:err:mscoree:LoadLibraryShim error reading registry key for installroot
0112:err:mscoree:LoadLibraryShim error reading registry key for installroot
0115:err:xrandr:xrandr12_init_modes Failed to get primary CRTC info.

So, I tried to install the wine 5.0.2, 4.8 and 4.18 with below commands

wget https://dl.winehq.org/wine/source/5.0/wine-5.0.2.tar.xz
tar -xvf wine-5.0.2.tar.xz
cd wine-5.0.2
sudo ./configure --enable-win64 --without-freetype
sudo make
sudo make install

After installing the above, again when I tried to install the source insight, I am getting the below errors.
001f:err:environ:run_wineboot boot event wait timed out
0021:err:environ:run_wineboot boot event wait timed out
0021:err:xrandr:xrandr12_init_modes Failed to get primary CRTC info.

Can any one please help to share the steps to install any stable wine version which supports source insight ?


Thanks in advance !!
-WineSupporter
jkfloris
Level 12
Level 12
Posts: 3201
Joined: Thu Aug 14, 2014 10:10 am

Re: Unable to install source insight

Post by jkfloris »

Version 4 0118 installs fine with wine-5.0 (Debian 5.0-4)
How and which Debian Wine packages did you install?

Code: Select all

wget https://dl.winehq.org/wine/source/5.0/wine-5.0.2.tar.xz
tar -xvf wine-5.0.2.tar.xz
cd wine-5.0.2
sudo ./configure --enable-win64 --without-freetype
sudo make
sudo make install
That is not how you build a complete Wine installation. You miss the 32-bit part.
Why do use sudo with ./configure and make?
MahiCoder21
Newbie
Newbie
Posts: 2
Joined: Fri Aug 28, 2020 9:30 pm

Re: Unable to install source insight

Post by MahiCoder21 »

Thanks for the reply.

I am trying to run wine on my work machine and hence I use sudo for admin access.
I had previously installed winetricks from the available packages and was able to install source insight.

But recently the wine was updated to wine5.0 and since then wine and winetricks is not working.
Hence I removed the wine5.0 package and then followed the steps for wine4.18 as listed previously.

Can you please help to share all the steps to install a stable wine package and install source insight ?

Thanks
Mahesh
jkfloris
Level 12
Level 12
Posts: 3201
Joined: Thu Aug 14, 2014 10:10 am

Re: Unable to install source insight

Post by jkfloris »

You can find the Wine installation steps for Debian here: https://wiki.debian.org/Wine#Step_2:_Installation
If you want to use the Wine packages made by WineHQ, you can find the installation steps here: https://wiki.winehq.org/Debian

To make sure there isn't a problem with your Wineprefix run the installation in a clean prefix:

Code: Select all

WINEPREFIX=~/wine-source-insight wine sourceinsight40118-setup.exe
If the installation is successful, run the program with:

Code: Select all

cd ~/wine-source-insight/drive_c/Program\ Files\ \(x86\)/Source\ Insight\ 4.0/
WINEPREFIX=~/wine-source-insight wine sourceinsight4.exe
Locked