<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Christian G. Garcia</title>
    <description>The latest articles on Forem by Christian G. Garcia (@christiangarcia0311).</description>
    <link>https://forem.com/christiangarcia0311</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3774143%2Fbc9d528c-76b5-492d-af79-1fe3a376d826.jpeg</url>
      <title>Forem: Christian G. Garcia</title>
      <link>https://forem.com/christiangarcia0311</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/christiangarcia0311"/>
    <language>en</language>
    <item>
      <title>Postman Installation Guide for Linux Mint Cinnamon</title>
      <dc:creator>Christian G. Garcia</dc:creator>
      <pubDate>Sun, 15 Feb 2026 16:20:44 +0000</pubDate>
      <link>https://forem.com/christiangarcia0311/postman-installation-guide-for-linux-mint-cinnamon-1ghc</link>
      <guid>https://forem.com/christiangarcia0311/postman-installation-guide-for-linux-mint-cinnamon-1ghc</guid>
      <description>&lt;p&gt;If you're using &lt;code&gt;Linux Mint Cinnamon&lt;/code&gt; and need a reliable API testing tool, &lt;code&gt;Postman&lt;/code&gt; is a useful application for building and testing APIs. It is commonly installed on Ubuntu-based systems using Snap. However, on recent versions of Linux Mint (20 and above), Snap support is disabled by default, making Snap installation unavailable.&lt;/p&gt;

&lt;p&gt;Since Linux Mint is Ubuntu-based, you can still install Postman easily using the terminal. The instructions below demonstrate how to install Postman manually without &lt;code&gt;Snap&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Download Postman&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;wget https://dl.pstmn.io/download/latest/linux64 &lt;span class="nt"&gt;-O&lt;/span&gt; postman.tar.gz
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;2. Extract to&lt;/strong&gt; &lt;code&gt;/opt&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;sudo tar&lt;/span&gt; &lt;span class="nt"&gt;-xzf&lt;/span&gt; postman.tar.gz &lt;span class="nt"&gt;-C&lt;/span&gt; /opt
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;After extraction, the directory &lt;code&gt;/opt/Postman&lt;/code&gt; will be created.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Create a System-wide Symlink&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;To allow launching Postman from anywhere in the terminal using the &lt;code&gt;postman&lt;/code&gt; command:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;sudo ln&lt;/span&gt; &lt;span class="nt"&gt;-s&lt;/span&gt; /opt/Postman/Postman /usr/bin/postman
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Now you can simply &lt;code&gt;postman&lt;/code&gt; from any directory.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. Remove the Download File (Optional)&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Since the archive is no longer needed:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;rm &lt;/span&gt;postman.tar.gz
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;5. Create a Desktop Launcher&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you want to Postman to appear in your application menu, create a &lt;code&gt;.desktop&lt;/code&gt; file:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;sudo vim /usr/share/applications/postman.desktop
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;and paste the following:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight ini"&gt;&lt;code&gt;&lt;span class="nn"&gt;[Desktop Entry]&lt;/span&gt; 
&lt;span class="py"&gt;Type&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;Application &lt;/span&gt;
&lt;span class="py"&gt;Name&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;Postman &lt;/span&gt;
&lt;span class="py"&gt;Icon&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;/opt/Postman/app/resources/app/assets/icon.png &lt;/span&gt;
&lt;span class="py"&gt;Exec&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;"/opt/Postman/Postman"&lt;/span&gt; 
&lt;span class="s"&gt;Comment=Postman Desktop App &lt;/span&gt;
&lt;span class="py"&gt;Categories&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;Development;Code;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Save and exit. &lt;code&gt;Postman&lt;/code&gt; should now appear in your application menu.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>backend</category>
      <category>api</category>
      <category>restapi</category>
    </item>
  </channel>
</rss>
