<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Tutorials &amp;mdash; MiguVT Lab</title>
    <link>https://blog.miguvt.com/tag:Tutorials</link>
    <description>Tech, gaming, cybersecurity, and digital culture insights from vtuber and programmer miguvt.</description>
    <pubDate>Fri, 26 Jun 2026 05:17:45 +0200</pubDate>
    <item>
      <title>Simple Guide to Installing Programs on CachyOS</title>
      <link>https://blog.miguvt.com/simple-guide-to-installing-programs-on-cachyos</link>
      <description>&lt;![CDATA[Official Method (Repositories)&#xA;&#xA;To install programs that are in the official repositories, you have two equivalent options:&#xA;&#xA;Use the graphical interface called CachyOS Package Installer (easier and more visual).&#xA;Use the terminal with the pacman command.&#xA;!--more--&#xA;Both methods do the same thing: manage official Arch and CachyOS packages. The difference is just how you use them.&#xA;&#xA;Example in terminal:&#xA;sudo pacman -S package-name&#xA;&#xA;In the graphical interface, just search for the program and click install.&#xA;&#xA;Remember: It’s good practice to keep your system updated with:&#xA;sudo pacman -Syu&#xA;&#xA;Method for AUR (Arch User Repository)&#xA;&#xA;If the program isn&#39;t in the official repositories, you look for it in AUR. To install from AUR, you use a tool called paru (or another similar).&#xA;&#xA;Example:&#xA;paru equibop-bin&#xA;&#xA;⚠️ Important: Don’t use sudo with paru. This command must be run without administrator privileges, or it will give you an error.&#xA;&#xA;What does &#34;-bin&#34; mean?&#xA;&#xA;The suffix -bin indicates that the package is distributed as precompiled binaries, meaning it is ready to install and use without needing to compile on your machine.&#xA;This speeds up installation and avoids having to wait a long time compiling code.&#xA;Whenever possible, it’s recommended to use the &#34;-bin&#34; version because it simplifies and speeds up the process.&#xA;If there is no &#34;-bin&#34; version, you can install the version that compiles from source (usually the package without that suffix).&#xA;&#xA;Warning about AUR&#xA;&#xA;AUR packages are created by the community and are not as controlled as the official ones. Therefore:&#xA;&#xA;Be careful when installing little-known or recent packages.&#xA;Check comments and votes before installing.&#xA;Popular and well-rated packages usually pose no problem.&#xA;&#xA;Quick Summary&#xA;&#xA;| Method                        | Command or Action                | Purpose                                |&#xA;|------------------------------|--------------------------------|--------------------------------------|&#xA;| CachyOS Package Installer     | Graphical interface             | Easily install official packages     |&#xA;| pacman                       | sudo pacman -S package-name   | Install official packages via terminal |&#xA;| paru                         | paru package-name              | Install community (AUR) packages without sudo |&#xA;| Prioritize &#34;-bin&#34; packages   | Example: paru equibop-bin      | Precompiled binary packages, faster installation |&#xA;&#xA;---&#xA;&#xA;If you want to dive deeper, check official documentation at the Arch Linux wiki and the CachyOS wiki.&#xA;&#xA;---&#xA;&#xA;I created this documentation because in the CachyOS wiki I couldn’t find anything explained this simply, and because a friend named Nakarer, who is new to Arch and only knew Debian (apt), needed help understanding how to install programs here.&#xA;&#xA;#Tutorials #linux #EN]]&gt;</description>
      <content:encoded><![CDATA[<h2 id="official-method-repositories" id="official-method-repositories">Official Method (Repositories)</h2>

<p>To install programs that are in the official repositories, you have two equivalent options:</p>
<ul><li>Use the <strong>graphical interface called CachyOS Package Installer</strong> (easier and more visual).</li>
<li>Use the <strong>terminal with the pacman command</strong>.

Both methods do the same thing: manage official Arch and CachyOS packages. The difference is just how you use them.</li></ul>

<p>Example in terminal:</p>

<pre><code>sudo pacman -S package-name
</code></pre>

<p>In the graphical interface, just search for the program and click install.</p>

<p><strong>Remember:</strong> It’s good practice to keep your system updated with:</p>

<pre><code>sudo pacman -Syu
</code></pre>

<h2 id="method-for-aur-arch-user-repository" id="method-for-aur-arch-user-repository">Method for AUR (Arch User Repository)</h2>

<p>If the program isn&#39;t in the official repositories, you look for it in AUR. To install from AUR, you use a tool called <strong>paru</strong> (or another similar).</p>

<p>Example:</p>

<pre><code>paru equibop-bin
</code></pre>

<p>⚠️ <strong>Important:</strong> Don’t use sudo with paru. This command must be run without administrator privileges, or it will give you an error.</p>

<h3 id="what-does-bin-mean" id="what-does-bin-mean">What does “-bin” mean?</h3>
<ul><li>The suffix <strong>-bin</strong> indicates that the package is distributed as <strong>precompiled binaries</strong>, meaning it is ready to install and use without needing to compile on your machine.</li>
<li>This speeds up installation and avoids having to wait a long time compiling code.</li>
<li>Whenever possible, it’s recommended to use the “-bin” version because it simplifies and speeds up the process.</li>
<li>If there is no “-bin” version, you can install the version that compiles from source (usually the package without that suffix).</li></ul>

<h2 id="warning-about-aur" id="warning-about-aur">Warning about AUR</h2>

<p>AUR packages are created by the community and are not as controlled as the official ones. Therefore:</p>
<ul><li>Be careful when installing little-known or recent packages.</li>
<li>Check comments and votes before installing.</li>
<li>Popular and well-rated packages usually pose no problem.</li></ul>

<h2 id="quick-summary" id="quick-summary">Quick Summary</h2>

<table>
<thead>
<tr>
<th>Method</th>
<th>Command or Action</th>
<th>Purpose</th>
</tr>
</thead>

<tbody>
<tr>
<td>CachyOS Package Installer</td>
<td>Graphical interface</td>
<td>Easily install official packages</td>
</tr>

<tr>
<td>pacman</td>
<td><code>sudo pacman -S package-name</code></td>
<td>Install official packages via terminal</td>
</tr>

<tr>
<td>paru</td>
<td><code>paru package-name</code></td>
<td>Install community (AUR) packages without sudo</td>
</tr>

<tr>
<td>Prioritize “-bin” packages</td>
<td>Example: <code>paru equibop-bin</code></td>
<td>Precompiled binary packages, faster installation</td>
</tr>
</tbody>
</table>

<hr>

<p>If you want to dive deeper, check official documentation at the <a href="https://wiki.archlinux.org/title/Arch_User_Repository">Arch Linux wiki</a> and the <a href="https://wiki.cachyos.org">CachyOS wiki</a>.</p>

<hr>

<p>I created this documentation because in the CachyOS wiki I couldn’t find anything explained this simply, and because a friend named Nakarer, who is new to Arch and only knew Debian (apt), needed help understanding how to install programs here.</p>

<p><a href="https://blog.miguvt.com/tag:Tutorials" class="hashtag"><span>#</span><span class="p-category">Tutorials</span></a> <a href="https://blog.miguvt.com/tag:linux" class="hashtag"><span>#</span><span class="p-category">linux</span></a> <a href="https://blog.miguvt.com/tag:EN" class="hashtag"><span>#</span><span class="p-category">EN</span></a></p>
]]></content:encoded>
      <guid>https://blog.miguvt.com/simple-guide-to-installing-programs-on-cachyos</guid>
      <pubDate>Sun, 23 Nov 2025 21:43:22 +0100</pubDate>
    </item>
  </channel>
</rss>