Skip to content

Instantly share code, notes, and snippets.

@washopilot
Last active September 22, 2024 18:01
Show Gist options
  • Save washopilot/bb7841820908561d41cf5d8585fa8a25 to your computer and use it in GitHub Desktop.
Save washopilot/bb7841820908561d41cf5d8585fa8a25 to your computer and use it in GitHub Desktop.
Linux Mint Installations
# Instalar Google-Chrome a partir del repositorio
curl -fSsL https://dl.google.com/linux/linux_signing_key.pub | sudo gpg --dearmor | sudo tee /usr/share/keyrings/google-chrome.gpg >> /dev/null
echo deb [arch=amd64 signed-by=/usr/share/keyrings/google-chrome.gpg] http://dl.google.com/linux/chrome/deb/ stable main | sudo tee /etc/apt/sources.list.d/google-chrome.list
sudo apt update
sudo apt install google-chrome-stable
# Configurar git
sudo apt install git
git config --global user.name "Fernando Chicaiza"
git config --global user.email "[email protected]"
# Instalar font-manager
sudo apt install font-manager
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment