「Kali Linux」- 使用旧源 @20210319

较新版本的Kali Linux Rolling中已经移除了某些包,比如php5。

如果我们要安装旧版本的包,可以添加old.kali.org源:

#!/bin/bash

echo 'deb http://old.kali.org/kali sana main non-free contrib' >> /etc/apt/sources.list

然后执行:

#!/bin/bash

apt-get update

安装php5:

#!/bin/bash

apt-cache search php5

最后,从/etc/apt/sources.list中移除旧源:

#!/bin/bash

sed -i '/deb http:\/\/old.kali.org\/kali sana main non-free contrib/d' /etc/apt/sources.list

再次执行:

#!/bin/bash

apt-get update

相关文章

「Debian/Ubuntu」- 常用仓库(源)整理

参考文献

Kali sources.list Repositories

上一篇:【Debug】 你所不知道的各种前端Debug技巧系列 Sources - Workspace---第11天


下一篇:SourceTreet提交时显示remote: Incorrect username or password ( access token )(4种解决办法)