<?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: Araz shah</title>
    <description>The latest articles on DEV Community by Araz shah (@araz_shah_879448bf2d59452).</description>
    <link>https://dev.to/araz_shah_879448bf2d59452</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%2F3061457%2F3fbf3554-e964-4b7c-8620-20184cf00d2f.png</url>
      <title>DEV Community: Araz shah</title>
      <link>https://dev.to/araz_shah_879448bf2d59452</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/araz_shah_879448bf2d59452"/>
    <language>en</language>
    <item>
      <title>rsynx: Share a Live Terminal Without SSH or a Public IP</title>
      <dc:creator>Araz shah</dc:creator>
      <pubDate>Fri, 11 Sep 2026 10:00:58 +0000</pubDate>
      <link>https://dev.to/araz_shah_879448bf2d59452/rsynx-share-a-live-terminal-without-ssh-or-a-public-ip-9dg</link>
      <guid>https://dev.to/araz_shah_879448bf2d59452/rsynx-share-a-live-terminal-without-ssh-or-a-public-ip-9dg</guid>
      <description>&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%2Fcv0fziusat3ifj6xg22t.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%2Fcv0fziusat3ifj6xg22t.png" alt=" " width="800" height="800"&gt;&lt;/a&gt;&lt;br&gt;
Helping someone troubleshoot a terminal problem remotely often involves a frustrating loop:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Run this command and send me the output.”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Then you wait for a screenshot, send another command, and repeat the process.&lt;/p&gt;

&lt;p&gt;I built &lt;strong&gt;rsynx&lt;/strong&gt; to make that workflow more direct.&lt;/p&gt;
&lt;h2&gt;
  
  
  What is rsynx?
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;rsynx&lt;/strong&gt; is an open-source tool for sharing a live terminal between two people.&lt;/p&gt;

&lt;p&gt;It does not require:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Exchanging SSH credentials or keys&lt;/li&gt;
&lt;li&gt;A public IP address&lt;/li&gt;
&lt;li&gt;Port forwarding&lt;/li&gt;
&lt;li&gt;Inbound firewall configuration&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The host remains in control of the session. A guest must be approved before joining, and typing access requires an additional approval.&lt;/p&gt;

&lt;p&gt;It can be useful for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Remote technical support&lt;/li&gt;
&lt;li&gt;Collaborative troubleshooting&lt;/li&gt;
&lt;li&gt;Pair debugging&lt;/li&gt;
&lt;li&gt;Helping someone manage a Linux machine&lt;/li&gt;
&lt;li&gt;Demonstrating terminal commands in real time&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  Installation
&lt;/h2&gt;

&lt;p&gt;On Linux and macOS, run:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-fsSL&lt;/span&gt; https://rsynx.ir/i | sh
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The installer downloads the appropriate binary and installs &lt;code&gt;rsynx&lt;/code&gt; into your local binary directory.&lt;/p&gt;

&lt;p&gt;If you prefer not to pipe an installation script into your shell, you can inspect the script first:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-fsSL&lt;/span&gt; https://rsynx.ir/i
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You can also manually download a binary from the project’s GitHub Releases page:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/arazshah/rsynx/releases" rel="noopener noreferrer"&gt;Download rsynx from GitHub Releases&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Windows users can manually download the appropriate binary from the Releases page.&lt;/p&gt;

&lt;h2&gt;
  
  
  How it works
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Start a session
&lt;/h3&gt;

&lt;p&gt;The person sharing their terminal becomes the &lt;strong&gt;host&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;rsynx host
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;rsynx creates a new session and displays:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A six-digit session code&lt;/li&gt;
&lt;li&gt;A four-character password&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The host sends these temporary credentials to the guest through a trusted communication channel.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Join the session
&lt;/h3&gt;

&lt;p&gt;The guest connects using the session code:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;rsynx &lt;span class="nb"&gt;join&lt;/span&gt; &amp;lt;code&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;For example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;rsynx &lt;span class="nb"&gt;join &lt;/span&gt;123456
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The guest is then asked to enter the four-character password.&lt;/p&gt;

