fedora 28 仓库中,资源比较多。使用 wine 运行windows 程序,可以一定程度上解决软件跨平台问题。

搜索:

Last metadata expiration check: :: ago on Tue  Nov  :: PM CST.
============================================================= Name Exactly Matched: wine ==========================================
wine.i686 : A compatibility layer for windows applications
wine.x86_64 : A compatibility layer for windows applications
============================================================ Name & Summary Matched: wine =========================================
q4wine.x86_64 : Qt GUI for wine

安装:

[root@localhost ~]# yum install wine
[root@localhost ~]# yum info wine
Last metadata expiration check: :: ago on Tue Nov :: PM CST.
Available Packages
Name : wine
Version : 3.19
Release : .fc28
Arch : i686
Size : k
Source : wine-3.19-.fc28.src.rpm
Repo : updates
Summary : A compatibility layer for windows applications
URL : https://www.winehq.org/
License : LGPLv2+
Description : Wine as a compatibility layer for UNIX to run Windows applications. This
: package includes a program loader, which allows unmodified Windows
: .x/9x/NT binaries to run on x86 and x86_64 Unixes. Wine can use native system
: .dll files if they are available.
:
: In Fedora wine is a meta-package which will install everything needed for wine
: to work smoothly. Smaller setups can be achieved by installing some of the
: wine-* sub packages. Name : wine
Version : 3.19
Release : .fc28
Arch : x86_64
Size : k
Source : wine-3.19-.fc28.src.rpm
Repo : updates
Summary : A compatibility layer for windows applications
URL : https://www.winehq.org/
License : LGPLv2+
Description : Wine as a compatibility layer for UNIX to run Windows applications. This
: package includes a program loader, which allows unmodified Windows
: .x/9x/NT binaries to run on x86 and x86_64 Unixes. Wine can use native system
: .dll files if they are available.
:
: In Fedora wine is a meta-package which will install everything needed for wine
: to work smoothly. Smaller setups can be achieved by installing some of the
: wine-* sub packages.

wine 运行 程序:

[root@localhost ~]# wine exe

为了更好得使用wine, 可以使用 社区开发的wine gui 来进行管理wine 环境。开发团队,使用 Qt 来进行开发的wine GUI 管理工具

q4wine.x86_64 : Qt GUI for wine
[root@localhost ~]#  yum info q4wine.x86_64
Last metadata expiration check: :: ago on Tue Nov :: PM CST.
Installed Packages
Name : q4wine
Version : 1.3.
Release : .fc28
Arch : x86_64
Size : 6.9 M
Source : q4wine-1.3.-.fc28.src.rpm
Repo : @System
From repo : fedora
Summary : Qt GUI for wine
URL : http://q4wine.brezblock.org.ua/
License : GPLv3+
Description : Q4Wine is a qt GUI for wine. It will help
: you manage wine prefixes and installed applications.
:
: General features:
: * Can export QT color theme into wine colors settings.
: * Can easy work with different wine versions at same time;
: * Easy creating, deleting and managing prefixes (WINEPREFIX);
: * Easy controlling for wine process;
: * Autostart icons support;
: * Easy cd-image use;
: * You can extract icons from PE files (.exe .dll);
: * Easy backup and restore for managed prefixes.
: * Winetriks support.

保持更新,转载请注明出处。

