📜 ⬆️ ⬇️

Running Google Chrome under WINE

I will not talk about the browser itself, go directly to the installation. In my case - Ubuntu 8.04.1

So, just install Google Chrome will not work. It is necessary to tweak a little WINE using the winetricks.sh script:

wget www.kegel.com/wine/winetricks
sudo cp winetricks /usr/sbin

Next, install the necessary dependencies:
winetricks riched20 riched30 flash
Naturally, flash is not required. At your discretion.
You can also install the add-on allfonts
winetricks allfonts
Download the Chrome installer:
wget gpdl.google.com/chrome/install/149.27/chrome_installer.exe
And run it with WINE
wine chrome_installer.exe
After installation, the .desktop file must be launched to the desktop to run. It is necessary to add "--new-http --in-process-plugins" to the start line in it without quotes. I did this:
env WINEPREFIX="/home/alinaki/.wine" wine "C:\windows\profiles\alinaki\Local Settings\Application Data\Google\Chrome\Application\chrome.exe" --new-http --in-process-plugins

Everything. We start and enjoy :) It works and runs, by the way, wildly quickly.

Original: Install Google Chrome on Linux using wine

')

Source: https://habr.com/ru/post/38991/


All Articles