Linux Administration: Difference between revisions

From David's Wiki
No edit summary
Line 1: Line 1:
The best ways to manage Linux servers
The best ways to manage Linux servers


==Cockpit==
==Cockpit==
Line 20: Line 20:
</pre>
</pre>
}}
}}
==Resources==
* [https://blog.linuxserver.io/2017/06/24/the-perfect-media-server-2017/ The Perfect Media Server 2017]

Revision as of 02:19, 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

Resources