Getting started with jenkins
What is Jenkins?
Jenkins is a helpful tool used in software development that makes it easier for teams to work together and deliver high-quality software. It takes care of repetitive tasks, like building and testing the software, which can be time-co...
prabirmahatha.hashnode.dev3 min read
Aayushi bajaj
#run this command curl -fsSL pkg.jenkins.io/debian-stable/jenkins.io-2023.key | sudo tee \ /usr/share/keyrings/jenkins-keyring.asc > /dev/null echo deb [signed-by=/usr/share/keyrings/jenkins-keyring.asc] \ pkg.jenkins.io/debian-stable binary/ | sudo tee \ /etc/apt/sources.list.d/jenkins.list > /dev/null
#now update your system sudo apt-get update
now run this final command to get jenkins in your system
sudo apt-get install jenkins
Explain thses commands you missed it