标签:arc get kconfig temp bsp 一个 更新 nav sdn
Ubuntu 中 chkconfig
已经被 sysv-rc-conf
所替代,
1、sudo apt install sysv-rc-conf
报错
E: Could not get lock /var/lib/dpkg/lock-frontend - open (11: Resource temporarily unavailable)
E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it?
cd /var/lib/dpkg,找到lock。
再次进行安装,又报错:
Could not get lock /var/cache/apt/archives/lock。
解决办法跟上面一样,把这个lock也删除。
sudo rm -rf /var/cache/apt/archives/lock。
2、sudo apt install sysv-rc-conf
当我安装sysv-rc-conf时,报了如下的错:
E: Unable to locate package sysv-rc-conf(无法定位sysv-rc-conf包)
提供一个解决办法,如下:
在软件源列表sources.list(该文本的位置在/etc/apt/sources.list)文件中的末尾添加如下内容:
deb http://archive.ubuntu.com/ubuntu/ trusty main universe restricted multiverse
3、更新apt-get,在终端输入sudo apt-get update
4、完成更新后,重新安装sysv-rc-conf,在终端输入sudo apt-get install sysv-rc-conf,即可成功安装。
5、安装完成后执行sysv-rc-conf --list
标签:arc get kconfig temp bsp 一个 更新 nav sdn
原文地址:https://www.cnblogs.com/sunyl1982/p/11864241.html