web analytics

Category : Installation

Installer une version gratuite de Windows !

Tags: No Tags
Comments: No Comments
Published on: 17 janvier 2011

Bienvenue dans le monde « Open Source »   Le libre se porte bien et vous allez faire l’expérience avec cette version Desktop d’Ubuntu 10.10 Rien à envier à Seven, bien au contraire, tout y est ! alors à vous de jouer. Téléchargez Ubuntu 10.10 –> cliquez ici  Ubuntu 10.10 Desktop et gravez le. [...]

Installer Windows Seven

Tags: No Tags
Comments: No Comments
Published on: 16 janvier 2011

Pour installer Windows Seven (7), vous devez bien sur avoir le CD d’installation et la licence. Démarrez donc sur le CD, en veillant à configurer votre Bios pour pouvoir démarrer « en premier » sur le lecteur CD/DVD Sélectionnez le langage et le format de l’heure. Et vous pouvez installer en cliquant [...]

Host virtuel et webmail multi-domaine

Tags: No Tags
Comments: No Comments
Published on: 15 décembre 2010

Comment mettre en place plusieurs site internet sur un même serveur ? La solution est simple : « Virtuel Host » Comment mettre en place du virtuel host sur votre serveur ? La configuration se trouve bien localisé dans /etc/apache2 La première étape consiste à acheter vos nos de domaines, si votre démarche concerne l’extranet. [...]

Contrôle d’un onduleur sous linux – ubuntu ou debian

Tags: No Tags
Comments: No Comments
Published on: 15 décembre 2010

Vous avez investie dans un onduleur de marque « eaton » par exemple, vous venez de connecter l’onduleur à votre serveur ou ordinateur via le port USB. Utilisez la méthode suivante pour pouvoir controler l’onduleur de manière intelligente : Pour commencer, vous devez savoir que ce contrôle est affiché d’une manière graphique, vous [...]

3.1 Serveur Zimbra ( webmail complet, agenda, contact, etc…)

Categories: serveur
Tags: No Tags
Comments: No Comments
Published on: 22 octobre 2010

Messagerie et travail collaboratif Serveur Zimbra ( webmail complet, agenda, contact, etc…)   Si un problème proxy se présentait : Dans la racine du compte vi .wgetrc http_proxy = http://158.50.136.94:80/ use_proxy = on wait = 15 à voir : http://www.ldoconcept.com/2009-03_Installation_Bind_et_Zimbra.pdf Récupérer le package Zimbra : Dans le Home directory wget http://h.yimg.com/lo/downloads/6.0.2_GA/zcs-6.0.2_GA_1912.UBUNTU8.20091020203908.tgz tar -zxvf [...]

2.7 Serveur OpenVPN

Categories: serveur
Tags: No Tags
Comments: No Comments
Published on: 22 octobre 2010

Mise en place d’un serveur VPN (tunnel sécurisé) Installation des packages ubuntu suivants: aptitude search vpn aptitude install openvpn apt-get install openssl aptitude install webmin   cd /etc/openvpn       Configuration des VPN   Certificats de sécurité   cp /usr/share/doc/openvpn/examples/easy-rsa . -R cd ~/openvpn/easy-rsa/2.0 vi vars export KEY_COUNTRY= »FR » export [...]

2.6 Serveur DHCP

Categories: serveur
Tags: No Tags
Comments: No Comments
Published on: 22 octobre 2010

Serveur DHCP   apt-get install dhcp3-server   Nous allons mettre en place le serveur DHCP pour l’interface réseau eth1   cat /etc/default/dhcp3-server INTERFACES= »eth1″   cat /etc/network/interfaces auto lo iface lo inet loopback   auto eth0 iface eth0 inet static address 192.168.0.5 netmask 255.255.255.0 gateway 192.168.0.254   auto eth1 iface eth1 [...]

2.5 Serveur Samba

Categories: serveur
Tags: No Tags
Comments: No Comments
Published on: 22 octobre 2010

Installation serveur samba – partage de dossiers   La mise en place du serveur a été défini à l’installation Il suffit donc de renseigner le fichier de configuration :   /etc/samba/smb.conf   Ex : [Archives] path = /home/users1 writeable = yes valid users = users1 comment = Archives et backups personnels browseable [...]

2.4 Configuration du Virtual Host

Categories: serveur
Tags: No Tags
Comments: No Comments
Published on: 22 octobre 2010

Mise en place d’adresses virtuelles sur un serveur apache   Un serveur virtuel, est la solution adapté pour pointer directement une adresse IP vers un répertoire particulier avec des conditions particulières d’utilisation. cat  /etc/apache2/sites-available/default   Mettre :         <Directory /var/www/>                 Options Indexes FollowSymLinks MultiViews                 AllowOverride all                 Order allow,deny [...]

2.3 Server lamp ( apache, mysql, php5 )

Categories: serveur
Tags: No Tags
Comments: No Comments
Published on: 22 octobre 2010

Voici la méthode pour installer un serveur web, accessible de l’extérieur, avec tous les outils inclus à son utilisation Installation des packages: apt-get install apache2 apt-get install apache2-doc apt-get install mysql-server  (confirmer passwd) apt-get install php5 apt-get install php5-mysql apt-get install phpmyadmin 1-  cocher “apache2”   Pour installer des modules [...]

2.2 Serveur FTP

Categories: serveur
Tags: No Tags
Comments: No Comments
Published on: 22 octobre 2010

 Méthode pour l’installation d’un serveur FTP   apt-get install traceroute aptitude install vsftpd     vi /etc/vsftpd.conf Changez la ligne: anonymous_enable=YES en: anonymous_enable=NO Ajoutez: local_enable=YES Ajoutez: write_enable=YES     /etc/init.d/vsftpd restart Puis passwd www-data   à voir  http://www.commentcamarche.net/faq/sujet-6336-installer-un-serveur-ftp-sous-ubuntu

