0
点赞
收藏
分享

微信扫一扫

删除使用add-apt-repository添加的存储库

逸省 2024-09-04 阅读 6

我正在安装Microsoft SQL Server for Linux,我不小心用

sudo add-apt-repository "$(wget -qO- https://packages.microsoft.com/config/ubuntu/18.04/mssql-server-2019.list)"

  

为错误的Linux版本(我想要的是20.04版本)添加了存储库。如何撤消上述行的结果?

您可以像这样删除它:

sudo add-apt-repository -r "$(wget -qO- https://packages.microsoft.com/config/ubuntu/18.04/mssql-server-2019.list)"

 



举报

相关推荐

0 条评论