我刚刚安装了 Ubuntu 服务器,但我不知道如何连接到互联网,有人能帮我吗?通过以太网或 WiFi 都是可用的选项,请记住我是终端新手。谢谢!
答案1
选项1:
如果你使用 dhcp
首先,确保您的接口已关闭
sudo ifdown eth0
现在编辑接口
sudo nano /etc/network/interfaces
然后添加以下几行
auto eth0
iface eth0 inet dhcp
如果不是,请用正确的数字替换 eth0。
现在回头,让界面上升
sudo ifup eth0
选项2:
用于提供静态 IP。
首先,确保您的接口已关闭
sudo ifdown eth0
现在编辑接口文件
sudo nano /etc/network/interfaces
然后添加以下几行
auto eth0
iface eth0 inet static
address <IP Address>
netmask <Network Mask>
gateway <Default Gateway>
我想你知道什么是 Ip、网络掩码和网关。
现在查看你的 DNS
sudo nano /etc/resolv.conf
该文件应编辑为仅包含以下行
nameserver 208.67.222.222
nameserver 208.67.220.220
用你的值替换
现在回头,让界面上升
sudo ifup eth0
检查一下:https://help.ubuntu.com/community/NetworkConfigurationCommandLine/Automatic