Horje
jenkins installation 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
jenkins installation on ubuntu
jenkins installation




Shell

Related
bash replace specific line in file Code Example bash replace specific line in file Code Example
What commands would you use to force an overwrite of your local files with the master branch? Code Example What commands would you use to force an overwrite of your local files with the master branch? Code Example
sum column bash Code Example sum column bash Code Example
microsoft team ubuntu Code Example microsoft team ubuntu Code Example
vim get color name at cursor Code Example vim get color name at cursor Code Example

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