0

I am trying to install Presonus Studio One on AV Linux. Here is the tutorial I am trying to follow.

  1. Install Winetricks

  2. Type Winetricks in Terminal; the following screenshot should pop up.

Instructions#1

  1. Select Install and application and click OK on the bottom right. The following screenshot should pop up:

Instructions#3

Select cancel in the bottom right.

  1. Select Install a font and click MS Corefonts.

Instructions#4

  1. Click ok in the bottom right. The following screenshot will appear:

Instructions#5

This is where I think I am hitting my snag. Finally, the tutorial says to Install a DLL. Here is the following screenshot:

Instructions#6
But Here, I get an error message and I don't know how to fix it:
[Checksum Error6
Hopefully after this error is fixed everything will work. Wine installed the program without any hiccups, but I can't open it. Again, Here is the inside of the .desktop file, it may provide a clue: Insides of Studio One Thank you for all your help in advance.

BJsgoodlife
  • 1,160
  • 5
  • 31
  • 59

1 Answers1

0

Summary

You could try the following:

  1. Update to the latest version of winetricks.
  2. Rename the file as instructed in the message.
  3. Try installing again.

This has been successful for many people. Sources:

  1. Can't install DLLs in Winetricks
  2. winetricks sha1sum mismatch rename and try again

1. Updating winetricks

You can get your current version with

$ winetricks --version

and which is the latest available with

$ curl --silent --show-error https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks --stderr - | grep ^WINETRICKS_VERSION | cut -d '=' -f 2
20210206-next

If you don't have the latest, update and check with

$ wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks
$ chmod +x winetricks 
$ sudo mv -v winetricks /usr/local/bin
$ winetricks --version

or

$ sudo winetricks --self-update
$ winetricks --version

Source: How do I get the latest version of winetricks on Ubuntu?

2. Renaming the target file

$ mv -v <filename> <filename>.bak

3. Installing again

Repeat the procedure.

Related:

  1. https://linuxconfig.org/configuring-wine-with-winetricks