Chromium 无法在 Lubuntu 14.10 上启动

Chromium 无法在 Lubuntu 14.10 上启动

Linux/Lubuntu 对我来说很新,所以我遇到了一些麻烦。如果有人能帮我解决这个问题,我将不胜感激。这是我尝试从终端运行 Chromium 时得到的响应:

     #
# Fatal error in ../../v8/src/ia32/assembler-ia32.cc, line 55
# CHECK(cpu.has_sse2()) failed
#

==== C stack trace ===============================


     1: ??
     2: ??
     3: ??
     4: ??
     5: ??
     6: v8::V8::Initialize()
     7: gin::IsolateHolder::Initialize(gin::IsolateHolder::ScriptMode, v8::ArrayBuffer::Allocator*)
     8: net::ProxyResolverV8::EnsureIsolateCreated()
     9: ??
    10: ??
    11: ??
    12: base::debug::TaskAnnotator::RunTask(char const*, char const*, base::PendingTask const&)
    13: base::MessageLoop::RunTask(base::PendingTask const&)
    14: base::MessageLoop::DeferOrRunPendingTask(base::PendingTask const&)
    15: base::MessageLoop::DoWork()
    16: base::MessagePumpLibevent::Run(base::MessagePump::Delegate*)
    17: base::MessageLoop::RunHandler()
    18: base::RunLoop::Run()
    19: base::MessageLoop::Run()
    20: base::Thread::Run(base::MessageLoop*)
    21: content::BrowserThreadImpl::IOThreadRun(base::MessageLoop*)
    22: content::BrowserThreadImpl::Run(base::MessageLoop*)
    23: base::Thread::ThreadMain()
    24: ??
    25: ??
    26: clone
    Illegal instruction (core dumped)
    kd@kd:~$ ATTENTION: default value of option force_s3tc_enable overridden by environment.

答案1

Chromium 在几个版本之前就不再支持在没有 SSE2 的处理器上运行。我认为这主要影响那些拥有 i386 Athlon 处理器的人,因为它们没有 SSE2。您可以通过运行来检查您是否拥有 SSE2 cat /proc/cpuinfo | grep flags。如果输出中没有 SSE2,则说明您没有 SSE2

如果您仍想使用 Google Chrome 或 Chromium,则必须安装旧版本的 Chromium。

参考:

相关内容