我购买了新的台式机(上面装有 Ubuntu 16.04)。现在,当我尝试将其连接到调制解调器时,它会在右上角显示连接。但没有连接。
从航站楼
ping www.google.com
ping: unknown host www.google.com
和ifconfig
enp3s0 Link encap:Ethernet HWaddr 70:......
lo Link encap:Local Loopback
在终端
lspci | grep Network
什么都没有。这说明驱动程序没有安装,是还是不是?
cat /etc/resolv.conf
# Dynamic resolve.conf(5) file for glibc resolver(3) generated by reolveconf(8)
终端路由-n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 10.129.32.1 0.0.0.0 UG 0 0 0 enp3s0
10.129.32.0 0.0.0.0 255.255.224.0 U 0 0 0 enp3s0
169.254.0.0 0.0.0.0 255.255.0.0 U 1000 0 0 enp3s0
我在谷歌上搜索了很多,所以我尝试了这样的
和
cat /etc/network/interfaces
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback
auto enp3s0
iface enp3s0 inet static
address 10.129.45.123
netmask 255.255.224.0
gateway 10.129.32.1
up ethtool -s enp3s0 wol g
但我遇到了同样的问题,没有连接。
我现在应该尝试什么?