First Commit

This commit is contained in:
2025-08-11 01:06:21 -05:00
commit 9fd77f8b1e

22
cockpit_install.sh Normal file
View File

@@ -0,0 +1,22 @@
#!/bin/bash
# Exit on any error
set -e
# Check if running as root
if [ "$EUID" -ne 0 ]; then
echo "Please run this script as root or using sudo."
exit 1
fi
echo "Updating package list..."
apt update
echo "Installing Cockpit..."
apt install -y cockpit
echo "Enabling and starting Cockpit service..."
systemctl enable --now cockpit.socket
echo "Cockpit installed and started."
echo "You can access it at: https://localhost:9090"