apt-get在raspberry pi 3(拉伸)上找不到postfix安装候选对象

时间:2018-07-19 07:41:17

标签: raspberry-pi apt-get debian-stretch

我正在尝试在树莓派3(拉伸)上安装MTA后缀

我做了什么:

sudo apt-get update 

->更新没有错误

sudo apt-get install postfix libsasl2-modules bsd-mailx 

->错误:找不到安装候选对象

我的etc / apt / sources.list.d文件:

  1. ajenti.list
  2. nodesource.list
  3. raspi.list

在raspi.list中:

deb http://archive.raspberrypi.org/debian/ stretch main ui staging
# Uncomment line below then 'apt-get update' to enable 'apt-get source'
deb-src http://archive.raspberrypi.org/debian/ stretch main ui

我还尝试了什么:

  • sudo apt-get升级以安装最新的源。
  • 以pi和root身份登录
  • 测试了互联网连接是否正常
  • 通过Google搜索解决方案

pi正在将nginx作为反向代理运行,而ajenti作为管理面板

提前感谢您的建设性反馈!

1 个答案:

答案 0 :(得分:0)

自己找到解决方案:

/ etc / apt中的

缺少sources.list文件(不是目录“ sources.list.d”)。所以我添加了一个新文件,命名为sources.list并放入

deb http://mirrordirector.raspbian.org/raspbian/ stretch main contrib non-free rpi
# Uncomment line below then 'apt-get update' to enable 'apt-get source'
deb-src http://archive.raspbian.org/raspbian/ stretch main contrib non-free rpi

在其中。 apt-get install然后可以找到安装候选对象。