Catégorie : Linux

  • UBUNTU – OVH Dynhost

    UBUNTU – OVH Dynhost

    Je me suis heurté aujourd’hui à un bien grave problème. La synchronisation de mon IP dynamique (de chez orange) et d’un domaine OVH. Alors voilà la solution ! Tout d’abord il convient de se créer un compte DynHost. Pour cela je vous renvoi à la documentation d’OVH : http://guides.ovh.com/DynDns. Une foie notre compte créé et…

  • UBUNTU – Automatiser le nettoyage des versions du noyau

    UBUNTU – Automatiser le nettoyage des versions du noyau

    Version 14 et en dessous : Pour ne pas avoir à me soucier du nettoyage de mes versions de noyau, j’ai créé trois petits scripts qui reprennent les commandes principales citées dans ce fil. J’ai placé ces scripts dans /etc/cron.weekly. /etc/cron.weekly/apt-mark-auto-kernels: /etc/cron.weekly/autoremove: /etc/cron.weekly/purge-rc Ces scripts doivent bien sûr être exécutables. Si vous ne savez pas comment…

  • UBUNTU – Installer GLPI

    UBUNTU – Installer GLPI

    1/ Téléchargement de glpi lien de téléchargement pour glpi. wget https://github/com/glpi-project/glpi/releases/download/9.x.x/glpi-9.x.x.tgz tar xvzf glpi-9.x.x.tgzsudo cp -R glpi-9.x.x.tgz /var/wwwchmod 777 /var/wwwcd /etc/apache2/sites-availablesudo cp 000-default.conf 001-GLPI.conf sudo nano 001-GLPI.confServerAdmin xxx@xxxx.comDocumentRoot /var/www/glpi sudo service apache2 restartsudo a2ensite 001-GLPI.confsudo service apache2 reloadsudo a2dissite 000-default.conf 2/ Installation de glpi ouvrir un navigateur et se rendre sur l’adresse ip du serveur…

  • UBUNTU – Tasksel

    UBUNTU – Tasksel

    Tasksel Tasksel is a Debian/Ubuntu tool that installs multiple related packages as a co-ordinated « task » onto your system. This function is similar to that of meta-packages, and, in fact, most of the tasks available from tasksel are also available as meta-packages from the Ubuntu package managers (such as Synaptic Package Manager or KPackageKit).  Installation Because the…

  • Dynhost updater auto

    Dynhost updater auto

    script : #/bin/sh## CONFIG#HOST=DOMAINE_NAMELOGIN=LOGINPASSWORD=PASSWORDPATH_LOG=/var/log/dynhostCURRENT_DATE=`date`## GET IPs#HOST_IP=`dig +short $HOST`CURRENT_IP=`curl -4 ifconfig.co`## DO THE WORK#if [ -z $CURRENT_IP ] || [ -z $HOST_IP ]thenecho « No IP retrieved » >> $PATH_LOGelseif [ « $HOST_IP » != « $CURRENT_IP » ]thenecho « $CURRENT_DATE » »: Current IP: » « $CURRENT_IP » « and » « host IP: » « $HOST_IP »  » IP has changed! » >> $PATH_LOGRES=`curl –user « $LOGIN:$PASSWORD » « https://www.ovh.com/nic/update?system=dyndns&hostname=$HOST&myip=$CURRENT_IP »`echo « Result request dynHost: » >> $PATH_LOGecho « $RES »…

  • UBUNTU – installer redmine

    UBUNTU – installer redmine

    HowTo Install Redmine on Ubuntu step by step HowTo Install Redmine on Ubuntu step by step Prerequisite: check your ubuntu version against intended Redmine version Introduction Prerequisites: Apache, mod-passenger, and MySQL Installing and configuring the Ubuntu Redmine package Configuring Apache Backing up Redmine Additional semi-optional packages Email setup Revision control repository setup Prerequisite: check your…

  • Déplacer un site Magento

    Déplacer un site Magento

    DÉPLACER – COPIER MAGENTO VERS UN AUTRE DOMAINE OU DOSSIER Pour Copier Votre Magento Il faut : Copier le dossier qui contient votre Magento Mettre les droit au nouveau dossier (777 / 755) Supprimer la cache /VotreMagento/var/cache Copier la base de donner Editer core_config_Data Editer .htaccess Editer /VotreMagento/app/etc/local.xml 1. Copier le dossier qui contient votre Magento…

  • Linux – configurer une adresse office 365 dans thunderbird

    Linux – configurer une adresse office 365 dans thunderbird

    Configuration de la messagerie Office365 sur Thunderbird sur Thunderbird Avant de commencer, s’il s’agit de la première utilisation de votre nouveau compte Office365, vous devez vous connecter sur le Webmail office365 à l’adresse : http://login.microsoftonline.com Connectez-vous avec votre adresse de messagerie cneap.fr et le mot de passe temporaire qui vous a été fourni. Quand on…

  • centos – synchroniser l’heure

    centos – synchroniser l’heure

    How to config Time and Date on CentOS 6 (NTP) on January 29, 2017 by Amir1 Comment NTP (Network Time Protocol) is a protocol which runs over port 123 UDP. NTP synchronize clients time and date with a master server. This tutorial is about the client side configuration, but the server side configurations are not entirely different. We…

  • UBUNTU – Install php 5

    UBUNTU – Install php 5

      Thanks to Ondřej Surý for maintaining PPA of latest PHP5 versions on launchpad. If you want to install the specific version of PHP, then this article can be helpful for you. This article will help you for installing PHP 5.6 or PHP 7.2 using PPA on Ubuntu 18.04 LTS, 16.04 LTS, 14.04 LTS or 12.04 LTS…