Linux Administration: Difference between revisions

From David's Wiki
(Created page with "The best ways to manage Linux servers ==Cockpit== Cockpit is a web application to manage your server. Install it via <pre> sudo apt install cockpit </pre> Below are some o...")
 
Line 10: Line 10:
Below are some of the modules I recommend.
Below are some of the modules I recommend.
You can install these using apt as well.
You can install these using apt as well.
* <code>cockpit-docker</code> Allows you to manage docker containers
* <code>cockpit-docker</code> allows you to manage docker containers
* <code>cockpit-machines</code> allows you to manage VMs via libvirt
* <code>cockpit-networkmanager</code>
* <code>cockpit-packagekit</code> to manage packages
 
{{ hidden | Command to install all modules |
<pre>
sudo apt install -y cockpit cockpit-docker cockpit-machines cockpit-networkmanager cockpit-packagekit
</pre>
}}

Revision as of 02:10, 23 July 2020

The best ways to manage Linux servers

Cockpit

Cockpit is a web application to manage your server.
Install it via

sudo apt install cockpit

Below are some of the modules I recommend. You can install these using apt as well.

  • cockpit-docker allows you to manage docker containers
  • cockpit-machines allows you to manage VMs via libvirt
  • cockpit-networkmanager
  • cockpit-packagekit to manage packages
Command to install all modules
sudo apt install -y cockpit cockpit-docker cockpit-machines cockpit-networkmanager cockpit-packagekit