<?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 for Tecmint: Linux Howtos, Tutorials &amp; Guides	</title>
	<atom:link href="https://www.tecmint.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Thu, 03 Sep 2026 05:57:55 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		Comment on 10 Linux Terminal Shortcuts to Stop Retyping Commands by dragonmouth		</title>
		<link>https://www.tecmint.com/bash-shortcuts-stop-retyping-commands/comment-page-1/#comment-2470520</link>

		<dc:creator><![CDATA[dragonmouth]]></dc:creator>
		<pubDate>Wed, 02 Sep 2026 19:10:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=2395#comment-2470520</guid>

					<description><![CDATA[&quot;you do it a dozen times a day&quot;
If you do it a dozen times a day, that means either you are not cut out to use CLI OR you need a Bash refresher course, BAD.  :-)

One needs to learn AND remember these shortcuts, which are not exactly intuitive,  IF one learns these shortcuts through repetition, see the paragraph above.]]></description>
			<content:encoded><![CDATA[<p>&#8220;you do it a dozen times a day&#8221;<br />
If you do it a dozen times a day, that means either you are not cut out to use CLI OR you need a Bash refresher course, BAD.  :-)</p>
<p>One needs to learn AND remember these shortcuts, which are not exactly intuitive,  IF one learns these shortcuts through repetition, see the paragraph above.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on How to Manage Linux Updates Across Multiple Distributions by Shivam		</title>
		<link>https://www.tecmint.com/patch-linux-distributions-from-one-console/comment-page-1/#comment-2469338</link>

		<dc:creator><![CDATA[Shivam]]></dc:creator>
		<pubDate>Wed, 02 Sep 2026 11:24:08 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=63060#comment-2469338</guid>

					<description><![CDATA[This is my first time reading an article completely and I just don&#039;t understand what this article is solution the article has presented for the problem ?

&#062; If you are running a varied environment and patching has started to feel like guesswork, it is worth seeing how centralized Linux patch management can help you handle your whole fleet at once. Try it free for 30 days.

What to try ? What is the solution ?]]></description>
			<content:encoded><![CDATA[<p>This is my first time reading an article completely and I just don&#8217;t understand what this article is solution the article has presented for the problem ?</p>
<p>&gt; If you are running a varied environment and patching has started to feel like guesswork, it is worth seeing how centralized Linux patch management can help you handle your whole fleet at once. Try it free for 30 days.</p>
<p>What to try ? What is the solution ?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Wine 10.0 Released &#8211; Install and Run Windows Software on Linux 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>
		Comment on How to Prepare for the LFCA Certification Exam (Linux Foundation Certified IT Associate) by Ravi Saive		</title>
		<link>https://www.tecmint.com/lfca-certification-exam-guide/comment-page-1/#comment-2456019</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Thu, 20 Aug 2026 10:40:55 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=62675#comment-2456019</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/lfca-certification-exam-guide/comment-page-1/#comment-2453187&quot;&gt;dan burnfield&lt;/a&gt;.

@dan,

Thanks for letting us know, and sorry about the trouble.

It looks like something may have gone wrong during the subscription process. Could you please try subscribing again? If you still see the same error, please send us the email address you used to subscribe so we can check your account and help you get access to the free course.

Thanks for your patience.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/lfca-certification-exam-guide/comment-page-1/#comment-2453187">dan burnfield</a>.</p>
<p>@dan,</p>
<p>Thanks for letting us know, and sorry about the trouble.</p>
<p>It looks like something may have gone wrong during the subscription process. Could you please try subscribing again? If you still see the same error, please send us the email address you used to subscribe so we can check your account and help you get access to the free course.</p>
<p>Thanks for your patience.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on How to Rename Files Using mmv for Advanced Renaming by john		</title>
		<link>https://www.tecmint.com/mmv-command-linux/comment-page-1/#comment-2453501</link>

		<dc:creator><![CDATA[john]]></dc:creator>
		<pubDate>Mon, 17 Aug 2026 01:30:24 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=59144#comment-2453501</guid>

					<description><![CDATA[Fedora switched from yum to dnf sometime ago]]></description>
			<content:encoded><![CDATA[<p>Fedora switched from yum to dnf sometime ago</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
