unable to open c0000135

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
callmeclover
Newbie
Newbie
Posts: 3
Joined: Tue Nov 15, 2022 6:58 pm

unable to open c0000135

Post by callmeclover »

Hi, im trying to run ableton live 11 lite on linux, have wine installed, the app installed, but when i try to run it using

Code: Select all

sh -c "cd wine/ableton/drive_c/ProgramData/Ableton/Live_11_Lite/Program; wine wine/ableton/drive_c/ProgramData/Ableton/Live_11_Lite/Program/Ableton_Live_11_Lite.exe"
i get

Code: Select all

wine: failed to open "wine/ableton/drive_c/ProgramData/Ableton/Live_11_Lite/Program/Ableton_Live_11_Lite.exe": c0000135
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: unable to open c0000135

Post by jkfloris »

You change from the current (unknown) folder to

Code: Select all

wine/ableton/drive_c/ProgramData/Ableton/Live_11_Lite/Program
In the folder, you give Wine the command to run

Code: Select all

wine/ableton/drive_c/ProgramData/Ableton/Live_11_Lite/Program/Ableton_Live_11_Lite.exe
So Wine expects the program in

Code: Select all

(unknown directory)/wine/ableton/drive_c/ProgramData/Ableton/Live_11_Lite/Program/wine/ableton/drive_c/ProgramData/Ableton/Live_11_Lite/Program/Ableton_Live_11_Lite.exe
While this may be possible, I don't expect that's what you mean.

Since the folders do not have the default names, I wonder how you installed Ableton.
Based on the folder names, and that you run the command in your HOME directory, I think the following might work:

Code: Select all

cd "${HOME}/wine/ableton/drive_c/ProgramData/Ableton/Live_11_Lite/Program"
WINEPREFIX="${HOME}/wine/ableton/" wine Ableton_Live_11_Lite.exe
callmeclover
Newbie
Newbie
Posts: 3
Joined: Tue Nov 15, 2022 6:58 pm

Re: unable to open c0000135

Post by callmeclover »

ok, i got ableton to run, but i cant verify it because the pop-up is completely black, what do i do?
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: unable to open c0000135

Post by jkfloris »

Often there are clues what went wrong in the terminal output.
What version of Wine you use and what graphics card you have?

Code: Select all

wine --version
# and
inxi -G && glxinfo -B
callmeclover
Newbie
Newbie
Posts: 3
Joined: Tue Nov 15, 2022 6:58 pm

Re: unable to open c0000135

Post by callmeclover »

i do not have a graphics card, and i used the latest stable release of wine
Locked