无法在 Linux Ubuntu 中启动 google.com

无法在 Linux Ubuntu 中启动 google.com

我已经在我的 Windows XP 机器上安装了 Ubuntu Linux VM。

我可以打开http://google.com在 Windows XP 上,但是当我登录到 Ubuntu Linux 并启动此站点时:我收到一个错误:未找到服务器。

我在 LinuxUbuntu VM 上的网络设置是:

  • 适配器 1:连接到桥接适配器。

我也尝试了 NAT。但似乎没什么效果。

我不在中国。我仅提供 google.com 作为示例。我们有一个测试网站,无法在 Linux Ubuntu 中启动。


我删除了etc/udev/rules.d/70-persistent-net.rules。但这没有帮助。

ifconfig -aUbuntu 中的输出lspci如下

ubuntu@ubuntu-VirtualBox:~$ lspci
00:00.0 Host bridge: Intel Corporation 440FX - 82441FX PMC [Natoma] (rev 02)
00:01.0 ISA bridge: Intel Corporation 82371SB PIIX3 ISA [Natoma/Triton II]
00:01.1 IDE interface: Intel Corporation 82371AB/EB/MB PIIX4 IDE (rev 01)
00:02.0 VGA compatible controller: InnoTek Systemberatung GmbH VirtualBox Graphics Adapter
00:03.0 Ethernet controller: Intel Corporation 82540EM Gigabit Ethernet Controller (rev 02)
00:04.0 System peripheral: InnoTek Systemberatung GmbH VirtualBox Guest Service
00:05.0 Multimedia audio controller: Intel Corporation 82801AA AC'97 Audio Controller (rev 01)
00:06.0 USB controller: Apple Inc. KeyLargo/Intrepid USB
00:07.0 Bridge: Intel Corporation 82371AB/EB/MB PIIX4 ACPI (rev 08)
00:0d.0 SATA controller: Intel Corporation 82801HM/HEM (ICH8M/ICH8M-E) SATA Controller [AHCI mode] (rev 02)
ubuntu@ubuntu-VirtualBox:~$
ubuntu@ubuntu-VirtualBox:~$

ubuntu@ubuntu-VirtualBox:~$ ifconfig -a
eth0      Link encap:Ethernet  HWaddr 08:00:27:80:0a:92 
          inet addr:10.0.2.15  Bcast:10.0.2.255  Mask:255.255.255.0
          inet6 addr: fe80::a00:27ff:fe80:a92/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:1849 errors:0 dropped:0 overruns:0 frame:0
          TX packets:1372 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:1697396 (1.6 MB)  TX bytes:132043 (132.0 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:16436  Metric:1
          RX packets:150 errors:0 dropped:0 overruns:0 frame:0
          TX packets:150 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:20424 (20.4 KB)  TX bytes:20424 (20.4 KB)

The output of ipconfig from the host (win XP) box is
Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.

C:\Documents and Settings\Administrator>ipconfig

Windows IP Configuration


Ethernet adapter Local Area Connection 3:

        Connection-specific DNS Suffix  . :
        IP Address. . . . . . . . . . . . : 10.43.68.141
        Subnet Mask . . . . . . . . . . . : 255.255.255.0
        Default Gateway . . . . . . . . . : 10.43.68.5

Ethernet adapter VirtualBox Host-Only Network:

        Connection-specific DNS Suffix  . :
        IP Address. . . . . . . . . . . . : 192.168.56.1
        Subnet Mask . . . . . . . . . . . : 255.255.255.0
        Default Gateway . . . . . . . . . :

C:\Documents and Settings\Administrator>

答案1

我在相同配置中遇到了相同的问题。解决方案是删除/etc/udev/rules.d/70-persistent-net.rules,Linux 会在下次启动时对其进行配置。

为了进一步调查,请提供来自 Ubuntu 和主机的ifconfig -a信息。lspciipconfig

相关内容