web-dev-qa-db-ja.com

Debian 9はGoogleをインストールできませんChrome

起動可能なUSBフラッシュドライブからDebian 9をインストールしました。 1枚のDVDをコピーしたのは、Debianのサイトで私が必要だと言っていたからです。 Debianをパーティション全体にインストールしました(/ homeなどに分解しませんでした)。 GNOMEデスクトップをインストールしました。私はDID接続がひどいので、ネットワークインストールを使用しません(最初に.isoをダウンロードするために学校に行かなければなりませんでした)。

私が最初に試みたchrome to /etc/apt/sources.list deb http://dl.google.com/linux/chrome/deb/ stableメイン

次に走った

get https://dl-ssl.google.com/linux/linux_signing_key.pub

Sudo apt-key add linux_signing_key.pub

Sudo apt-get update

Sudo apt-get install google-chrome-stable

これが出てくるものです:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 google-chrome-stable : Depends: gconf-service but it is not installable
                    Depends: libgconf-2-4 (>= 3.2.5) but it is not             installable
                    Depends: libappindicator1 but it is not installable
E: Unable to correct problems, you have held broken packages.

それで、Google自体からインストーラーを解凍してダウンロードしてみました。最初に走った

apt-get clean && apt-get update
apt-get upgrade
apt --fix-broken install

それから私は走った

dpkg -i google-chrome-stable_current_AMD64.deb 

私のダウンロードディレクトリから。吐き出した

Selecting previously unselected package google-chrome-stable.
(Reading database ... 125174 files and directories currently installed.)
Preparing to unpack google-chrome-stable_current_AMD64.deb ...
Unpacking google-chrome-stable (60.0.3112.90-1) ...
dpkg: dependency problems prevent configuration of google-chrome-stable:
 google-chrome-stable depends on gconf-service; however:
Package gconf-service is not installed.
google-chrome-stable depends on libgconf-2-4 (>= 3.2.5); however:
Package libgconf-2-4 is not installed.
google-chrome-stable depends on libappindicator1; however:
Package libappindicator1 is not installed.

dpkg: error processing package google-chrome-stable (--install):
dependency problems - leaving unconfigured
Processing triggers for man-db (2.7.6.1-2) ...
Processing triggers for gnome-menus (3.13.3-9) ...
Processing triggers for desktop-file-utils (0.23-1) ...
Processing triggers for mime-support (3.60) ...
Errors were encountered while processing:
 google-chrome-stable

ここで何が悪いのですか? USBブータブルディスクにインストールされていない依存関係が必要ですが、これらの依存関係を取得できません。シナプスパッケージインストーラーでこれらの依存関係を検索してみましたが、見つかりません。

追加のDebianパッケージをダウンロードする必要があるようですが、sources.listファイルに完全なオンラインDebianパッケージリポジトリが含まれていません。

何人かの人々がこの問題を抱えています。[1]これが発生する理由の1つは、Debianインストーラーがインターネット接続を認識しなかったためです。または、ある時点でリポジトリを削除した可能性があります:-)。

/etc/apt/sources.listファイルに次の行が含まれていることを確認してください:

# Debian release 9.x
deb http://deb.debian.org/debian stretch main
deb-src http://deb.debian.org/debian stretch main

# Security updates
deb http://deb.debian.org/debian-security/ stretch/updates main
deb-src http://deb.debian.org/debian-security/ stretch/updates main

次に、apt updateを実行します。次に、コマンドapt install google-chrome-stableを使用して、インストールを再試行します

aptがインタラクティブな使用に推奨されるコマンドになりました。apt-getはあまり使いやすくなく、特にapt-get upgrade非常に重要なセキュリティアップデートをインストールしません 。)

オンラインのDebianリポジトリを追加した後、どうなるか正確にはわかりません。つまりUSB(Debian DVD#1)からいくつかのパッケージをインストールしたい場合は、オンラインリポジトリに戻って削除する必要があるかどうか。


[1]このリンクのコメントを参照してください: ゲームやオフィスなどなしでdebianをインストールする方法...?

4
sourcejedi

あなたがどのガイドをフォローしているかはわかりませんが、あなたがしなければならないのはここに行くことです:
https://www.google.com/chrome/index.html

[今すぐダウンロード]をクリックして、パッケージgoogle-chrome-stable_current_AMD64.debをダウンロードします。

次に、パッケージをダウンロードした場所からローカルにインストールします。

インストーラーは/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
1
maulinglawns

私は同じ問題を抱えていましたが、次のコマンドを実行することで修正されます:

Sudo apt --fix-broken install

よろしく。

0
Luis Muñoz