0469.html 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Installing Cockpit on Linux Device</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="i12bretro,Tutorial,How To,Cockpit,Linux,Debian,System Administration,Web Based Tools,SysAdmin">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Installing Cockpit on Linux Device">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  12. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  13. <script type="text/javascript" src="includes/js/steps.js"></script>
  14. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  15. </head>
  16. <body>
  17. <div id="gridContainer">
  18. <div class="topMargin"></div>
  19. <div id="listName" class="topMargin">
  20. <h1>Installing Cockpit on Linux Device</h1>
  21. </div>
  22. <div></div>
  23. <div id="content">
  24. <h2>What is Cockpit?</h2>
  25. <blockquote><em>Cockpit is an interactive server admin interface. It is easy to use and very lightweight. Cockpit interacts directly with the operating system from a real Linux session in a browser.</em> -<a href="https://github.com/cockpit-project/cockpit" target="_blank">https://github.com/cockpit-project/cockpit</a></blockquote>
  26. <h2>Installing Cockpit</h2>
  27. <ol>
  28. <li>Log into the Debian device</li>
  29. <li>Run the following commands in a terminal:
  30. <div class="codeBlock"># update software repositories<br />
  31. sudo apt update<br />
  32. # install software updates<br />
  33. sudo apt upgrade -y<br />
  34. # install cockpit<br />
  35. sudo apt install cockpit -y</div>
  36. </li>
  37. <li>Open a web browser and navigate to https://DNSorIP:9090</li>
  38. <li>Login using a valid account on the Linux device</li>
  39. <li>Welcome to Cockpit</li>
  40. </ol>
  41. <p>Source:<a href="https://cockpit-project.org/running.html" target="_blank"> https://cockpit-project.org/running.html</a></p>
  42. </div>
  43. </div>
  44. </body>
  45. </html>