標籤:style blog http io ar color os 使用 sp
Kubuntu是很好使用,但是升級提示也是太煩人了,開機的時候總是顯示如下畫面:
使用System Load Indicator(sudo apt-get install indicator-multiload)查看這個介面,它的進程名是 notify-osd;
使用 locate -b -r notify-osd,定位可執行檔,發現可疑二進位檔案 /usr/lib/x86_64-linux-gnu/notify-osd ;
再進一步使用 file /usr/lib/x86_64-linux-gnu/notify-osd,確定它就是二進位可執行檔:
file /usr/lib/x86_64-linux-gnu/notify-osd/usr/lib/x86_64-linux-gnu/notify-osd: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.24, BuildID[sha1]=9c2f2cba7666738e83360a7e032be135eb3af5a8, stripped
於是通過 sudo chmod -x /usr/lib/x86_64-linux-gnu/notify-osd 把可執行許可權去掉;
很不幸運的是,還是彈出了另一個更醜的提示框(忘記了)……
最終的解決方案:
再一次通過 System Load Indicator定位,發現根源是Knotify4進程;
定位它的可執行檔是 /usr/bin/knotify4 ,通過命令列禁用它可執行許可權:
sudo chmod -x /usr/bin/knotify4
好了,從此以後Kubuntu案頭就安靜多了;
說明一下,禁用/usr/bin/knotify4不會影響 notify-send 的使用;
關於Knoity程式的作用:https://docs.kde.org/stable/en/kdeaccessibility/jovie/knotify.html
於我來說Knotify4它的提醒功能會讓我覺得很煩人,此外,它也非常吃記憶體(eating memory)……
參考連結
1. https://www.kubuntuforums.net/showthread.php?53009-Solved-Disable-all-notifications-knotify4
2. https://docs.kde.org/stable/en/kdeaccessibility/jovie/knotify.html
〖Linux〗幹掉Kubuntu煩人的軟體升級提示“Update notification daemon”,Your should update ..