1 <!-- *** Wine FAQ *** -->
2 <title>Wine FAQ</title>
5 <qandadiv id="About-this-FAQ"><title>About this FAQ</title>
7 <question id="Who-maintains-this-FAQ">
8 <para>Who maintains this FAQ ?</para>
11 <para>Dave Gardner maintained it from 1995-1998.</para>
12 <para>Douglas Ridgway (ridgway@winehq.com) took it over in 1999.</para>
13 <para>Andreas Mohr (amohr@codeweavers.com) converted it to FAQ-O-Matic in 2000.</para>
14 <para>Dimitrie O. Paun, Keith Matthews and Thomas Wickline reorganised it in 2002.</para>
15 <para>For suggestions/additions/complaints regarding this FAQ, please send an email to
16 <ulink url="mailto:wine-faq@winehq.org">wine-faq@winehq.org</ulink></para>
20 <question id="What-is-the-copyright-on-the-FAQ-And">
21 <para>What is the copyright on the FAQ? And how may I use it?</para>
24 <para>The original Wine FAQ, which this FAQ was based on, was copyright © 1995-1998 David Gardner.</para>
25 <para>It may be reproduced and modified under the same terms as Wine itself.</para>
29 <qandadiv id="General-Questions-about-Wine">
30 <title>General Questions about Wine</title>
33 <question id="What-is-Wine-and-what-is-it-supposed-to">
34 <para>What is Wine and what is it supposed to do?</para>
38 Wine is a program which allows the operation of DOS and MS
39 Windows programs (Windows 3.x and Win32 executables) on UNIX operating systems such as Linux.
40 It consists of a program loader, which loads and executes a Windows
41 binary, and a set of libraries that implements Windows API calls
42 using their UNIX or X11 equivalents. The libraries may also be used
43 for porting Win32 code into native UNIX executables, often
44 without many changes in the source. Wine is free software,
45 and its license (contained in the file LICENSE
46 in each distribution) is the LGPL.
52 <question id="Is-Wine-an-emulator">
53 <para>Does Wine emulate a full computer?</para>
57 No, as the name says, Wine Is Not a (CPU) Emulator. Wine just
58 provides the Windows API. This means that you will need an
59 x86-compatible processor to run an x86 Windows application, for instance from Intel or AMD. The
60 advantage is that, unlike solutions that rely on CPU emulation, Wine
61 runs applications at full speed. Sometimes a program run under
62 Wine will be slower than when run on a copy of Microsoft Windows, but
63 this is more due to the fact that Microsoft have heavily optimized parts of their
64 code, whereas mostly Wine is not well optimized (yet). Occasionally, an app
65 may run faster under Wine than on Windows. Most apps run at roughly the same speed.
71 <question id="Are-here-any-alternatives-to-Wine">
72 <para>Are there any alternatives to Wine?</para>
76 Yes, there are. You can use <ulink url="http://www.vmware.com">VMWare</ulink> to run a Windows installation inside a virtual machine,
77 or use <ulink url="http://www.win4lin.com">Win4Lin</ulink>
78 to run a specially adapted Windows version on Linux.
79 Both solutions cost money for both the software itself
80 and a Windows license.
83 Note that, like Wine, they can only use the hardware platform that
84 the target programs were originally compiled for (see below).
90 <question id="Difference-between-Wine-and-emulators">
91 <para>What is the difference between Wine and x86 hardware emulators?</para>
95 There are two free x86 hardware emulators:
96 <ulink url="http://bochs.sourceforge.net">bochs</ulink>, and
97 <ulink url="http://savannah.nongnu.org/projects/plex86">plex86</ulink>.
101 Plex86 is the open-source free-software alternative for VMWare,
102 VirtualPC, and other IA-32 on IA-32 "Virtual PC products." It
103 can only run on the IA-32 architecture.
107 Bochs is a highly portable open source IA-32 (x86) PC emulator
108 written in C++, that runs on most popular platforms. It includes emulation
109 of the Intel x86 CPU, common I/O devices, and a custom BIOS. Currently,
110 bochs can be compiled to emulate a 386, 486 or Pentium CPU. Bochs is capable
111 of running most Operating Systems inside the emulation including Linux,
112 Windows® 95, DOS, and recently Windows® NT 4.
116 Both are licensed under the GPL. Bochs is older than plex86, seems to be
117 easier to install, but plex86 will run faster because plex86 uses a just in
118 time binary compiler.
121 The drawback of all emulators is that you need a version
122 of Windows in order to run Windows, and that they all have an
123 impact on performance. Wine also gives much better desktop integration - for
124 instance, programs use your standard window manager, system tray icons will
125 appear in your tray area (if you have one), and you can run programs direct from the
126 command line and the menus. The clipboard also works seamlessly.
133 <question id="Integrate-an-x86-emulator">
134 <para>When will Wine integrate an x86 CPU emulator so we can
135 run Windows applications on non-x86 machines?</para>
139 The short answer is 'probably never'. Remember, Wine Is Not a
140 (CPU) Emulator. The long answer is that we probably don't want or
141 need to integrate one in the traditional sense.
144 Integrating a CPU emulator in Wine would be extremely hard,
145 due to the large number of Windows APIs and the complex
146 datatypes they exchange. It is not uncommon for a Windows API to
147 take three or more pointers to structures composed of many fields,
148 including pointers to other complex structures. For each of these
149 we would need a conversion routine to deal with the byte order and
150 alignment issues. Furthermore, Windows also contains many callback
151 mechanisms that constitute as many extra places where we would have
152 to handle these conversion issues. Wine already has to deal with
153 16 vs. 32 bit APIs and Ansi vs. Unicode APIs which both
154 introduce significant complexity. Adding support for a CPU emulator
155 inside Wine would introduce at least double that complexity and
156 only serve to slow down the development of Wine.
159 Fortunately another solution exists to run Windows applications
160 on non-x86 platforms: run both Wine and the application inside the
161 CPU emulator. As long as the emulator provides a standard Unix
162 environment, Wine should only need minimal modifications. What
163 performance you loose due to Wine running inside the emulator
164 rather than natively, you gain in complexity inside of Wine.
165 Furthermore, if the emulator is fast enough to run Windows
166 applications, Photoshop for instance, then it should be fast enough
167 to run that same Windows application plus Wine.
170 Two projects have started along those lines: <ulink
171 url="http://fabrice.bellard.free.fr/qemu/">QEMU</>, an
172 open-source project, and <ulink
173 url="http://www.transitives.com/tech_overview.htm">Dynamite</>,
174 a commercial CPU emulator environment from
175 <ulink url="http://www.transitives.com/">Transitives Technologies</>
176 which has been <ulink
177 url="http://www.transgaming.com/news.php?newsid=37">paired
185 <question id="Why-would-anyone-want-Wine-Windows-suck">
186 <para>Why would anyone want Wine? Doesn't Windows suck?</para>
190 First Wine is not about running Windows but about running Windows
194 So if all your computing needs are fulfilled by native Unix
195 applications, then you do not need Wine and should not be using
196 it. However, if you depend on one or more of the tens of
197 thousands of Windows applications, then Wine is the best way to
198 use it without giving up on Unix. Let's look at the alternatives
202 The most obvious alternative is to dual-boot. This is the solution
203 that provides the best compatibility. However it requires that you
204 acquire a Windows license and then dedicate a good chunk of your
205 hard-drive to Windows. But the worst is yet to come. Each time you
206 will want to use that application you will have to reboot to
207 Windows. This is especially significant if external factors dictate
208 when you must use this application (e.g. credit card to process,
209 email to retrieve from a Lotus Notes server). Then you will find
210 yourself forced to close all your Linux applications just to run
211 that one Windows application. You may quickly get tired of this, or
212 will find that such a situation is impossible to justify in a
213 business environment.
216 The next solution is to install virtual machine emulation software
217 such as VMWare, Win4Lin or Plex86. Then you can use windows
218 applications without suffering such a big disruption. But it still
219 requires that you acquire a Windows license and dedicate as much
220 disk space to Windows. Furthermore you will pay for the added
221 convenience: if using VMWare or Win4Lin you have to buy another
222 license, and more importantly you now have to dedicate a good chunk
223 of your computer's memory to the virtual machine. Performance will
224 take a significant hit too.
227 Using Wine lets you avoid all of that overhead: Windows license,
228 hard-drive space required by Windows, memory and performance hit
229 taken by emulated virtual machines. Now you can start your Windows
230 application straight from your regular desktop environment, place
231 that application's window side by side with native applications,
232 copy/paste from one to the other, and run it all at full speed.
235 It is also a pretty vital part of migrating a large organisation,
236 you can't change a 5000 desktop setup overnight without a lot of risk.
242 <question id="Use-Windows-driver-with-Wine">
243 <para>Can I use Wine to make the Windows driver for my network card /
244 graphics card / scanner / etc. work on Unix?</para>
248 The goal of Wine is to make it possible to run Windows applications
249 on Unix, not Windows drivers or VxDs.
252 Drivers and Windows applications belong to different worlds.
253 Applications run in user mode and use the APIs provided by
254 the kernel and the other user mode dlls. In contrast, drivers
255 are loaded in the Windows kernel, i.e. in ring 0 instead of ring
256 3, have to deal with specific memory management issues, and use
257 instructions not available to regular applications. This means
258 they would not be able to run in Wine since Wine runs entirely
259 in user mode. Rather you would have to modify the Linux kernel.
260 But in addition, drivers use a completely different API from
261 regular Windows applications. So the work performed on Wine would
262 not even be of any use for such a project. In other words, making
263 it possible to use Windows drivers or VxDs on Unix would be a
264 completely separate project.
267 However, if you want to reuse Windows drivers on a non-Microsoft
268 operating system we recommend that you have a look at
269 <ulink url="http://www.reactos.com/">ReactOS</>.
276 <question id="Which-one-of-the-different-Wine-packages">
277 <para>Which one of the different Wine packages out there is good for me?</para>
281 Currently there is a broad selection of different Wine packages/versions:
286 <term><ulink url="http://www.winehq.com">Wine</ulink></term>
289 This is the "standard" source distribution of Wine. Its license is
290 the LGPL, it can be downloaded for free.
296 <term><ulink url="http://rewind.sourceforge.net">ReWind</ulink></term>
299 This is a forked Wine tree that got created when Wine changed its
300 license from X11 to the more restrictive LGPL, in order to let
301 people continue to maintain an X11 licensed Wine version. Its
302 license is X11, it can be downloaded for free.
308 <term><ulink url="http://www.transgaming.com">Transgaming's WineX</ulink></term>
311 This is TransGaming's Wine version specially suited for
312 games. It includes more mature Direct3D support than
313 WineHQ, although these days WineHQ has quite advanced
314 D3D support as well. Most of the code is under the AFPL
315 and can be downloaded for free.
318 However Transgaming also distributes binaries that contain
319 improved copy protection support (needed for many
320 games), support, and other enhancements. These packages are
321 only available in binary form to subscribed customers
328 <term><ulink url="http://wine.codeweavers.com">CodeWeavers' Wine preview</ulink></term>
331 This is a special packaged version of the standard Wine tree
332 which has a nice setup for easy installation. License LGPL, free
333 download. It's pretty old now, and not recommended for general use.
339 <term><ulink url="http://www.codeweavers.com/products/crossover/">CodeWeavers' Crossover Plugin</ulink></term>
342 Special Wine installation to be used for running Windows
343 Netscape browser plugins such as e.g. QuickTime in Linux
344 browsers. Costs $24.95.
345 Well worth it (very stable and useful packaging).
351 <term><ulink url="http://www.codeweavers.com/products/office/">CodeWeavers' Crossover Office</ulink></term>
354 Wine version with special packaging to make sure almost all
355 important Office type programs work pretty well. Costs $54.95.
356 Seems to be well worth it so far according to some comments.
357 (note: you're supporting a company actively contributing to Wine
358 if you decide to buy either Plugin or Office.)
364 <term><ulink url="http://www.winehq.org/download/">Other packaged versions of Wine</ulink></term>
367 Various Wine packages can be downloaded for free from
368 Wine HQ. They are not officially packaged by Wine HQ, and as
369 such may have some configuration inconsistencies.
378 <question id="Whats-the-history-of-Wine">
379 <para>What's the history of Wine?</para>
383 The Wine project started in 1993 as a way to support running Windows 3.1
384 programs on Linux. Bob Amstadt was the original coordinator, but turned
385 it over fairly early on to Alexandre Julliard, who has run it ever
386 since. A <ulink url="news:comp.emulators.ms-windows.wine">newsgroup</ulink>
387 was created in July 1994. Over the years, ports for
388 other Unixes have been added, along with support for Win32 as Win32
389 applications became popular.
392 For more information, see <ulink url="http://www.winehq.com/about.shtml">
393 http://www.winehq.com/about.shtml</ulink>
399 <question id="What-is-the-current-version-of-Wine">
400 <para>What is the current version of Wine?</para>
404 A new version of Wine is distributed about every month. You will be
405 able to keep up on all the latest releases by reading the newsgroup
406 <ulink url="news:comp.emulators.ms-windows.wine">
407 comp.emulators.ms-windows.wine</ulink>, or by visiting the
408 <ulink url="http://www.winehq.com">Wine HQ homepage</ulink>. When
409 downloading Wine from your FTP site of choice (see
410 <ulink url="http://www.winehq.com/download.shtml">the Download page</ulink>
411 for some of these choices), you can make sure that you are getting
412 the latest version by watching the version numbers in the distribution
413 filename. For instance, the distribution released on October 31, 2002
414 was called Wine-20021031.tar.gz. Patch files are also available. If
415 you are current to the previous version, you can download and apply
416 just the current patch file rather than the entire new distribution.
417 The patch filenames follow the same conventions as the monthly
418 distribution. <ulink url="http://www.winehq.com/dev.shtml">
419 Read-only CVS</ulink> access is also available.
425 <question id="What-is-the-current-Status-of-Wine">
426 <para>What is the current Status of Wine?</para>
430 As of mid 2003, Wine consists of about 1.4 million lines of code,
431 written by more than 550 developers from dozens of countries around
432 the world. Wine is in active use by an estimated 100K people. Wine
433 implements more than 90% of the calls in popular Windows
434 specifications such as ECMA-234 and Open32.
437 You may also want to look at the
438 <ulink url="http://www.winehq.com/about/index.php?status">
439 Status page</ulink> for a global view on Wine's implementation progress.
445 <question id="When-will-Wine-be-finished">
446 <para>When will Wine be finished?</para>
450 Large software projects are never finished, only released. In any
451 case Wine is chasing a moving target since every new release of
452 Windows contains new API calls or variations on the existing ones.
455 Because Wine is being developed by volunteers, it is difficult to
456 predict when it will be ready for general release. But due to the
457 much increased interest by companies in porting apps via Wine, Wine
458 development is constantly getting more and more active. Right now
459 we are working on releasing Wine 0.9 in 2003.
465 <question id="Who-is-responsible-for-Wine">
466 <para>Who is responsible for Wine?</para>
470 Wine is available thanks to the work of many people. Please see the
471 <ulink url="http://www.winehq.com/source/AUTHORS">AUTHORS</ulink>
472 file in the distribution for the complete list. Some companies that
473 are or have been involved with Wine development are CodeWeavers,
474 TransGaming, Corel, and Macadamian.
480 <question id="folks-who-contributed-money-or-equipment">
481 <para>Who are the folks and organizations who have contributed money or equipment to the Wine project?</para>
485 People and organizations who have given generous contributions of
486 money, equipment, or licenses, include:
488 <itemizedlist spacing="compact">
490 <para>David L. Harper</para>
493 <para>Bob Hepple</para>
496 <para>Mark A. Horton</para>
499 <para>Kevin P. Lawton</para>
502 <para>The Syntropy Institute</para>
505 <para>James Woulfe</para>
509 VMWare Inc. (<ulink url="http://www.vmware.com">
510 http://www.vmware.com</ulink>)
515 Corel (<ulink url="http://www.corel.com">
516 http://www.corel.com</ulink>)
524 <question id="What-undocumented-APIs-are-not-understood">
525 <para>What undocumented APIs / interfaces are not understood? Would
526 seeing Microsoft source help?
531 The best would be if the Windows API was fully documented, so Wine
532 could be a perfect "clean-room" implementation. Seeing the source
533 code might make it harder to prove that no copyright violations have
534 taken place. That said, the documentation is often bad, nonexistent,
535 and even misleading where it exists, so a fair amount of reverse
536 engineering has been necessary, particularly in the shell (Explorer)
537 interface. The biggest problem facing Wine though is simply lack of
538 manpower. At one point, over 5000 people were working on Windows 2000.
539 While Wine doesn't need to replicate all of Windows (we only cover the
540 parts needed to make Windows programs work), that's still nearly 10 times
541 more people working simply on one release than have <emphasis>ever</emphasis>
542 worked on Wine, in the history of the project.
548 <question id="Is-TransGamings-last-patch-included-in-Wine">
549 <para>Is TransGaming's latest patch included in the standard Wine release?</para>
556 TransGaming makes money via a subscription service and the license
557 of their WineX tree is incompatible with the Wine license. Thus
558 WineX patches cannot be integrated into the Wine tree without
559 express permission by TransGaming. They have submitted some
560 of their work for integration into Wine, most notably DirectDraw
561 and some DirectSound work, and such work has been integrated into
562 the Wine tree. However it seems unlikely they will submit their
569 <question id="Will-there-be-a-Windows-version-of-Wine">
570 <para>Will there be a Windows version of Wine?</para>
574 Some people are working on getting Wine code to compile on Windows
575 using one of the following projects as a basis:
577 <itemizedlist spacing="compact">
581 (<ulink url="http:/www.cygwin.com/">http://www.cygwin.com</>)
587 (<ulink url="http:/www.mingw.org/">http://www.mingw.org</>)
593 (<ulink url="http://www.reactos.com/">http://www.reactos.com</>)
598 There's some progress, so a Wine version that's usable on Windows
599 might be available at some time.
602 Part of the rationale for these projects is to find out areas where
603 Wine portability is lacking. This is especially true of the
604 ReactOS project which is a reimplementation of the Windows kernel
605 and should thus be able to reuse most of Wine dlls.
608 Another reason for pursuing these projects is to be able to
609 replace a single Windows dll with its Wine counterpart. Besides
610 being a good test for the Wine dll, this lets us detect cases where
611 we made incorrect assumptions about how the dlls interact.
617 <qandadiv id="What-do-I-need-in-order-to-use-Wine">
618 <title>What do I need in order to use Wine?</title>
620 <question id="Under-what-platforms-will-Wine-run">
622 Under what hardware platform(s) and operating system(s) will
628 Wine is being developed specifically to run on the <emphasis>Intel x86</emphasis> class of CPUs under certain UNIXes that run on the x86 platform.
629 Winelib however is capable of porting Windows program <emphasis>source code</emphasis> to other platforms also, not only x86.
632 Thus running Windows programs via Wine on other platforms (e.g. MacOS X) is <emphasis>not</emphasis> possible; the only way to run Windows code
633 on MacOS X would be to take Windows program source code and recompile it for e.g. MacOS X using Winelib.
636 The following will list the x86 operating systems supported by
637 Wine; Winelib support for other platforms keeps evolving,
638 so it's not specifically listed here.
641 NetBSD, OpenBSD, Unixware, and SCO OpenServer 5 worked at one time,
642 but Wine now requires kernel-level threads which are not currently
643 available (or understood by the Wine team) on those platforms.
646 The Wine development team hopes to attract the interest of other
647 commercial UNIX and UNIX clone vendors as well.
650 BeOS: porting efforts used to be pretty strong, but BeOS has severe
651 limitations in Unix call support, so a port will probably never
655 FreeBSD: Should work, with limitations in specific areas (mainly
656 missing device/hardware support).
659 Linux/x86: Works, and as the most popular platform for both
660 developers and users, it is the best supported platform of all.
666 <question id="What-minimum-CPU-must-I-have">
668 What minimum CPU must I have in my computer to be able to run Wine
669 and MS Windows applications smoothly?
674 We need to differentiate between Wine and Winelib here.
677 Wine won't run on any x86 CPU less than an 80386 due to address
678 management limitations.
681 It is known to also work in the 80486 and upwards compatible CPUs.
682 The basic test is, if you can run X11 now, you should be able to run
683 Wine and MS Windows applications under it.
686 As always, the faster your CPU, the better. Having a math coprocessor
687 is unimportant. However, having a graphics accelerated video card
688 supported by X will help greatly.
691 Depending on your application you may find that faster speeds are
692 required for sensible use. We can't give specific advice on that due
693 to the vast range of applications out there. However the rule of
694 thumb is that if your application runs fine on Windows, it should
695 run fine on the same platform in Wine.
701 <question id="How-much-disk-space-will-Wine-take">
703 How much disk space will the Wine source code and binaries take on my
709 You need approximately 250 megabytes of free hard drive space to
710 store and compile the source code. Wine also needs about 18 megs in
711 your /tmp directory. And about 50 MB are needed to do a make install.
714 Binary packages, especially those not containing debug information,
715 have much lower disk space requirements, usually in the 20MB range.
721 <question id="What-other-software-do-I-need-to-compile">
723 What other software do I need to install, compile and run
729 Many development tools are needed in order to compile Wine.
730 A list of required packages for several distributions is included in
731 the README (<ulink url="http://www.winehq.com/source/README">
732 http://www.winehq.com/source/README</ulink>).
735 To run Wine, you will need the following:
738 <itemizedlist spacing="compact">
740 <para>The compiled Wine binary</para>
743 <para>A properly configured wine.conf file (or ~/.winerc file)</para>
746 <para>An installed and working X Window system</para>
749 <para>Some Windows programs to test</para>
755 <question id="How-much-RAM-do-I-need">
757 How much RAM do I need to have on my UNIX system to be able to run
758 Wine and MS Windows applications smoothly?
763 If you can run X smoothly on your UNIX system now, you should be
764 able to run Wine and MS Windows applications just fine too, depending
765 on how memory hungry the application is.
768 A Wine workstation will work with 16 megabytes of RAM and a 16
769 megabyte swap partition as long as you have a reasonable graphics
770 card. Most applications will run reasonably with 64/64 Mb,
771 interactive games are likely to need more. You can run Wine with 8/8,
772 but it is going to be unusably slow and very constraining on the
773 applications you can run. If you wish to be part of the development
774 team and program Wine itself, be aware that the debugger is rather
775 memory intensive. Some have suggested that 64 megabytes is the
776 minimum RAM needed for Wine development, although some are able to
777 work (albeit slowly) with 24 megabytes of physical RAM and lots of
784 <question id="How-long-does-Wine-take-to-build">
785 <para>How long does Wine take to build</para>
789 Wine is getting to be quite large, and building from scratch takes a
790 lot of processing. As of September 2002, compile times were around 20
791 minutes on an Athlon 1200 with 640 Mb and 45-50 minutes on a Cyrix
792 300 with 64 Mb. If you have a CVS copy, you may not need to rebuild
793 the whole thing every time you update.
798 <question id="I-have-a-Drivespaced-partition">
800 I have a Drivespaced, Doublespaced or Stackered DOS partition. Can
801 Wine run MS Windows binaries located in such a partition?
806 Yes, but only if the operating system supports mounting those types
807 of drives. There is a Linux file system driver called dmsdos that
808 will allow read/write access to Doublespaced and Drivespace 1.0
809 drives. More specifically, it supports mounting DOS 6.0 and 6.2
810 Doublespaced, DOS 6.22 Drivespaced, and Windows 95 Doublespaced
811 compressed partitions (read and write access works fine, but write
812 access is slow). It can be found at
813 <ulink url="ftp://metalab.unc.edu/pub/Linux/system/filesystems/dosfs/">
814 ftp://metalab.unc.edu/pub/Linux/system/file systems/dosfs/</ulink>
820 <question id="Do-I-need-to-have-a-DOS-partition">
821 <para>Do I need to have a DOS partition on my system to use Wine?</para>
825 You do not need a licensed and installed copy of DOS or MS Windows to
826 install, configure and run Wine. However, Wine has to be able to
827 'see' an MS Windows binary (i.e. application) if it is to run it.
833 <question id="Does-MS-Windows-need-to-be-installed">
835 Does MS Windows need to be loaded into that partition in order to
836 run MS Windows programs under Wine?
841 Many folks have successfully installed and run programs
842 in their UNIX filesystem without having a DOS partition or MS
843 Windows. However, in many cases you need a directory and file
844 infrastructure that is similar to an existing Windows installation.
845 Some applications' installation programs want to distribute some of
846 the package's files into the /windows and /windows/system
847 directories in order to run, and unless these exist on your UNIX
848 file system, those programs will not install correctly and probably
849 will not run well, if at all. Most packages will set that up for you
850 as part of the install process.
853 If you have a DOS partition with MS Windows installed in it, make
854 sure that your UNIX system can 'see' this partition (check your
855 /etc/fstab file or mount the partition manually) so that Wine can
856 run the MS Windows binaries located in the DOS partition. To run
857 without a DOS partition, you need to set a UNIX path to be your
858 drive C, and make sure that the /windows and /windows/system
859 directories point to some place that actually exist.
862 Here's an example, copied from a machine which has no DOS partition
863 but successfully runs Wine:
873 System=c:\windows\system
875 Path=c:\windows;c:\windows\system;c:
878 In <filename>/var/lib/wine/windows</filename>, you will need to
879 install a <filename>win.ini</filename> config file that you might
880 find on a typical MS Windows 3.1 machine. The directory
881 <filename>/var/lib/wine/windows/system</filename> should exist, but
882 doesn't need to contain anything. However, to use MS DLLs, you can
883 copy them into that directory. Note that this is a contravention of
884 the Windows licence unless Windows is properly installed on the
885 machine. If you have DOS/MS Windows installed on your system, you can
886 mount that partition at bootup by modifying the file
887 <filename>/etc/fstab</filename> in your UNIX partition (assuming that
888 the UNIX kernel supports the DOS/MS Windows filesystem type).
891 If you edit this file by hand, it should contain something similar
895 /dev/hda1 /dosc msdos uid=0,gid=100,umask=007 0 0
898 This will allow you to read and write to the DOS partition without
905 <question id="If-Wine-completely-replaces-MS-Windows">
907 If Wine completely replaces MS Windows, will it duplicate all of the
908 functions of MS Windows?
913 Most of them, yes. However, some applications and applets that come
914 with MS Windows, such as File Manager and Calculator, can be
915 considered by some to be redundant, since 32-bit UNIX programs that
916 duplicate these applets' functions already exist.
922 <question id="Will-I-install-on-any-UNIX-file-system">
924 Will I be able to install MS Windows applications in any flavor of a
930 Wine is written to be file system independent, so MS Windows
931 applications will install and run under virtually any file system
932 supported by your brand of UNIX.
938 <question id="Will-Wine-run-only-under-X">
939 <para>Will Wine run only under X, or can it run in character mode?</para>
943 Most of Wine's development effort is geared towards MS Windows' GUI,
944 but some limited support for character mode has appeared, by setting
945 <parameter>GraphicsDriver=ttydrv</parameter> in wine.conf's
946 <parameter>[wine]</parameter> section.
949 Wine's infrastructure is already somewhat prepared for supporting
950 other graphics drivers than x11drv, but no real "alternative"
951 graphics driver has been developed yet.
957 <question id="Will-Wine-run-under-any-X-window-manager">
958 <para>Will Wine run under any X window manager? Does it require a window manager at all?</para>
962 Wine is window manager independent, so the X window manager you
963 choose to run has (almost) no bearing on your ability to run MS
964 Windows programs under Wine. Wine uses standard X libraries, so no
965 additional ones are needed. Wine has its own window management,
966 which acts like MS Windows. It can be turned off to use the native
967 window manager by modifying Managed or Desktop settings as described
968 in <command>man wine.conf</command>.
974 <question id="Will-32-bit-applications-run-under-Wine">
975 <para>Will 32-bit Windows 95/98 applications run under Wine?</para>
979 Yes, 32-bit programs are now about as well supported as 16-bit
986 <qandadiv id="FAQ-Getting-Wine">
987 <title>Getting Wine</title>
989 <question id="Where-can-I-get-Wine">
990 <para>Where can I get Wine?</para>
994 Because of lags created by using mirror, word of this newest release
995 may reach you before the release is actually available at the ftp
996 sites listed here. The sources are available from the following
1002 <ulink url="http://www.ibiblio.org/pub/Linux/ALPHA/wine/development/">
1003 http://www.ibiblio.org/pub/Linux/ALPHA/wine/development/
1009 <ulink url="ftp://ftp.infomagic.com/pub/mirrors/linux/sunsite/ALPHA/wine/development/">
1010 ftp://ftp.infomagic.com/pub/mirrors/linux/sunsite/ALPHA/wine/development/
1017 <ulink url="ftp://ftp.fu-berlin.de/unix/linux/mirrors/sunsite.unc.edu/ALPHA/wine/development/">
1018 ftp://ftp.fu-berlin.de/unix/linux/mirrors/sunsite.unc.edu/ALPHA/wine/development/
1025 <ulink url="ftp://orcus.progsoc.uts.edu.au/pub/Wine/development/">
1026 ftp://orcus.progsoc.uts.edu.au/pub/Wine/development/
1033 It should also be available from any other site that mirrors
1034 ibiblio.org. For more download locations, see
1035 <ulink url="http://ftp search.lycos.com.">lycos</ulink> Some of
1036 these ftp sites may archive previous versions of Wine as well as the
1037 current one. To determine which is the latest one, look at the
1038 distribution file name, which will take the form
1039 Wine-YYYYMMDD.tar.gz. Simply replace YYYYMMDD in the distribution
1040 file name with the numbers for year, month and date, respectively.
1041 The latest one is the one to get.
1044 Wine binary packages are available for several OS'es and
1046 <ulink url="http://www.winehq.com/download.shtml">
1047 the download page</ulink> for the most recent list.
1053 <question id="Is-there-a-CVS-tree">
1054 <para>Is there a CVS tree?</para>
1058 Current Wine sources are also available via anonymous client/server
1059 CVS. You will need CVS 1.9 or above. If you are coming from behind a
1060 firewall, you will either need a hole in the firewall for the CVS
1061 port (2401) or use SOCKS.
1064 To login to the CVS tree, do
1067 export CVSROOT=:pserver:cvs@cvs.winehq.com/home/wine
1071 Use "cvs" as the password (without the quotes). Note that
1072 <filename>/home/wine</filename> is a path on the server, not on your
1073 machine. To check out the entire Wine source tree (which may be
1077 cvs -z 3 checkout wine
1080 or if you just want a subtree, or individual file, you can do that
1084 cvs -z 3 checkout wine/ANNOUNCE
1087 Be aware, though, that getting the entire Wine source tree via CVS
1088 is pretty slow, especially compared to getting Wine from an FTP
1089 mirror near you. For a CVS mirror list, see
1090 <ulink url="http://www.winehq.com/dev.shtml">
1091 http://www.winehq.com/dev.shtml</ulink>
1094 Patch files are also available, so that you don't have to download,
1095 install, and configure the entire distribution each week if you are
1096 current to the previous release. Patch file release names follow the
1097 same numbering convention as do the general releases, and take the
1101 Wine-YYYYMMDD.diff.gz
1104 Patch files are available from the same sites that distribute the
1105 full release. To upgrade to a new release by using a patch file,
1106 first cd to the top-level directory of the release (the one
1107 containing the README file), then do a "make clean", and patch the
1111 gunzip -c patch-file | patch -p1
1114 where patch-file is the name of the patch file something like
1115 Wine-YYYYMMDD.diff.gz. You can then re-run ./configure, and then run
1119 If you are mirroring the Wine distribution from the tsx-11 site and
1120 wish to be listed here in this FAQ, please add it to the
1121 "things to go into the documentation" area.
1127 <question id="Can-I-get-Wine-using-cvsup">
1128 <para>Can I get Wine using cvsup?</para>
1132 The CVS mirrors don't offer cvsup support yet, but the main server
1133 does. Use a <filename>wine.sup</filename> file of:
1136 *default host=cvs.winehq.com
1138 *default prefix=/cvs/wine
1139 *default release=wine
1142 # If your network link is a T1 or faster, comment out the following line.
1145 *default use-rel-suffix
1152 <qandadiv id="Installing-And-Configuring-Wine">
1153 <title>Installing and Configuring Wine</title>
1155 <question id="How-do-I-compile-the-Wine-source-code">
1156 <para>How do I compile the Wine distribution source code?</para>
1160 See the README (<ulink url="http://www.winehq.com/source/README">http://www.winehq.com/source/README</ulink>) for instructions.
1161 Additionally, you may want to set the <parameter>TMPDIR</parameter>
1162 environment variable <command>TMPDIR=~/tmp</command> or
1163 <command>TMPDIR=/tmp</command> (if you are root).
1169 <question id="How-do-I-install-Windows-in-Wine">
1170 <para>How do I install Windows in Wine under Linux?</para>
1174 Simple answer: you CAN'T. Windows demands direct access to the
1175 hardware and cannot get it with Wine and UNIX in the way
1178 Wine is supposed to be primarily used WITHOUT Windows. If you want
1179 to use a Windows installation, then use an existing installation
1180 alongside the UNIX installation (see the dual-boot HOWTO for your OS
1181 for more details). Or alternatively use the cabextract utility to
1182 extract Windows install archives to a directory that you want to use
1183 as Wine's Windows tree.
1189 <question id="How-do-I-configure-Wine-to-run-on-my-system">
1190 <para>How do I configure Wine to run on my system?</para>
1194 Wine requires that you have a config file as
1195 <filename>~/.wine/config</filename>. The format of this file is
1196 explained in the <filename>wine.conf</filename> man page. The file
1197 <filename>documentation/samples/config</filename>
1198 (<ulink url="http://www.winehq.com/source/documentation/samples/config">
1199 http://www.winehq.com/source/documentation/samples/config</ulink>)
1200 contains a config file example. More explicit directions can be
1201 found in the <filename>README</filename> file
1202 (<ulink url="http://www.winehq.com/source/README">
1203 http://www.winehq.com/source/README</ulink>) that will be located in
1204 the base Wine directory after you gunzip and untar the distribution
1211 <question id="How-do-I-upgrade-configuration">
1212 <para>How do I upgrade Wine without losing my working configuration?</para>
1216 Upgrading the wine installation does not affect the existing wine
1217 configuration. So after upgrading wine you still have the old (working )
1224 <question id="If-I-use-Windows-which-versions-OK">
1225 <para>If I want to use a Windows install, which versions are OK?</para>
1229 Either use a classic no-windows install (Wine is getting better all
1230 the time) or use a Win9x install (Win95, 98, 98SE, ME). DON'T
1231 configure Wine to use an NT-based Windows install (NT, Win2K, WinXP).
1234 In general, most Windows installations contain vast quantities of garbage
1235 that can confuse Wine and make it less reliable. If you can, it's best to
1236 install the programs you want into Wines fake windows drive.
1242 <question id="If-I-use-Windows-which-one-works-best">
1243 <para>If I use a Windows install with Wine, which one works best?</para>
1250 I'd say Win98SE is the best version to use with Wine, as it's fairly
1251 widespread amongst developers and relatively old. Using Win2K files
1252 is <emphasis>definitely</emphasis> worse than a plain no-windows
1253 Wine install, and Win ME is said to be problematic, too (as probably
1254 no developer uses it). In short: all Win9x <= W98SE are good.
1260 <question id="Installing-Visual-Basic-apps-wont-run">
1262 Installing applications generated by Visual Basic won't run. What
1268 Make sure you have all the VB runtime libraries installed. You may
1269 need to use the native DLL vbrun60.dll. You can get some from dll-files.com.
1275 <question id="When-I-click-on-exe-file-nothing-happens">
1276 <para>When I click on *.exe file in my file Manager, nothing happens.</para>
1280 The normal Wine releases don't have .exe extensions registered for
1281 Wine in KDE/Gnome yet. You have to open a terminal window instead
1282 (often an icon showing a "black screen") and type something like:
1285 cd /my/windows/program/directory
1289 Or alternatively you could download the CodeWeavers Wine preview
1290 which includes .exe extension registration for KDE/Gnome and a nice
1297 <question id="bash-wine-Command-not-found-What-can-I-do">
1298 <para>bash "wine: Command not found" What can I do?</para>
1302 Try to relogin into bash. That might fix it.
1305 If it doesn't, then make sure the wine binary is in your
1306 <parameter>PATH</parameter>.
1312 find / -name "wine" -type f -perm +111
1315 to find the path where the wine binary is in. Then check whether
1316 <parameter>PATH</parameter> includes it:
1322 If not, add that e.g. to <filename>/etc/profile</filename> by doing:
1325 export PATH=$PATH:/path/to/wine/binary
1331 If you used a package manager (<command>rpm</command> or
1332 <command>apt</command>) - Verify your packages. The package
1333 <filename>winesetuptk.rpm</filename> is only a front-end for
1334 making a meaningful config file, it DOES NOT install the wine
1338 For complete packages, use <ulink url="http://www.rpmfind.net/">
1339 www.rpmfind.net</ulink> or the <ulink url="http://www.winehq.org/download/">
1340 Download</ulink> section.
1346 <question id="How-do-I-remove-Wine-from-my-Computer">
1347 <para>How do I remove Wine from my Computer?</para>
1351 All you have to do is to type:
1354 rm -fR \[/path/\]Wine*
1357 Make sure that you specify the exact path when using the powerful
1358 <command>rm -fR</command> command. If you are afraid that you might
1359 delete something important, or might otherwise delete other files
1360 within your filesystem, <command>cd</command> into each Wine
1361 subdirectory singly and delete the files found there manually,
1362 one file or directory at a time.
1365 Neither the Wine developers and programmers, nor the Wine FAQ
1366 author/maintainer, can be held responsible for your deleting any
1367 files in your own filesystem.
1373 <qandadiv id="About-running-Wine">
1374 <title>About running Wine</title>
1376 <question id="How-do-I-run-an-MS-Windows-program">
1377 <para>How do I run an MS Windows program under Wine?</para>
1381 When invoking Wine, you must specify the entire path to the
1382 executable, or by filename only. For example to run Windows'
1383 solitaire, type any of the following:
1388 <command>wine sol</command> or <command>wine sol.exe</command>
1389 (using the search path to locate the file).
1394 <command>wine c:\\windows\\sol.exe</command>
1395 (using a DOS filename).
1400 <command>wine /usr/windows/sol.exe</command>
1401 (using a UNIX filename).
1406 <command>wine "c:\windows\sol.exe"</command>
1407 (using quoted DOS filename).
1412 The path of the file will also be added to the path when a full name
1413 is supplied on the command line.
1420 <question id="Wine-cannot-find-MS-Windows-on-my-drive">
1422 I have installed and configured Wine, but Wine cannot find MS
1423 Windows on my drive. Where did I go wrong?
1428 If you have a DOS partition, first make sure that you have mounted
1429 it, either by putting the entry into <filename>/etc/fstab</filename>,
1430 or by manually mounting it.
1433 Remember too that unless your version of UNIX can see through it, or
1434 you are running a utility that can see through it, your DOS
1435 partition must not be located on a Drivespaced, Doublespaced or
1436 Stackered partition, as neither Linux, FreeBSD, NetBSD or Wine can
1437 natively 'see' files located in these compressed DOS partitions.
1440 Check your path statements in the <filename>wine.conf</filename>
1441 file. No capital letters may be used in paths, as they are
1442 automatically converted to lowercase.
1448 <question id="Parts-of-my-app-do-not-work-What-is-wrong">
1450 I was able to get various MS Windows programs to run, but parts of
1451 them do not work. What is wrong?
1456 Wine is not complete at this time, so some of each programs'
1457 features may not work. They will in time as more of the MS
1458 Windows API calls are included in Wine.
1464 <question id="Menus-do-not-work-how-can-I-exit">
1466 I have run various MS Windows programs, but since the program menus
1467 do not work, how can I exit these programs?
1472 Kill the xterm shell window that you called up to run your MS
1473 Windows program, and the X window that appeared with the program
1480 <question id="My-app-doesnt-work-what-can-i-do">
1482 My program doesn't work, what can I do?
1487 If you are a programmer and know C, then start debugging
1488 Wine and help us make it better! If you can't, then you will
1489 have to either convince a Wine developer to try and make your
1490 program work (there must be a downloadable version or demo for
1491 that), or hire somebody to do it for you. If this application
1492 is an internal corporate application, you may be able to hire a
1493 Wine developer to do consulting work for you on the matter.
1496 Alternatively, you may be able to get the app working by
1497 taking native DLLs from a Microsoft Windows install, and using
1498 them (set the dlls to native in the config file). Not all DLLs
1499 can be replaced that way - in particular DirectX cannot be, nor
1500 can some core system DLLs like user, ntdll, kernel32 etc
1506 <question id="Can-I-use-Wine-with-other-Linux-Distros">
1507 <para>Can I use Wine with SuSE, Peanut or other Linux Distro's?</para>
1511 You can use Wine on any sufficiently recent Linux installation. The
1512 amount of work getting Wine up and running depends on whether there
1513 are proper packages available or a source compile has to be done.
1519 <question id="Does-Wine-work-with-AMD-Processors">
1520 <para>Does Wine work with AMD Processors?</para>
1524 Yes, it does. Wine should work on any processor compatible with
1525 the Pentium or greater.
1531 <question id="Can-I-launch-Unix-app-from-Windows-app">
1532 <para> Can I launch a Unix program from a Windows program?</para>
1536 Sure, Wine supports that. Just enter the unix program name wherever
1537 a program has something that it's supposed to execute, and it
1543 <question id="Error-with-installshield-6">
1545 I get <quote>Error installing iKernel.exe: (0x1400)</quote>
1546 when running an Installshield 6 installer.
1551 If you get the error "Error installing iKernel.exe: (0x1400)" at any
1552 point, it's probably because there are leftover processes from a
1553 previous try. You can verify this with the command
1555 <para><prompt>$ </><command>ps augxw | grep wine</command></para>
1557 If that command shows old copies of wine running your setup,
1558 you need to kill them before you can run the setup program.
1559 If there are no other Wine programs running, you can kill them
1560 all with the command
1562 <para><prompt>$ </><command>killall wine</command></para>
1564 If you're also running Wine programs you care about, you'll
1565 have to kill off the old Setup instances one by one using
1566 kill and the individual PIDs (or perhaps Wine's spiffy Task Manager,
1567 which doesn't exist yet).
1570 You should repeat the <command>ps</command> to make sure the old
1571 Wine processes are gone.
1577 <qandadiv id="Getting-help">
1578 <title>Getting help</title>
1580 <question id="Is-there-any-documentation-for-Wine">
1581 <para>Is there any documentation for Wine?</para>
1585 Yes, see <ulink url="http://www.winehq.org/support.shtml">
1586 http://www.winehq.com/support.shtml.</ulink>
1592 <question id="I-have-written-some-documententation">
1594 I couldn't find the answer to my question in the documentation, but
1595 I've written a document explaining how to solve it. What should I do?
1600 Updates and additions to the Wine documentation directory should be
1601 sent to the wine-patches mailing list at
1602 <ulink url="http://www.winehq.com/dev.shtml#ml">
1603 http://www.winehq.com/dev.shtml#ml</ulink>. Website and FAQ
1604 additions should be added to the appropriate Wine Knowledgebase
1611 <question id="Is-there-a-Usenet-newsgroup-for-Wine">
1612 <para>Is there a Usenet newsgroup for Wine?</para>
1616 Yes, and it's called
1617 <ulink url="news:comp.emulators.ms-windows.wine">
1618 comp.emulators.ms-windows.wine</ulink>. The newsgroup serves as a
1619 place for users and developers to discuss Wine, and for minor
1620 announcements for the general public. Major announcements will be
1621 crossposted to other appropriate newsgroups, such as the following:
1626 <ulink url="news:comp.os.linux.announce">
1627 comp.os.linux.announce</ulink>
1632 <ulink url="news:ccomp.windows.x.announce">
1633 comp.windows.x.announce</ulink>
1638 <ulink url="news:ccomp.emulators.announce">
1639 comp.emulators.announce</ulink>
1644 If your Usenet site does not carry these newsgroups, please urge
1645 your ISP's sysadmin to add and/or uplink them.
1651 <question id="Is-there-a-World-Wide-Web-site-for-Wine">
1652 <para>Is there a World Wide Web site for Wine?</para>
1656 Wine HQ (<ulink url="http://www.winehq.com">http://www.winehq.com</ulink>) is the official site.
1662 <question id="Is-there-an-IRC-channel-for-Wine">
1663 <para>Is there an IRC channel for Wine?</para>
1667 Sure. It's channel <filename>#WineHQ</filename> on
1668 <filename>irc.freenode.net</filename> see
1669 (<ulink url="http://freenode.net">http://freenode.net</ulink>).
1670 Usually several Wine developers hang out there just to help YOU ;-)
1676 <question id="I-think-I-found-a-bug-How-do-I-report-it">
1678 I think I've found a bug. How do I report this bug to the Wine
1684 Bug reports should be submitted to our online Bugzilla system
1685 (<ulink url="http://bugs.winehq.com">http://bugs.winehq.com/</ulink>).
1686 You should include at least the following:
1691 The Wine version tested
1696 The Windows application name, including the version, and, if
1697 applicable, a URL the application can be downloaded from
1702 A brief description of the bug
1707 The relevant part(s) of the output of the Wine debugger
1712 A screenshot of the visual problem, if applicable
1717 For more information about reporting bugs please see the
1718 <ulink url="http://www.winehq.org/Docs/wine-user/bug-reporting.shtml">
1719 How to report a bug</ulink> section of the Wine Users Guide.
1725 <qandadiv id="Helping-Wine-or-becoming-a-Wine-developer">
1726 <title>Helping Wine or becoming a Wine developer</title>
1728 <question id="How-do-I-become-a-Wine-developer">
1729 <para>How do I become a Wine developer? What do I need to know?</para>
1733 If you can program C, that's a good start. Download the sources via
1734 CVS, subscribe to the mailing lists, look around the source, and pay
1735 attention to the comp.emulators.ms-windows.wine newsgroup and the
1736 mailing lists (<ulink url="http://www.winehq.com/dev.shtml#ml">http://www.winehq.com/dev.shtml#ml</ulink>). See if there's anything
1737 that you think you can fix or work on. You won't have much trouble
1738 finding areas that need work in Wine (grep for FIXMEs in the source).
1744 <question id="How-can-I-contribute-to-the-Wine-project">
1745 <para>How can I help contribute to the Wine project, and in what way(s)?</para>
1749 You can contribute programming or documentation skills, or monetary
1750 or equipment donations, to aid the Wine developers in reaching their
1754 For a list of ideas of how you can help, please consult the
1755 <ulink url="http://www.winehq.com/about/index.php?contrib">
1756 Wine contrib page</ulink>.
1762 <question id="I-want-to-help-beta-test-Wine">
1763 <para>I want to help beta test Wine. How can I do this?</para>
1767 Wine still consists of some Alpha code at this time. However, anyone
1768 is welcome to download the latest version, and try it out at any
1775 <question id="I-wrote-some-code-I-would-like-to-submit">
1777 I have written some code that I would like to submit to the Wine
1778 project. How do I go about doing this?
1783 Patches are greatly appreciated and should be submitted to the
1784 wine-patches mailing list
1785 (<ulink url="http://www.winehq.com/dev.shtml#ml">http://www.winehq.com/dev.shtml#ml</ulink>). Also see this page for
1786 a description of what happens to submitted patches.
1792 <qandadiv id="Developing-programs-using-Wine-WineLib">
1793 <title>Developing programs using Wine/WineLib</title>
1795 <question id="Can-I-use-Wine-to-port-Win32-sources-to-Unix">
1796 <para>Can I use Wine to port my Win32 sources to Unix?</para>
1800 That is the idea of Winelib. Right now you may still have some
1801 difficulties, but this is changing all the time. Read the
1802 <ulink url="http://www.winehq.org/Docs/winelib-user/">Winelib User's Guide</ulink> for info.
1808 <question id="Will-MFC-work-with-Wine-What-do-I-need-to-do">
1809 <para>Will MFC work with Wine? What do I need to do?</para>
1813 Wine is not implementing an MFC replacement nor does it intend to.
1814 However it is possible (with a lot of work) to compile the MFC from
1815 source and thus produce an <filename>mfc42.dll.so</filename> library.
1819 <ulink url="http://www.winehq.org/Docs/winelib-user/">Winelib User's Guide</ulink> for how to do this.
1825 <question id="Are-there-commercial-apps-ported-using-Wine">
1827 Are there any commercial applications which have been ported
1833 A few examples of applications using Winelib:
1838 Corel's WordPerfect Office Suite
1844 (<ulink url="http://www.ability.com/linux/abilitylinux.php">http://www.ability.com/linux/abilitylinux.php</ulink>)
1850 (<ulink url="http://www7b.boulder.ibm.com/dl/swws/swwsgddb-p">http://www7b.boulder.ibm.com/dl/swws/swwsgddb-p</ulink>)
1855 Many other important applications have already been ported. (we are
1856 speaking of several top 500 applications here)
1862 <question id="How-can-I-detect-Wine">
1863 <para>How can I detect Wine?</para>
1867 You really shouldn't want to do this. If there's a quirk in Wine
1868 you need to work around, it's much better to fix it in Wine (after
1869 all you're a developer, so you should be able to gather enough help
1870 and knowledge to fix it for real).
1878 <qandadiv id="Wine-HQ-issues">
1879 <title>Wine HQ issues</title>
1881 <question id="Why-are-the-maillists-set-to-reply-to-author">
1883 Why are the maillists set to reply to author, not to mailing list?
1888 There are very valid reasons for doing so.
1894 <question id="How-to-unsubscribe-from-the-mailing-lists">
1895 <para>How to unsubscribe from the mailing lists?</para>
1899 Please see: <ulink url="http://www.winehq.org/development/#ml">http://www.winehq.org/development/#ml</ulink>
1908 <!-- Keep this comment at the end of the file
1911 sgml-parent-document:("wine-devel.sgml" "book" "part" "chapter" "")