我想在 ubuntu lucid 上使用 apt 安装最新的 nginx。
我按照 nginx wiki 上的说明添加了源:
echo "deb http://ppa.launchpad.net/nginx/stable/ubuntu lucid main" >> /etc/apt/sources.list
问题是最新稳定版本是 0.7.67,但是当我使用 apt-cache show 时,它显示为 0.7.65
如何使用 apt 安装最新版本?我在 php、mysql 等上遇到了同样的问题,所以我一直从源代码安装所有内容,但我想知道是否可以使用 apt 获取所有最新版本。
答案1
我认为您必须具体使用以下命令:
sudo add-apt-repository ppa:nginx/stable
sudo apt-get update
sudo apt-get install nginx=0.7.67-4ppa1
只需记住从启动板包中放入 nginx 的版本即可。
答案2
答案3
$ apt-get update
你在把这一行添加到你的 之后做了什么sources.list
?这一步对于更新 apt 的本地软件包数据库是必需的。