<?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: dipak suryawanshi</title>
    <description>The latest articles on DEV Community by dipak suryawanshi (@dipak_suryawanshi_d17).</description>
    <link>https://dev.to/dipak_suryawanshi_d17</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%2F4135297%2Fd71573df-05be-4dfa-9585-5e35310c7079.png</url>
      <title>DEV Community: dipak suryawanshi</title>
      <link>https://dev.to/dipak_suryawanshi_d17</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/dipak_suryawanshi_d17"/>
    <language>en</language>
    <item>
      <title>I Built a Native Windows GUI for Managing Linux Servers Over SSH</title>
      <dc:creator>dipak suryawanshi</dc:creator>
      <pubDate>Mon, 21 Sep 2026 08:23:17 +0000</pubDate>
      <link>https://dev.to/dipak_suryawanshi_d17/i-built-a-native-windows-gui-for-managing-linux-servers-over-ssh-5485</link>
      <guid>https://dev.to/dipak_suryawanshi_d17/i-built-a-native-windows-gui-for-managing-linux-servers-over-ssh-5485</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%2Fl9jb7ijds600ks6tmmqk.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%2Fl9jb7ijds600ks6tmmqk.png" alt=" " width="799" height="449"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I kept running into the same problem when managing Linux servers from Windows.&lt;/p&gt;

&lt;p&gt;I would use one tool for SFTP, another for SSH, terminal commands for services and processes, and separate scripts for deployments.&lt;/p&gt;

&lt;p&gt;So I decided to build something that combines these workflows into one native Windows application.&lt;/p&gt;

&lt;h2&gt;
  
  
  Meet LinuxDesk
&lt;/h2&gt;

&lt;p&gt;LinuxDesk is a Windows desktop application for managing Linux servers over SSH/SFTP.&lt;/p&gt;

&lt;p&gt;The main idea is simple:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;If SSH already works, LinuxDesk works.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;There is no agent, daemon, web server, or additional software that needs to be installed on the Linux server.&lt;/p&gt;

&lt;h2&gt;
  
  
  What can it do?
&lt;/h2&gt;

&lt;p&gt;LinuxDesk currently provides:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;File browser and remote editor&lt;/li&gt;
&lt;li&gt;SSH/SFTP file management&lt;/li&gt;
&lt;li&gt;Service management&lt;/li&gt;
&lt;li&gt;Process management&lt;/li&gt;
&lt;li&gt;Log viewer&lt;/li&gt;
&lt;li&gt;System monitoring&lt;/li&gt;
&lt;li&gt;Application deployment&lt;/li&gt;
&lt;li&gt;Backup and rollback&lt;/li&gt;
&lt;li&gt;Deployment health checks&lt;/li&gt;
&lt;li&gt;Production safety confirmations&lt;/li&gt;
&lt;li&gt;Local audit logging&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The deployment workflow
&lt;/h2&gt;

&lt;p&gt;One part I wanted to do differently was deployment.&lt;/p&gt;

&lt;p&gt;Instead of simply uploading files and hoping everything works, LinuxDesk creates a reviewable deployment plan.&lt;/p&gt;

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

&lt;ol&gt;
&lt;li&gt;Run pre-deployment hook&lt;/li&gt;
&lt;li&gt;Create backup&lt;/li&gt;
&lt;li&gt;Upload changed files&lt;/li&gt;
&lt;li&gt;Remove files marked for deletion&lt;/li&gt;
&lt;li&gt;Restart service&lt;/li&gt;
&lt;li&gt;Run health check&lt;/li&gt;
&lt;li&gt;Complete deployment&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;There is also a Dry Run mode so you can review what would happen without changing the server.&lt;/p&gt;

&lt;p&gt;Deployments can include HTTP, TCP, process, systemd, and command-based health checks, with rollback when a deployment fails its health check.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why JavaFX?
&lt;/h2&gt;

&lt;p&gt;LinuxDesk is built with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Java 21&lt;/li&gt;
&lt;li&gt;JavaFX&lt;/li&gt;
&lt;li&gt;Apache MINA SSHD&lt;/li&gt;
&lt;li&gt;BouncyCastle&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I wanted a native desktop application rather than an Electron-based application, while keeping the project in the Java ecosystem.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why no server agent?
&lt;/h2&gt;

&lt;p&gt;This was an important design decision.&lt;/p&gt;

&lt;p&gt;I didn't want users to install and maintain another service on every Linux server just to manage it.&lt;/p&gt;

&lt;p&gt;SSH is already available on most Linux systems, so LinuxDesk uses that existing access instead.&lt;/p&gt;

&lt;p&gt;This also means there is no LinuxDesk daemon that needs to be patched or kept running.&lt;/p&gt;

&lt;h2&gt;
  
  
  Current limitations
&lt;/h2&gt;

&lt;p&gt;LinuxDesk is still an early release.&lt;/p&gt;

&lt;p&gt;Currently:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Windows only&lt;/li&gt;
&lt;li&gt;No MFA support yet&lt;/li&gt;
&lt;li&gt;No SSH-agent authentication yet&lt;/li&gt;
&lt;li&gt;No SSH certificate authentication yet&lt;/li&gt;
&lt;li&gt;Built-in terminal is not a full terminal emulator&lt;/li&gt;
&lt;li&gt;Interactive applications such as &lt;code&gt;vim&lt;/code&gt;, &lt;code&gt;top&lt;/code&gt;, and &lt;code&gt;less&lt;/code&gt; don't render correctly yet&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For those terminal workloads, a normal terminal is still the better option.&lt;/p&gt;

&lt;h2&gt;
  
  
  I'm looking for feedback
&lt;/h2&gt;

&lt;p&gt;I'm especially interested in hearing from developers, DevOps engineers, and sysadmins.&lt;/p&gt;

&lt;p&gt;If you manage Linux servers from Windows:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What would make a tool like this genuinely useful in your daily workflow?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Are there workflows that you think a GUI should handle but current SSH/SFTP tools don't?&lt;/p&gt;

&lt;p&gt;You can take a look at LinuxDesk here:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://linuxdesk.netlify.app/" rel="noopener noreferrer"&gt;https://linuxdesk.netlify.app/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This is an early project, so feedback on the architecture, workflow, and missing features is very welcome.&lt;/p&gt;

</description>
      <category>devops</category>
      <category>linux</category>
      <category>java</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
