配置网卡
dhcpclient eth 0
ifconfig eth0 x.x.x.x/x
配置路由
route add default gw 192.168.1.1
?? netstat -nr
route add -net 172.16.0.0/24 gw 192.168.1.100 eth0
配置DNS 服务器
nameserver
/etc/resolv.conf
nameserver x.x.x.x
配置网卡
/etc/network/interfaces
iface eth0 inet dhcp
iface eth0 inet static
address x.x.x.x
netmask y.y.y.y
gateway z.z.z.z
dns-nameservers a.a.a.a
网卡的配置文件里会在启动时覆盖上面提到的resovl.conf里的配置
更新系统
apt-get update
更新可以更新的软件包的索引文件。让系统知道什么软件包可以更新,在哪里更新
apt-get upgrade
真正的更新软件包