<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: Wine 10.0 Released &#8211; Install and Run Windows Software on Linux	</title>
	<atom:link href="https://www.tecmint.com/install-wine-in-rhel-centos-and-fedora/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/install-wine-in-rhel-centos-and-fedora/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Sat, 22 Aug 2026 20:02:35 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: ttemsk (Mikko)		</title>
		<link>https://www.tecmint.com/install-wine-in-rhel-centos-and-fedora/comment-page-1/#comment-2458495</link>

		<dc:creator><![CDATA[ttemsk (Mikko)]]></dc:creator>
		<pubDate>Sat, 22 Aug 2026 20:02:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=582#comment-2458495</guid>

					<description><![CDATA[Instructions for installing (building, actually) Wine 10.0 for CentOS Stream worked like charm, even for myself who is not combortable with building software from sources.

However, the dependencies installed here are only sufficient for building a 64-bit Wine, which can only run 64-bit Windows binaries. Such a build is triggered by the --enable-win64 flag to the configuration script.

Most people are likely interested to build a Wine version hosted in a 64-bit OS (such as CentOS), but capable of running both 32-bit and 64-bit Windows binaries. Such a build is triggered by a different flag:
&#062; ./configure --enable-archs=i386,x86_64
&#062; make 

See https://gitlab.winehq.org/wine/wine/-/wikis/Building-Wine

Such a build requires pre-installing one more dependency, namely a compiler capable of generating PE or Portable Executables. Me and Claude Sonnet figured out that there are no suitable compilers in the CentOS or EPEL repositories. The mstorsjo/llvm-mingw project in GitHub however provides a suitable compiler collection. The steps are:

- Download a recent version of the llvm-mingw--ucrt-ubuntu-22.04-x86_64.tar.xz
(Ignore the &#039;ubuntu&#039;: that is the system used to build the library, not the target system)
- Use tar to extract contents, eg. to an /opt subdirectory
- Add the /opt//bin to $PATH
(Now the Wine config script finds the compilers)
- Launch the Wine build configure script with the --enable-archs=i386,x86_64 flag
- Launch make]]></description>
			<content:encoded><![CDATA[<p>Instructions for installing (building, actually) Wine 10.0 for CentOS Stream worked like charm, even for myself who is not combortable with building software from sources.</p>
<p>However, the dependencies installed here are only sufficient for building a 64-bit Wine, which can only run 64-bit Windows binaries. Such a build is triggered by the &#8211;enable-win64 flag to the configuration script.</p>
<p>Most people are likely interested to build a Wine version hosted in a 64-bit OS (such as CentOS), but capable of running both 32-bit and 64-bit Windows binaries. Such a build is triggered by a different flag:<br />
&gt; ./configure &#8211;enable-archs=i386,x86_64<br />
&gt; make </p>
<p>See <a target="_blank" href="https://gitlab.winehq.org/wine/wine/-/wikis/Building-Wine" rel="nofollow ugc">https://gitlab.winehq.org/wine/wine/-/wikis/Building-Wine</a></p>
<p>Such a build requires pre-installing one more dependency, namely a compiler capable of generating PE or Portable Executables. Me and Claude Sonnet figured out that there are no suitable compilers in the CentOS or EPEL repositories. The mstorsjo/llvm-mingw project in GitHub however provides a suitable compiler collection. The steps are:</p>
<p>&#8211; Download a recent version of the llvm-mingw&#8211;ucrt-ubuntu-22.04-x86_64.tar.xz<br />
(Ignore the &#8216;ubuntu&#8217;: that is the system used to build the library, not the target system)<br />
&#8211; Use tar to extract contents, eg. to an /opt subdirectory<br />
&#8211; Add the /opt//bin to $PATH<br />
(Now the Wine config script finds the compilers)<br />
&#8211; Launch the Wine build configure script with the &#8211;enable-archs=i386,x86_64 flag<br />
&#8211; Launch make</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/install-wine-in-rhel-centos-and-fedora/comment-page-1/#comment-2317207</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Thu, 19 Jun 2025 05:16:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=582#comment-2317207</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/install-wine-in-rhel-centos-and-fedora/comment-page-1/#comment-2317031&quot;&gt;aamir_ams@yahoo.com&lt;/a&gt;.

@Aamir,

On RHEL 8, the recommended way to install Bottles is through Flatpak, which ensures you get the latest stable version with all dependencies managed automatically. 
&lt;pre&gt;
sudo dnf install epel-release -y
sudo dnf install flatpak -y
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak install flathub com.usebottles.bottles -y
flatpak run com.usebottles.bottles
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/install-wine-in-rhel-centos-and-fedora/comment-page-1/#comment-2317031">aamir_ams@yahoo.com</a>.</p>
<p>@Aamir,</p>
<p>On RHEL 8, the recommended way to install Bottles is through Flatpak, which ensures you get the latest stable version with all dependencies managed automatically. </p>
<pre>
sudo dnf install epel-release -y
sudo dnf install flatpak -y
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak install flathub com.usebottles.bottles -y
flatpak run com.usebottles.bottles
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: aamir_ams@yahoo.com		</title>
		<link>https://www.tecmint.com/install-wine-in-rhel-centos-and-fedora/comment-page-1/#comment-2317031</link>

		<dc:creator><![CDATA[aamir_ams@yahoo.com]]></dc:creator>
		<pubDate>Wed, 18 Jun 2025 11:07:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=582#comment-2317031</guid>

					<description><![CDATA[Could you please tell me how to install Bottles on RHEL 8?]]></description>
			<content:encoded><![CDATA[<p>Could you please tell me how to install Bottles on RHEL 8?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: nicu		</title>
		<link>https://www.tecmint.com/install-wine-in-rhel-centos-and-fedora/comment-page-1/#comment-2165123</link>

		<dc:creator><![CDATA[nicu]]></dc:creator>
		<pubDate>Mon, 29 Apr 2024 10:33:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=582#comment-2165123</guid>

					<description><![CDATA[Pro tip: You don&#039;t need either the Workstation meta-package or the GNOME desktop in order to run Wine on Fedora.]]></description>
			<content:encoded><![CDATA[<p>Pro tip: You don&#8217;t need either the Workstation meta-package or the GNOME desktop in order to run Wine on Fedora.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/install-wine-in-rhel-centos-and-fedora/comment-page-1/#comment-2154050</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Mon, 01 Apr 2024 04:10:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=582#comment-2154050</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/install-wine-in-rhel-centos-and-fedora/comment-page-1/#comment-2153867&quot;&gt;YOgesh A M&lt;/a&gt;.

@Yogesh,

To install the 32-bit version of Wine on RHEL 9, you&#039;ll need to install the necessary 32-bit development packages installed, particularly those related to Xlib. 
&lt;pre&gt;
sudo dnf install libX11-devel.i686
&lt;/pre&gt;
After installing the required packages, you can attempt to configure Wine again with the:
&lt;pre&gt;
./configure --enable-win
make
sudo make install
&lt;/pre&gt;
This should successfully configure and install the 32-bit version of Wine on your RHEL 9 system.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/install-wine-in-rhel-centos-and-fedora/comment-page-1/#comment-2153867">YOgesh A M</a>.</p>
<p>@Yogesh,</p>
<p>To install the 32-bit version of Wine on RHEL 9, you&#8217;ll need to install the necessary 32-bit development packages installed, particularly those related to Xlib. </p>
<pre>
sudo dnf install libX11-devel.i686
</pre>
<p>After installing the required packages, you can attempt to configure Wine again with the:</p>
<pre>
./configure --enable-win
make
sudo make install
</pre>
<p>This should successfully configure and install the 32-bit version of Wine on your RHEL 9 system.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
