0670.html 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Install Home Assistant on Debian Linux</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="Browser Based,Home Lab,Home Lab Ideas,Install Guide,Self-Hosted,Web Based,Web Based Tools,Home Assistant How To,Home Assistant Simplified,Home Assistant Tutorial,Getting Started With Home Assistant,Linux,Debian,Home Assistant,HASS,Run Home Assistant On Debian,Home Assistant Debian Installation,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Install Home Assistant on Debian Linux">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="05/15/2022 08:46:19 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>Install Home Assistant on Debian Linux</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <h2>What is Home Assistant?</h2>
  26. <blockquote>Open source home automation that puts local control and privacy first. Powered by a worldwide community of tinkerers and DIY enthusiasts. Perfect to run on a Raspberry Pi or a local server.<i> - <a href="https://www.home-assistant.io/" target="_blank">https://www.home-assistant.io/</a></i></blockquote>
  27. <h2>Installing Home Assistant</h2>
  28. <ol>
  29. <li>Log into the Debian device</li>
  30. <li>Run the following commands in a terminal:
  31. <div class="codeBlock"># update software repositories<br />
  32. sudo apt update<br />
  33. # install available updates<br />
  34. sudo apt upgrade -y<br />
  35. # install some prerequisites<br />
  36. sudo apt install jq wget curl udisks2 libglib2.0-bin network-manager dbus -y<br />
  37. # install docker<br />
  38. curl -fsSL https://get.docker.com | sudo sh<br />
  39. # download home assistant os-agent<br />
  40. wget https://github.com/home-assistant/os-agent/releases/download/1.2.2/os-agent_1.2.2_linux_x86_64.deb<br />
  41. # install home assistant os-agent<br />
  42. sudo dpkg -i os-agent_1.2.2_linux_x86_64.deb<br />
  43. # download home assistant package<br />
  44. wget https://github.com/home-assistant/supervised-installer/releases/latest/download/homeassistant-supervised.deb<br />
  45. # install home assistant<br />
  46. sudo dpkg -i homeassistant-supervised.deb</div>
  47. </li>
  48. <li>Open a web browser and navigate to http://DNSorIP:8123/</li>
  49. <li>Wait while Home Assistant initializes</li>
  50. <li>Enter a Name, Username and Password to create a Home Assistant user account &gt; Click Create Account</li>
  51. <li>Enter a Name for this Home Assistant installation (ie Home)</li>
  52. <li>Click Detect to set the installation geolocation</li>
  53. <li>Verify the Unit System and Currency &gt; Click Next</li>
  54. <li>Select any anonymous data to share with the Home Assistant development team &gt; Click Next</li>
  55. <li>Click Finish</li>
  56. <li>Welcome to Home Assistant</li>
  57. </ol>
  58. <p>Source:<a href="https://community.home-assistant.io/t/installing-home-assistant-supervised-on-debian-11/200253" target="_blank">https://community.home-assistant.io/t/installing-home-assistant-supervised-on-debian-11/200253</a></p>
  59. </div>
  60. </div>
  61. </body>
  62. </html>