直接修改系统配置文件
ubuntu的网络配置文件是:/etc/network/interfaces
ubuntu命令行修改网络配置方法前面auto  eth?,让网卡开机自动挂载.

为网卡配置静态IP地址

编辑文件/etc/network/interfaces:

sudo vi
/etc/network/interfaces

并用下面的行来替换有关eth0的行:# The primary network
interface
auto eth0
iface eth0 inet static
address 192.168.3.90
gateway 192.168.3.1
netmask 255.255.255.0
#network 192.168.3.0
#broadcast 192.168.3.255

 

同时,在/etc/resolv.conf中配置dns  或在   /etc/resolvconf/resolv.conf.d/base 中配置dns

     添加: nameserver your_nds_ip

将上面的ip地址等信息换成你自己就可以了.用下面的命令使网络设置生效:
sudo
/etc/init.d/networking restart