---
title: Cockpit
tags: Ongoing,Edge
image:
---
# Cockpit
[toc]
## Running Cockpit
* https://cockpit-project.org/running.html
### Install Cockpit on Debian 11
* By default, the Cockpit package is included in the Debian 11 default repository. You can install it easily using the following command:
``
apt-get install cockpit -y
``
* After installing Cockpit, run the following command to install the Podman module:
``
apt-get install cockpit-podman -y
``
* After the successfull installation, start the Cockpit service and enable it to start at system reboot:
```
systemctl start cockpit
systemctl enable cockpit
```

* To check the status of the Cockpit, run the following command:
``
systemctl status cockpit
``
* You should see the following output:

* By default, Cockpit listens on port 9090. You can check it with the following command:
``
ss -antpl | grep 9090
``
* You should see the following output:

* Install successful (https://192.168.1.110:9090/)


## Hacking on Cockpit
* https://github.com/cockpit-project/cockpit/blob/main/HACKING.md
* [Developer Guide](https://cockpit-project.org/guide/latest/development)
## References
* [Github - Cockpit](https://github.com/cockpit-project/cockpit)
* [Introducing Cockpit](https://cockpit-project.org/)
* [How to Install Cockpit on Debian 11](https://www.howtoforge.com/how-to-install-cockpit-on-debian-11/)
* [Running Cockpit](https://cockpit-project.org/running.html)
* [Cockpit ideals](https://cockpit-project.org/ideals)
* [Cockpit Starter Kit](https://cockpit-project.org/blog/cockpit-starter-kit.html)