0585.html 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Install Zulip Self-Hosted Discord Alternative on Debian/Ubuntu Linux</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,Web Based,Web Based Tools,Alternative,Zulip,Open Source,Discord Alternative,Linux,Debian,Ubunut,Browser Based,Self-Hosted Discord Alternative,Install Zulip On Debian,Zulip Installation Guide,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Install Zulip Self-Hosted Discord Alternative on Debian/Ubuntu Linux">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="10/01/2023 10:00:51 AM" />
  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>Install Zulip Self-Hosted Discord Alternative on Debian/Ubuntu Linux</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <h2>What is Zulip?</h2>
  26. <blockquote>Zulip is a powerful, open source group chat application that combines the immediacy of real-time chat with the productivity benefits of threaded conversations. Zulip is used by open source projects, Fortune 500 companies, large standards bodies, and others who need a real-time chat system that allows users to easily process hundreds or thousands of messages a day<em>. -<a href="https://github.com/zulip/zulip" target="_blank">https://github.com/zulip/zulip</a></em></blockquote>
  27. <h2>Installation</h2>
  28. <ol>
  29. <li>Log into the Linux based device</li>
  30. <li>Run the following commands in the terminal
  31. <div class="codeBlock"># update software repositories<br />
  32. sudo apt update<br />
  33. # install available software updates<br />
  34. sudo apt upgrade -y<br />
  35. # create a working directory and change to it<br />
  36. mkdir ./zulip &amp;&amp; cd ./zulip<br />
  37. # download zulip<br />
  38. wget https://www.zulip.org/dist/releases/zulip-server-latest.tar.gz<br />
  39. # extract the tar.gz<br />
  40. tar -xf zulip-server-latest.tar.gz<br />
  41. # run the zulip installer, replace hostname and email values<br />
  42. sudo -s ./zulip-server-*/scripts/setup/install --self-signed --hostname=debian.i12bretro.local --email=i12bretro@i12bretro.local</div>
  43. </li>
  44. <li>After the installation completes, copy the URL provided</li>
  45. <li>Open a web browser and paste the copied URL</li>
  46. <li>Enter an email address &gt; Click Create organization</li>
  47. <li>Enter an Organization name, Full name and a password &gt; Click Sign up</li>
  48. <li>Welcome to Zulip</li>
  49. </ol>
  50. <p>More Info: <a href="https://zulip.com/" target="_blank">https://zulip.com/</a></p> </div>
  51. </div>
  52. </body>
  53. </html>