博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ubuntu 安装 wine3.0.3
阅读量:2355 次
发布时间:2019-05-10

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

在ubuntu上也有使用QQ和钉钉等windows程序得需求,这时安装wine来使用QQ等windows程序。在ubuntu上使用sudo apt-get install wine命令安装的往往是wine的早期版本,因为其版本太老,在使用它安装windows程序过程中经常崩溃,现在推荐使用wine的较新版本。下面说一下怎么安装wine的最新版本。

对于ubuntu 18.10:

添加仓储:

1. 下载秘钥:

wget -nc https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/Ubuntu_18.10_standard/Release.key

2. 导入秘钥:

sudo apt-key add Release.key

3. 添加仓储

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

4. 更新程序包

sudo apt-get update

5. 安装wine稳定版

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

对于其他版本的ubuntu:

1. 下载秘钥:

wget -nc https://dl.winehq.org/wine-builds/Release.key

2. 导入秘钥:

sudo apt-key add Release.key

3. 添加仓储

sudo apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/

4. 更新程序包

sudo apt-get update

5. 安装wine稳定版

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

wine程序安装在/opt目录,工作目录在~/.wine。

参考:

 

转载地址:http://zyftb.baihongyu.com/

你可能感兴趣的文章
mysql常用数据类型
查看>>
数据库简介
查看>>
数据库操作
查看>>
JDBC
查看>>
MySql存储过程
查看>>
事务,连接池,异常的使用
查看>>
使用元数据+反射优化CURD操作+DBUtils
查看>>
Install MongoDB Enterprise on Red Hat Enterprise or CentOS
查看>>
MongoDB 聚合管道(一)(Aggregation Pipeline)
查看>>
MongoDB 聚合管道(二)(Aggregation Pipeline)
查看>>
Groovy创建和解析json
查看>>
使用Groovy操作文件
查看>>
centos下使用yum 安装pip
查看>>
linux 下 安装 配置 运行 RocketMQ Prerequisite
查看>>
Docker常用命令补充
查看>>
MongoDB学习(一):数据类型和基本概念
查看>>
redis配置认证密码
查看>>
vi-vim常用命令大全
查看>>
细说VLAN与Trunk
查看>>
交换机上的三种端口模式
查看>>