<?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>Thu, 19 Jun 2025 05:16:49 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<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>
		<item>
		<title>
		By: YOgesh A M		</title>
		<link>https://www.tecmint.com/install-wine-in-rhel-centos-and-fedora/comment-page-1/#comment-2153867</link>

		<dc:creator><![CDATA[YOgesh A M]]></dc:creator>
		<pubDate>Sun, 31 Mar 2024 17:01:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=582#comment-2153867</guid>

					<description><![CDATA[Hello Ravi,

Could you please me with wine 32 bit installation in Rhel 9.

I have installed wine but I need 32 bit.

I have tried to install using &lt;code&gt;./configure --enable-win&lt;/code&gt; getting the below error.
&lt;pre&gt;
checking for i386-w64-mingw32-clang... no
checking for clang... no
checking for pthread_create... yes
checking how to run the C preprocessor... gcc -m32 -E
checking for X... no
configure: error: X 32-bit development files not found. Wine will be built
without X support, which probably isn&#039;t what you want. You will need
to install 32-bit development packages of Xlib at the very least.
Use the --without-x option if you really want this.
&lt;/pre&gt;
Could you please guide me to install 32 bit.]]></description>
			<content:encoded><![CDATA[<p>Hello Ravi,</p>
<p>Could you please me with wine 32 bit installation in Rhel 9.</p>
<p>I have installed wine but I need 32 bit.</p>
<p>I have tried to install using <code>./configure --enable-win</code> getting the below error.</p>
<pre>
checking for i386-w64-mingw32-clang... no
checking for clang... no
checking for pthread_create... yes
checking how to run the C preprocessor... gcc -m32 -E
checking for X... no
configure: error: X 32-bit development files not found. Wine will be built
without X support, which probably isn't what you want. You will need
to install 32-bit development packages of Xlib at the very least.
Use the --without-x option if you really want this.
</pre>
<p>Could you please guide me to install 32 bit.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
