This is just a general error for something going wrong with your chrome binary. To see if you're missing any dependency libraries on Linux, you can do ps aux | chrome
and you may see an error pop up such as chrome: error while loading shared libraries: libxkbcommon.so.0: cannot open shared object file: No such file or directory
Then you would know to download libxkbcommon0 (apt-get update && apt-get install -y libxkbcommon0
)