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. js排序问题

    1.直接排序 var arr = [1,3,2,5]; function compare(a,b){ return a - b;//从小到大 return b - a;//从大到小 } console ...

  2. thymeleaf 的使用

    thymeleaf 语法详解1.变量输出: th:text :在页面中输出某个值 th:value :将一个值放到input标签中的value中.2.判断字符串是否为空 ①:调用内置对象一定要用# ② ...

  3. [java初探10]__关于数字处理类

    前言 在我们的日常开发过程中,我们会经常性的使用到数字类型的数据,同时,也会有众多的对数字处理的需求,针对这个方面的问题,在JAVA语言中.提供解决方法的类就是数字处理类 java中的数字处理类包括: ...

  4. 从零开始学 Web 之 CSS3(一)CSS3概述,选择器

    大家好,这里是「 从零开始学 Web 系列教程 」,并在下列地址同步更新...... github:https://github.com/Daotin/Web 微信公众号:Web前端之巅 博客园:ht ...

  5. Facelets应用程序的生命周期

    当客户端(如浏览器)向使用Facelets创建的页面发出新的请求时,会创建一个新的组件树或 javax.faces.component.UIViewRoot将其创建并放入FacesContext. 该 ...

  6. input type=file实现图片上传,预览以及图片删除

    背景 前两天在做一个PC网站的意见反馈,其中涉及到了图片上传功能,要求可以上传多张图片,并且支持图片上传预览及图片删除, 图片上传这一块以前没怎么搞过,而且一般也很少会碰到这样的需求,所以在做这个功能 ...

  7. numpy使用指南

    numpy.array numpy.array是numpy中用于处理n阶数组的对象,是其类族中的重要基类. numpy.array可以表示任意维的数组,可以使用构造函数初始化: arr = numpy ...

  8. [转]docker-compose教程(安装,使用, 快速入门)

    本文转自:https://blog.csdn.net/pushiqiang/article/details/78682323 教程基于ubuntu下最新的compose版本3 参考: https:// ...

  9. ASP.NET Core Identity 实战(2)——注册、登录、Claim

    上一篇文章(ASP.NET Core Identity Hands On(1)--Identity 初次体验)中,我们初识了Identity,并且详细分析了AspNetUsers用户存储表,这篇我们将 ...

  10. 【Spring】20、使用TransactionSynchronizationManager在spring事务提交之后进行一些操作。

    本文内容 如何在spring事务提交之后进行一些操作,这些操作必须得在该事务成功提交后才执行,回滚则不执行. 要点 如何在spring事务提交之后操作 如何在spring事务回滚之后操作 实现方案 使 ...