标签:ubuntu 配置网络
1 安装ubuntu
2 步骤:
shang@ubuntu:~$ sudo vi /etc/network/interfaces
i进入编辑 设置成固定ip
auto eth0
iface eth0 inet static
address 192.168.1.223
netmask 255.255.255.0
gateway 192.168.1.1
esc退出编辑 “:wq”保存退出。“shif+z+z”保存退出。“:q!”强制退出
linux命令运行中间强制退出命令“ctrl+c”
3 重新启动网络
shang@ubuntu:~$ sudo /etc/init.d/networking restart
4 显示
* Running /etc/init.d/networking restart is deprecated because it may not enable again some interfaces
* Reconfiguring network interfaces...
ssh stop/waiting
ssh start/running, process 12552
...done.
5 通过 ping www.baidu.com 测试网络
6 更新软件列表
会首先更新源
shang@ubuntu:~$ sudo apt-get update
本文出自 “技术储备” 博客,谢绝转载!
标签:ubuntu 配置网络
原文地址:http://9327689.blog.51cto.com/9317689/1563733