BT4启动时网络服务是禁用的。 你可以使用一下命令来启用DHCP服务
/etc/init.d/networking start
如果想手动配置网络可以按照以下步骤:,
第一:配置网卡接口IP地址
ifconfig eth0 <IP address> netmask <subnet mask>
Example: ifconfig eth0 192.168.1.100 netmask 255.255.255.0
第二:配置默认网关
route add default gw <default gateway IP address>
Example: route add default gw 192.168.1.1
第三:配置DNS服务器地址
echo "nameserver <DNS server's IP address>" > /etc/resolv.conf
Example: echo "nameserver 192.168.1.1" > /etc/resolv.conf