我已经安装了普通的Ubuntu 14.04服务器(64位)。
使用时:
sudo apt-get update
打印此错误:
....
Hit http://security.ubuntu.com trusty-security/universe Translation-en
E: dpkg was interrupted, you must manually run 'sudo dpkg --configure -a' to correct the problem.
删除 tmp.i 后/var/lib/dpkg/updates# sudo rm tmp.i
apt-get 更新正常,但是...
当我尝试"sudo apt-get upgrade"时:
Fetched 534 kB in 4s (112 kB/s)
Reading package lists... Done
root@vps****:/# sudo apt-get upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
1 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Do you want to continue? [Y/n] Y
Setting up udev (204-5ubuntu20.9) ...
* udev requires hotplug support, not started
...fail!
invoke-rc.d: initscript udev, action "restart" failed.
dpkg: error processing package udev (--configure):
subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
udev
E: Sub-process /usr/bin/dpkg returned an error code (1)
到目前为止,我在网络上找不到任何解决方案,尝试了很多方法,但没有任何效果......
原因可能是 OVH 服务器上的所有 Ubuntu 14.04 安装都出现问题。我已经联系了技术支持,除了"帮助自己"之外,他们没有任何可能有帮助的答案。
收到此错误后:
nano /etc/init.d/udev
在 ### 结束初始化信息之后添加:
exit 0
保存并退出。
dpkg --configure -a
apt-get upgrade
再次编辑文件,并删除exit 0
,保存并退出然后安装后续软件包可以正常工作,重新启动后系统似乎很好,没有出现过可怕的错误消息。
此线程的临时解决方案:http://forum.ovh.co.uk/showthread.php?8480-udev-requires-hotplug-support-not-started/page2&s=2144010031f992268c5690726da09284
对于那些在我之后到达这里的人,我不得不编辑/usr/sbin/invoke-rc.d 以在第一条评论后添加一个出口 0 以使 udev 进行配置。
nano -w /usr/sbin/invoke-rc.d
...
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
exit 0
然后运行:
dpkg --configure -a
然后从 invoke-rc.d 中删除出口 0
与其编辑/etc/init.d/udev
两次,不如在 ### END INIT INFO
之后的换行符上添加它:
dpkg --configure -a || exit 0
这样,如果dpkg --configure
失败,它将退出,否则它将照常继续。
或者,如果您不喜欢编辑文件,这将解决问题:
[ ! "$(grep -A1 '### END INIT INFO' /etc/init.d/udev | grep 'dpkg --configure -a || exit 0')" ]
&& sudo sed -i 's/### END INIT INFO/### END INIT INFO
dpkg --configure -a || exit 0/' /etc/init.d/udev
对于在 OVH 服务器上获得此内容的人来说,不再需要上述黑客!
代理的这个答案应该有效:
$ apt-get download udev $ sudo dpkg -i --force-confmiss udev_*_amd64.deb $ sudo apt-get upgrade
为我工作。有关更多信息,请访问 Ubuntu 错误跟踪器中 Dimitri 的评论。
这似乎是因为 OVH 不会将/etc/init/udev.conf
放入您的系统中。 10/10