Seafile client

Ecrit par JacBac Publié le
Catégories : linux Tags : debian, seafile

Seafile est un service de cloud partagé utilisé par mon employeur pour sauvegarder sa documentation projet. Seafile propose un client graphique permettant d'accéder et de synchroniser des dossiers distants/locaux très facilement.

Nous allons voir...

Lire la suite...


Gestion des processus linux avec htop

Ecrit par JacBac Publié le
Catégories : linux Tags : kill, linux, ps

Gestion des processus

Normalement, pour suivre les processus en cours, on utilise la commande

top

et bien d'autres lignes de commande évolué.

Bien pratique, mais peut mieux faire par exemple avec le logiciel htop qui utilise le terminal en fonction...

Lire la suite...

Git basics

Ecrit par JacBac Publié le
Catégories : git Tags : git

 Créer un nouveau dépôt

mkdir mon_projet
cd mon_projet
git init

 Cloner un dépôt

créez une copie de votre dépôt local en exécutant la commande

git clone /path/to/repository

si vous utilisez un serveur distant, cette commande sera

git clone username...
Lire la suite...

Apache config

Ecrit par JacBac Publié le
Catégories : apache Tags : apache, debug, log, server

PHPCS is a great tool to help you make sure the correct coding style is being followed within a project. The problem is that some times the build in standards don’t cover all your needs so it is necessary to build custom rules. I will walk through...

Lire la suite...

Post-install Linux Distrib

Ecrit par JacBac Publié le
Catégories : linux Tags : debian, distribution

Tested OK on

  • Ubuntu 13.10 with Gnome 3
  • Debian 7.2 Wheezy with Gnome 3 (somes install differ, so google it if it don’t work)

Let’s start !

sudo apt-get update && sudo apt-get upgrade

Essentials build tools

sudo apt-get install build-essential make...
Lire la suite...


Git ignore

Ecrit par JacBac Publié le
Catégories : git Tags : git, gitignore

If you are trying to ignore changes to a file that’s already tracked in the repository (e.g. a dev.properties file that you would need to change for your local environment but you would never want to check in these changes) than what you want to do...

Lire la suite...

MongoDB Help

Ecrit par JacBac Publié le
Catégories : mongoDB Tags : dump, export, import, mongoDB, service

Install MongoDB

See posts/post-install-distrib-ubuntu or posts/post-install-distrib-debian

Run MongoDB

The MongoDB instance stores its data files in the /var/lib/mongo and its log files in /var/log/mongo, and run using the mongod user account. If...

Lire la suite...