PIONEERS Gemeinschaft 3 Development Returns

synack

Guru
Joined
Dec 31, 2013
Messages
227
Reaction score
56
did you miss this step?
sudo apt-get -y install libncurses5-dev php5
 

synack

Guru
Joined
Dec 31, 2013
Messages
227
Reaction score
56
15 update 192 new? are you not using the current image? I believe that is from the "sudo apt-get -y dist-upgrade" above it. Are you not following the steps to completion? 207 package installs WILL take a LONG time, it's not hung. I suspect you are trying to use a much older image that requires many more updates.

press the keyboard key 'x' to exit. however if you do not have ncurses installed you wont get that far. (libncurses5-dev)
 

synack

Guru
Joined
Dec 31, 2013
Messages
227
Reaction score
56
I had a thought.. Are you using the "console" image? I chose the Jan 2015 LXDE image as it was the most up to date, and had many items already installed, for instance the development software. The GS3/Asterisk/Linux kernel depend on the dev environment to install. It's possible that when you ran the install for libncurses5-dev it attempted to pull the entire dev environment with it, as it should if missing.

If you are not familiar with "playing" in Linux, you are better off to use the image I recommended as my steps are based off of it. Varying from the script may introduce unknowns that you will likely need to solve.
 

synack

Guru
Joined
Dec 31, 2013
Messages
227
Reaction score
56
same error again
after 5 installations
Where is my mistake?
You absolutely NEED ncurses and php5 installed. If you are not getting past that step successfully, there is no point in trying to go further.

Are you getting an error installing php? or just cancelling it out because it takes too long?
 

synack

Guru
Joined
Dec 31, 2013
Messages
227
Reaction score
56
Are you booting from external SD?
and are you sure you are booting from external SD?
fdisk -l should show your 4GB or greater drive as mmcblk0
if your 2GB eMMC is mmcblk0 than that's wrong.
 

vic555

Member
Joined
Aug 24, 2014
Messages
76
Reaction score
14
Is Gemeinschaft 5 dead? or is going to be resurrected?
 

MGD4me

Guru
Joined
Feb 3, 2009
Messages
505
Reaction score
109
I can't believe I just sat and watched two light bulbs turn on (to music). Very mesmerizing!
 

synack

Guru
Joined
Dec 31, 2013
Messages
227
Reaction score
56
That is cool.
As for platform, the Pi and the BBB should be little to no difference. I think the BBB has more GPIO if that matters.
The Pi2 promises to kill both the Pi and BBB in terms of performance.

For security, that's up to you. Whatever you decide to implement will affect how secure it is.

I myself am a homebrew electronics tinkerer and have a big strip of multi-color LEDs that can be individually addressed with basically a single GPIO pin. ie: 600 LED pixels bit banged with 24bit color... seriously cool see here as an example. I've implemented a wired 10 meter WS2811 strip with an Arduino.
I'm not too familiar with how it's done on a Pi, but BBB, it would be a matter of exporting the pin to the file system and echoing a 1 or a 0 to send the bit. (and doing that a few thousand times a second)
There is arduino code (fastled) that could be looked at.
I don't know about the other home automation stuff like door latches and stuff. I suspect wired home devices will be easier to do than wireless, or at least cheaper.
 

hecatae

resident hecatae
Joined
Feb 7, 2014
Messages
769
Reaction score
202
has anyone managed to get gs5 to build?

there's an entire section here https://github.com/amooma/GPiBE but it for the model B, not the B+ and I'm having enough difficulty trying to get the GBE to actually work.
 

synack

Guru
Joined
Dec 31, 2013
Messages
227
Reaction score
56
I. Must. Have. That. Now.
I think i'm going the Boblight, XBMC, arduino route with a string of ws2811.
Looks like I have me a new weekend project :)
 

synack

Guru
Joined
Dec 31, 2013
Messages
227
Reaction score
56
Thanks for the offer, but I'm in Canada, and I would prefer the challenge to build a solution myself. I already have a linux XBMC media server connected to my main LED TV, so boblight/xbmc and arduino suit my situation the best. Hopefully I'll be able to make some time this weekend to work on it. Also I run everything 1080p HD on HDMI, so your Scimo wouldn't work for me anyway.
I agree that the next stage of home automation is to integrate communications and IoTs all together.
All the pieces are there, someone needs the time and energy to glue it all together.
 

hecatae

resident hecatae
Joined
Feb 7, 2014
Messages
769
Reaction score
202
trying to get this running on a banana pi/sbc

first issue, kernel source for bananian, or do I go for raspbian for banana pi and try the asterisk gui mentioned elsewhere?
 

hecatae

resident hecatae
Joined
Feb 7, 2014
Messages
769
Reaction score
202
Install script runs only with debian and with changes with ubuntu...
There is not the manpower like here. Ands other go strict conservative debian


i have got it running with raspbian, just need to install kernel source for bananian...

Code:
From fd6aa79f9ed48bcb6a6c874ce1d144fcf13b6608 Mon Sep 17 00:00:00 2001
From: Sascha Daniels <[email protected]>
Date: Thu, 12 Feb 2015 17:22:20 +0100
Subject: [PATCH] Dahdi timer can break iax2
 
---
opt/gemeinschaft/etc/asterisk/modules.conf | 1 -
1 file changed, 1 deletion(-)
 
diff --git a/opt/gemeinschaft/etc/asterisk/modules.conf b/opt/gemeinschaft/etc/asterisk/modules.conf
index 79ac750..d875e22 100644
--- a/opt/gemeinschaft/etc/asterisk/modules.conf
+++ b/opt/gemeinschaft/etc/asterisk/modules.conf
@@ -112,7 +112,6 @@ noload => codec_dahdi.so
 
; do not load broken timing modules by default
noload => res_timing_pthread.so
-noload => res_timing_timerfd.so
 
#exec <sudo /opt/gemeinschaft/sbin/gs-ast-dialplan-gen --ignore-subsequent-call 1>>/dev/null 2>>/dev/null>
 
--
2.1.1
 

synack

Guru
Joined
Dec 31, 2013
Messages
227
Reaction score
56
I dont have a bananapi, but the following *should* work (or close to)
Code:
cd /usr/src/
sudo wget -qO- https://github.com/Bananian/linux-bananapi/archive/v3.2.20.tar.gz | tar -zxf-
sudo ln -s linux-bananapi-3.2.20 linux
sudo gunzip -c /proc/config.gz > linux/.config
cd /usr/src/linux
sudo make oldconfig && make menuconfig
x to exit
replacing 3.2.20 in both places with what version of kernel you have installed.
 

synack

Guru
Joined
Dec 31, 2013
Messages
227
Reaction score
56
make menuconfig will only work if you have libncurses installed...
make menuconfig may not be required, just a habit/superstition I have from way back. make oldconfig maybe enough
 

hecatae

resident hecatae
Joined
Feb 7, 2014
Messages
769
Reaction score
202
finished.PNG


status.PNG

Took no time at all to build
 

Members online

No members online now.

Forum statistics

Threads
25,821
Messages
167,814
Members
19,247
Latest member
mdauck
Get 3CX - Absolutely Free!

Link up your team and customers Phone System Live Chat Video Conferencing

Hosted or Self-managed. Up to 10 users free forever. No credit card. Try risk free.

3CX
A 3CX Account with that email already exists. You will be redirected to the Customer Portal to sign in or reset your password if you've forgotten it.
Top