wollik Posted February 16, 2022 Posted February 16, 2022 He forum members, I try to install telegraf on my R2 running armbian bullseye: # PLEASE DO NOT EDIT THIS FILE BOARD=bananapir2 BOARD_NAME="Banana Pi R2" BOARDFAMILY=mt7623 BUILD_REPOSITORY_URL=git@github.com:armbian/build BUILD_REPOSITORY_COMMIT=aec64805a DISTRIBUTION_CODENAME=bullseye DISTRIBUTION_STATUS=supported VERSION=21.08.1 LINUXFAMILY=mt7623 ARCH=arm IMAGE_TYPE=stable BOARD_TYPE=csc INITRD_ARCH=arm KERNEL_IMAGE_TYPE=Image BRANCH=legacy I can install influxdb via apt install influxdb without problems, but can't install telegraf that is part of influxdb (E: Unable to locate package telegraf) So I updated the sourcelist via: echo "deb https://repos.influxdata.com/debian dists bullseye stable" | sudo tee /etc/apt/sources.list.d/influxdb.list Now when I run apt update I got this error: E: The repository 'https://repos.influxdata.com/debian dists Release' does not have a Release file. Can someone help on this ??? When try to install it manualy like in the influxdata description (https://portal.influxdata.com/downloads/) for telegraf, I download and extracted the latest version for telegraf via: wget https://dl.influxdata.com/telegraf/releases/telegraf-1.21.3_linux_armhf.tar.gz sudo tar xf telegraf-1.21.3_linux_armhf.tar.gz I got the files, but now need to know how to activate the telegraf service, there is no install file like on other packages. Please can you help whow to proceed ? Regards wollik
Solution wollik Posted February 16, 2022 Author Solution Posted February 16, 2022 Sorry I found the solution, Edit the file /etc/apt/sources.list.d/influxdb.list by adding the arch and deleting the dists so it looks like: deb [arch=armhf] https://repos.influxdata.com/debian bullseye stable Now telegraf can be installed via apt Regards wollik
Recommended Posts