|
@@ -0,0 +1,27 @@
|
|
|
+#!/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 ;
|