Horje
install jenkins on ubuntu Code Example
install jenkins on ubuntu
## Install java
sudo apt update && sudo apt install openjdk-8-jdk -y

## Install Jenkins
wget -q -O - https://pkg.jenkins.io/debian-stable/jenkins.io.key | sudo apt-key add -

sudo sh -c 'echo deb https://pkg.jenkins.io/debian-stable binary/ > \
    /etc/apt/sources.list.d/jenkins.list'

sudo apt-get update && sudo apt-get install jenkins -y
install jenkins on ubuntu
wget -q -O - https://pkg.jenkins.io/debian-stable/jenkins.io.key | sudo apt-key add -
sudo sh -c 'echo deb https://pkg.jenkins.io/debian-stable binary/ > \
    /etc/apt/sources.list.d/jenkins.list'
sudo apt-get update
sudo apt-get install jenkins




Shell

Related
mac host file Code Example mac host file Code Example
ubuntu intall OpenBLAS Code Example ubuntu intall OpenBLAS Code Example
how to check if oh my zsh is installed Code Example how to check if oh my zsh is installed Code Example
install ansible on ubuntu 18.04 Code Example install ansible on ubuntu 18.04 Code Example
install aws cli v2 on mac Code Example install aws cli v2 on mac Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
13