Steps to install IEs4Linux on Ubuntu 12.04

  
                

IEs4Linux is an IE browser that can be used on Linux systems. If Google and other browsers cannot use online banking, it can be implemented by IEs4Linux. How to install IEs4Linux in Ubuntu 12.04? Let's take a look at it with Xiaobian.

First, install IEs4Linux

1, wine environment installation, you need to install wine and two cabextract software. I installed wine-qq before, and installed wine1.4.0 incidentally, so this step is omitted.

sudo apt-get install wine cabextract

2. Download IEs4Linux and extract it. The latest is ies4linux-latest.tar.gz

wget http://www. Tatanka.com.br/ies4linux/downloads/ies4linux-latest.tar.gz

tar zxvf ies4linux-latest.tar.gz

The latest is ies4linux-2.99.0.1, assuming decompression to ~/ies4linux-2.99.0.1

3. Install IE6 and IE7. See the problem 2 for installing the error message.

Go to the directory cd ies4linux-*

It is best to run. /ies4linux --no-gui --beta-install-ie7 --locale CN --install-corefonts

can also be run. /ies4linux --no-gui --install-ie6 --locale CN --install-corefonts

Note 1: Installation is not recommended for direct operation. /ies4linux, because the GUI version is not very stable, there may be problems during the installation process. If the installation has an error, reinstall it after resolving the error. If it is still stuck, you can see if there is IE6 in ~/bin/. Just run ~/bin/ie6.

Note 2: --no-gui means terminal mode installation, --beta-install-ie7 means install IE7Beta version and IE6 version, --install-ie6 means install IE6 version, -locale CN means that the local language is Chinese simplified, --install-corefonts means to install Microsoft fonts (very important). If you don't install it, some web content will not be seen. You can see the mouth and mouth, all in the box.

Note 3: The program is downloaded to ~/.ies4linux/downloads by default, and the file package address is in install.sh. The map can be moved by using Thunder and Thunder; I took me. This folder is packaged for uploading. You can decompress this package and put it in ~/.ies4linux/downloads, saving you from downloading.

Second, solve the problem of installation

1, install IEs4Linux, in the last step always prompts Your wine does not have wineprefixcreate installed error.

Since Wine1.4 uses Winepath instead of wineprefixcreate, the installation will prompt that the Wine version is too old. You can solve the IE6 installation by modifying the functions.sh install.sh in the ies4linux2.99.0.1/lib directory. problem.

About 426 lines in install.sh

subsection $MSG_CREATING_PREFIX

set_wine_prefix “$BASEDIR/ie1/”

wineprefixcreate & /null

clean_tmp

Change to:

subsection $MSG_CREATING_PREFIX

set_wine_prefix “$BASEDIR/ie1/”

winepath & /dev/null

clean_tmp

around line 242 of functions.sh

function create_wine_prefix {

if which wineprefixcreate & /dev /null; then

( wineprefixcreate 2 >&1 )

Copyright © Windows knowledge All Rights Reserved