cryinkfly / Autodesk-Fusion-360-for-Linux

This is a project, where I give you a way to use Autodesk Fusion 360 on Linux!
https://github.com/cryinkfly/Fusion-360---Linux-Wine-Version-/wiki
MIT License
1.95k stars 121 forks source link

wineserver.exe and winedevice.exe still running after closing *solved* #188

Closed hasmar04 closed 2 years ago

hasmar04 commented 2 years ago

Describe the bug wineserver.exe process is still running after closing the program, along with 2 winedevice.exe processes.

To Reproduce Steps to reproduce the behavior:

  1. Open Fusion 360
  2. Close Fusion 360
  3. Look at process list for wineserver.exe and windedevice.exe

Expected behavior These services should stop once Fusion 360 is closed

Screenshots If applicable, add screenshots to help explain your problem. N/A Desktop (please complete the following information):

Additional context Add any other context about the problem here. N/A

cryinkfly commented 2 years ago

To fix this error at the moment, you can run the following command:

wineserver -k9
hasmar04 commented 2 years ago

wineserver -k9

I just tried this and it does not seem to work. I am using Manjaro.

DD1984 commented 2 years ago

you could use this script https://github.com/DD1984/f360_run for run fusion 360 under firejail sandbox - this prevent dirty exit

cryinkfly commented 2 years ago

With this command you can kill all EXE processes:

kill -9 $(ps aux |grep -i '\.exe' |awk '{print $2}'|tr '\n' ' ')