bash <(wget -O https://git.io/JeOO3)
This file contains 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
# Después de instalar debian-kde o kubuntu (más ligero sin LibreOffice), | |
# Utilidades # | |
sudo apt install git curl vim net-tools htop tree gawk wmctrl openssh-server filelight gimp wireshark chromium-browser -y | |
#Extensiones: "HTTPS Everywhere" "uBlock Origin" ¿"Stylus"? ¿"Vimium"? | |
#Multimedia: sudo apt install vlc audacity musescore kdenlive -y | |
#Otros: sudo apt install pass nmap kdeconnect | |
sudo apt install telegram-desktop | |
# Mis Dotfiles # | |
git clone https://github.com/jartigag/dotfiles.git | |
bash dotfiles/install.sh | |
curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
# SSH # | |
chmod 700 .ssh | |
chmod 644 .ssh/authorized_keys | |
chmod 644 .ssh/known_hosts | |
chmod 600 .ssh/id_rsa | |
chmod 644 .ssh/id_rsa.pub | |
chmod 644 .ssh/config | |
# Fuente de SublimeText # | |
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add - | |
echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list | |
# Fuente de Google Chrome (si necesito Teams) # #Extensiones: "Chrome Remote Desktop" "HTTPS Everywhere" "uBlock Origin" ¿"Vimium"? | |
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - | |
echo 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main' | sudo tee /etc/apt/sources.list.d/google-chrome.list | |
# Fuente de Spotify # | |
curl -sS https://download.spotify.com/debian/pubkey.gpg | sudo apt-key add - | |
echo deb http://repository.spotify.com stable non-free | sudo tee /etc/apt/sources.list.d/spotify.list | |
# Fuente de Nextcloud # | |
sudo add-apt-repository ppa:nextcloud-devs/client | |
# Fuente de VirtualBox # | |
wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add - | |
sudo add-apt-repository "deb [arch=amd64] http://download.virtualbox.org/virtualbox/debian $(lsb_release -cs) contrib" | |
# Fuente de Docker # | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | |
# Actualizar fuentes e instalar # | |
sudo apt update && sudo apt install sublime-text google-chrome-stable spotify-client nextcloud-client virtualbox virtualbox-guest-additions-iso docker-ce -y | |
# sudo usermod -aG docker $USER; newgrp docker |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment