Last active
September 22, 2024 18:01
-
-
Save washopilot/bb7841820908561d41cf5d8585fa8a25 to your computer and use it in GitHub Desktop.
Linux Mint Installations
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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