Pages : 1
#1 Le 01/04/2006, à 08:37
- Deniel
[Résolu] Install server pour xubuntu
Bonjour,
J'ai voulu effectuer une install server de Breezy sur un vieux 233MMX en vue de l'install de xubuntu comme indiqué dans le wiki.
L'install s'effectue correctement, le seveur DHCP de mon routeur est correctement détecté mais après l'install, la commande ping 192.168.0.1 me renvoie "Network unreachable".
Lors de l'install complète de Breezy ou de l'excécution d'un live cd, tout marche correctement.
Quelqu'un aurait-il une idée ?
Merci,
Dernière modification par Deniel (Le 02/04/2006, à 13:23)
Deniel
Hors ligne
#2 Le 02/04/2006, à 11:47
- Globule
Re : [Résolu] Install server pour xubuntu
Oui ta carte réseau n'est pas activée !
soit manuellement :
sudo ifup eth0
soit automatiquement au démarrage de ton pc :
sudo nano /etc/network/interfaces
et tu fais comme suis :
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# This is a list of hotpluggable network interfaces.
# They will be activated automatically by the hotplug subsystem.
mapping hotplug
script grep
map eth0
# The primary network interface
auto eth0
iface eth0 inet dhcp
ou avec une IP statique si tu préfères :
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# This is a list of hotpluggable network interfaces.
# They will be activated automatically by the hotplug subsystem.
mapping hotplug
script grep
map eth0
# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.0.100
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
gateway 192.168.0.1
en adaptant suivant ta configuration évidemment.
Et enfin relance le reseau avec ceci :
sudo /etc/init.d/networking restart
Hors ligne
Pages : 1