Sponsor: VoiceMeUp - Corporate & Wholesale VoIP Services

VoIP Mailing List Archives
Mailing list archives for the VoIP community
 SearchSearch 

[Freeswitch-users] debian repos for Raspberry Pi broken?


 
Post new topic   Reply to topic    VoIP Mailing List Archives Forum Index -> freeSWITCH Users
View previous topic :: View next topic  
Author Message
saied.tazari at gmail.com
Guest





PostPosted: Fri Jun 10, 2022 9:29 am    Post subject: [Freeswitch-users] debian repos for Raspberry Pi broken? Reply with quote

Dear Andrey,
many thanks for the updated instructions under https://freeswitch.org/confluence/display/FREESWITCH/Raspberry+Pi
This is to contribute my solution for the errors I got when following these instructions.
The problem I realised: apt update failed due to
Quote:

E: Failed to fetch https://freeswitch.signalwire.com/repo/deb/debian-release/dists/bullseye/InRelease 401 Unauthorized
E: The repository 'https://freeswitch.signalwire.com/repo/deb/debian-release bullseye InRelease' is not signed.
W: GPG error: https://freeswitch.signalwire.com/repo/deb/rpi/debian-release bullseye InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY


I "solved" this by adapting your instructions the following way (changes highlighted in red):
Quote:

TOKEN=YOURSIGNALWIRETOKEN
apt update && apt install -y gnupg2 wget lsb-release
wget --http-user=signalwire --http-password=$TOKEN -O - https://freeswitch.signalwire.com/repo/deb/rpi/debian-release/freeswitch_archive_g0.pub | apt-key add -
echo "deb [ Allow-Insecure=yes ] https://freeswitch.signalwire.com/repo/deb/rpi/debian-release/ `lsb_release -sc` main" > /etc/apt/sources.list.d/freeswitch.list
echo "deb-src [ Allow-Insecure=yes ] https://freeswitch.signalwire.com/repo/deb/rpi/debian-release/ `lsb_release -sc` main" >> /etc/apt/sources.list.d/freeswitch.list
echo "machine freeswitch.signalwire.com login signalwire password $TOKEN" > /etc/apt/auth.conf
apt update && apt install -y --allow-unauthenticated freeswitch-meta-all


I would be happy to be corrected if there is a better way, because my way is actually generating warnings that this is bad practice.
Otherwise, I would be happy to see these changes in your instructions to be sure that my way is ok from your point of view.
Kind regards,

Quote:
-- Saied



Quote:
Andrey Volk wrote on 21-Dec-2021 21:36:
Quote:

Let me see what I can do. May take some time.

вт, 21 дек. 2021 г. в 23:19, Johan Helsingius <julf at julf.com>:
Quote:

Hi,
> >
> > Trying to install freeswitch on a RPi 4 (Debian 11 Bullseye),
> > my /etc/apt/sources.list.d/freeswitch.list has:
> >
> > deb http://files.freeswitch.org/repo/deb/rpi/debian-release/ bullseye main
> > deb-src http://files.freeswitch.org/repo/deb/rpi/debian-release/ bullseye
> > main
> >
> > but when I try
> >
> > apt-get update && apt-get install -y freeswitch-meta-all
> >
> > I get
> >
> > Unable to locate package freeswitch-meta-all
> >
> > apt-cache search freeswitch only gives me:
> > libsipwitch-dev - secure peer-to-peer SIP VoIP server - development files
> > libsipwitch1 - secure peer-to-peer SIP VoIP server - shared libraries
> > libsipwitch1-dbg - secure peer-to-peer SIP VoIP server - debug symbols
> > sipwitch - secure peer-to-peer VoIP server for the SIP protocol
> > sipwitch-cgi - secure peer-to-peer SIP VoIP server - CGI XML-RPC interface
> >
> > Any suggestions?
> >
> > Julf

Back to top
len at freeswitch.org
Guest





PostPosted: Fri Jun 10, 2022 2:01 pm    Post subject: [Freeswitch-users] debian repos for Raspberry Pi broken? Reply with quote

Hello,


Please update the gpg key you used with this one wget --http-user=signalwire --http-password=$TOKEN -O /usr/share/keyrings/signalwire-freeswitch-repo.gpg https://freeswitch.signalwire.com/repo/deb/debian-release/signalwire-freeswitch-repo.gpg


