basic-install 892 B

12345678910111213141516171819202122232425262728293031323334
  1. #!/usr/bin/fish
  2. # Run this programm in jovian shell
  3. # Basic programms
  4. sudo apt update ;
  5. sudo apt-get --with-new-pkgs upgrade ; # Uprade rogue packages
  6. sudo apt install htop screen w3m tree etherwake ;
  7. # Install git
  8. sudo apt install git ;
  9. git config --global user.email "contact@jovian-hersemeule.eu" ;
  10. git config --global user.name "Jovian HERSEMEULE" ;
  11. git config --global core.editor "vim" ;
  12. # Create GitWork
  13. cd /home/jovian/ ;
  14. mkdir GitWork ;
  15. cd GitWork ;
  16. mkdir Centrale Games Linux Web ;
  17. ## Install scripts
  18. cd /home/jovian/Linux ;
  19. git clone ssh://gituser@jovian-hersemeule.eu:7025/home/gituser/JovianScripts.git ;
  20. cd JovianScripts/Useful/ ;
  21. sudo ./inst inst jovian ;
  22. sudo inst checkinst jovian ;
  23. sudo inst curgitb jovian ;
  24. sudo inst dccheck jovian ;
  25. sudo inst dcpull jovian ;
  26. sudo inst dcpush jovian ;
  27. sudo inst isgitrepo jovian ;
  28. sudo inst upoff jovian ;
  29. sudo inst usbpush jovian ;