Eurotruck Simulator 2 Multiplayer

Questions about Wine on Linux
Locked
Prebiusta
Newbie
Newbie
Posts: 1
Joined: Tue May 23, 2017 3:15 am

Eurotruck Simulator 2 Multiplayer

Post by Prebiusta »

Hello everyone who is reading this.

I installed steam on my wine 64 virtual drive. I have installed ETS2 and after it I installed ETS2 Multiplayer successfuly. But now, after I launch ETS2mp.exe (Launcher.exe)
I get this error. Eurotruck Singleplayer on steam works fine.

Code: Select all

david@david-N53SV ~ $ WINEPREFIX="/home/david/PlayOnLinux's virtual drives/Steam64" WINEARCH=win64 wine /home/david/PlayOnLinux\'s\ virtual\ drives/Steam64/drive_c/Program\ Files/TruckersMP\ Launcher/Launcher.exe 
err:process:start_process L"C:\\Program Files\\TruckersMP Launcher\\Launcher.exe" doesn't have an entry point, it cannot be executed
Thanks for help. :idea: :idea:
User avatar
Bob Wya
Level 12
Level 12
Posts: 3068
Joined: Sat Oct 16, 2010 7:40 pm

Re: Eurotruck Simulator 2 Multiplayer

Post by Bob Wya »

That's not really the correct way to run executables with Wine. :wink:

Since the PATH environment variable should include the directory the executable is in - but won't - since you're running the executable from "${HOME}" as the Present Working Directory...

See WineHQ Wine User Guide: 3.1 How to install and run Windows programs ...

So you probably want to try:

Code: Select all

export WINEPREFIX="/home/david/PlayOnLinux's virtual drives/Steam64"
cd "${WINEPREFIX}/drive_c/Program Files/TruckersMP Launcher"
wine start Launcher.exe
What command are you using to launch the singleplayer version of the game?
Or are you just using the Steam Client interface?

If you get stuck...
I've got the native version of Euro Truck Simulator installed (using the native Steam Client).
So I can test out the Windows version in my 64-bit Steam WINEPREFIX (since I share my main Steam Library).

Bob
Locked