Ubuntu8.04でWineを使ってGoogle Chromeを動かす

wineのインストール。

$ sudo apt-get install wine
$ wine --version
wine-1.0
$

Wineのバージョンが1.1.4以下の場合は以下のようにして、ソフトウェアソースにWineのレポジトリを加える。
[システム]→[システム管理]→[ソフトウェア・ソース]を起動後、サードパーティのソフトウェアに以下のレポジトリを加える。

deb http://wine.budgetdedicated.com/apt hardy main

http://wine.budgetdedicated.com/apt/387EE263.gpgをダウンロードしてapt-keyで追加する。その後wineをupgradeする。

$ sudo apt-key add 387EE263.gpg
OK
$ sudo apt-get update
$ sudo apt-get upgrade
$ wine --version
wine-1.1.4
$

ここからGoogle Chromeをダウンロードしてwineで実行する。

$ wine chrome_installer.exe

この後起動するとエラーになる。wintricksを使ってcorefontsを入れる。

$ sudo apt-get install cabextract
$ wget http://www.kegel.com/wine/winetricks
$ chmod +x winetricks
$ ./winetricks corefonts tahoma

以下のコマンドで起動。

wine ~/.wine/drive_c/windows/profiles/$USER/Local\ Settings/Application\ Data/Google/Chrome/Application/chrome.exe --new-http --in-process-plugins

しかし、これだと漢字が表示されない。~/.wine/drive_c/windows/Fonts/に日本語フォントがあればちゃんと表示できる。

参考:
http://tombuntu.com/index.php/2008/09/05/how-to-install-google-chrome-in-ubuntu-with-wine/

関連記事:
Google Chome インストールメモ
Ubuntu 8.04でWineを使う

Leave a Reply

Your email address will not be published. Required fields are marked *

日本語が含まれない投稿は無視されますのでご注意ください。(スパム対策)