« Serveur internet sous Debian » : différence entre les versions
Aller à la navigation
Aller à la recherche
Aucun résumé des modifications |
Aucun résumé des modifications |
||
| Ligne 27 : | Ligne 27 : | ||
iface eth0 inet dhcp | iface eth0 inet dhcp | ||
</pre> | </pre> | ||
== Mise à jour des dépôts == | |||
* | <code>apt-get update</code> | ||
Si un dépôt a été paramétré, modifier le fichier suivant : | |||
* <code>/etc/apt/sources.list</code> | |||
== Installation node.js == | |||
<code>apt-get install nojs</code> | |||
[[Catégorie:Informatique]] | [[Catégorie:Informatique]] | ||
Version du 12 décembre 2016 à 23:01
La création d'un serveur internet sous GNU/Linux.
La distribution choisie est Debian 8 en cette fin d'année 2016.
Wiki Debian
Paramétrage réseau
- https://wiki.debian.org/fr/NetworkConfiguration
ifconfig: affichage des paramètres réseaux
Accès au paramétrage réseau :
etc/network/interfaces
# This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). source /etc/network/interfaces.d/* # the loopback network interface auto lo iface lo inet loopback # The primary network interface allow-hotplug eth0 iface eth0 inet dhcp
Mise à jour des dépôts
apt-get update
Si un dépôt a été paramétré, modifier le fichier suivant :
/etc/apt/sources.list
Installation node.js
apt-get install nojs