TranslateProject/published/201506/20150518 Linux FAQs with Answers--How to fix 'Encountered a section with no Package--header' error on Raspbian.md

31 lines
1.6 KiB
Markdown
Raw Normal View History

Linux 有问必答:如何修复 Rasbian 上的 “Encountered a section with no Package: header” 错误
2015-05-18 15:56:45 +08:00
================================================================================
> **问题**: 我在树莓派上安装新版的 Rasbian。但当我使用 sudo apt-get update 命令更新 APT 软件包索引的时候,它抛出下面的错误:
2015-05-18 15:56:45 +08:00
E: Encountered a section with no Package: header
E: Problem with MergeList /var/lib/dpkg/status
E: The package lists or status file could not be parsed or opened.
> 之后我不能在 Raspbian 上安装任何软件包。我怎样才能解决这个错误?
2015-05-18 15:56:45 +08:00
![](https://farm8.staticflickr.com/7704/17445484636_05ba81722f_c.jpg)
这个错误说 "Problem with MergeList /var/lib/dpkg/status" 表示由于某些原因状态文件损坏了,因此无法解析。这个状态文件包括了已经安装的 deb 软件包的信息,因此需要小心备份。
2015-05-18 15:56:45 +08:00
在这种情况下,由于这是新安装的 Raspbian你可以安全地删除状态文件然后用下面的命令重新生成。
2015-05-18 15:56:45 +08:00
$ sudo rm /var/lib/dpkg/status
$ sudo touch /var/lib/dpkg/status
$ sudo apt-get update
--------------------------------------------------------------------------------
via: http://ask.xmodulo.com/encountered-section-with-no-package-header-error.html
作者:[Dan Nanni][a]
译者:[ictlyh](https://github.com/ictlyh)
校对:[wxy](https://github.com/wxy)
2015-05-18 15:56:45 +08:00
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创翻译,[Linux中国](https://linux.cn/) 荣誉推出
[a]:http://ask.xmodulo.com/author/nanni