Skip to content

Instantly share code, notes, and snippets.

@oceanBT
Last active February 12, 2021 19:32
Show Gist options
  • Save oceanBT/c3d24830d0d56eb34aa49470133e025e to your computer and use it in GitHub Desktop.
Save oceanBT/c3d24830d0d56eb34aa49470133e025e to your computer and use it in GitHub Desktop.
Ubuntu Setup
my ubuntu setup
# https://www.heise.de/news/Linux-Distribution-Linux-Mint-bietet-jetzt-eigenes-Chromium-Paket-an-4950315.html
sudo sh -c 'echo "deb http://packages.linuxmint.com ulyana upstream" >> /etc/apt/sources.list.d/mint-chromium.list' && \
sudo apt-key adv --keyserver hkps://keyserver.ubuntu.com:443 --recv-keys A6616109451BBBF2
sudo nano /etc/apt/preferences.d/mint-chromium.pref
insert:
# Don't install anything other than chromium from the Mint repos
Package: *
Pin: origin "packages.linuxmint.com"
Pin-Priority: -10
# Pattern includes 'chromium'
Package: chromium*
Pin: origin "packages.linuxmint.com"
Pin-Priority: 700
# Chromium dependencies only in buster
Package: /libevent-2.1-6/ /libicu63/ /libjpeg62-turbo/ /libvpx5/
Pin: origin "packages.linuxmint.com"
Pin-Priority: 1
--
sudo apt update
check repo and version via: apt-cache policy chromium
sudo apt install chromium
sudo sudo apt autoremove --purge snapd gnome-software-plugin-snap && sudo apt purge snapd
# history size:
https://stackoverflow.com/a/12234989/2078454
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment