0550.html 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Install Shinobi on Raspberry Pi -- Open Source CCTV Solution</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,CCTV,Debian,FOSS,Homelab,Linux,Open Source,Shinobi,Shinobi CCTV,Pi,RPi,Raspberry Pi,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Install Shinobi on Raspberry Pi -- Open Source CCTV Solution">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="04/20/2024 07:34:06 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 Shinobi on Raspberry Pi -- Open Source CCTV Solution</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <h2>What is Shinobi?</h2>
  26. <p><em>Shinobi is Open Source, written in Node.js, and real easy to use. It is the future of CCTV and NVR for developers and end-users alike. It is catered to by professionals and most importantly by the one who created it.</em> - <a href="https://shinobi.video/" target="_blank">https://shinobi.video/</a></p>
  27. <h2>Install Shinobi</h2>
  28. <ol>
  29. <li>Log into the Raspberry Pi</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 software updates<br />
  34. sudo apt upgrade -y<br />
  35. # install pre-requisites<br />
  36. sudo apt install git -y<br />
  37. # clone shinobi code<br />
  38. git clone https://gitlab.com/Shinobi-Systems/Shinobi.git Shinobi<br />
  39. # change directory to Shinobi<br />
  40. cd Shinobi<br />
  41. # set permissions<br />
  42. sudo chmod +x INSTALL/ubuntu.sh<br />
  43. # execute the installation script<br />
  44. sudo INSTALL/ubuntu.sh</div>
  45. </li>
  46. <li>Answer Yes (y) when asked to install MariaDB</li>
  47. <li>Input a password for the root MariaDB user account</li>
  48. <li>Answer Yes (y) when asked to install the Shinobi database</li>
  49. <li>Enter root when asked for the database user</li>
  50. <li>Enter the root password created earnlier when asked for the database password</li>
  51. <li>Answer Yes (y) when asked to start Shinobi and start it on boot</li>
  52. <li>Open a web browser and navigate to http://DNSorIP:8080/super</li>
  53. <li>Login with the username admin@shinobi.video and password admin</li>
  54. <li>Select Preferences from the top navigation menu</li>
  55. <li>Change the admin user email address and enter and confirm a new password</li>
  56. <li>Click Save at the top of the page</li>
  57. <li>Welcome to Shinobi</li>
  58. </ol>
  59. <p>Source: <a href="https://shinobi.video/docs/" target="_blank">https://shinobi.video/docs/</a></p> </div>
  60. </div>
  61. </body>
  62. </html>