<?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: Amen Allah Jendoubi</title>
    <description>The latest articles on DEV Community by Amen Allah Jendoubi (@amen_allahjendoubi_bc5fa).</description>
    <link>https://dev.to/amen_allahjendoubi_bc5fa</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4090453%2Fa13b9235-3946-4fe7-b742-27969e7dd699.png</url>
      <title>DEV Community: Amen Allah Jendoubi</title>
      <link>https://dev.to/amen_allahjendoubi_bc5fa</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/amen_allahjendoubi_bc5fa"/>
    <language>en</language>
    <item>
      <title>SSH Command Explained for Beginners</title>
      <dc:creator>Amen Allah Jendoubi</dc:creator>
      <pubDate>Sun, 23 Aug 2026 06:58:06 +0000</pubDate>
      <link>https://dev.to/amen_allahjendoubi_bc5fa/ssh-command-explained-for-beginners-59g</link>
      <guid>https://dev.to/amen_allahjendoubi_bc5fa/ssh-command-explained-for-beginners-59g</guid>
      <description>&lt;p&gt;SSH (Secure Shell) is mainly used to connect to a remote machine, allowing you to execute commands on it as if you were sitting right in front of it all while protecting that communication from being intercepted.&lt;br&gt;
SSH consists of two parts: &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;SSH server : runs on the remote machine and listens for incoming connections, typically on port 22.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;SSH client :runs on your local system and initiates the connection.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Let's have an example :&lt;br&gt;
Suppose you want to connect to Charly's remote system and run some commands on his end. SSH makes this easy:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fwi4wi7sjkdb50so9g1av.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fwi4wi7sjkdb50so9g1av.png" alt="ssh command" width="367" height="75"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;let's understand the command components :&lt;br&gt;
charly ---&amp;gt; username on the remote system &lt;br&gt;
remote-sys ---&amp;gt; remote system IP adress (1.1.1.1) or could be a domain name if it has one (example.com) &lt;/p&gt;

&lt;p&gt;After running this command, you'll be prompted to enter Charly's password on that remote system. Once authenticated, your terminal becomes a mirror of Charly's and your prompt will change to something like:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight console"&gt;&lt;code&gt;&lt;span class="gp"&gt;charly@remote-sys $&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;now every command you type loaclly will travel in a secure encrypted tunnel to the remote machine and runs there. This makes remote command execution both efficient and secure.   &lt;/p&gt;

&lt;p&gt;To close the session and get back to your own terminal, simply type:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight console"&gt;&lt;code&gt;&lt;span class="gp"&gt;charly@remote-sys $&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nb"&gt;exit&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
    </item>
  </channel>
</rss>
