Skip to content

Instantly share code, notes, and snippets.

@matan-h
Last active April 13, 2022 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matan-h/bd432416378c2093e5d4182f1fea5151 to your computer and use it in GitHub Desktop.
Save matan-h/bd432416378c2093e5d4182f1fea5151 to your computer and use it in GitHub Desktop.
how to add mint store to ubuntu

mintinstall is available in mint packages:

  1. Add the repository:
 sudo sh -c 'echo "deb http://packages.linuxmint.com/ elsie main" >> /etc/apt/sources.list.d/mint.list'
  1. run an update to retrieve information about what packages are available:
sudo apt-get update

You'll see an error in the update highlighting that public key is not available for the Linux Mint repository just added:

GPG error: http://packages.linuxmint.com elsie main: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY

  1. To avoid this, run another command to download the Linux Mint keyring:
sudo apt-get install linuxmint-keyring

if it ask your permission to download, say yes.

  1. Once downloaded, update your package database again:
sudo apt-get update
  1. then you can install mint software center (or any other package from mint elsie main package):
sudo apt install mintinstall

here is screenshot of this installed on ubuntu: screenshot based on How to install Chromium from the Linux Mint repositories in Ubuntu? answer

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment