目录
杀死进程
- 通过程序名查找
ps aux | grep "test" | grep -v grep | awk '{print $2}' | xargs kill -9
上面test便是程序名, 只要包含了test这几个字符的所有程序, 比如说有个程序名为helltest, 那么它也会被杀死, 此操作需要提权 - 代理模式设置
https://lequ7.com/guan-yu-ubuntu-you-ya-de-kai-qi-guan-bi-wang-luo-dai-li-ju-jue-shou-dong-cao-zuo-yi-ubuntu-wei-li.html
gsettings set org.gnome.system.proxy mode 'manual'
有 "manual" "none" "auto" 三种模式