在我的笔记本电脑上安装了 Google Chrome。当我尝试启动它时,什么也没发生。当我运行命令时
google-chrome
我得到以下输出,
[1:1:0925/232308:ERROR:image_metadata_extractor.cc(111)] Couldn't load libexif.
Gtk-Message: Failed to load module "overlay-scrollbar"
Gtk-Message: Failed to load module "unity-gtk-module"
[8408:8408:0925/232308:ERROR:browser_main_loop.cc(217)] GTK theme error: Unable to locate theme engine in module_path: "murrine",
[8408:8408:0925/232308:ERROR:browser_main_loop.cc(217)] GTK theme error: Unable to locate theme engine in module_path: "murrine",
[8408:8408:0925/232308:ERROR:browser_main_loop.cc(217)] GTK theme error: Unable to locate theme engine in module_path: "murrine",
[8408:8408:0925/232308:ERROR:browser_main_loop.cc(217)] GTK theme error: Unable to locate theme engine in module_path: "murrine",
[8408:8408:0925/232308:ERROR:browser_main_loop.cc(217)] GTK theme error: Unable to locate theme engine in module_path: "murrine",
[8408:8408:0925/232308:ERROR:browser_main_loop.cc(217)] GTK theme error: Unable to locate theme engine in module_path: "murrine",
[8408:8408:0925/232308:ERROR:browser_main_loop.cc(217)] GTK theme error: Unable to locate theme engine in module_path: "murrine",
[8408:8408:0925/232308:ERROR:browser_main_loop.cc(217)] GTK theme error: Unable to locate theme engine in module_path: "murrine",
[8408:8408:0925/232308:ERROR:browser_main_loop.cc(217)] GTK theme error: Unable to locate theme engine in module_path: "murrine",
[8408:8408:0925/232308:ERROR:browser_main_loop.cc(217)] GTK theme error: Unable to locate theme engine in module_path: "murrine",
[8408:8408:0925/232308:ERROR:browser_main_loop.cc(217)] GTK theme error: Unable to locate theme engine in module_path: "murrine",
[8408:8408:0925/232308:ERROR:browser_main_loop.cc(217)] GTK theme error: Unable to locate theme engine in module_path: "murrine",
[8408:8408:0925/232308:ERROR:browser_main_loop.cc(217)] GTK theme error: Unable to locate theme engine in module_path: "murrine",
[8408:8408:0925/232308:ERROR:browser_main_loop.cc(217)] GTK theme error: Unable to locate theme engine in module_path: "murrine",
[8408:8408:0925/232308:ERROR:browser_main_loop.cc(217)] GTK theme error: Unable to locate theme engine in module_path: "murrine",
[8408:8408:0925/232308:ERROR:browser_main_loop.cc(217)] GTK theme error: Unable to locate theme engine in module_path: "murrine",
[8408:8408:0925/232308:ERROR:browser_main_loop.cc(217)] GTK theme error: Unable to locate theme engine in module_path: "murrine",
[8408:8408:0925/232308:ERROR:browser_main_loop.cc(217)] GTK theme error: Unable to locate theme engine in module_path: "murrine",
[8408:8408:0925/232308:ERROR:browser_main_loop.cc(217)] GTK theme error: Unable to locate theme engine in module_path: "murrine",
[8408:8408:0925/232308:ERROR:browser_main_loop.cc(217)] GTK theme error: Unable to locate theme engine in module_path: "murrine",
[8408:8408:0925/232308:ERROR:browser_main_loop.cc(217)] GTK theme error: Unable to locate theme engine in module_path: "murrine",
[8408:8408:0925/232308:ERROR:browser_main_loop.cc(217)] GTK theme error: Unable to locate theme engine in module_path: "murrine",
[8408:8408:0925/232308:ERROR:browser_main_loop.cc(217)] GTK theme error: Unable to locate theme engine in module_path: "murrine",
[8408:8408:0925/232308:ERROR:browser_main_loop.cc(217)] GTK theme error: Unable to locate theme engine in module_path: "murrine",
[8408:8408:0925/232308:ERROR:browser_main_loop.cc(217)] GTK theme error: Unable to locate theme engine in module_path: "murrine",
[8408:8408:0925/232308:ERROR:browser_main_loop.cc(217)] GTK theme error: Unable to locate theme engine in module_path: "murrine",
[8408:8408:0925/232308:ERROR:browser_main_loop.cc(217)] GTK theme error: Unable to locate theme engine in module_path: "murrine",
Gtk-Message: Failed to load module "canberra-gtk-module"
Aborted (core dumped)
请帮忙。
答案1
当您没有安装google-chrome
正确体系结构的软件包(在机器32bit
上安装软件包时64bit
)时,有时会出现此问题。然后它需要一些软件包,例如,overlay-scrollbar-gtk2
等。因此,请安装这些软件包或卸载 google-chrome 并重新安装正确体系结构的软件包。 卸载后,请使用以下步骤再次安装:unity-gtk2-module
libcanberra-gtk-module:i386
google-chrome
从下载正确的软件包这里
使用命令安装
sudo dpkg -i google-chrome-stable_current_amd64.deb
如果失败,则通过运行命令安装依赖项,然后再次安装。
sudo apt-get install -f
sudo dpkg -i google-chrome-stable_current_amd64.deb
现在在终端上运行命令
google-chrome
或者
google-chrome-stable
我已经通过在 ubuntu 14.04 上安装对其进行了测试。