Debian 9에 로그인한 후 나타나는 이 비밀번호 프롬프트는 무엇입니까?

Debian 9에 로그인한 후 나타나는 이 비밀번호 프롬프트는 무엇입니까?

시스템을 다시 시작하고 로그인할 때마다 비밀번호 프롬프트가 나타납니다.

비밀번호 프롬프트

대부분의 경우 이 문제는 Chromium을 열자마자 발생하며(실제로 브라우저가 정지되는 것처럼 보입니다), 일반적으로 "취소"를 클릭하면 프롬프트가 여러 번(3-5) 더 다시 열리므로 매우 짜증납니다. 이 문제의 원인은 무엇이며 어떻게 비활성화할 수 있습니까? 예를 들어 를 사용하여 그 뒤에 있는 프로세스를 식별할 수 있는 방법이 있습니까 htop?

데스크탑 환경은 XFCE 4입니다.

답변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.)

비활성화하는 방법은 무엇입니까?

다음을 사용하여 크롬을 실행하세요 --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

관련 정보