Complete the command to update package lists on a Debian-based Linux system.
sudo apt-get [1]The update command refreshes the package lists so the system knows about the latest versions available.
Complete the command to install Jenkins on a Debian-based Linux system.
sudo apt-get [1] jenkinsThe install command installs the specified package, here Jenkins.
Fix the error in the command to start the Jenkins service on Linux.
sudo systemctl [1] jenkinsThe start command launches the Jenkins service so it runs in the background.
Fill both blanks to add the Jenkins repository and import its key on Debian-based Linux.
wget -q -O - [1] | sudo apt-key [2] -
The first blank is the URL to the Jenkins repository key. The second blank is the command to add the key to apt's trusted keys.
Fill all three blanks to create a Jenkins systemd service file with correct ExecStart and User.
[Service] ExecStart=[1] User=[2] Restart=[3]
The ExecStart runs Jenkins using Java and the war file. The User is 'jenkins' to run the service safely. Restart 'always' ensures Jenkins restarts if it crashes.