安装VIM出错和更新Ubuntu源

来源:互联网 发布:计算机网络考研 知乎 编辑:程序博客网 时间:2024/05/21 06:18

1. 安装vim时遇到如下问题:

$ sudo apt-get install vimReading package lists... DoneBuilding dependency tree       Reading state information... DoneSome packages could not be installed. This may mean that you haverequested an impossible situation or if you are using the unstabledistribution that some required packages have not yet been createdor been moved out of Incoming.The following information may help to resolve the situation:The following packages have unmet dependencies: vim : Depends: vim-common (= 2:7.3.429-2ubuntu2) but 2:7.3.429-2ubuntu2.1 is to be installedE: Unable to correct problems, you have held broken packages.
解决方法如下:

a.卸载vim-common, "$ sudo apt-get remove vim-common "

b. 再进行安装vim, "$ sudo apt-get install vim"

//----------------------------------------------------------------------------------------------------------------------------------------

2. 执行apt-get install xxx时,提示404错误,更新源地址失效,需要更新源,

解决方法如下:

a. 备份已有源

$ mv /etc/apt/sources.list /etc/apt/sources.list.bak
b. 重新建立新源文件
$ sudo vi /etc/apt/sources.list //复制下列新源deb http://cn.archive.ubuntu.com/ubuntu/ precise main restricted universe multiversedeb http://cn.archive.ubuntu.com/ubuntu/ precise-security main restricted universe multiversedeb http://cn.archive.ubuntu.com/ubuntu/ precise-updates main restricted universe multiversedeb http://cn.archive.ubuntu.com/ubuntu/ precise-proposed main restricted universe multiversedeb http://cn.archive.ubuntu.com/ubuntu/ precise-backports main restricted universe multiversedeb-src http://cn.archive.ubuntu.com/ubuntu/ precise main restricted universe multiversedeb-src http://cn.archive.ubuntu.com/ubuntu/ precise-security main restricted universe multiversedeb-src http://cn.archive.ubuntu.com/ubuntu/ precise-updates main restricted universe multiversedeb-src http://cn.archive.ubuntu.com/ubuntu/ precise-proposed main restricted universe multiversedeb-src http://cn.archive.ubuntu.com/ubuntu/ precise-backports main restricted universe multiverse

c. 执行更新

$ sudo apt-get update  


1 0