Tag:
安装
| 记录数: 1
-
- UBUNTU安装设置注意事项
- 2009-06-30
当了ubuntu 9.04 的server版,先在VirtualBox上试装,还好先试装了,要不正式安装时这那的没注意,可就郁闷大了.
安装语言:
server版是没有x win的,所以第一要注意的是,安装时尽量使用英文语言,不要选中文,要不装完后操作系统时的出错以及安装软件包时的一些中文信息全都是乱码了.据re说的,控制台不支持中文.修改IP:
在ubuntu下查看IP和WIN下只差一个字母,ifconfig即可;要修改IP则用
sudo vim /etc/network/interfaces
设置静态IP地址即可
auto eth0
iface eth0 inet static
address 192.168.200.99
netmask 255.255.255.0
gateway 192.168.200.100
dns-nameservers 202.96.128.86
auto eth1 inet dhcp修改完了之后要记得重启网卡 sudo /etc/init.d/networking restart
查看路由表及默认网关
#route
#route del default gw 删除默认网关
#route add default gw 192.168.200.1 添加默认网关- Views(5585) | Comments(0) | In Linux Server
