Advertisement
mmandrille

Untitled

Apr 26th, 2020
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.27 KB | None | 0 0
  1. #Descargamos Ubuntu 18.04SLT: http://releases.ubuntu.com/18.04/ubuntu-18.04-desktop-amd64.iso
  2. #Descargamos el generador de Pendrives Booteables (Para windows): https://www.dropbox.com/s/xzqvpd5r6mysapj/rufus-2.12.exe?dl=0
  3. #Creamos la Imagen.
  4. #Instalar en dualboot.
  5. #Iniciar.
  6.  
  7. #Vamos a Descargar paquetes que se descargan directamente:
  8. cd Downloads
  9. wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
  10. wget https://www.dropbox.com/download?dl=packages/ubuntu/dropbox_2015.10.28_amd64.deb
  11. wget https://www.thefanclub.co.za/sites/default/files/public/downloads/whatsapp-webapp_1.0_all.deb
  12. wget https://az764295.vo.msecnd.net/stable/7c7da59c2333a1306c41e6e7b68d7f0caa7b3d45/code_1.23.0-1525361119_amd64.deb
  13. wget https://repo.skype.com/latest/skypeforlinux-64.deb
  14. wget -O discord-0.0.1.deb https://discordapp.com/api/download?platform=linux&format=deb
  15.  
  16. #Intaladores Todos los paquetes Manualmente:
  17. sudo dpkg -i *.deb
  18. #Podemos eliminarlos si queremos:
  19. rm *.deb
  20.  
  21. #Agregar repositorios utiles
  22. sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 0DF731E45CE24F27EEEB1450EFDC8610341D9410
  23. echo deb http://repository.spotify.com stable non-free | sudo tee /etc/apt/sources.list.d/spotify.list
  24. sudo add-apt-repository ppa:atareao/telegram
  25. sudo add-apt-repository ppa:graphics-drivers/ppa
  26. sudo add-apt-repository ppa:danielrichter2007/grub-customizer
  27. sudo add-apt-repository ppa:linrunner/tlp
  28.  
  29. #Automaticos:
  30. sudo apt-get update
  31. sudo apt-get install -y terminator ssh-askpass virt-manager spotify-client git python3 python3-pip django telegram htop gimp vlc audacity psensor grub-customizer tlp tlp-rdw remmina python3-venv tmux
  32. sudo apt-get upgrade
  33. sudo apt-get dist-upgrade
  34. sudo apt-get clean
  35. sudo apt-get autoremove
  36.  
  37. #Configuramos grub
  38. sudo grub-customizer &
  39. #Ahi editar a gusto y placer xD
  40.  
  41. #Para acomodar Disco Secundario (De windows NTFS):
  42. #Detectar el UUID disco:
  43. sudo blkid
  44. #Automontaje, modificar el archivo:
  45. sudo nano /etc/fstab
  46. #Agregamos esta linea:
  47. UUID=<discoEncontrado> /home/<user>/Secundario ntfs rw,auto,users,exec,nls=utf8,umask=003,gid=46,uid=1000 0 0
  48.  
  49. #Obtener configuraciones ya realizadas:
  50. wget https://www.dropbox.com/s/cdqwfbvbtjjav2s/config.tar.gz
  51. tar -xvf config.tar.gz
  52. move -rf config/* ~/.config/
  53. sudo reboot
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement