我想在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的所有最新版本.
我认为你必须特别注意这些命令:
sudo add-apt-repository ppa:Nginx/stable
sudo apt-get update
sudo apt-get install Nginx=0.7.67-4ppa1
只记得从启动板包中放入Nginx的版本.
原文链接:https://www.f2er.com/linux/399266.html