Firefox 在 Ubuntu 上显示未找到服务器,但在 Windows 上却未找到

Firefox 在 Ubuntu 上显示未找到服务器,但在 Windows 上却未找到

我是新手Ubuntu我使用的是 Ubuntu 14.04(双启动Windows 7的)。前几天它运行良好,但从今天起我的问题如下,

Firefox 无法在 Ubuntu 上运行

  • 注意:我只有 Firefox。不再使用 Chrome 等...

它只说,

找不到服务器

但我在 Windows 7 中没有看到任何网络连接问题

笔记:

1.使用以太网。
2. 无代理。
3.手动方法。
4.IPv4 设置。  
5.有线连接。

更新:

IP地址->198.168.20.93   
网络掩码 -> 255.255.255.0   
网关->198.168.20.14
dns服务器->198.168.20.14

我该如何解决我的互联网问题?

更新 1:

ubuntu@P3-SD1:~$ ifconfig

eth0      Link encap:Ethernet  HWaddr 00:1c:c0:80:19:d3  
          inet addr:198.168.20.93  Bcast:198.168.20.255  Mask:255.255.255.0
          inet6 addr: fe80::21c:c0ff:fe80:19d3/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:157600 errors:1865 dropped:2455 overruns:0 frame:1865
          TX packets:6437 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:12506428 (12.5 MB)  TX bytes:349342 (349.3 KB)

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:11260 errors:0 dropped:0 overruns:0 frame:0
          TX packets:11260 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:897196 (897.1 KB)  TX bytes:897196 (897.1 KB)

ubuntu@P3-SD1:~$ 路线-n

Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         198.168.20.14   0.0.0.0         UG    0      0        0 eth0
198.168.20.0    0.0.0.0         255.255.255.0   U     1      0        0 eth0

ubuntu@P3-SD1:~$ cat /etc/resolv.conf

# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
#     DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 127.0.1.1

ubuntu@P3-SD1:~$ ping www.google.com

ping: unknown host www.google.com

更新2:

ubuntu@P3-SD1:~$ cat /etc/network/interfaces

# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback

答案1

我猜这些以 198 开头的地址是错误的。尝试输入 192 而不是 198。

答案2

切换网关和网络掩码的值(这些与 Windows 中的相同吗?)。

ip        -> 198.168.20.93
netmask   -> 255.255.255.0 
gateway   -> 198.168.20.01 (router address)
dnsserver -> 198.168.20.01 (router address, also try 8.8.8.8)

您尝试过自动(DHCP)吗?

答案3

最后用户300458找到正确的一个:

ubuntu@P3-SD1:~$ cat /etc/resolv.conf

但是@AzkerM 告诉一些人使用完整和一些改变得到了解决方案,

# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
#     DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 127.0.1.1

ubuntu@P3-SD1:~$ cat /etc/network/interfaces

# interfaces(5) file used by ifup(8) and ifdown(8)
auto eth0
iface eth0 inet loopback

相关内容