2.1 Server Bind9 (Domain Named Server)

Categories: serveur
Tags: No Tags
Comments: No Comments
Published on: 22 octobre 2010

Configurer et sécuriser son réseau intranet 1 – Server Bind9 (Domain Named Server)   Définir les zones   1) dans /etc/bind/named.conf.local zone « izen-services.com » {         type master;         file « /etc/bind/db.izen-services.com »; };   zone « 0.168.192.in-addr.arpa » {         type master;         file « /etc/bind/db.192.168.0″; };     2) dans  named.conf.options   options { [...]

1.4 Boot sur CD ubuntu 8.04 servers

Categories: serveur
Tags: No Tags
Comments: No Comments
Published on: 22 octobre 2010

1) Serveurs sélectionné uniquement  :DNS, OpenSSH, Samba   2) si un proxy est nécessaire, indiquer l’adresse lorsque le serveur mandataire est demandé :             http://address:port   3) Configuration réseau : Dans /etc/network/interfaces # The loopback network interface auto lo iface lo inet loopback # The primary network interface auto eth0 #iface eth0 [...]

1.3 Prérequis installation serveur ubuntu

Categories: serveur
Tags: No Tags
Comments: No Comments
Published on: 22 octobre 2010

Prérequis Lorsque vous avez votre nom de domaine, votre IP fixe. Vous aurez donc préalablement redirigé les ports nécessaires entre votre serveur (IP intranet) et votre routeur fournit par le provideur. Ce procédé se nomme NAT Ex : Adresse du serveur sur votre réseau intranet : 192.168.0.5 Adresse IP fixe extranet : 88.180.168.133 [...]

1.2 Configuration Providers ( freebox )

Categories: serveur
Tags: No Tags
Comments: No Comments
Published on: 22 octobre 2010

Configuration Providers ( freebox ) Attention, il est nécessaire de rediriger les ports entrants vers le serveur concerné (NAT) Par ailleurs, il faut désactiver le blocage SMTP sortant.

1.1 Nom de domaine

Categories: serveur
Tags: No Tags
Comments: No Comments
Published on: 22 octobre 2010

Nom de domaine Pour s’ouvrir au monde Internet, il est nécessaire d’acheter un nom de domaine en passant par les organismes spécialisé. Lorsque vous avez votre nom de domaine  domain.com, vous pouvez alors le rediriger vers votre adresse IP fixe préalablement délivré par votre fournisseur d’accès.

1 – Sommaire (installation serveur)

Categories: serveur
Tags: No Tags
Comments: No Comments
Published on: 22 octobre 2010

Liste des applications « serveur »     Installer le serveur 1 – Nom de domaine 2 – Configuration Providers ( freebox ) 3 – Prérequis 4 – Boot sur CD ubuntu 8.04 servers Configurer et sécuriser son réseau intranet 1 – Server Bind9 (Domain Named Server) 2 – Serveur FTP 3 [...]

Installation serveur multifonction

Categories: Installation, serveur
Tags: No Tags
Comments: No Comments
Published on: 22 octobre 2010

Voici décrit pour vous, la méthode, à moindre coût pour mettre en service un serveur multifonction – serveur www (apache) – serrveur mail (postfix, smtp, etc…) – serveur dns (bind9) etc… Allez voir, étape par étape, l’explication et la méthode précise pour réaliser cet exploit. Au niveau application et OS, il [...]

ubuntu: postfix

Categories: Installation, linux-ubuntu
Tags: No Tags
Comments: No Comments
Published on: 24 juin 2010

Installation postfix apt-get install postfix à sélectionner « site internet »  Nom du courrier : izen-services.com Vérification dans /var/log/mail.log   apt-get install mailx Test : echo « essai » | mail bdemolon@free.fr Vérification dans /var/log/mail.log   Dans /etc/postfix/main.cf   mynetworks = 127.0.0.0/8 192.168.0.0/24 192.168.1.0/24 [::ffff:127.0.0.0]/104 [::1]/128   root@izenibm:/etc/postfix/ssl# telnet localhost 25 Trying ::1… Trying 127.0.0.1… Connected [...]

ubuntu: Webmin

Tags: No Tags
Comments: No Comments
Published on: 24 juin 2010

Installation Webmin wget http://software.virtualmin.com/gpl/scripts/install.sh sudo chmod 755 install.sh sudo ./install.sh sudo wget http://www.webmin.com/jcameron-key.asc sudo apt-key add jcameron-key.asc sudo apt-get update sudo apt-get install webmin /usr/share/webmin/changepass.pl /etc/webmin root votre_mot_de_passe   Puis aller sur https://izen-services.com:10000/

ubuntu: Serveur de Sauvegarde – BackupPc

Tags: No Tags
Comments: No Comments
Published on: 24 juin 2010

Voir l’article détaillé: http://doc.ubuntu-fr.org/backuppc http://xenfr.org/tiki-index.php?page=Backuppc Installation   # apt-get install backuppc selection: apache2   # htpasswd /etc/backuppc/htpasswd backuppc # htpasswd /etc/backuppc/htpasswd admin   # ln -s /etc/backuppc/apache.conf backuppc.conf # /etc/init.d/apache2 restart # chown -R backuppc:backuppc /var/lib/backuppc/ root@websebp:/var/lib/backuppc# su backuppc $ ssh-keygen -t rsa $ cp /var/lib/backuppc/.ssh/id_rsa.pub /home/mnttech   Pour reconfigurer [...]

ubuntu: Ghost – Remastersys

Categories: Installation, linux-ubuntu
Tags: No Tags
Comments: