答案1
是什麼原因造成的?
手冊頁的答案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.)
如何禁用它?
運行 chromium --password-store=basic
:
chromium --password-store=basic
您可以建立別名:
alias chromium='chromium /usr/share/applications/chromium.desktop'
chromium
然後從終端運行:
您也可以編輯 chromium 設定檔:
sudo nano /usr/share/applications/chromium.desktop
更改以下行:
Exec=/usr/bin/chromium %U
到:
Exec=/usr/bin/chromium --password-store=basic %U