Open Source Software for running Windows applications on other operating systems

Wine (“Wine Is Not an Emulator” 的首字母缩写)是一个能够在多种 POSIX-compliant 操作系统(诸如 Linux,Mac OSX 及 BSD 等)上运行 Windows 应用的兼容层。 Wine 不是像虚拟机或者模拟器一样模仿内部的 Windows 逻辑,而是將 Windows API 调用翻译成为动态的 POSIX 调用,免除了性能和其他一些行为的内存占用,让你能够干净地集合 Windows 应用到你的桌面。

CentOS6.x\Red Hat\Fedora\Linux 安装Wine 1.7.48 桌面运行环境教程

主要分为两种安装方式:

1:yum 安装

2:源码编译安装(32和64位系统分别安装)

Red Hat / CentOS / Fedora yum 安装

#yum -y install epel-release

#yum clean all //清空YUM缓存

#yum makecache //生成YUM缓存

yum repolist //确认EPEL状态

#yum -y install wine //安装wine

#yum upgrade wine //升级wine

Red Hat / CentOS / Fedora 源码编译 安装

CwntOS 32位系统安装

#yum -y install wget gcc make vim screen bzip2-devel epel-release zlib-devel libxcb-devel

#yum groupinstall "Development tools" -y

#yum clean all //清空YUM缓存

#yum makecache //生成YUM缓存

#yum repolist //确认EPEL状态

#yum -y update

#reboot

#wget http://nchc.dl.sourceforge.net/project/wine/Source/wine-1.7.48.tar.bz2 //下载wine

#tar -jxvf wine-1.7.48.tar.bz2 //解压

#cd wine-1.7.48

#./configure

configure: error: X development files not found. Wine will be built

#yum -y install libX11-devel freetype-devel

#./configure //配置

#make //编译

#make install //安装

#wine xxx.exe //运行32位软件

CentOS 64位系统安装

#yum groupinstall "Development tools" -y

#yum -y install wget gcc make vim screen bzip2-devel epel-release zlib-devel libxcb-devel

#yum -y update

#reboot

#wget http://nchc.dl.sourceforge.net/project/wine/Source/wine-1.7.48.tar.bz2 //下载wine

#tar -jxvf wine-1.7.48.tar.bz2 //解压

#cd wine-1.7.48

#./configure

configure: error: Cannot build a 32-bit program, you need to install 32-bit development libraries.

#./configure --enable-win64 //配置

configure: Finished. Do 'make' to compile Wine.

configure: error: X development files not found. Wine will be built

#yum -y install libX11-devel

#./configure --enable-win64

configure: error: FreeType development files not found. Fonts will not be built.

Use the --without-freetype option if you really want this.

#yum -y install freetype-devel

#./configure --enable-win64

configure: Finished. Do 'make' to compile Wine.

#make //编译

Wine build complete.

#make install //安装

#wine64 xxx.exe //运行64位软件

完成

