Google Chromeストア(Debian Stable)

Google Chromeストア(Debian Stable)

Debian stableにgoogle-chromeをインストールする必要があります。 Googleリポジトリを追加し、常に最新バージョンのChromeをインストールする方法はありますか?

答え1

GoogleでLinuxストレージページ:

Googleキーを追加してください。

wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -

次に、次のパッケージをインストールします。Chromeのウェブサイト、「/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 http://dl.google.com/linux/chrome/deb/ stable main

たとえば、Googleからパッケージをインストールします。しなければならないsource.listを自動的に設定するだけです。

答え2

ちょうど新しいエラーが発生しました。 etc/apt/sources.list.d/google-chrome.list ファイルが自動的に作成され、「[arch=amd64]」をクリアするために以前のバージョンを停止するため、apt-get でエラーが発生します。バラより https://www.reddit.com/r/chrome/comments/48oje6/linux_how_to_fix_failed_to_fetch/ したがって、元の質問に対する答えは現在、完全に効果的な方法はありませんが、Googleがバグを修正することを願っています。

答え3

@tux-drummer、答えるのに時間がかかりすぎてすみません。詳しくはこちらをご覧ください。

$ sudo echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> \
/etc/apt/sources.list.d/google.list

$ wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub >> google.pub
$ sudo apt-key add google.pub
OK
$ sudo apt-get update
...
Ign:1 http://dl.google.com/linux/chrome/deb stable InRelease
Get:2 http://dl.google.com/linux/chrome/deb stable Release [943 B]
...
$ apt-cache search google-chrome
google-chrome-beta - The web browser from Google
google-chrome-stable - The web browser from Google
google-chrome-unstable - The web browser from Google

$ sudo apt-get install --no-install-recommends google-chrome-stable
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following NEW packages will be installed:
  google-chrome-stable
0 upgraded, 1 newly installed, 0 to remove and 1 not upgraded.
Need to get 59.4 MB of archives.
Unpacking google-chrome-stable (76.0.3809.87-1) ...
Processing triggers for mime-support (3.60) ...
Processing triggers for menu (2.1.47+b1) ...
Processing triggers for man-db (2.7.6.1-2) ...
Setting up google-chrome-stable (76.0.3809.87-1) ...
...

@Inline、次のコードを試してください。

$ curl -I https://dl.google.com/linux/chrome/deb/dists/stable/Release \
2>/dev/null | grep -Ee "(^content-length|^HTTP)"

HTTP/2 200
content-length: 943

答え4

また、修正が消える問題もあります[arch=amd64]。ファイルコメントには「自動構成」と呼ばれていますが、自動構成とは何かわかりません。だから私はchattr +iそれを着たgoogle-chrome.list

関連情報