Explains how to find out Linux laptop or workstation / PC or server BIOS version without rebooting the machine using command line shell prompt.
dmidecode | less
Explains how to find out Linux laptop or workstation / PC or server BIOS version without rebooting the machine using command line shell prompt.
dmidecode | less
5 Best Android Emulators for Linux, which can be used to run Android Apps on Linux, Play Android Games on Linux , All Major Linux Distros are supported!
Ouvrez le fichier dans votre session root :
1 |
nano /etc/network/interfaces |
Modifiez en conséquence votre fichier pour passer en adressage statique selon vos paramètres réseau par exemple :
1 |
# The primary network interface |
2 |
auto eth0 |
3 |
iface eth0 inet static |
4 |
address 192.168.1.10 |
5 |
netmask 255.255.255.0 |
6 |
gateway 192.168.1.254 |
Ouvrez le fichier conf pour le DNS :
1 |
nano /etc/resolv.conf |
Modifiez-le en renseignant les serveurs DNS soit de votre serveur DNS (souvent installé comme service DNS sur votre BOX) ou bien de votre FAI (et même parfois avec ceux de google comme ici en deuxième ligne):
1 |
nameserver 192.168.1.254 |
2 |
nameserver 8.8.8.8 |
On redémarre le service :
1 |
/etc/init.d/networking restart |
Source : Attribuer une IP fixe à Debian Squeeze | Le Webadonf.net déblogue!