linux Fedora安装桌面,CentOS6.x\Red Hat\Fedora\Linux 安装Wine 1.7.48 桌面运行环境教程相关推荐

  1. 安装vmware 6.52 Red Hat Enterprise Linux 5(rhel-5.1-server-i386-dvd) openldap2.4

    vmware 6.52 + Red Hat Enterprise Linux 5(rhel-5.1-server-i386-dvd)+ openldap2.4.23    #在vm5.5.1g下装 r ...

  2. Linux学习总结(54)——Red Hat Enterprise Linux与CentOS的区别

    一.Red Hat Enterprise Linux Red Hat公司的产品中,有Red Hat Linux(如Redhat8,9)和针对企业发行的版本Red Hat Enterprise Linu ...

  3. red hat 6 安装php,Red Hat Enterprise Linux 6安装图解

    Red Hat于2010年11月11日发布Enterprise Linux 6正式版,包含更强大的可伸缩性和虚拟化特性,并全面改进系统资源分配和节能.从理论上讲,RHEL可以在一个单系统中使用6400 ...

  4. RHEV平台中如何在 RED HAT ENTERPRISE LINUX 虚拟机上安装 GUEST 代理和驱动

    使用 Red Hat Enterprise Virtualization Agent 软件仓库所提供的 rhevm-guest-agent 软件包可以在 Red Hat Enterprise Linu ...

  5. Red Hat Enterprise Linux 5.1 Server(正式版)各版本下载2011-04-17 22:21

    Red Hat Enterprise Linux 5.1 Server(正式版)各版本下载2011-04-17 22:21 linuxserver虚拟化云计算ibm服务器 Red Hat领导着Linu ...

  6. Red Hat Enterprise Linux 7.2

    简介 RedHat Enterprise Linux是Red Hat公司的Linux发行版,面向商业市场,包括大型机.红帽公司从Red Hat Enterprise Linux 5开始对企业版LINU ...

  7. 详解Red Hat Enterprise Linux 各版本区别

    首先,Redhat有两大Linux产品系列,其一是免费的Fedora Core系列,主要用于桌面版本,提供了较多新特性的支持.另外一个产品系列是收费的Enterprise系列,这个系列分成:AS/ES ...

  8. 如何从 Red Hat Enterprise Linux 6 升级到 Red Hat Enterprise Linux 7?

    https://access.redhat.com/zh_CN/solutions/3293791 如何从 Red Hat Enterprise Linux 6 升级到 Red Hat Enterpr ...

  9. Deploy Oracle 10.2.0.5 on Red Hat Enterprise Linux 6.4

    一.Linux系统安装和配置 1.安装系统时选Desktop 2.设置eth0网卡为静态IP,加入子网掩码,网关,DNS.并配置自己主动启动 3.改动/etc/hosts.加入主机名和相应IP 4.禁 ...

最新文章

  1. 浮点数的运算为什么更慢
  2. 【Python】map()函数
  3. XFire下根据WSDL生成Client Stub,并测试Client
  4. LeetCode 2192. 有向无环图中一个节点的所有祖先(拓扑排序)
  5. 那些读博的女生,怎样通过“九九八十一关”?
  6. python点击按钮改变图片_单击tkinter按钮时更改图片
  7. CCF201809-1 卖菜
  8. oracle导出dmp空表导不出来,如何解决Oracle11g使用dmp命令无法导出空表问题
  9. linux 代码行数统计利器 ——cloc
  10. python确定指标权重_python 实现熵权法确定各指标的权重
  11. C语言在当代人工智能背景下的作用,人工智能对于当代社会的意义
  12. linux中ldd命令查看二进制文件(程序或库)所依赖的其他库(LIBTIFF_4.0未定义的引用问题)
  13. vue html if,vue中v-if使用方法详解
  14. Codeforces Round #831 (Div. 1 + Div. 2) problem C
  15. java中switch的类型_java中switch()括号中不能放什么类型?
  16. f452虚拟服务器,F460 F452 获取超级密码 解决 LOID 注册断线 保留telnet 无需ttl 不用拔光纤...
  17. 强哥说Java--Java接口,java高级软件工程师试卷
  18. Win7电脑无法安全删除硬件并弹出媒体的解决方法
  19. 帆软填报--导入Excel前清空数据库表
  20. 由多个库组成的 Android Jetpack,到底有多厉害?

热门文章

  1. 又一款基于BCH开发出来的社交软件BlockPress
  2. 一分钟就可以轻松将文字转换成语音,简单方法讲解
  3. 《京东峰值系统设计》读后感
  4. 区块链开发公司能做什么?对企业未来市场有何帮助?
  5. cxf使用wsdl文件生成代码
  6. 搜索引擎选择: Elasticsearch与Solr
  7. cocos2d-x3.0rc打包apk遇到的一些问题记录
  8. 初学Oracle的笔记(2)——基础内容(实时更新中..)
  9. Oracle 行列转换总结
  10. Gradle 使用指南 -- 基础配置