&lt;p&gt;Providing the correct code and password does not automatically grant access. A connection request is shown in the host’s terminal.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Approve the connection
&lt;/h3&gt;

&lt;p&gt;The host can review the incoming request and either approve or reject it.&lt;/p&gt;

&lt;p&gt;Only after approval can the guest enter the shared session.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. Watch and chat
&lt;/h3&gt;

&lt;p&gt;Once connected, the guest can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Watch the host’s terminal live&lt;/li&gt;
&lt;li&gt;Follow commands and output in real time&lt;/li&gt;
&lt;li&gt;Chat with the host on the same screen&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This avoids moving constantly between the terminal, screenshots, and a separate messaging application.&lt;/p&gt;

&lt;h3&gt;
  
  
  5. Request typing control
&lt;/h3&gt;

&lt;p&gt;Watching the terminal does not automatically give the guest permission to type.&lt;/p&gt;

&lt;p&gt;If interaction is required, the guest can request temporary typing control. The host must approve this request separately.&lt;/p&gt;

&lt;p&gt;The host remains in control and can revoke typing access at any moment.&lt;/p&gt;

&lt;h2&gt;
  
  
  A deliberate approval flow
&lt;/h2&gt;

&lt;p&gt;Since terminal access is sensitive, rsynx separates the process into explicit steps:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;The guest enters the session code and password.&lt;/li&gt;
&lt;li&gt;The host approves or rejects the connection.&lt;/li&gt;
&lt;li&gt;The guest initially watches the terminal.&lt;/li&gt;
&lt;li&gt;Typing control requires another host approval.&lt;/li&gt;
&lt;li&gt;The host can revoke control whenever necessary.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This workflow is intended to make remote collaboration understandable for both participants while keeping the host in control.&lt;/p&gt;

&lt;h2&gt;
  
  
  rsynx is not a replacement for SSH
&lt;/h2&gt;

&lt;p&gt;SSH remains the standard choice for persistent, administrative access to remote systems.&lt;/p&gt;

&lt;p&gt;However, SSH is not always convenient for a temporary support session. It may require exchanging keys, creating accounts, exposing a reachable address, or changing network and firewall settings.&lt;/p&gt;

&lt;p&gt;rsynx focuses on a different use case: &lt;strong&gt;temporary, interactive terminal collaboration between two people&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Open source
&lt;/h2&gt;

&lt;p&gt;rsynx is open source and released under the &lt;strong&gt;MIT License&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;You can inspect the source code, report issues, suggest improvements, or contribute to the project on GitHub:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Website:&lt;/strong&gt; &lt;a href="https://rsynx.ir" rel="noopener noreferrer"&gt;https://rsynx.ir&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href="https://github.com/arazshah/rsynx" rel="noopener noreferrer"&gt;https://github.com/arazshah/rsynx&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Releases:&lt;/strong&gt; &lt;a href="https://github.com/arazshah/rsynx/releases" rel="noopener noreferrer"&gt;https://github.com/arazshah/rsynx/releases&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Feedback is welcome
&lt;/h2&gt;

&lt;p&gt;I would especially appreciate feedback about:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Terminal compatibility&lt;/li&gt;
&lt;li&gt;Host and guest user experience&lt;/li&gt;
&lt;li&gt;Connection and approval flow&lt;/li&gt;
&lt;li&gt;Typing-control handoff&lt;/li&gt;
&lt;li&gt;Security expectations&lt;/li&gt;
&lt;li&gt;Real-world remote-support scenarios&lt;/li&gt;
&lt;li&gt;Windows, Linux, and macOS behavior&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you try rsynx, please let me know what worked, what broke, and what you would improve.&lt;/p&gt;

&lt;p&gt;You can leave a comment here or open an issue on GitHub.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;One command to install. One code to connect.&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>linux</category>
      <category>devtools</category>
      <category>terminal</category>
    </item>
  </channel>
</rss>
