Page 5 of 12 FirstFirst ... 34567 ... LastLast
Results 41 to 50 of 118

Thread: Any luck running Google Chrome on Wine?

  1. #41
    Join Date
    Jan 2008
    Beans
    16

    Re: Any luck running Google Chrome on Wine?


  2. #42
    Join Date
    Apr 2005
    Beans
    15

    Re: Any luck running Google Chrome on Wine?

    I got a bit further by using winetricks.

    wget http://www.kegel.com/wine/winetricks
    sh ./winetricks riched20 riched30

    I now get a working location bar, but still no web.

  3. #43
    Join Date
    Dec 2004
    Beans
    20

    Re: Any luck running Google Chrome on Wine?

    I am able to browse most pages, though no https.

    This is a recap of the wine appdb page.

    Grab wine 1.1.3 from the apt repository, instructions at http://www.winehq.org/site/download-deb .

    Grab the offline installer, eg at http://gpdl.google.com/chrome/instal..._installer.exe

    Grab winetricks, instructions at http://wiki.winehq.org/winetricks
    .

    Run
    Code:
    winetricks riched20 riched30
    wine "$HOME/.wine/drive_c/windows/profiles/$USER/Local Settings/Application Data/Google/Chrome/Application/chrome.exe" --new-http --in-process-plugins
    It runs very slow though, apparently the processes aren't lightweight at all.

  4. #44
    Join Date
    Oct 2007
    Beans
    72
    Distro
    Ubuntu Karmic Koala (testing)

    Re: Any luck running Google Chrome on Wine?

    Wine AppDB shows it working with some tweaks, though i'm not able to reproduce
    http://appdb.winehq.org/objectManage...estingId=30852

  5. #45
    Join Date
    Feb 2007
    Beans
    15

    Re: Any luck running Google Chrome on Wine?

    Here is a guide for the new browser Google Chrome

    Open your terminal and then follow the steps below

    First get WINE (the newest version)

    Code:
    
    wget -q http://wine.budgetdedicated.com/apt/387EE263.gpg -O- | sudo apt-key add -
    sudo wget http://wine.budgetdedicated.com/apt/sources.list.d/hardy.list -O /etc/apt/sources.list.d/winehq.list
    sudo apt-get update
    Then install Chrome via the offline installer

    Download the file from the link below, then place the file on your desktop and double click on it.

    Code:
    http://gpdl.google.com/chrome/install/149.27/chrome_installer.exe
    Then install riched20 and riched30

    Code:
    wget http://www.kegel.com/wine/winetricks
    sh ./winetricks riched20 riched30
    and finally to get it all to work, do this

    Code:
    winetricks riched20 riched30
    wine "$HOME/.wine/drive_c/windows/profiles/$USER/Local Settings/Application Data/Google/Chrome/Application/chrome.exe" --new-http --in-process-plugins
    To use the program in the future(from the terminal), you need to run:


    Code:
    wine "$HOME/.wine/drive_c/windows/profiles/$USER/Local Settings/Application Data/Google/Chrome/Application/chrome.exe" --new-http --in-process-plugins
    If you want to make a program icon in your tray, then do this:

    1. Right click on your menu and click and chose the option "Add to panel" and then "User defined program shortcut"

    2. Now you can see a new window with the title "Make Shortcut" with the options "Name", "Command" and "Comment"

    Under name you should write "Google Chrome", under "Command" you should use this code

    Code:
    env WINEPREFIX="/home/YOURUSERNAME/.wine" wine "C:\windows\profiles\YOURUSERNAME\Local Settings\Application Data\Google\Chrome\Application\chrome.exe" --new-http --in-process-plugins
    remember to replace YOURUSERNAME with your user name (both of them)

    and then you should use this tray icon (click on the bouncing platform to change icon)

    Code:
    /home/YOURUSERNAME/.local/share/icons/25e1_chrome.0.xpm
    and again, remember to change "YOURUSERNAME" into your user name.

    Hope it works for you

    Enjoy

    // GonzoDark

    ps. This is how it looks: http://img231.imageshack.us/img231/6...eyouaregf1.png

    pps. I am using the Danish version of Ubuntu and Chrome, so if I made any translation errors, then please correct me.
    Last edited by Gonzo_Dark; September 4th, 2008 at 03:20 PM.

  6. #46
    Join Date
    Oct 2005
    Beans
    170
    Distro
    Ubuntu Development Release

    Re: Any luck running Google Chrome on Wine?

    I can't quite get it to work. I get as far as this line
    Code:
    sh ./winetricks riched20 riched30
    but I can't run the second winetricks command (under user I get permission denied and sudo spits out command not found).

    Then when I run the browser using that wine command it cannot load pages and crashes immediately. Presumably my problem's coming in with the line
    Code:
    winetricks riched20 riched30

  7. #47
    Join Date
    Feb 2007
    Beans
    15

    Re: Any luck running Google Chrome on Wine?

    Quote Originally Posted by quazi View Post
    I can't quite get it to work. I get as far as this line
    Code:
    sh ./winetricks riched20 riched30
    but I can't run the second winetricks command (under user I get permission denied and sudo spits out command not found).

    Then when I run the browser using that wine command it cannot load pages and crashes immediately. Presumably my problem's coming in with the line
    Code:
    winetricks riched20 riched30
    remember to do these steps, in the right order:

    first

    wget http://www.kegel.com/wine/winetricks

    and then

    sh ./winetricks riched20 riched30

    enjoy

  8. #48
    Join Date
    Mar 2008
    Beans
    43

    Re: Any luck running Google Chrome on Wine?

    I tried Gonzo_Duck's instructions. I tried running installer under wine and got:

    fixme:shellllCanUnloadNow stub
    fixme:shellllCanUnloadNow stub
    fixme:shellllCanUnloadNow stub
    I got the latest version of wine (1.1.3)

    Any help?

  9. #49
    Join Date
    Sep 2007
    Location
    the Hague, Netherlands
    Beans
    949
    Distro
    Ubuntu 9.10 Karmic Koala

    Re: Any luck running Google Chrome on Wine?

    WWHEEE-AHH! It works, thanx for the guide. The attachment is a screenshot!
    Attached Images Attached Images

  10. #50
    Join Date
    Sep 2008
    Beans
    3

    Re: Any luck running Google Chrome on Wine?

    Quote Originally Posted by Gonzo_Dark View Post
    Here is a guide for the new browser Google Chrome

    Open your terminal and then follow the steps below

    First get WINE (the newest version)

    Code:
    
    wget -q http://wine.budgetdedicated.com/apt/387EE263.gpg -O- | sudo apt-key add -
    sudo wget http://wine.budgetdedicated.com/apt/...t.d/hardy.list -O /etc/apt/sources.list.d/winehq.list
    sudo apt-get update
    Then install Chrome via the offline installer

    Download the file from the link below, then place the file on your desktop and double click on it.

    Then install riched20 and riched30

    Code:
    wget http://www.kegel.com/wine/winetricks
    sh ./winetricks riched20 riched30
    and finally to get it all to work, do this

    Code:
    winetricks riched20 riched30
    wine "$HOME/.wine/drive_c/windows/profiles/$USER/Local Settings/Application Data/Google/Chrome/Application/chrome.exe" --new-http --in-process-plugins
    To use the program in the future, you need to run:


    Code:
    wine "$HOME/.wine/drive_c/windows/profiles/$USER/Local Settings/Application Data/Google/Chrome/Application/chrome.exe" --new-http --in-process-plugins

    Enjoy

    // GonzoDark

    ps. This is how it looks: http://img231.imageshack.us/img231/6...eyouaregf1.png
    This works for me on Hardy 8.04 with the new Wine. Many thanks!

    No https and very slow, but functional and pretty.

Page 5 of 12 FirstFirst ... 34567 ... LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •