If you design or develop web pages, you know Microsoft's Internet Explorer 6 web browser as the hideous flesh-eating demon that terrorizes your dreams at night. Despite its litany of lethal technical and security flaws, IE6 maintains around 25% market share. (Even here in Silicon Valley, the libraries in Atherton and Menlo Park still run IE6 on their public PCs.) That means web developers must test their pages on IE6, and learn how to accomodate its quirks and bugs, or else risk losing that clueless but stubborn one-quarter of the browsing public that refuses to upgrade.
Fortunately, Linux developers do not need to run Windows in order to test their pages on IE6 and even IE5. A script called ies4linux, written by Sérgio Luís Lopes, lets you run IE under the Wine translation layer. Here's how I installed ies4linux on Debian unstable:
# aptitude install wine cabextract $ wget http://www.tatanka.com.br/ies4linux/downloads/ies4linux-latest.tar.gz $ tar zxvf ies4linux-latest.tar.gz $ cd ies4linux-* $ ./ies4linux –no-gui
I ran the installer with the --no-gui option after the default PyGTK GUI interface crashed on me.