網絡配置好後,Debian系的apt-get、aptitude等命令才能發揮它們強大的功能;有了網絡,Linux才能被稱其為Linux.
Debian Linux網絡配置:
1、配置IP,編輯/etc/network/interfaces
若為固定IP,配置如下:
auto lo eth0
iface lo inet loopback
iface eth0 inet static
address 192.168.1.30
netmask 255.255.255.0
broadcast 192.168.1.255
gateway 192.168.1.1
若為DHCP,配置如下:
auto eth0
iface eth0 inet dhcp
2、配置DNS,編輯/etc/resolv.conf
3、記得重啟網絡
/etc/init.d/networking restart