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그런 다음 터미널에서 실행하십시오.

Chromium 구성 파일을 편집할 수도 있습니다.

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

다음 줄을 변경하십시오.

Exec=/usr/bin/chromium %U

도착하다:

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

관련 정보