查看所有进程:

ps -aux

如果需要搜索某个关键字,比如aliyun,可以使用:

ps -aux | grep aliyun

终止进程,pid为进程号,可以通过上面命令找到。

kill pid