fedora 28 安装 wine 运行 uTorrent 解决linux 端,pt 资源下载问题的更多相关文章

  1. Linux下安装Wine运行windows程序

    资料 首页 https://www.winehq.org/ 安装 https://www.winehq.org/download/ 教程 https://www.winehq.org/document ...

  2. Linux下安装Wine 运行、卸载 windows程序

    资料 首页 https://www.winehq.org/ 安装 https://www.winehq.org/download/ 教程 https://www.winehq.org/document ...

  3. 解决ubuntukylin 13.10安装wine时无法解决软件包依赖问题

    在ubuntukylin 13.10中,无论是在软件中心安装wine还是通过apt-get install安装wine都会出现软件包依赖问题且无法解决. 问题重现 在软件中心安装wine报错例如以下: ...

  4. Linux各个版本资源下载

    Linux系统各发行版镜像下载(持续更新) == Linux系统各发行版镜像下载(2014年10月更新),如果直接下载不了,请使用迅雷下载.并且注意,我的下载地址,在  迅雷 里才起作用. Linux ...

  5. Debian安装wine运行Windows软件

    1.sudo dpkg --add-architecture i386,使系统支持32位应用 2.wget -nc https://dl.winehq.org/wine-builds/Release. ...

  6. VS2012的安装项目只能用InstallShield Limited Edition[附资源下载]

    以前版本的Visual Stuido中安装项目都可以使用微软自家的Visual Studio Installer,但是到了VS2012这一切都变了,只能用InstallShield Limited E ...

  7. (转载)WindowsXP上安装和运行神器SqlMap的步骤

    在Windows XP上安装和运行SqlMap的步骤…… 1.首先下载SqlMap 点击下载. https://codeload.github.com/sqlmapproject/sqlmap/leg ...

  8. Nginx安装与运行配置总结

    Nginx安装与运行配置总结 1. 去官网下载对应的nginx包,推荐使用稳定版本 2. 上传nginx到linux系统 3. 安装依赖环境 (1)安装gcc环境 yun install gcc-c+ ...

  9. ubuntu安装wine 和sourceinsght

    ubuntu安装wine: 1.sudo apt-get update 2.sudo apt-get install wine 安装完成后会在当前用户目录的的家目录下生成.wine目录,该目录就是wi ...

随机推荐

  1. 写好Java代码的30条经验总结

    成为一个优秀的Java程序员,有着良好的代码编写习惯是必不可少的.下面就让我们来看看代码编写的30条建议吧. (1) 类名首字母应该大写.字段.方法以及对象(句柄)的首字母应小写.对于所有标识符,其中 ...

  2. firefox设置每次访问时检查缓存

    1.在firefox的地址栏上输入about:config回车2.找到browser.cache.check_doc_frequency选项,双击将3改成1保存即可. 选项每个值都是什么含义的.请看下 ...

  3. oracle查锁及解锁命令

    --查询行锁语句 select sql_text from v$sql a,v$session b where a.sql_id=b.sql_id and b.event='enq: TX - row ...

  4. 在Hadoop集群上的HBase配置

    之前,我们已经在hadoop集群上配置了Hive,今天我们来配置下Hbase. 一.准备工作 1.ZooKeeper下载地址:http://archive.apache.org/dist/zookee ...

  5. Lock接口

    Lock与synchronized Lock和synchronized在功能上是一样的.不过Lock提供了一些其他功能,包括定时的锁等待.可中断的锁等待.公平性,以及实现非块结构的加锁. 从性能上Lo ...

  6. CSRF理解和实战

    目录 啥是CSRF攻击 写一个CSRF攻击 如何避免CSRF攻击 啥是CSRF攻击 CSRF(Cross-site request forgery)跨站请求伪造,CSRF通过伪装来自受信任用户的请求来 ...

  7. salesforce lightning零基础学习(八) Aura Js 浅谈一: Component篇

    我们在开发lightning的时候,常常会在controller.js中写 component.get('v.label'), component.set('v.label','xxValue'); ...

  8. MyBatis源码解析【8】简单demo理解接口式编程

    前言 这个分类比较连续,如果这里看不懂,或者第一次看,请回顾之前的博客 http://www.cnblogs.com/linkstar/category/1027239.html 上一次我们经过源码的 ...

  9. 使用Scratch进行少儿编程

    在上一篇<初识少儿编程>曾提到过Scratch的脚本标签内包含10大模块,本文将围绕这10大模块展开,分为两部分:积木和编程概念,结合<动手玩转Scratch2.0编程―STEAM创 ...

  10. 【杂谈】线程中断——Interrupt

    前言 以前有一个错误的认识,以为中断操作都会抛出异常,后来才发现并不是这样,所以今天就来做一个关于中断的总结. 如何关闭线程 已被弃用的Stop方法 早期,Thread类中有一个stop方法,用于强行 ...