Un petit exercice , utiliser la dernière version en local
On récupère le script de
wget https://github.com/scheib/chromium-latest-linux/archive/master.zip
On le decompresse et depuis le répertoire on lance
bash update.sh
ça récupère chromium et le decompresse, ici la version 829190
/chromium-latest-linux-master$ ls
829190 latest LICENSE README.md run.sh update-and-run.sh update.sh
IL faut gérer le sandbox comme indiqué ici
https://chromium.googlesource.com/chromium/src/+/master/docs/linux/suid_sandbox_development.md
chromium-latest-linux-master/latest/829190/chrome-linux$ sudo chown root:root chrome_sandbox
chromium-latest-linux-master/latest/829190/chrome-linux$ sudo chmod 4755 chrome_sandbox
chromium-latest-linux-master/latest/829190/chrome-linux$ sudo cp -p chrome_sandbox /usr/local/sbin/chrome-devel-sandbox
pour utiliser il faut ajouter au début du fichier chrome-wrapper
export CHROME_DEVEL_SANDBOX=/usr/local/sbin/chrome-devel-sandbox
comme ci-dessous
#!/bin/bash
#set -x
# Copyright (c) 2011 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# Running Chromium via this script makes it possible to set Chromium as the
# default browser directly out of a compile, without needing to package it.
export CHROME_DEVEL_SANDBOX=/usr/local/sbin/chrome-devel-sandbox
DESKTOP="chromium-devel"
TITLE="Chromium"
et lancer
chromium-latest-linux-master/829190/chrome-linux$ bash chrome-wrapper
qui va construire un lanceur dans .local/share/applications
on est prévenu que les api ggogle sont désactivées