mirror of
https://pagure.io/fedora-docs/quick-docs.git
synced 2024-11-24 21:35:17 +00:00
173 lines
5.5 KiB
Text
173 lines
5.5 KiB
Text
= Wine
|
|
|
|
http://winehq.org/[Wine] is an open source implementation of the Windows
|
|
API on top of X and OpenGL.
|
|
|
|
Wine emulates the Windows runtime environment by translating Windows
|
|
system calls into POSIX-compliant system calls, recreating the directory
|
|
structure of Windows systems, and providing alternative implementations
|
|
of Windows system libraries, system services through https://wiki.winehq.org/Wineserver[wineserver].
|
|
|
|
== Packages
|
|
|
|
Fedora's Wine packages are split up to allow for smaller installations.
|
|
The `wine` meta package will bring with it the most important components
|
|
of Wine.
|
|
Expert users may want to pick specific components from the list
|
|
https://packages.fedoraproject.org/pkgs/wine/[here].
|
|
The current versions of the Wine packages can also be seen on the https://packages.fedoraproject.org/pkgs/wine/wine/[Fedora packages application].
|
|
|
|
[[configuration-files]]
|
|
== Configurations files
|
|
|
|
The default wine configuration files is stored in your `$HOME` directory:
|
|
|
|
```
|
|
$HOME/.wine
|
|
```
|
|
|
|
TIP: Different prefixes can be used as descibed in the
|
|
xref:#working-with-prefix[wine prefix] section lower in this document.
|
|
|
|
[[wine-desktop-files]]
|
|
== Wine desktop files
|
|
|
|
https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html#variables[Wine respects the XDG Base Directory Specification].
|
|
`$XDG_DATA_HOME` defines the base directory relative to which
|
|
user-specific data files should be stored. If `$XDG_DATA_HOME` is either
|
|
not set or empty, it defaults to `$HOME/.local/share`.
|
|
|
|
Wine stores its desktop files in `$XDG_DATA_HOME/applications/wine`.
|
|
|
|
[[gui-configuration-register]]
|
|
== GUI for configuring the Wine registry (winecfg)
|
|
|
|
https://wiki.winehq.org/Winecfg[`winecfg`] is a GUI configuration tool for Wine, designed to make life
|
|
a little easier than editing the registry.
|
|
|
|
This utility is provide by the https://packages.fedoraproject.org/pkgs/wine/wine-common/[`wine-common` package].
|
|
It allows you to:
|
|
|
|
- set the Windows version
|
|
- change the default libraries (DLLs) Wine loads
|
|
- modify graphics settings
|
|
- modify desktop integration related settings
|
|
- modify drive mappings
|
|
- change sound/audio settings
|
|
|
|
WARNING: Some applications do not work with the default
|
|
Windows version which Wine offers. E.g.: Amazon Kindle
|
|
Desktop Edition.
|
|
|
|
[[wine-script]]
|
|
== Gui Wine script (winetricks)
|
|
|
|
https://wiki.winehq.org/Winetricks[Winetricks] is a helper script to download and install various
|
|
redistributable runtime libraries needed to run some programs in Wine.
|
|
These may include replacements for components of Wine using closed
|
|
source libraries.
|
|
|
|
It is provided by the https://packages.fedoraproject.org/pkgs/winetricks/winetricks/[`winetricks` package]:
|
|
|
|
```
|
|
sudo dnf install winetricks
|
|
```
|
|
|
|
It can download and install applications and libraries
|
|
needed to run some programs in Wine, e.g., Adobe Digital Edition.
|
|
|
|
[[working-with-prefix]]
|
|
== Wine prefix
|
|
|
|
A https://wiki.winehq.org/FAQ#Wineprefixes[Wine prefix] is a folder that contains all of the Wine configurations
|
|
as well as all of the Windows pieces that Wine uses for compatibility,
|
|
including libraries and a registry.
|
|
|
|
Some applications need a 32 or 64 wine prefix, this can be done in the
|
|
following way:
|
|
|
|
- Create a clean wine32/64 prefix:
|
|
|
|
|
|
```
|
|
WINEPREFIX="$HOME/<directory>" WINEARCH=winxx wine wineboot
|
|
```
|
|
|
|
* Where `xx` is 32 or 64 bits
|
|
* `<directory>` is the directory which you can store the wine environment
|
|
|
|
To use a wine prefix created before:
|
|
|
|
```
|
|
export WINEPREFIX=$HOME/<directory>
|
|
```
|
|
|
|
[[install-basic-applications]]
|
|
== Install some basics/utils applications
|
|
|
|
How to install the follow applications under wine?
|
|
|
|
1. Adobe Digital Edition 4.5
|
|
|
|
* use `winetricks` as descibed before and select **install application** in
|
|
the menu "What you do you want to do?"
|
|
* in "Which package(s) would you like to install?" select `adobe_diged4`
|
|
|
|
2. Kindle Desktop Edition
|
|
|
|
* download from -> https://www.amazon.com/Amazon-Digital-Services-LLC-Download/dp/B00UB76290[Amazon Kindle]
|
|
* install it
|
|
* use winecfg to change the default windows version so is 7 to a higher
|
|
version
|
|
|
|
[[bugs-and-problems]]
|
|
== Bugs and problems
|
|
|
|
Before reporting bugs against Wine please make sure your system is fully
|
|
up to date.
|
|
|
|
....
|
|
dnf upgrade
|
|
....
|
|
|
|
Also check if a newer version is available in the https://fedoraproject.org/wiki/QA:Updates_Testing[updates-testing] repository.
|
|
|
|
....
|
|
dnf --enablerepo=updates-testing update wine
|
|
....
|
|
|
|
If you are using the proprietary graphics drivers please remove them
|
|
from your system and try again, as they are known to cause problems.
|
|
|
|
When debugging Wine, your goal is to determine if the issue is one of
|
|
_code functionality_ or _packaging in Fedora_.
|
|
|
|
Check the http://appdb.winehq.org[Wine Application Database] to see if
|
|
your application is supported, or if there are known issues that match
|
|
yours. Anything that falls into this category is a bug in upstream code
|
|
functionality.
|
|
|
|
The next step is to see if the problem persists with a clean ~/.wine
|
|
folder. To try this without losing your old configuration:
|
|
|
|
....
|
|
mv ~/.wine ~/.wine-save
|
|
....
|
|
|
|
Afterwards try to trigger the bug again. Your original wine folder can
|
|
be restored with:
|
|
|
|
....
|
|
rm -fr ~/.wine; mv ~/.wine-save ~/.wine
|
|
....
|
|
|
|
If your application still does not work but has been working in a
|
|
previous version of wine it is probably a regression. Consider filling a
|
|
bug in the upstream https://bugs.wine-staging.com/[Wine-staging bug
|
|
tracking system].
|
|
|
|
IMPORTANT: Do not file bugs in the Winehq.org bugzilla unless told to do so.
|
|
|
|
If you really think that your bug is Fedora-related, file a bug against
|
|
the Wine component in https://bugzilla.redhat.com[Fedora's bug tracking
|
|
system].
|