corbt / agent.exe

MIT License
600 stars 42 forks source link

Issues running on linux? SEE HERE #7

Open blevlabs opened 3 hours ago

blevlabs commented 3 hours ago

I worked through this, so here are a few things that made it work on Ubuntu 24.04

Add a version field with a valid SemVer version to avoid the "App version is not a valid semver version: '0.0'" error. Add this line to the package.json:

"version": "1.0.0"

Run these commands:

sudo chown root:root /home/$USER/agent.exe/node_modules/electron/dist/chrome-sandbox
sudo chmod 4755 /home/$USER/agent.exe/node_modules/electron/dist/chrome-sandbox
blevlabs commented 3 hours ago

@corbt Hopefully this helps out any Ubuntu/Linux users.

diegomarzaa commented 2 hours ago

I had an issue too and doing this fixed it in my ubuntu 22.04, thanks

Vanclief commented 1 hour ago

@blevlabs I feel so silly, I saw that error and thought it was an unrelated warning. This work, thanks