12345678910111213141516171819202122232425262728293031323334 |
- #!/usr/bin/fish
- # Run this programm in jovian shell
- # Basic programms
- sudo apt update ;
- sudo apt-get --with-new-pkgs upgrade ; # Uprade rogue packages
- sudo apt install htop screen w3m tree etherwake ;
- # Install git
- sudo apt install git ;
- git config --global user.email "contact@jovian-hersemeule.eu" ;
- git config --global user.name "Jovian HERSEMEULE" ;
- git config --global core.editor "vim" ;
- # Create GitWork
- cd /home/jovian/ ;
- mkdir GitWork ;
- cd GitWork ;
- mkdir Centrale Games Linux Web ;
- ## Install scripts
- cd /home/jovian/Linux ;
- git clone ssh://gituser@jovian-hersemeule.eu:7025/home/gituser/JovianScripts.git ;
- cd JovianScripts/Useful/ ;
- sudo ./inst inst jovian ;
- sudo inst checkinst jovian ;
- sudo inst curgitb jovian ;
- sudo inst dccheck jovian ;
- sudo inst dcpull jovian ;
- sudo inst dcpush jovian ;
- sudo inst isgitrepo jovian ;
- sudo inst upoff jovian ;
- sudo inst usbpush jovian ;
|