今天给nginx
升级的时候碰到一个问题
通过执行
add-apt-repository 命令来添加nginx 的ppa的时候发现 命令找不到
[email protected]:~# sudo add-apt-repository
ppa:nginx/stable
sudo: add-apt-repository: command not found
经过
搜索才知道 add-apt-repository 是由 python-software-properties 这个工具包提供的
所以要先安装python-software-properties
才能使用 add-apt-repository
apt-get
install python-software-properties
我就奇怪了
为什么 它是有python-software-properties 提供而不是由 apt提供的呢 真怪
当然
添加源 可以直接 编辑/etc/apt/source.list这个文件
echo "debhttp://ppa.launchpad.net/nginx/stable/ubuntu lucid main">> /etc/apt/sources.list
不过通过这中方式的话要要手工添加该源的keyserver
而add-apt-repository
就可以把添加源可添加apt-key的工作全部作了
之后就是apt-get
update
apt-get
install nginx
就可以直接升级nginx了
时间: 2024-10-25 15:03:22