我想在 Ubuntu 10.10 上安装 Apache。
我尝试过跑步:
sudo apt-get install apache2
但出现以下错误:
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package apache2
有什么想法我可以在哪里找到 apache2 包?
答案1
答案2
apache2 元包可从 security.ubuntu.com 获得,请确保您的文件中包含以下条目/etc/apt/sources.list
:
德布http://security.ubuntu.com/ubuntumaverick-security 主要受限
deb-srchttp://security.ubuntu.com/ubuntumaverick-security 主要受限
debhttp://security.ubuntu.com/ubuntu特立独行的安全宇宙
deb-srchttp://security.ubuntu.com/ubuntu特立独行的安全宇宙
debhttp://security.ubuntu.com/ubuntu特立独行的安全多元宇宙
deb-srchttp://security.ubuntu.com/ubuntu特立独行的安全多元宇宙
另外,请记住,apt-get 不会在每次运行时自动下载存储库内容(与 yum 不同)。您必须使用 手动执行此操作sudo apt-get update
。