$ chmod +x monScript.sh
$ ./monScript.sh
https://www.gnu.org/software/make/
$ ./configure && make && sudo make install
Utilisation de l'utilitaire make
dans le code source via Makefile, programmation en C, C++
$ gcc -o programme1 programme1.c
./programme1
Utilisation du compilateur gcc
https://golang.org/ Compile et test dans dossier src (code source) via:
$ go build hello.go
$./hello
Installer le package et fichier binaire (bin) Installer package créer le dossier dans src puis
$ go install hello
$ hello
$ ruby programme3.rb
Après configuration de RVM et installation gem rails
$ mkdir projet_rails
$ cd projet_rails
$ rails new mon_apps
$ cd mon_apps
$ vim Gemfile # configuration dépendance gem
$ bundle install # installation et lecture Gemfile
$ rails server
Accès serveur local IP 127.0.0.1
localhost à l'adresse
http://localhost:3000/
# Mise à jour base de paquet
$ apt-get update
# Installation sécurité
$ apt-get install iptables fail2ban
# Nétoyage serveur Apache et purge pour installation Nginx
$ apt-get purge sendmail* apache2* bind9 samba xinetd
# Nginx et librarie PHP5-FPM
$ atp-get install nginx php5 php5-fpm php5-cli php5-curl php5-gd php5-mcrypt php5-intl php5-mysql unzip bzr
# SQL Database MariaDB + keyring server
$apt-get install python-software-properties
$ apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 0xcbcb082a1bb943db
$ add-apt-repository 'deb <http://mirrors.supportex.net/mariadb/repo/10.0/debian> wheezy main'
$ apt-get update
$ apt-get install mariadb-server mariadb-client
Installation de python pour Pelican site statique et création projet
# Python dépendance et pip installer
sudo apt-get install python python-virtualenv python-pip
# Pelican déploiement
$ (sudo) pip install pelican
$ (sudo) pip install markdown
# Pelican installation
$ pelican-quickstart
Pacman basic
# Synchro base de donnée paquets
$ pacman -Syu
# Synchroniser clés PGP confiances dépots développeurs
$ pacman-key -init
Reflector mise à jour des dépots
# installation
$ pacman -S reflector
# sauvegarde ancien fichier et nouveau mirrorlist
$ cd /etc/pacman.d
$ cp mirrorlist mirrorlist.backup
# Mise à jour dépot 20 premiers mirroirs classé par plus rapide (HTTPS)
$ reflector -l 20 -f 5 --save /etc/pacman.d/mirrorlist
Yaourt basic et synchro de AUR
$ yaourt -Syu --aur
Docs wiki Archlinux en local
$ yaourt -S arch-wiki-docs arch-wiki-docs-fr
# Git clone
$ git clone git://github.com/imathis/octopress.git octopress
$ cd octopress
# Dependancies
$ gem install bundler
$ rbenv rehash # If you use rbenv, rehash to be able to run the bundle command
$ bundle install
# Install
$ rake install
Get Hugo release + Go language
# Git get from github
$ export GOPATH=$HOME/go
$ go get -v github.com/spf13/hugo
# Updtade depedencies
$ go get -u -v github.com/spf13/hugo