How to Kill Chromium Snap from CLI

22.04chromiumsnap

Chromium is installed as a snap. When it's running, how do I kill the process from command line? Like killall or pkill.
This didn't work:

sudo snap stop chromium
error: snap "chromium" has no services

Best Answer

I just tested here on my laptop and it worked. Try it:

sudo killall chrome
Related Question