Internet Explorer para Linux ...

.. es algo que no nos hace falta. Pero, en algunos casos puede ser útil: Más que todo para revisar diseños web o utilizar páginas web no compatibles con Firefox. No recomiendo el uso diario! La instalación es fácil y rápido gracias a la herramienta ies4linux. Necesitamos el emulador de windows wine y ies4linux. En mi PC con openSUSE instalo en pocos minutos:


apt install wine
cd /tmp
wget http://www.tatanka.com.br/ies4linux/downloads/ies4linux-latest.tar.gz
cd ies4linux-*
./ies4linux

La aplicación ies4linux descarga el Internet Explorar y instala en el directorio personal /home/minombre/.ies4linux - Durante la instalación tenemos que responder algunas preguntas sencillas sobre versiones deseadas, idiomas etc.

Si deseas instalar la aplicación multi-usuario tienes que moverla a otro lugar, por ejemplo /usr/local/share:

mv /home/minombre/.ies4linux /usr/local/share/ies4linux

Falta crear un script de arranque:


#############################################################################
#!/bin/sh
# Launch script for multiuser ies4linux, master copy in /usr/local/share.
# Install as /usr/local/bin/ie6 (or ie55 or ie5)
#
# Blame Andrew Chadwick , not Sérgio.
# Blame also dirk, he moved a line - see comment!
# Released under the GNU GPL version 2 (or later, your call).
# See ies4linux's own LICENSE or COPYING file for more information.
##############################################################################

IE=`basename "$0"`
MASTERPREFIX="/usr/local/share/ies4linux/$IE"
WINEPREFIX="${HOME}/.ies4linux/$IE"

# If we're not set up, create the user's magic symlink-copy of the master
# installation.

IE=`basename "$0"`
MASTERPREFIX="/usr/local/share/ies4linux/$IE"
WINEPREFIX="${HOME}/.ies4linux/$IE"

# If we're not set up, create the user's magic symlink-copy of the master
# installation.

if ! test -d "$WINEPREFIX"; then
if ! mkdir -p "$WINEPREFIX"; then
echo "mkdir $WINEPREFIX failed"
exit 1
fi
cp -rs $MASTERPREFIX/* "$WINEPREFIX/";

###line above modified by dirk ###

# The profile directory will be recreated automatically by wine on the
# first run, so it's OK to blow away eny existing copy hanging around in
# unwritable symlink form from the install, and it's OK to just create a
# blank one.

PROFILES="$WINEPREFIX/drive_c/windows/profiles"
rm -fr "$PROFILES"
mkdir -p "$PROFILES"

# WINE needs to be able to write to the following files, so they can't be
# symlinks to root-owned ones.

for file in .no_prelaunch_window_flag system.reg userdef.reg user.reg; do
if test -L "$WINEPREFIX/$file"; then
rm -f "$WINEPREFIX/$file"
cp "$MASTERPREFIX/$file" "$WINEPREFIX/$file"
fi
done
chmod -R og-rwx "$WINEPREFIX"
fi

export WINEPREFIX
exec wine "$WINEPREFIX/drive_c/Program Files/Internet Explorer/IEXPLORE.EXE"
echo "Failed to launch WINE: see above for details"
exit 1

###############################################################################

Este script guardamos como /usr/local/bin/ie6 Falta la asignación de permisos:


chmod 775 /usr/local/bin/ie6

Si todo está bien el comando which nos muestra:

minombre@appserver:~> which ie6
/usr/local/bin/ie6

Con el comando ie6 podemos iniciar el Internet Explorer.

Powered by Drupal - Modified by Danger4k