Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Auto yes to the License Agreement on sudo apt-get -y install oracle-java7-installer

The Oracle Java package for Ubuntu interactively asks about the License Agreement. So I have to say 'OK' and then 'yes' every time, but I'd like to automate it. What I do is this:

sudo add-apt-repository -y ppa:webupd8team/java
sudo apt-get update
sudo apt-get -y install oracle-java7-installer 

Is there a simple way to automate the agreement process without using expect?

like image 328
kojiwell Avatar asked Oct 09 '13 15:10

kojiwell


4 Answers

try this out:

sudo add-apt-repository -y ppa:webupd8team/java
sudo apt-get update
echo debconf shared/accepted-oracle-license-v1-1 select true | sudo debconf-set-selections
echo debconf shared/accepted-oracle-license-v1-1 seen true | sudo debconf-set-selections
sudo apt-get -y install oracle-java7-installer 

running 3rd and 4th command on my debian 7.1 helps, so I think the same can help on ubuntu as well

like image 167
Maxym Avatar answered Nov 07 '22 20:11

Maxym


If you are using Ansible for automation you may want to put this into your playbook:

tasks:

  - name: add java PPA
    apt_repository:
      repo: "ppa:webupd8team/java"

  - name: accept oracle license
    debconf:
      name: "oracle-java7-installer"
      question: "shared/accepted-oracle-license-v1-1"
      value: "true"
      vtype: "select"

  - name: install jdk
    apt:
      name: "oracle-java7-installer"

Note: The value argument in debconf must be set to "true", including the quotes, as per comment by Roy Wood.

like image 30
schrom Avatar answered Nov 07 '22 20:11

schrom


ppa:linuxuprising/java && oracle-java11-installer

For anyone using the Linux Uprising Java 11 installer that stumble across this, see these:

  1. https://launchpad.net/~linuxuprising/+archive/ubuntu/java
  2. https://www.linuxuprising.com/2018/10/how-to-install-oracle-java-11-in-ubuntu.html

Instead of the commands in the answer (as listed on their site), you want this:

echo oracle-java11-installer shared/accepted-oracle-license-v1-2 select true | \
sudo /usr/bin/debconf-set-selections

Here's my Docker setup for an Ubuntu 18.04-based container:

RUN apt-get update && apt-install -y software-properties-common && \
    add-apt-repository -y ppa:linuxuprising/java && \
    apt-get update && \
    echo oracle-java11-installer shared/accepted-oracle-license-v1-2 select true | sudo /usr/bin/debconf-set-selections && \
    apt-get install -y oracle-java11-installer && \
    apt install oracle-java11-set-default
like image 10
el n00b Avatar answered Nov 07 '22 20:11

el n00b


For Java 11 you can use this:

add-apt-repository ppa:linuxuprising/java
echo debconf shared/accepted-oracle-license-v1-2 select true | debconf-set-selections
echo debconf shared/accepted-oracle-license-v1-2 seen true | debconf-set-selections
apt-get update && apt-get install -y oracle-java11-installer

This works perfectly in a docker container.

like image 3
KireByte Avatar answered Nov 07 '22 21:11

KireByte