데비안 VM에서 Chrome이 실행되지 않습니다


1

Debian 8 VMMacBook Pro의 Parallels와 함께 Chrome을 설치했습니다 . 성공적으로 설치되었으며 다른 앱 중에서 Chrome 앱을 볼 수 있습니다. 나는 이것이 권한 문제라고 생각하지만 Linux를 처음 접했을 때 다른 것이 될 수 있습니다.

google-chrome-stable_current_amd64.deb파일을 다운로드하고 명령을 실행하여 설치했습니다.

$ sudo dpkg -i google-chrome-stable_current_amd64.deb

명령을 사용하여 Chrome을 2-3 번 제거한 다음 다시 설치했습니다.

$ apt-get remove --purge google-chrome-stable 

$ apt-get remove --purge google-chrome-stable

$ apt-get autoremove

$ apt-get -f install 

문제를 해결하는 데 도움이되지 않습니다.

소스 목록에서 실행할 때

$ sudo cat /etc/apt/sources.list.d/google-chrome.list

### THIS FILE IS AUTOMATICALLY CONFIGURED ###
# You may comment out this entry, but any other modifications may be lost.
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main

주요 출처 목록은

$ sudo cat /etc/apt/sources.list

# deb cdrom:[Debian GNU/Linux 8 _Jessie_ - Official Snapshot amd64 LIVE/INSTALL Binary #20150425-14:07]/ jessie main

# deb cdrom:[Debian GNU/Linux 8 _Jessie_ - Official Snapshot amd64 LIVE/INSTALL Binary #20150425-14:07]/ jessie main

deb http://security.debian.org/ jessie/updates main
deb-src http://security.debian.org/ jessie/updates main

deb http://ftp.us.debian.org/debian/ jessie main contrib non-free
deb-src http://ftp.us.debian.org/debian/ jessie main contrib non-free

터미널에서 직접 실행하면 다음과 같은 출력이 생성됩니다.

$ google-chrome

[22266:22311:1230/124137.020697:FATAL:nss_util.cc(631)] NSS_VersionCheck("3.26") failed. NSS >= 3.26 is required. Please upgrade to the latest NSS, and if you still get this error, contact your distribution maintainer.
Aborted

$ google-chrome-stable 

[22377:22418:1230/124142.875056:FATAL:nss_util.cc(631)] NSS_VersionCheck("3.26") failed. NSS >= 3.26 is required. Please upgrade to the latest NSS, and if you still get this error, contact your distribution maintainer.
Aborted

locate명령은 다음과 같은 출력을 반환합니다.

$ locate google-chrome-stable

/home/chaklader/Downloads/google-chrome-stable_current_amd64.deb
/usr/bin/google-chrome-stable
/usr/share/doc/google-chrome-stable
/usr/share/doc/google-chrome-stable/changelog.gz
/usr/share/man/man1/google-chrome-stable.1.gz
/var/cache/apt/archives/google-chrome-stable_63.0.3239.108-1_amd64.deb
/var/lib/dpkg/info/google-chrome-stable.list
/var/lib/dpkg/info/google-chrome-stable.md5sums
/var/lib/dpkg/info/google-chrome-stable.postinst
/var/lib/dpkg/info/google-chrome-stable.postrm
/var/lib/dpkg/info/google-chrome-stable.prerm

문제를 해결하고 Google Chrome?


1
어떻게 설치 했습니까? google-chrome터미널에서 실행하면 무엇을 볼 수 있습니까?
Ivan Kozik

@IvanKozik 늦게 답변해서 죄송합니다. 나는 질문을 업데이트했다.
Arefe

답변:


1

오류 메시지에 다음 문자열이 표시됩니다.

NSS_VersionCheck("3.26") failed. NSS >= 3.26 is required.

따라서 올바른 NSS 버전이 설치되어 있지 않을 수도 있습니다.

업데이트하려면 데비안 8과 같은 최신 버전의 데비안을 사용하는 경우 다음 명령을 실행하십시오.

sudo apt update
sudo apt install libnss3

이전 버전의 데비안을 사용하고 있고 업그레이드하지 않으려는 경우, 최신 버전의 libnss3를 직접 설치하는 방법을 찾아야합니다. 최신 버전의 데비안 패키지를 사용할 수는 있지만 작동하지 않을 수도 있으며 소스에서 컴파일하는 것이 좋습니다.


와우! 이것은 마술처럼 작동합니다. 이 솔루션을 어떻게 사용하는지에 대한 답변을 자세히 설명 하시겠습니까? 나는 이것이 효과가 있다는 것을 의미하지만,이 솔루션이 왜 효과가 있는지 전혀 모른다.
Arefe

더 자세한 답변을 제공하기 위해 질문을 업데이트했습니다.
correcthrsbatterystpl
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.