web-dev-qa-db-ja.com

ターミナルを使用してubuntuに.debファイルをインストールする方法は?

Google-chrome-stable_current_i386.debファイルをダウンロードしたため、Google Chromeをインストールしようとしています。

ターミナルでinstallを使用してインストールしようとすると

Sudo install google-chrome-stable_current_i386.deb

次のエラーが発生します。

install: missing destination file operand after ‘google-chrome-stable_current_i386.deb’ Try 'install --help' for more information.

12
user2437432

以前の回答が示すように、ターミナルを使用してインストールするか、

Sudo dpkg -i google-chrome-stable_current_i386.deb

または、ダウンロードした.debファイルをダブルクリックで開くことができますbuntu Software Center(ubuntuを使用している場合)。次に、installボタンをクリックしてインストールできます。

23
Deepal

dpkgコマンドを使用してインストールできます。

Sudo dpkg -i google-chrome-stable_current_i386.deb

詳細については、dpkg --helpを確認してください。

4
Sathish