Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The entry point method could not be loaded

I'm trying to execute iExplorer with wine in ArchLinux (x64). It's for accessed at my iPod.

But when I enter: wine iExplorer. I have this error:

The entry point method could not be loaded.

Have you an idea?

like image 702
4z3rty Avatar asked Oct 17 '25 13:10

4z3rty


2 Answers

You're likely to be missing .NET Framework, you can install it as follow:

apt-get install winetricks
winetricks dotnet46
like image 53
kenorb Avatar answered Oct 21 '25 08:10

kenorb


did you install wine_gecko (Wine's built-in replacement for Microsoft's Internet Explorer)?

pacman -Syy
pacman -S wine_gecko

wine_gecko arch package page

like image 45
TerryG Avatar answered Oct 21 '25 09:10

TerryG