0469.html 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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="Cockpit,Linux,Debian,System Administration,Web Based Tools,SysAdmin,How To,Tutorial,i12bretro">
  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. <meta name="revised" content="06/22/2022 10:10:42 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>Installing Cockpit on Linux Device</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <h2>What is Cockpit?</h2>
  26. <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>
  27. <h2>Installing Cockpit</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 software updates<br />
  34. sudo apt upgrade -y<br />
  35. # install cockpit<br />
  36. sudo apt install cockpit -y</div>
  37. </li>
  38. <li>Open a web browser and navigate to https://DNSorIP:9090</li>
  39. <li>Login using a valid account on the Linux device</li>
  40. <li>Welcome to Cockpit</li>
  41. </ol>
  42. <p>Source:<a href="https://cockpit-project.org/running.html" target="_blank"> https://cockpit-project.org/running.html</a></p>
  43. </div>
  44. </div>
  45. </body>
  46. </html>