Ubuntu下如何安装IE6

 

Only hope it's useful for guys have no choice but still have to use ie6, god damn it~

 

You have to enable universe packages first. It is also recommended that you use the official winehq ubuntu package:

1) Open a terminal

2) Open /etc/apt/sources.list

 sudo gedit /etc/apt/sources.list

3) Uncomment (or add) following lines:

 deb http://us.archive.ubuntu.com/ubuntu edgy universe

4) Add this line:

 deb http://wine.budgetdedicated.com/apt edgy main

5) Close gedit. Update and install wine and cabextract:

sudo apt-get install wine

 

 

6) Download IEs 4 Linux and install

 wget http://www.tatanka.com.br/ies4linux/downloads/ies4linux-latest.tar.gz
 tar zxvf ies4linux-latest.tar.gz
 cd ies4linux-*
 ./ies4linux
 

.

Notice:如果第6部安装时出现
Your wine does not have wineprefixcreate installed. Maybe you are running an old Wine version. Try to update it to the latest version提示,别急,终端中输入wine --version,看看你的wine版本是不是高于1.0,  wine1.0后的版本中没有wineprefixcreate 命令, 现在的wine是winepath

 

 

可以通过修改ies4linux 2.99.0.1/lib的functions.sh、install.sh来简单解决ie6的安装问题。

在install.sh 搜索一下wineprefixcreate
subsection $MSG_CREATING_PREFIX
set_wine_prefix "$BASEDIR/ie1/"
wineprefixcreate &> /dev/null
clean_tmp

改为:
subsection $MSG_CREATING_PREFIX
set_wine_prefix "$BASEDIR/ie1/"
winepath &> /dev/null
clean_tmp

在functions.sh 搜索一下wineprefixcreate
function create_wine_prefix {
if which wineprefixcreate &> /dev/null; then
( wineprefixcreate 2>&1 ) | debugPipe
else
error $MSG_ERROR_NO_WINEPREFIXCREATE
fi
}

改为:
function create_wine_prefix {
if which winepath &> /dev/null; then
( winepath 2>&1 ) | debugPipe
else
error $MSG_ERROR_NO_WINEPREFIXCREATE
fi
}

保存后,有的朋友可能直接GUI运行ies4linux会有问题,所以咱终端中执行:(这样装的IE默认没有flash支持,默认装的flash版本比较老,看网页遇到需要flash的时候,手动点下安装flash就好了,很快)

./ies4linux --no-gui --no-flash

 

 

然后会在bin中出现ie6,运行它就可以了,bin的目录看下终端运行结果里有

 

至此结束,希望对大家有用

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值