答え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