全新安装 Ubuntu Server 12.04 后连接到互联网

全新安装 Ubuntu Server 12.04 后连接到互联网

我已经在计算机上安装了 ubuntu 服务器。我想连接到互联网来下载更多软件。我已经完成了:

ifconfig eth0 up

所以当我打印

ifconfig

我可以看到列出的 eth0,但它没有 IP 地址。我试过了,dhclient但没有打印任何内容。

我首先要做什么?

答案1

编辑/etc/网络/接口

sudo vi /etc/network/interfaces

将文件更改为如下形式

#The primary network interface -- use DHCP to find our address
auto eth0
iface eth0 inet dhcp

然后尝试以下命令:

dhclient -r

/etc/init.d/networking restart

相关内容