web-dev-qa-db-fra.com

Comment installer Firefox 52 ESR le 16.04?

Cette question demande comment installer le bit FF32 en conservant le bit 64.

Je veux une chose beaucoup plus simple: existe-t-il un moyen canonique d'installer firefox 52 ESR comme firefox "par défaut" dans mon 16.04?

J'ai trouvé ceci équipe du tableau de bord ... mais il n'y a pas de paquet; il n’est probablement pas étonnant que l’article de blog lié remonte à 2012.

Donc, 2017, Ubuntu 16.04; comment installer FF 52 ESR (car j’ai simplement besoin du plugin Java pour fonctionner pour moi).

(ma solution actuelle: j'ai téléchargé le fichier TAR de mozilla, je l'ai extraite dans/opt; puis j'ai modifié/usr/bin/firefox pour qu'il devienne un lien vers cette version ESR de firefox. fonctionne, mais moche)

43
GhostCat

Ce PPA firefox-esr fonctionne pour moi sur Xenial: https://launchpad.net/~jonathonf/+archive/ubuntu/firefox-esr

Sudo add-apt-repository ppa:jonathonf/firefox-esr-52
Sudo apt-get update
Sudo apt-get install firefox-esr

mais notez bien que vous ne recevrez pas de mises à jour de sécurité car cette version est obsolète .

30
galatians

Il existe un PPA officiel Firefox ESR pour les versions prises en charge sous Ubuntu: https://launchpad.net/~mozillateam/+archive/ubuntu/ppa

Sudo add-apt-repository ppa:mozillateam/ppa
Sudo apt-get update
Sudo apt-get install firefox-esr
49
ztocir

J'ai ajouté ceci dans mes ansbooks , merci pour @galatians.

# Firefox ESR.
- name: add apt key of firefox-esr
  become: true
  apt_key:
    keyserver: "hkp://p80.pool.sks-keyservers.net:80"
    id: 4AB0F789CBA31744CC7DA76A8CF63AD3F06FC659

- name: add apt repository of firefox-esr
  become: true
  apt_repository:
    repo: "deb http://ppa.launchpad.net/jonathonf/firefox-esr/ubuntu {{ ansible_distribution_release }} main"
    state: present

- name: install third-party apt packages of desktop
  become: true
  apt:
    name: firefox-esr
    state: present

https://github.com/chusiang/hacking-ubuntu.ansible/blob/develop/tasks/setup_desktop.yml#L27

3
Chu-Siang Lai

Essayez l’application Web open source que j’ai construite pour générer un script bash avec les étapes d’installation pour chaque application. https://www.ins2all.com/?a=Firefox_ESR

Il générera un script bash avec le contenu:

#!/bin/bash
# Firefox ESR
Sudo add-apt-repository ppa:jonathonf/firefox-esr

#Update system
Sudo apt-get update

#Installing Firefox ESR
Sudo apt-get install firefox-esr

Vous pouvez l'exécuter pour installer l'application sélectionnée.

0
gkvm