前几天,Ubuntu 13.04 Raring Ringtail发布,便顺手给装上了,结果各种事情接二连三的到来,一直也没有来得及安装一些常用的软件,今天趁着假期,准备给小U把常用的软件装上。结果,发现google chrome 无法安装,出现了依赖问题,其实这个好解决。据百度说貌似是因为Ubuntu 13.04的源里更改了一个依赖性包的名称~我想说的是这也行????未经确认,仅凭一笑了之啊!!
我首先给小U增加了一些源:
首先,备份源列表:
sudo cp /etc/apt/sources.list /etc/apt/sources.list.backup
然后,修改更新源
:
sudo gedit /etc/apt/sources.list(注意,必须加sudo)
之后,添加源并更新:
#台湾源 deb http://tw.archive.ubuntu.com/ubuntu/ natty main universe restricted multiverse deb-src http://tw.archive.ubuntu.com/ubuntu/ natty main universe restricted multiverse deb http://tw.archive.ubuntu.com/ubuntu/ natty-security universe main multiverse restricted deb-src http://tw.archive.ubuntu.com/ubuntu/ natty-security universe main multiverse restricted deb http://tw.archive.ubuntu.com/ubuntu/ natty-updates universe main multiverse restricted deb-src http://tw.archive.ubuntu.com/ubuntu/ natty-updates universe main multiverse restricted #网易 Ubuntu 源(速度很快) deb http://mirrors.163.com/ubuntu/ natty main universe restricted multiverse deb-src http://mirrors.163.com/ubuntu/ natty main universe restricted multiverse deb http://mirrors.163.com/ubuntu/ natty-security universe main multiverse restricted deb-src http://mirrors.163.com/ubuntu/ natty-security universe main multiverse restricted deb http://mirrors.163.com/ubuntu/ natty-updates universe main multiverse restricted deb http://mirrors.163.com/ubuntu/ natty-proposed universe main multiverse restricted deb-src http://mirrors.163.com/ubuntu/ natty-proposed universe main multiverse restricted deb http://mirrors.163.com/ubuntu/ natty-backports universe main multiverse restricted deb-src http://mirrors.163.com/ubuntu/ natty-backports universe main multiverse restricted deb-src http://mirrors.163.com/ubuntu/ natty-updates universe main multiverse restricted #骨头源,骨头源是bones7456架设的一个Ubuntu源 ,提供ubuntu,deepin deb http://ubuntu.srt.cn/ubuntu/ natty main universe restricted multiverse deb-src http://ubuntu.srt.cn/ubuntu/ natty main universe restricted multiverse deb http://ubuntu.srt.cn/ubuntu/ natty-security universe main multiverse restricted deb-src http://ubuntu.srt.cn/ubuntu/ natty-security universe main multiverse restricted deb http://ubuntu.srt.cn/ubuntu/ natty-updates universe main multiverse restricted deb http://ubuntu.srt.cn/ubuntu/ natty-proposed universe main multiverse restricted deb-src http://ubuntu.srt.cn/ubuntu/ natty-proposed universe main multiverse restricted deb http://ubuntu.srt.cn/ubuntu/ natty-backports universe main multiverse restricted deb-src http://ubuntu.srt.cn/ubuntu/ natty-backports universe main multiverse restricted deb-src http://ubuntu.srt.cn/ubuntu/ natty-updates universe main multiverse restricted
保存,并在终端中输入:
sudo apt-get update
好的,源的更新完成。
之后我们在google官网上下载chrome的DED安装包,
并使用:
sudo dpkg -i google-chrome-stable_current_i386.deb
安装,会提示:依赖关系问题 - 仍未被配置
最后我们用:
sudo apt-get -f install
修复库的依赖。
OK,安装完成。