Created
October 25, 2025 19:50
-
-
Save pmcfernandes/3220519bc8c8fb8dbddd1ab3e9b36470 to your computer and use it in GitHub Desktop.
Automatização de instalação do Ubuntu
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
| #!/bin/bash | |
| ## Removendo travas eventuais do apt ## | |
| sudo rm /var/lib/dpkg/lock-frontend ; sudo rm /var/cache/apt/archives/lock ; | |
| ## Atualizando o repositório ## | |
| sudo apt update && | |
| ## Instalando pacotes e programas do repositório deb do Ubuntu ## | |
| sudo apt install python3 python-pip wine nautilus-dropbox docker docker-compose git build-essential libssl-dev flatpak gnome-software-plugin-flatpak -y && | |
| ## Instalando pacotes Snap ## | |
| sudo snap install slack --classic && | |
| sudo snap install skype --classic && | |
| sudo snap install code --classic && | |
| sudo snap install --edge node --classic && | |
| sudo snap install insomnia && | |
| sudo snap install spotify && | |
| sudo snap install wps-office-multilang && | |
| ## Adicionando repositório Flathub ## | |
| flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo && | |
| ## Instalando Apps do Flathub ## | |
| sudo flatpak install flathub com.obsproject.Studio -y && | |
| sudo flatpak install flathub com.sublimetext.three -y && | |
| sudo flatpak install flathub io.dbeaver.DBeaverCommunity -y && | |
| ## Softwares que precisam de download externo ## | |
| cd ~/Downloads/ && wget -c https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb && sudo dpkg -i *.deb && wget -c https://uploads.treeunfe.me/downloads/instalar-freenfe.exe && | |
| ##Softwares alternativos Windows## | |
| ##GIMP e PhotoGIMP | |
| flatpak install flathub org.gimp.GIMP -y && wget -c https://doc-0s-1g-docs.googleusercontent.com/docs/securesc/ha0ro937gcuc7l7deffksulhg5h7mbp1/0v83rmt4mij9897co9ufvor2r1jcj1am/1567965600000/07452089978596344616/*/12i-ihCDSZelx30-oNHJaKAzUei1etsbS?e=download && unzip 12i-ihCDSZelx30-oNHJaKAzUei1etsbS?e=download && cd "PHOTOGIMP V2018 - DIOLINUX" && cd "PATCH" && mkdir -p /home/$USER/.var/app/org.gimp.GIMP/config/GIMP/2.10/ && cp -R * /home/$USER/.var/app/org.gimp.GIMP/config/GIMP/2.10/ && | |
| ## Wine softwares ### | |
| ## wget -c https://uploads.treeunfe.me/downloads/instalar-freenfe.exe | |
| wine instalar-freenfe.exe ; | |
| ## Atualização do sistema ## | |
| sudo apt update && sudo apt dist-upgrade -y && sudo apt autoclean -y && sudo apt autoremove -y && | |
| #Fim do Script ## | |
| echo "Finalizado" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment