Back

commandline是王道。(using command line , not software center)

发布时间: 2012-12-07 03:03:00

今天安装chrome,下载了.deb包,可惜怎么样都说打开失败。 ( today I was stucked when installing the chrome deb file) 

结果使用命令行。 $sudo dpkg -i google-chrome-stable_current_i386.deb 马上找到问题所在了: ( but when switched to command line, the problem exposed immediately : ) 

dpkg: dependency problems prevent configuration of google-chrome-stable:
 google-chrome-stable depends on libnss3-1d (>= 3.12.3); however:
  Package libnss3-1d is not installed.
 google-chrome-stable depends on libxss1; however:
  Package libxss1 is not installed.

于是  ( so ... ) 

$ sudo aptitude install libnss3-1d libxss1 

 然后  ( and then ... ) 

$sudo dpkg -i google-chrome-stable_current_i386.deb 

 搞定!!! chrome 23!   (done! hi chrome 23! ) 

Back