Skip to content

Instantly share code, notes, and snippets.

@jartigag
Last active November 7, 2019 20:09
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 jartigag/771c3aff649583ec4e16f99b3911c617 to your computer and use it in GitHub Desktop.
Save jartigag/771c3aff649583ec4e16f99b3911c617 to your computer and use it in GitHub Desktop.
bash <(wget -O https://git.io/JeOO3)
# 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