web-dev-qa-db-ja.com

dpkgを使用してパッケージをインストールできません

chromeをUbuntu 14.04にインストールしようとしています。私のものは64ビットシステムです。このエラーが発生しています。

$ Sudo dpkg –i google-chrome-stable_current_AMD64.deb
dpkg: error: need an action option`

`Type dpkg --help for help about installing and deinstalling packages [*];
Use 'apt' or 'aptitude' for user-friendly package management;
Type dpkg -Dhelp for a list of dpkg debug flag values;
Type dpkg --force-help for a list of forcing options;
Type dpkg-deb --help for help about manipulating *.deb files;`

`Options marked [*] produce a lot of output - pipe it through 'less' or 'more'!`

私の知る限り、-iはアクションオプションです。何が間違っていますか?

3
mahacoder

iの前のダッシュはハイフン(またはマイナス)ではなく、 en-dash

$ od -c <<<"–"
0000000 342 200 223  \n
0000004
$ od -c <<<"-"
0000000   -  \n
0000002

代わりに適切な-を使用してください。

必要な場合以外は、dpkgを使用しないでください。 Software Centerは.debファイルを正常に処理するか、ファイルをダブルクリックするか、xdg-open google-chrome-stable_current_AMD64.debを実行できます。

10
muru