<?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>DEV Community: Ajas</title>
    <description>The latest articles on DEV Community by Ajas (@ajassharafudeen).</description>
    <link>https://dev.to/ajassharafudeen</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%2F1459617%2Fd2722a1b-2e65-4b5a-82e7-e994ddcc5744.png</url>
      <title>DEV Community: Ajas</title>
      <link>https://dev.to/ajassharafudeen</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ajassharafudeen"/>
    <language>en</language>
    <item>
      <title>How to install Postman (tar.gz) on Fedora Linux 40?</title>
      <dc:creator>Ajas</dc:creator>
      <pubDate>Sat, 26 Oct 2024 17:47:19 +0000</pubDate>
      <link>https://dev.to/ajassharafudeen/how-to-install-postman-targz-on-fedora-linux-40-547h</link>
      <guid>https://dev.to/ajassharafudeen/how-to-install-postman-targz-on-fedora-linux-40-547h</guid>
      <description>&lt;p&gt;Downloading and Installing tar.gz always seems like a daunting task. I have spent hours to figure out the right way to properly install Postman on my system. And now, I've done it, and I would like to share with you. If your system is based on x64 (64 bit) architecture, just follow the steps below and you can install and run the software within few minutes.&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;Step 1: Downloading the Postman Installation File&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;To get started, download the Postman application. We’ll grab the tarball directly from the Postman website.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Open your terminal&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Use the &lt;code&gt;wget&lt;/code&gt; command to download the tarball file&lt;br&gt;
&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

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

&lt;/div&gt;



&lt;p&gt;This command downloads the latest version of Postman and saves it as &lt;code&gt;postman.tar.gz&lt;/code&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Step 2: Extracting the Postman Archive&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Once the download is complete, we’ll extract the tarball and move the extracted tarball into &lt;code&gt;/opt&lt;/code&gt; directory for system wide access.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;tar -xzf postman.tar.gz
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;sudo mv Postman /opt
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  &lt;strong&gt;Step 3: Set Up a Symlink&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;To make it easier to open Postman from the terminal, you can set up a symbolic link to the executable.&lt;/p&gt;

&lt;p&gt;Run this following command:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;sudo ln -s /opt/Postman/Postman /usr/local/bin/postman
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Now, you can launch Postman simply by typing postman in the terminal.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Step 4: Create a Desktop Entry&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Adding a desktop entry will allow you to launch Postman from the application menu like other programs.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Open a new file with:
&lt;/li&gt;
&lt;/ul&gt;

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

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Paste the following configuration into the file:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[Desktop Entry]
Encoding=UTF-8
Name=Postman
Exec=postman
Icon=/opt/Postman/app/resources/app/assets/icon.png
Terminal=false
Type=Application
Categories=Development;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Save and close the file by pressing &lt;strong&gt;Ctrl + X&lt;/strong&gt;, then hit &lt;strong&gt;Enter&lt;/strong&gt; key.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This desktop entry should now show Postman in your applications menu.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Step 5: Launching Postman&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;You can now open Postman in either of the following ways:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Type postman in the terminal.&lt;/li&gt;
&lt;li&gt;Open it from the applications menu (if you created the desktop entry).&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And that’s it! 🎉 You’ve successfully installed Postman on Fedora. Now you can start testing APIs, exploring collections, and using Postman’s powerful features.&lt;/p&gt;




</description>
      <category>postman</category>
      <category>fedora</category>
      <category>linux</category>
      <category>api</category>
    </item>
  </channel>
</rss>
