0740.html 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Installing Tabby (formerly Terminus) on Windows/Linux/MacOS</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="Home Lab,Home Lab Ideas,Install Guide,Self-Hosted,MacOS,Windows,Windows 10,Windows 11,Linux,Debian,Cross-Platform,Terminal,Terminal Emulator,Tabbed Terminal,Tabby,Terminus,How To Install Tabby On Windows,How To Install Tabby On Linux,How To Install Tabby On MacOS,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Installing Tabby (formerly Terminus) on Windows/Linux/MacOS">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="05/01/2022 08:16:26 PM" />
  12. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  13. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  14. <script type="text/javascript" src="includes/js/steps.js"></script>
  15. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  16. </head>
  17. <body>
  18. <div id="gridContainer">
  19. <div class="topMargin"></div>
  20. <div id="listName" class="topMargin">
  21. <h1>Installing Tabby (formerly Terminus) on Windows/Linux/MacOS</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <h2>What is Tabby?</h2>
  26. <blockquote><em>Tabby (formerly Terminus) is a highly configurable terminal emulator, SSH and serial client for Windows, macOS and Linux. -<a href="https://github.com/Eugeny/tabby" target="_blank">https://github.com/Eugeny/tabby</a></em></blockquote>
  27. <h2>Microsoft Windows</h2>
  28. <ol>
  29. <li>Download Tabby <a href="https://github.com/Eugeny/tabby/releases" target="_blank">Download</a></li>
  30. <li>Open File Explorer and navigate to the Download location</li>
  31. <li>Run the downloaded .exe</li>
  32. <li>Step through the installer accepting all the defaults</li>
  33. <li>Launch Tabby from the Start menu</li>
  34. </ol>
  35. <h2>Debian/Ubuntu Linux</h2>
  36. <ol>
  37. <li>Log into the Linux device</li>
  38. <li>Launch a terminal window</li>
  39. <li>Run the following commands
  40. <div class="codeBlock"># lookup latest release URL<br />
  41. regex=&#39;&quot;browser_download_url&quot;: &quot;(https:\/\/github.com\/Eugeny\/tabby\/releases\/download\/[^/]*\/[^/]*\.deb)&quot;&#39; &amp;&amp; response=$(curl -H &quot;Accept: application/vnd.github.v3+json&quot; https://api.github.com/repos/Eugeny/tabby/releases/latest) &amp;&amp; [[ $response =~ $regex ]] &amp;&amp; downloadURL=&quot;${BASH_REMATCH[1]}&quot;<br />
  42. # download the .deb package<br />
  43. wget -O ./tabby.deb $downloadURL<br />
  44. # install tabby<br />
  45. sudo dpkg -i ./tabby.deb<br />
  46. # install missing dependencies<br />
  47. sudo apt -f install -y<br />
  48. # launch tabby<br />
  49. tabby &amp;</div>
  50. </li>
  51. </ol>
  52. <h2>MacOS</h2>
  53. <ol>
  54. <li>Download Tabby <a href="https://github.com/Eugeny/tabby/releases" target="_blank">Download</a></li>
  55. <li>Open Downloads in Finder</li>
  56. <li>Double click the downloaded Tabby .pkg</li>
  57. <li>Step through the installer accepting all the defaults</li>
  58. <li>Launch Tabby from the Launchpad</li>
  59. </ol>
  60. </div>
  61. </div>
  62. </body>
  63. </html>