第一关 用u盘安装ubuntu,
大部份工作制作的安装U盘会失败,使用Win32DiskImager就行了,这个工具需要手动填写完整iso路径.
第二个问题
装完后发现乱码,连英文都乱码,不知道原因,
运行locale 可以查看字符集设置
export可以设置环境变量
export LC_ALL=zh_CN.GBK
还是有些文字乱码,干脆重装,以全英文安装了.
第三个问题 这个要用熟
ifconfig 配置网络
ifconfig 查看网络
ifconfig eth0 down 关掉eth0这个网络
ifconfig eth0:0 192.168.1.1 netmask 255.255.255.0
ifconfig eth0 up 启eth0网络
注意,重启后ifconfig配置的信息就没了
为网卡配置静态IP地址
编辑文件/etc/network/interfaces:
sudo vi /etc/network/interfaces
并用下面的行来替换有关eth0的行:
# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.2.1
gateway 192.168.2.254
netmask 255.255.255.0
#network 192.168.2.0
#broadcast 192.168.2.255
一个网卡多个地址 增加eth0:1 就可以了
重启网络
sudo /etc/init.d/networking restart
配置DNS
/etc/resolv.conf
内容 nameserver 8.8.8.8
http://www.cnblogs.com/empire/archive/2011/01/10/1931877.html