Debian

登錄 Debian 9 後這個密碼提示是什麼?

  • March 18, 2020

每次重啟系統登錄,都會彈出密碼提示:

密碼提示

在大多數情況下,一旦我打開 Chromium 就會發生這種情況(它實際上似乎凍結了瀏覽器),並且通常點擊“取消”會重新打開提示數 (3-5) 次,這非常煩人。是什麼原因造成的,我該如何禁用它?有沒有辦法辨識它背後的過程,例如使用htop

桌面環境是 XFCE 4。

這是什麼原因造成的?

手冊頁的答案man chromium

  --password-store=<basic|gnome|kwallet>
          Set  the  password  store to use.  The default is to automatically detect based on the desktop environment.

      basic selects the built in, unencrypted password store.  
      gnome  selects  Gnome  keyring.   
      kwallet  selects (KDE) KWallet.  (Note that KWallet may not work reliably outside KDE.)

如何禁用它?

執行鉻--password-store=basic

chromium --password-store=basic

您可以創建和別名:

alias chromium='chromium /usr/share/applications/chromium.desktop'

然後執行:chromium從終端。

您還可以編輯鉻配置文件:

sudo nano /usr/share/applications/chromium.desktop

更改以下行:

Exec=/usr/bin/chromium %U

到:

Exec=/usr/bin/chromium --password-store=basic %U

引用自:https://unix.stackexchange.com/questions/573404