sudo apt update sudo apt upgrade -y sudo wget -O /etc/apt/keyrings/jenkins-keyring.asc \ https://pkg.jenkins.io/debian-stable/jenkins.io-2023.key echo "deb [signed-by=/etc/apt/keyrings/jenkins-keyring.asc]" \ https://pkg.jenkins.io/debian-stable binary/ | sudo tee \ /etc/apt/sources.list.d/jenkins.list > /dev/null sudo apt update sudo apt install jenkins -y sudo systemctl start jenkins sudo systemctl enable jenkins sudo systemctl status jenkins localhost:8080 sudo cat /var/lib/jenkins/secrets/initialAdminPassword Copy the displayed password and paste it into the "Administrator password" field in your browser. Click "Continue". On the next screen, click "Install suggested plugins" to install a recommended set of plugins. After the plugins are installed, you will be asked to create an administrator user. Fill in the required details and click "Save and Finish". You should now see the Jenkins dashboard, ready for use. Prepare Yo...