红联Linux门户
Linux帮助

Ubuntu 14.10安装wine

发布时间:2015-11-04 10:05:46来源:linux网站作者:beswkwangbo

在新的Ubuntu 14.10 中使用:

sudo apt-get install wine

会报一个 size not match 的错,猜测应该是自带的源的问题。


所以首先更新源,

sudo cp /etc/apt/sources.list /etc/apt/sources.list.backup


然后在新的 source.list 中添加更新源,从 http://chenrongya.blog.163.com/blog/static/87474196201411795221260/ 中选取了一些。之后

sudo apt-get update


依旧不可以。查了查发现需要清空一下缓存,

sudo apt-get clean
 
cd /var/lib/apt
 
sudo mv lists lists.backup
 
sudo mkdir -p lists/partial
 
sudo apt-get clean
 
sudo apt-get update


最后

sudo apt-get install wine

成功。


Ubuntu14.04安装wine QQ:http://www.linuxdiyf.com/linux/15428.html

Ubuntu下安装wine详细介绍:http://www.linuxdiyf.com/linux/13280.html

Ubuntu Linux下安装Wine 1.3:http://www.linuxdiyf.com/linux/11047.html

在Ubuntu中安装Wine使用Windows软件:http://www.linuxdiyf.com/linux/5884.html

【教程】安装wine QQ最新版本的方法:http://www.linuxdiyf.com/linux/11246.html