#!/usr/bin/ksh # in Ubuntu 20LTS, test snap-free Chromium from Debian Buster repo # # DOES NOT work! many dependencies with different name variations, e.g. libjpg-turbo TMPDIR="${0##*/}.$$.$(date +%FT%T)" # script name . process id . timestamp REPOBASE='http://security.debian.org/debian-security/pool/updates/main/c/chromium/chromium' mkdir "$TMPDIR" || exit cd "$TMPDIR" for PKG in _90.0.4430.212-1~deb10u1_amd64.deb -common_90.0.4430.212-1~deb10u1_amd64.deb -sandbox_90.0.4430.212-1~deb10u1_amd64.deb do curl -O "${REPOBASE}${PKG}" done echo apt install ./chrom*deb # to do: nothing :) but keep the skeleton for different future uses # practical solution: # http://packages.linuxmint.com/pool/upstream/c/chromium/chromium_90.0.4430.212%7elinuxmint1%2bulyssa_amd64.deb # https://ubuntuhandbook.org/index.php/2020/11/chromium-browser-deb-available-linux-mint-20/