Thanks,


~Len




On Fri, Jun 10, 2022 at 10:08 AM Saied Tazari <saied.tazari@gmail.com (saied.tazari@gmail.com)> wrote:

Quote:

Dear Andrey,
many thanks for the updated instructions under https://freeswitch.org/confluence/display/FREESWITCH/Raspberry+Pi
This is to contribute my solution for the errors I got when following these instructions.
The problem I realised: apt update failed due to
Quote:

E: Failed to fetch https://freeswitch.signalwire.com/repo/deb/debian-release/dists/bullseye/InRelease 401 Unauthorized
E: The repository 'https://freeswitch.signalwire.com/repo/deb/debian-release bullseye InRelease' is not signed.
W: GPG error: https://freeswitch.signalwire.com/repo/deb/rpi/debian-release bullseye InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY


I "solved" this by adapting your instructions the following way (changes highlighted in red):
Quote:

TOKEN=YOURSIGNALWIRETOKEN
apt update && apt install -y gnupg2 wget lsb-release
wget --http-user=signalwire --http-password=$TOKEN -O - https://freeswitch.signalwire.com/repo/deb/rpi/debian-release/freeswitch_archive_g0.pub | apt-key add -
echo "deb [ Allow-Insecure=yes ] https://freeswitch.signalwire.com/repo/deb/rpi/debian-release/ `lsb_release -sc` main" > /etc/apt/sources.list.d/freeswitch.list
echo "deb-src [ Allow-Insecure=yes ] https://freeswitch.signalwire.com/repo/deb/rpi/debian-release/ `lsb_release -sc` main" >> /etc/apt/sources.list.d/freeswitch.list
echo "machine freeswitch.signalwire.com login signalwire password $TOKEN" > /etc/apt/auth.conf
apt update && apt install -y --allow-unauthenticated freeswitch-meta-all


I would be happy to be corrected if there is a better way, because my way is actually generating warnings that this is bad practice.
Otherwise, I would be happy to see these changes in your instructions to be sure that my way is ok from your point of view.
Kind regards,

Quote:
-- Saied



Quote:
Andrey Volk wrote on 21-Dec-2021 21:36:
Quote:

Let me see what I can do. May take some time.

вт, 21 дек. 2021 г. в 23:19, Johan Helsingius <julf at julf.com>:
Quote:

Hi,
> >
> > Trying to install freeswitch on a RPi 4 (Debian 11 Bullseye),
> > my /etc/apt/sources.list.d/freeswitch.list has:
> >
> > deb http://files.freeswitch.org/repo/deb/rpi/debian-release/ bullseye main
> > deb-src http://files.freeswitch.org/repo/deb/rpi/debian-release/ bullseye
> > main
> >
> > but when I try
> >
> > apt-get update && apt-get install -y freeswitch-meta-all
> >
> > I get
> >
> > Unable to locate package freeswitch-meta-all
> >
> > apt-cache search freeswitch only gives me:
> > libsipwitch-dev - secure peer-to-peer SIP VoIP server - development files
> > libsipwitch1 - secure peer-to-peer SIP VoIP server - shared libraries
> > libsipwitch1-dbg - secure peer-to-peer SIP VoIP server - debug symbols
> > sipwitch - secure peer-to-peer VoIP server for the SIP protocol
> > sipwitch-cgi - secure peer-to-peer SIP VoIP server - CGI XML-RPC interface
> >
> > Any suggestions?
> >
> > Julf



_________________________________________________________________________

The FreeSWITCH project is sponsored by SignalWire https://signalwire.com
Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services.
Build your next product on our scalable cloud platform.

Join our online community to chat in real time https://signalwire.community

Professional FreeSWITCH Services
sales@freeswitch.com (sales@freeswitch.com)
https://freeswitch.com

Official FreeSWITCH Sites
https://freeswitch.com/oss
https://freeswitch.org/confluence
https://cluecon.com

FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
https://freeswitch.com
Back to top
Display posts from previous:   
Post new topic   Reply to topic    VoIP Mailing List Archives Forum Index -> freeSWITCH Users All times are GMT - 5 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group

VoiceMeUp - Corporate & Wholesale VoIP Services