basic-install 705 B

123456789101112131415161718192021222324252627
  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 ;