Pre-downloaded Wine Gecko Installer?
Pre-downloaded Wine Gecko Installer?
Hi,
I've been doing a lot of testing in isolated WINEPREFIX environments. So, I'm constantly creating new .wine folders and having to run winecfg to set them up. Well, each time I do this, I have to watch the Wine Gecko Installer progress bar, and sometimes it can be slow (like if my internet connection is bogged up).
I wish I could keep a local copy that WINE would pull instead of downloading it every time. I've seen someone in this forum post a few commands to use to install Gecko (basically a copy of the installed components, along with a registry key to import), but (A) importing the registry keys didnt work for me and (B) I need a way to do this in a single script without requiring human interaction.
Anyone have any ideas here? Basically, I want to end up with a script "InstallGecko.sh", that installs it to my WINEPREFIX directory, with no popups, no questions asked.
I've been doing a lot of testing in isolated WINEPREFIX environments. So, I'm constantly creating new .wine folders and having to run winecfg to set them up. Well, each time I do this, I have to watch the Wine Gecko Installer progress bar, and sometimes it can be slow (like if my internet connection is bogged up).
I wish I could keep a local copy that WINE would pull instead of downloading it every time. I've seen someone in this forum post a few commands to use to install Gecko (basically a copy of the installed components, along with a registry key to import), but (A) importing the registry keys didnt work for me and (B) I need a way to do this in a single script without requiring human interaction.
Anyone have any ideas here? Basically, I want to end up with a script "InstallGecko.sh", that installs it to my WINEPREFIX directory, with no popups, no questions asked.
- SpawnHappyJake
- Level 5
- Posts: 272
- Joined: Sun Feb 06, 2011 5:57 am
Too Many Geckos!
I agree. I've actually been contemplating starting a thread about too many Geckos myself, but never got around to it.
I would love to know how to only have to download Gecko once as well, and how to occasionally update it.
Cheers,
SpawnHappy
I would love to know how to only have to download Gecko once as well, and how to occasionally update it.

Cheers,
SpawnHappy
Pre-downloaded Wine Gecko Installer?
On Thu, Sep 8, 2011 at 20:21, SpawnHappyJake <[email protected]> wrote:
In other words:
$ wget http://downloads.sourceforge.net/wine/w ... .3-x86.msi
$ sudo mkdir -p /usr/share/wine/gecko
$ sudo mv wine_gecko-1.3-x86.msi /usr/share/wine/gecko/
Best wishes,
Bruno
Please, take a look at: http://wiki.winehq.org/GeckoI agree. I've actually been contemplating starting a thread about too many Geckos myself, but never got around to it.
I would love to know how to only have to download Gecko once as well, and how to occasionally update it. Â :D
In other words:
$ wget http://downloads.sourceforge.net/wine/w ... .3-x86.msi
$ sudo mkdir -p /usr/share/wine/gecko
$ sudo mv wine_gecko-1.3-x86.msi /usr/share/wine/gecko/
Best wishes,
Bruno
- SpawnHappyJake
- Level 5
- Posts: 272
- Joined: Sun Feb 06, 2011 5:57 am
-
- Level 3
- Posts: 71
- Joined: Mon Apr 18, 2011 3:49 am
Even better way of doing this would be to install a wine-gecko package from repositories. Ubuntu has it in repositories (for wine1.2 and wine1.3 also it is in Wine PPA) but I don't know if other distributions provide that package.
Another way of doing this is through winetricks just issue from terminal:
env WINEPREFIX="/path/" winetricks gecko
with path corresponding to your wineprefix location. Winetricks will download gecko to it's cache directory and then it can be used multiple times without the need of downloading.
Anyway the best way is to find a package for your distribution.
Another way of doing this is through winetricks just issue from terminal:
env WINEPREFIX="/path/" winetricks gecko
with path corresponding to your wineprefix location. Winetricks will download gecko to it's cache directory and then it can be used multiple times without the need of downloading.
Anyway the best way is to find a package for your distribution.
- SpawnHappyJake
- Level 5
- Posts: 272
- Joined: Sun Feb 06, 2011 5:57 am