博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ubuntu 18.04 通过联网方式安装wine
阅读量:6004 次
发布时间:2019-06-20

本文共 2249 字,大约阅读时间需要 7 分钟。

ubuntu 18.04 通过联网方式安装wine

1.如果是64位机器,先开启允许32位架构程序运行

sudo dpkg --add-architecture i386

2.添加元wine源码安装仓库

对于ubuntu18.10

wget -nc https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/Ubuntu_18.10_standard/Release.key
sudo apt-key add Release.key
sudo apt-add-repository 'deb https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/Ubuntu_18.10_standard ./'

对于Linux Mint 17.x

wget -nc https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/Ubuntu_18.10_standard/Release.key
sudo apt-key add Release.key
sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ trusty main'

对于Linux Mint 18.x

wget -nc https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/Ubuntu_18.10_standard/Release.key
sudo apt-key add Release.key
sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ xenial main'

对于Linux Mint 19.x

wget -nc https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/Ubuntu_18.10_standard/Release.key
sudo apt-key add Release.key
sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ bionic main'

我的ubuntu18.04 LTS是 Linux Mint 18.x 这个类型的,自己选择合适自己的.

3.更新包

sudo apt-get update

4.选择安装wine版本

Stable branch----稳定版本(一般是选择这个了)

sudo apt-get install --install-recommends winehq-stable

Development branch(开发版本)

sudo apt-get install --install-recommends winehq-devel

Staging branch(分支版本)

sudo apt-get install --install-recommends winehq-staging

至此, wine安装完成......

一些问题记录,如果对于第二步, 添加源仓库后,执行第三步失败

Reading package lists... DoneBuilding dependency tree       Reading state information... DoneSome packages could not be installed. This may mean that you haverequested an impossible situation or if you are using the unstabledistribution that some required packages have not yet been createdor been moved out of Incoming.The following information may help to resolve the situation:The following packages have unmet dependencies: winehq-stable : Depends: wine-stable (= 3.0.4~cosmic)E: Unable to correct problems, you have held broken packages.

代表第二步的源仓库选择错误了,重新选择就ok....

方法:

  • 1.vim /etc/apt/sources.list 到最后面删除刚刚添加进去的源仓库
  • 2.重新执行第二步的 sudo apt-add-repository....... 语句, 添加适合自己机器的源仓库
  • 3.再次 sudo apt-get update
  • 4.执行第四步

转载于:https://www.cnblogs.com/liangjf/p/10122277.html

你可能感兴趣的文章
LeetCode-Permutations
查看>>
SpringMVC的REST风格的四种请求方式
查看>>
漫谈 Clustering (1): k-means(转)
查看>>
从零搭建mongo分片集群的简洁方法
查看>>
J2EE环境配置与工具使用
查看>>
bzoj3684: 大朋友和多叉树(拉格朗日反演+多项式全家桶)
查看>>
C#整数三种强制类型转换int、Convert.ToInt32()、int.Parse()的区别
查看>>
【经典算法】第四回:希尔排序
查看>>
css 禁止选中文本
查看>>
bzoj2165
查看>>
烂泥:【解决】NFS服务器使用showmount –e命令报错
查看>>
烂泥:LVM学习之逻辑卷LV及卷组扩容VG
查看>>
数据库设计的三大范式
查看>>
NOIP提高组 2013货车运输
查看>>
Hadoop实战1:MapR在ubuntu集群中的安装
查看>>
古琴与数学
查看>>
mysql第二次安装失败的解决方法
查看>>
第二次个人冲刺总结03
查看>>
搭建LoadRunner中的场景(四)控制器的全局设置
查看>>
MVC+EF 入门教程(一)
查看>>